/* =====================================================================
   Dr. Thiago Vasconcelos — Alergia & Imunologia Pediátrica
   Direção: VINTAGE EDITORIAL SÓBRIO (calor familiar dos 70s, sem
   infantilizar). Arcos retrô + paleta terra DESSATURADA + grão
   analógico, SEM sóis/selos. Tipografia de display com curvas
   setentistas (Sansita) sobre corpo limpo (Work Sans).
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* paleta terra dessaturada sobre creme-vintage */
  --primary:     #C26B3E;   /* terracota-queimada */
  --primary-deep:#A4562F;
  --secondary:   #7A8450;   /* verde-musgo */
  --secondary-deep:#646E41;
  --accent:      #B89150;   /* dourado-trigo suave */
  --bg:          #F3EAD9;   /* creme-vintage */
  --bg-warm:     #EDE0CA;   /* creme um tom mais quente p/ alternância */
  --bg-deep:     #E4D3B6;   /* areia para faixas */
  --text:        #5A3A26;   /* marrom-chocolate (AA sobre creme) */
  --text-soft:   #7A5840;
  --paper:       #FBF5E9;   /* "papel" dos cards */
  --line:        #D9C7A6;   /* linhas/contornos discretos */
  --whatsapp:    #5B7A4A;   /* verde sóbrio, casa com a paleta */
  --whatsapp-deep:#4A6539;

  --font-display: "Sansita", Georgia, serif;
  --font-body:    "Work Sans", system-ui, sans-serif;

  /* espaçamento fluido */
  --space-section: clamp(4.5rem, 9vw, 8rem);
  --radius-arch:  46% 46% 8px 8px / 60% 60% 8px 8px; /* topo em arco, base reta */
  --shadow-soft:  0 18px 44px -26px rgba(90, 58, 38, 0.55);
  --shadow-card:  0 14px 34px -22px rgba(90, 58, 38, 0.45);

  --maxw: 1180px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* grão analógico global, MUITO sutil, sobre toda a página */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
em { font-style: italic; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- TIPOGRAFIA ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem);
}
.section-title em {
  font-style: italic;
  color: var(--primary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-deep);
  margin-bottom: 1rem;
}
.eyebrow--light { color: #EBDCC0; }
.eyebrow svg { width: 1.05rem; height: 1.05rem; color: var(--accent); }

.section-lead {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  color: var(--text-soft);
  max-width: 56ch;
  margin-top: 0.9rem;
}

/* ---------- LAYOUT ---------- */
.section-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section-inner--narrow { max-width: 800px; }
main > section { padding-block: var(--space-section); position: relative; }

/* alternância de fundo: creme / areia / creme quente */
.sobre        { background: var(--bg-warm); }
.cuidado      { background: var(--bg); }
.processo     { background: var(--bg-deep); }
.depoimentos  { background: var(--bg-warm); }
.faq          { background: var(--bg); }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.78rem 1.5rem;
  min-height: 46px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn--lg { padding: 0.95rem 1.9rem; font-size: 1.02rem; }
.btn--xl { padding: 1.15rem 2.4rem; font-size: 1.1rem; min-height: 58px; }

.btn--primary {
  background: var(--primary);
  color: #FBF5E9;
  box-shadow: var(--shadow-card);
}
.btn--primary:hover { background: var(--primary-deep); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--ghost:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #F4F1E6;
  box-shadow: 0 18px 40px -20px rgba(75, 101, 57, 0.7);
}
.btn--whatsapp:hover { background: var(--whatsapp-deep); transform: translateY(-2px); }
.wa-icon { width: 1.4rem; height: 1.4rem; fill: currentColor; }

/* ---------- NAV ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(243, 234, 217, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0.8rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo-mark { width: 2.5rem; height: 2.1rem; color: var(--primary); flex-shrink: 0; }
.nav-logo-mark svg { width: 100%; height: 100%; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.05;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-deep);
  margin-top: 0.15rem;
}

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links > li > a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-soft);
  transition: color 0.18s ease;
  position: relative;
}
.nav-links > li > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--primary);
  transition: right 0.25s ease;
  border-radius: 2px;
}
.nav-links > li > a:not(.nav-cta):hover { color: var(--text); }
.nav-links > li > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 0.6rem 1.25rem; min-height: 40px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  margin-inline: auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(184, 145, 80, 0.16), transparent 60%),
    radial-gradient(100% 70% at 0% 0%, rgba(122, 132, 80, 0.12), transparent 55%),
    var(--bg);
  padding-block: clamp(2.5rem, 5vw, 4.5rem) 0;
  position: relative;
}
.hero-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--secondary-deep);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-badge .badge-arch svg { width: 1.05rem; height: 1.05rem; color: var(--primary); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 1.2rem + 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--primary); white-space: nowrap; }

.hero-sub {
  font-size: clamp(1.08rem, 1rem + 0.45vw, 1.3rem);
  color: var(--text-soft);
  max-width: 54ch;
  margin-bottom: 2rem;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }

.hero-cred {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 50ch;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.cred-mark svg { width: 1.1rem; height: 1.1rem; color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }

/* foto do hero emoldurada por ARCO retrô + grão/desbotado */
.hero-visual { position: relative; margin: 0; justify-self: center; max-width: 460px; width: 100%; }
.hero-arch {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-soft);
  outline: 1px solid var(--line);
  outline-offset: 6px;
}
.hero-arch::after {
  content: "";
  position: absolute; inset: 0;
  /* filtro quente desbotado por cima da foto */
  background: linear-gradient(180deg, rgba(184,145,80,0.18), rgba(194,107,62,0.1) 50%, rgba(90,58,38,0.22));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-arch img {
  width: 100%; height: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.85) contrast(0.96) brightness(1.02);
}
.hero-quote {
  position: relative;
  margin-top: 1.5rem;
  margin-inline: auto;
  max-width: 90%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text);
  text-align: center;
  padding-left: 1.6rem;
}
.hero-quote .quote-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--primary);
  position: absolute;
  left: -0.2rem; top: -0.7rem;
  line-height: 1;
}

