/*
  Personalizacao rapida:
  - Cores principais: altere as variáveis em :root.
  - Textos: altere diretamente em index.html e acompanhamento.html.
  - Foto/logo: substitua assets/maiky.png.
  - WhatsApp: altere os links no arquivo script.js.
*/
:root {
  --background: #050506;
  --surface: rgba(16, 16, 18, 0.88);
  --surface-strong: #121214;
  --text: #f8f7f4;
  --muted: #b6b0aa;
  --soft: #7e7770;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #e1192d;
  --primary-hover: #ff2d42;
  --accent: #ff3348;
  --accent-soft: rgba(225, 25, 45, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(225, 25, 45, 0.35), transparent 30rem),
    radial-gradient(circle at 100% 18%, rgba(255, 255, 255, 0.08), transparent 24rem),
    linear-gradient(145deg, #050506 0%, #111113 46%, #050506 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 560px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-shell-long {
  align-items: flex-start;
  padding-top: 18px;
  padding-bottom: 18px;
}

.hero-card,
.content-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 26px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 22, 24, 0.94), rgba(10, 10, 11, 0.94));
  box-shadow: var(--shadow);
}

.hero-card::after,
.content-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(225, 25, 45, 0.14));
}

.hero-card > *,
.content-card > * {
  position: relative;
  z-index: 1;
}

.profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.profile.compact {
  margin-bottom: 22px;
}

.profile-photo {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 51, 72, 0.72);
  border-radius: 20px;
  object-fit: cover;
  object-position: center 24%;
  box-shadow: 0 16px 32px rgba(225, 25, 45, 0.22);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-role {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 9.5em;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.15rem, 11vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.subtitle {
  max-width: 31rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.lead {
  color: #ded9d4;
  font-size: 1.04rem;
}

.button-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.main-button {
  min-height: 76px;
  padding: 17px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid transparent;
  border-radius: 18px;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.main-button span {
  font-size: 1rem;
  font-weight: 800;
}

.main-button small {
  color: currentColor;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.78;
}

.main-button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #9f0f1e);
  box-shadow: 0 16px 36px rgba(225, 25, 45, 0.32);
}

.main-button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.main-button:hover,
.main-button:focus-visible {
  transform: translateY(-2px);
}

.main-button.primary:hover,
.main-button.primary:focus-visible {
  background: linear-gradient(135deg, var(--primary-hover), #b91122);
}

.main-button.secondary:hover,
.main-button.secondary:focus-visible {
  border-color: rgba(255, 51, 72, 0.58);
  background: var(--accent-soft);
}

.main-button:focus-visible,
.back-link:focus-visible {
  outline: 3px solid rgba(255, 51, 72, 0.38);
  outline-offset: 4px;
}

.microcopy,
.disclaimer {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  color: var(--text);
}

.highlight-box {
  margin: 22px 0 6px;
  padding: 18px;
  border: 1px solid rgba(255, 51, 72, 0.28);
  border-radius: 18px;
  color: #e9e5e1;
  background: rgba(225, 25, 45, 0.12);
  font-size: 0.98rem;
  line-height: 1.65;
}

.highlight-box strong {
  color: #fff;
}

.info-list {
  display: grid;
  gap: 0;
  margin: 20px 0 26px;
}

.info-list section {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.info-list h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.info-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

@media (min-width: 720px) {
  .page-shell {
    padding: 46px 24px;
  }

  .page-shell-long {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-card,
  .content-card {
    padding: 42px;
  }

  .profile-photo {
    width: 90px;
    height: 90px;
  }

  .button-stack {
    margin-top: 34px;
  }
}