/* divisor ondulado */
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; height: clamp(48px, 6vw, 90px); display: block; }

/* ---------- SOBRE ---------- */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.sobre-photo { position: relative; margin: 0; justify-self: center; max-width: 400px; width: 100%; }
.sobre-arch {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-soft);
  outline: 1px solid var(--line);
  outline-offset: 6px;
}
.sobre-arch::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(184,145,80,0.16), transparent 45%, rgba(90,58,38,0.2));
  mix-blend-mode: multiply;
}
.sobre-arch img {
  width: 100%; aspect-ratio: 5 / 6; object-fit: cover;
  filter: sepia(0.2) saturate(0.82) contrast(0.95) brightness(1.02);
}
.sobre-photo-tag {
  display: block;
  margin-top: 1.1rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--secondary-deep);
}
.sobre-text > p { margin-top: 1.1rem; max-width: 56ch; }
.sobre-text strong { color: var(--primary-deep); font-weight: 600; }

.cred-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.cred-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.cred-tags .tag-arch svg { width: 0.95rem; height: 0.95rem; color: var(--secondary); }

/* ---------- A INVESTIGAÇÃO (cards) ---------- */
.section-head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); max-width: 720px; }

.cuidado-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.cuidado-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px 8px 8px 8px;
  padding: 2.4rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cuidado-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -24px rgba(90,58,38,0.55); }
/* topo do card recebe um arco retrô discreto como moldura */
.cuidado-card .card-arch {
  position: absolute;
  top: -28px; left: 50%;
  transform: translateX(-50%);
  width: 130%; height: 64px;
  border: 2.5px solid var(--accent);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.5;
  pointer-events: none;
}
.cuidado-card .card-num {
  position: absolute;
  top: 1.1rem; right: 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--bg-deep);
  line-height: 1;
}
.card-voice {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.35;
  color: var(--primary-deep);
  margin-bottom: 0.9rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--accent);
}
.cuidado-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.55rem;
}
.cuidado-card p:last-child { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- PROCESSO (timeline) ---------- */
.timeline {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 760px;
  margin-inline: auto;
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
}
.timeline-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--paper);
  background: var(--primary);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  /* mini-arco: topo arredondado, base reta */
  border-radius: 50% 50% 12px 12px / 60% 60% 12px 12px;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.timeline-body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem 1.6rem;
  box-shadow: var(--shadow-card);
  flex: 1;
}
.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.timeline-body p { color: var(--text-soft); font-size: 0.96rem; }
/* linha conectora vertical entre os passos */
.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 27px; top: 56px;
  width: 2px;
  height: calc(100% + clamp(1.5rem, 3vw, 2.25rem) - 56px);
  background: repeating-linear-gradient(to bottom, var(--accent) 0 6px, transparent 6px 12px);
  opacity: 0.6;
}

/* ---------- DEPOIMENTOS ---------- */
.depo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.depo-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  /* card emoldurado com topo em arco suave */
  border-radius: 28px 28px 8px 8px;
  padding: 2.6rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-card);
  margin: 0;
}
.depo-quote-mark {
  position: absolute;
  top: 0.6rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.7;
}
.depo-card blockquote p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.depo-card blockquote strong { color: var(--primary-deep); font-weight: 600; }
.depo-card blockquote em { color: var(--secondary-deep); font-style: italic; }
.depo-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.depo-avatar {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--secondary);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50% 50% 10px 10px / 60% 60% 10px 10px;
}
.depo-meta { display: flex; flex-direction: column; line-height: 1.3; }
.depo-meta strong { font-weight: 600; color: var(--text); }
.depo-meta span { font-size: 0.85rem; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-card); border-color: var(--accent); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  list-style: none;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2.5px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; width: 2.5px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-answer { padding: 0 1.4rem 1.3rem; }
.faq-answer p { color: var(--text-soft); font-size: 0.97rem; max-width: 64ch; }

/* ---------- AGENDAMENTO / CTA ---------- */
.agendamento {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(184,145,80,0.22), transparent 60%),
    var(--text);
  color: #EFE3CC;
  position: relative;
  overflow: hidden;
}
/* grandes arcos retrô translúcidos ao fundo do CTA */
.agendamento::before, .agendamento::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(184,145,80,0.18);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}
.agendamento::before { width: 70vw; height: 70vw; bottom: -28vw; left: -12vw; }
.agendamento::after  { width: 46vw; height: 46vw; bottom: -20vw; right: -8vw; border-color: rgba(194,107,62,0.2); }

.agendamento-inner { position: relative; z-index: 1; text-align: center; }
.agendamento .section-title { color: #FBF5E9; }
.agendamento .section-title em { color: var(--accent); }
.agendamento-head { max-width: 660px; margin-inline: auto; }
.agendamento-lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: #E1D0B2;
  margin-top: 1rem;
  margin-inline: auto;
  max-width: 56ch;
}

.invest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-block: clamp(2.5rem, 5vw, 3.5rem);
  text-align: left;
}
.invest-card {
  position: relative;
  background: rgba(251, 245, 233, 0.06);
  border: 1px solid rgba(184, 145, 80, 0.4);
  border-radius: 8px;
  padding: 2.4rem 1.6rem 1.6rem;
  overflow: hidden;
}
.invest-card .invest-arch {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 120%; height: 56px;
  border: 2px solid rgba(184,145,80,0.5);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.invest-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  color: #FBF5E9;
  margin-bottom: 0.5rem;
}
.invest-card p { color: #DDCBAC; font-size: 0.95rem; }
.invest-note {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent) !important;
}

.agendamento-cta { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.agendamento-loc {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: #D9C7A6;
  max-width: 46ch;
  text-align: left;
}
.agendamento-loc .cred-mark svg { color: var(--accent); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  padding-block: clamp(3rem, 5vw, 4rem);
}
.footer-mark { display: inline-block; width: 2.6rem; color: var(--primary); margin-bottom: 0.75rem; }
.footer-mark svg { width: 100%; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}
.footer-tag { font-size: 0.92rem; color: var(--text-soft); margin-top: 0.4rem; }
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary-deep);
  margin-bottom: 0.9rem;
}
.footer-nav ul, .footer-contact ul { display: grid; gap: 0.55rem; }
.footer-nav a, .footer-contact a { color: var(--text-soft); transition: color 0.18s ease; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--primary); }
.footer-contact li { color: var(--text-soft); font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-soft);
}
.footer-bottom a { color: var(--primary-deep); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- WHATSAPP FAB ---------- */
.wa-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 1500;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  border-radius: 50% 50% 14px 14px / 60% 60% 14px 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(75, 101, 57, 0.7);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.05); background: var(--whatsapp-deep); }
.wa-fab svg { width: 1.9rem; height: 1.9rem; fill: #F4F1E6; }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: none; }
.cuidado-card.reveal, .depo-card.reveal, .timeline-step.reveal, .faq-item.reveal { transition-delay: 0.04s; }

/* ---------- RESPONSIVO ---------- */
@media (min-width: 720px) {
  .cuidado-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: repeat(3, 1fr); }
  .invest-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 920px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
  .hero-visual { justify-self: end; }
  .sobre-grid { grid-template-columns: 0.85fr 1.15fr; }
  .cuidado-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- MENU MOBILE ---------- */
@media (max-width: 919px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 5.5rem 2rem 2rem;
    background: var(--bg-warm);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px -30px rgba(90,58,38,0.6);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links > li > a::after { display: none; }
  .nav-cta { margin-top: 1rem; text-align: center; border-bottom: none !important; }
  .nav-cta.btn { width: 100%; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .cuidado-card, .wa-fab { transition: none; }
}
