/* ===========================================================
   Dra. Daniela Schwambach — Tratamento Capilar Clínico (Método MSC)
   Paleta verde escuro + dourado · Newsreader + Manrope
   Jardim da Penha, Vitória - ES
   =========================================================== */

:root {
  --cream:      #F6F3EA;
  --cream-2:    #EFEADB;
  --paper:      #FBF9F2;
  --forest:     #12271F;   /* verde quase-preto, dark base */
  --forest-2:   #1B3A2C;
  --green:      #2C5E46;   /* verde médio accent */
  --green-dk:   #1F4835;
  --ink:        #24312A;
  --ink-soft:   #5B6A61;
  --gold:       #BF9A54;   /* dourado */
  --gold-dk:    #9C7C3A;
  --gold-soft:  #D8C08A;
  --sand:       #E2DBC9;

  --max: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: light; }

/* âncoras não passam por baixo da nav sticky */
[id] { scroll-margin-top: 90px; }

.btn, .nav__links a, .faq__item summary, .foot__nav a, .brand { touch-action: manipulation; }

body {
  margin: 0;
  background-color: var(--cream);
  background-image:
    radial-gradient(1200px 620px at 82% -12%, rgba(44,94,70,0.10), transparent 60%),
    radial-gradient(900px 520px at -12% 18%, rgba(191,154,84,0.09), transparent 55%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

::selection { background: var(--green); color: var(--cream); }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Tipografia base ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.1; letter-spacing: -0.011em; }

.eyebrow {
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--sans);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1.4rem;
}
.eyebrow--center { justify-content: center; text-align: center; }
.eyebrow--light { color: var(--gold); }
.eyebrow__rule { height: 1px; width: 2.4rem; background: var(--gold); flex: none; }
.eyebrow--center .eyebrow__rule { width: clamp(1.5rem, 6vw, 3.5rem); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.98rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background-color .3s var(--ease),
              color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn__wa { width: 1.15em; height: 1.15em; flex: none; }
.btn--solid {
  background: var(--green); color: var(--cream);
  box-shadow: 0 12px 26px -14px rgba(18,39,31,0.75);
}
.btn--solid:hover { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(18,39,31,0.9); }
.btn--gold {
  background: var(--gold); color: var(--forest);
  box-shadow: 0 12px 26px -14px rgba(156,124,58,0.7);
}
.btn--gold:hover { background: var(--gold-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(156,124,58,0.85); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--sand);
}
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--text {
  padding: 0.95rem 0.25rem; background: none; color: var(--ink);
}
.btn--text span { transition: transform .3s var(--ease); color: var(--green); }
.btn--text:hover span { transform: translateX(5px); }
.btn--lg { padding: 1.18rem 2.4rem; font-size: 1.03rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--forest) 90%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191,154,84,0.18);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav:hover { border-color: rgba(191,154,84,0.4); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.05rem; }

.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; color: var(--ink); }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; letter-spacing: -0.01em; }
.brand__sub {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-dk); margin-top: 0.34rem;
}

.nav__links { display: none; gap: 2rem; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; text-decoration: none; color: var(--ink-soft);
  position: relative; transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px;
  background: var(--green); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: none; }

/* Nav em verde: texto claro para contraste */
.nav .brand__name { color: var(--cream); }
.nav .brand__sub { color: var(--gold-soft); }
.nav__links a { color: #C6D2C9; }
.nav__links a::after { background: var(--gold); }
.nav__links a:hover { color: var(--cream); }
.nav__cta.btn--ghost { color: var(--cream); border-color: rgba(246,243,234,0.32); }
.nav__cta.btn--ghost:hover { color: var(--forest); background: var(--gold-soft); border-color: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative; overflow: hidden;
  background:
    radial-gradient(820px 540px at 82% 42%, rgba(44,94,70,0.16), transparent 62%),
    linear-gradient(168deg, #F5F1E5 0%, #EEE9D9 62%, #E7E2CE 100%);
  border-bottom: 1px solid var(--sand);
}
.hero__inner { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }

.hero__title {
  font-size: clamp(2.35rem, 5.4vw, 4rem);
  line-height: 1.06;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--green); font-weight: 500; }

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.hero__note { display: flex; align-items: center; gap: 0.6rem; margin: 1.7rem 0 0; font-size: 0.9rem; color: var(--ink-soft); }
.hero__note-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--green); flex: none; }

/* portrait */
.hero__portrait { position: relative; justify-self: center; width: 100%; max-width: 380px; }
.hero__portrait::before {
  content: ""; position: absolute; z-index: 0;
  left: -20px; top: -20px; width: 62%; height: 60%;
  background: linear-gradient(150deg, var(--green), var(--forest));
  border-radius: 14px;
}
.hero__portrait .portrait, .hero__portrait .portrait__badge { position: relative; z-index: 1; }
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: linear-gradient(160deg, var(--cream-2), #E6E0CC);
  border: 1px solid var(--sand);
  box-shadow: 0 44px 66px -42px rgba(18,39,31,0.55);
  outline: 1px solid var(--gold); outline-offset: 10px;
  overflow: hidden;
}
.portrait__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 68% 26%;
  border-radius: inherit;
}
.portrait--tall { aspect-ratio: 3 / 4; max-width: 430px; }
.portrait--tall .portrait__img { object-position: 50% 22%; }
.portrait__badge {
  position: absolute; bottom: -14px; right: -10px;
  background: var(--forest); color: var(--gold-soft);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.55rem 0.95rem; border-radius: 999px;
  box-shadow: 0 14px 24px -14px rgba(18,39,31,0.85);
}

/* proof bar */
.proof {
  list-style: none; margin: clamp(2.5rem, 6vw, 4rem) 0 0; padding: 1.8rem 0 0;
  border-top: 1px solid var(--sand);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 1rem;
}
.proof li { display: flex; flex-direction: column; gap: 0.2rem; }
.proof strong { font-family: var(--serif); font-size: clamp(1.15rem, 2.6vw, 1.5rem); font-weight: 600; color: var(--ink); line-height: 1.1; }
.proof span { font-size: 0.8rem; letter-spacing: 0.02em; color: var(--ink-soft); }

/* ---------- Section base ---------- */
.section { padding-block: clamp(4rem, 10vw, 7.5rem); }
.section--warm { background: linear-gradient(168deg, #F5EFE1 0%, #ECE6D4 100%); }
.section--paper { background: var(--paper); }

.section__head { display: grid; gap: 1.2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 660px; }
.section__head--center { margin-inline: auto; text-align: center; justify-items: center; }
.section__title { font-size: clamp(1.9rem, 4.5vw, 3rem); text-wrap: balance; }
.section__intro { color: var(--ink-soft); font-size: 1.08rem; margin: 0; max-width: 56ch; }
.section--dark .section__intro, .section--center .section__intro { }

/* ---------- Dor (lead block) ---------- */
.pain { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.pain__body p { font-size: clamp(1.2rem, 2vw, 1.45rem); color: var(--ink); line-height: 1.5; margin: 0 0 1.3rem; max-width: 42ch; font-family: var(--serif); font-weight: 400; }
.pain__body p:last-child { margin-bottom: 0; }
.pain__body strong { color: var(--green); font-style: italic; }
.pain__aside {
  background: linear-gradient(158deg, var(--cream-2), #ECE6D4);
  border: 1px solid var(--sand);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: clamp(1.6rem, 3vw, 2.1rem);
}
.pain__aside-label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green);
  margin: 0 0 1rem;
}
.pain__aside p { color: var(--ink-soft); margin: 0 0 1rem; font-size: 1.02rem; line-height: 1.6; }
.pain__aside p:last-child { margin-bottom: 0; }

/* ---------- Método MSC (lista horizontal com divisores) ---------- */
.method { list-style: none; margin: 0; padding: 0; display: grid; }
.mrow {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon title" "icon text";
  column-gap: clamp(1rem, 2.5vw, 1.6rem); row-gap: 0.45rem;
  align-items: start;
  padding: clamp(1.7rem, 3.5vw, 2.6rem) 0;
  border-top: 1px solid var(--sand);
}
.mrow:last-child { border-bottom: 1px solid var(--sand); }
.mrow__icon {
  grid-area: icon; align-self: start;
  width: 3rem; height: 3rem; border-radius: 50%; flex: none;
  display: grid; place-content: center;
  background: color-mix(in srgb, var(--green) 12%, transparent);
  color: var(--green);
}
.mrow__icon svg { width: 1.5rem; height: 1.5rem; }
.mrow__title { grid-area: title; font-size: clamp(1.35rem, 2.4vw, 1.7rem); align-self: center; }
.mrow__text { grid-area: text; margin: 0; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; max-width: 64ch; }

@media (min-width: 820px) {
  .mrow {
    grid-template-columns: auto minmax(220px, 0.85fr) 1.5fr;
    grid-template-areas: "icon title text";
    align-items: center; column-gap: clamp(1.5rem, 3vw, 2.8rem); row-gap: 0;
    padding: clamp(2rem, 3.5vw, 2.8rem) 0;
  }
  .mrow__title { align-self: center; }
}

/* ---------- Resultados (antes | depois lado a lado) ---------- */
.results { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.4rem, 3vw, 2rem); max-width: 780px; margin-inline: auto; }
.result {
  background: var(--paper); border: 1px solid var(--sand); border-radius: 16px;
  padding: clamp(0.9rem, 2vw, 1.3rem);
  box-shadow: 0 30px 46px -38px rgba(18,39,31,0.4);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.result:hover { transform: translateY(-4px); box-shadow: 0 40px 54px -38px rgba(18,39,31,0.5); }
.result__pair {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: clamp(0.5rem, 1.6vw, 1rem);
}
.result__shot { position: relative; margin: 0; border-radius: 10px; overflow: hidden; background: #101010; aspect-ratio: 3 / 4; }
.result__shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.result__lbl {
  position: absolute; top: 0.55rem; left: 0.55rem;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 999px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.result__lbl--before { background: rgba(18,39,31,0.75); color: var(--cream); }
.result__lbl--after { background: var(--gold); color: var(--forest); }
.result__arrow {
  display: grid; place-content: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: color-mix(in srgb, var(--green) 14%, transparent);
  color: var(--green); font-size: 1rem; font-weight: 700; flex: none;
}
.result__cap { margin: 0.9rem 0.2rem 0.2rem; font-size: 0.92rem; color: var(--ink-soft); text-align: center; }
.results__note { text-align: center; font-size: 0.82rem; color: var(--ink-soft); font-style: italic; margin: 1.8rem 0 0; opacity: 0.85; }
@media (max-width: 480px) {
  .result__arrow { width: 1.5rem; height: 1.5rem; font-size: 0.8rem; }
  .result__lbl { font-size: 0.55rem; padding: 0.25rem 0.5rem; }
}

/* ---------- Carrossel de resultados ---------- */
.carousel { position: relative; max-width: 640px; margin-inline: auto; }
.carousel__track {
  display: flex; list-style: none; margin: 0; padding: 0;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 100%; scroll-snap-align: center; padding: 0.3rem; box-sizing: border-box; }
.slide .result:hover { transform: none; box-shadow: 0 30px 46px -38px rgba(18,39,31,0.4); }

.carousel__nav {
  position: absolute; top: 44%; transform: translateY(-50%);
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  display: grid; place-content: center; cursor: pointer; z-index: 2;
  background: var(--paper); color: var(--green); border: 1px solid var(--sand);
  box-shadow: 0 12px 26px -14px rgba(18,39,31,0.55);
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.carousel__nav svg { width: 1.35rem; height: 1.35rem; }
.carousel__nav:hover { background: var(--green); color: var(--cream); }
.carousel__nav:active { transform: translateY(-50%) scale(0.94); }
.carousel__nav--prev { left: -0.4rem; }
.carousel__nav--next { right: -0.4rem; }
@media (min-width: 900px) {
  .carousel__nav--prev { left: -3.6rem; }
  .carousel__nav--next { right: -3.6rem; }
}

.carousel__dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: 1.5rem; }
.carousel__dot {
  width: 0.6rem; height: 0.6rem; border-radius: 50%; padding: 0; border: none;
  cursor: pointer; background: var(--sand); flex: none;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.carousel__dot:hover { background: var(--gold); }
.carousel__dot[aria-selected="true"] { background: var(--green); transform: scale(1.3); }

/* ---------- Objeção (band) ---------- */
.objection {
  background:
    radial-gradient(600px 320px at 88% 0%, rgba(191,154,84,0.18), transparent 62%),
    var(--forest);
  color: var(--cream);
  padding-block: clamp(3rem, 6vw, 4.75rem);
}
.objection__inner { max-width: 760px; }
.objection h2 { color: var(--cream); font-size: clamp(1.7rem, 4vw, 2.6rem); text-wrap: balance; margin-bottom: 1.3rem; }
.objection h2 em { font-style: italic; color: var(--gold-soft); }
.objection p { color: #C6D2C9; font-size: 1.12rem; margin: 0; max-width: 58ch; }

/* ---------- Como funciona (dark steps) ---------- */
.section--dark {
  background:
    radial-gradient(820px 420px at 90% 0%, rgba(191,154,84,0.14), transparent 60%),
    var(--forest);
  color: var(--cream);
}
.section--dark .section__title { color: var(--cream); }
.section--dark .section__intro { color: #C6D2C9; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.5rem, 3vw, 2.2rem); counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; column-gap: 1.4rem; align-items: start;
  padding-bottom: clamp(1.5rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--sand);
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step__num {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600; font-style: italic;
  color: var(--gold-dk); width: 2.2ch; line-height: 1.2;
}
.step h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 0.3rem; }
.step p { margin: 0; color: var(--ink-soft); max-width: 58ch; }

/* ---------- Valores (avaliação + pacote) ---------- */
.pricing { display: grid; gap: clamp(1.4rem, 3vw, 2rem); align-items: stretch; }
@media (min-width: 860px) { .pricing { grid-template-columns: 1fr 1fr; } }

.pcard {
  background: var(--paper); border: 1px solid var(--sand); border-radius: 18px;
  padding: clamp(1.8rem, 3.5vw, 2.7rem);
  box-shadow: 0 40px 60px -46px rgba(18,39,31,0.5);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.pcard--entry::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.pcard--package { background: linear-gradient(160deg, var(--paper), var(--cream-2)); }
.pcard__tag { font-family: var(--sans); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin: 0 0 0.7rem; }
.pcard__tag--alt { color: var(--gold-dk); }
.pcard__name { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.7rem; text-wrap: balance; }
.pcard__price { display: flex; align-items: baseline; gap: 0.55rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.pcard__price b { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.2rem); font-weight: 600; color: var(--ink); line-height: 1; }
.pcard__price span { color: var(--ink-soft); font-size: 0.92rem; }
.pcard__list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 0.85rem; }
.pcard__list li { display: grid; grid-template-columns: 1.3rem 1fr; gap: 0.55rem; align-items: start; color: var(--ink); font-size: 0.99rem; line-height: 1.5; }
.pcard__list li::before { content: "✓"; color: var(--green); font-weight: 700; font-size: 0.95rem; line-height: 1.5; }
.pcard__list--alt li::before { color: var(--gold-dk); }

.pcard__sameday {
  background: color-mix(in srgb, var(--gold) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 52%, transparent);
  border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1.6rem;
  display: grid; gap: 0.2rem;
}
.pcard__sameday-top { font-size: 0.85rem; color: var(--ink-soft); }
.pcard__sameday strong { font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.4rem); font-weight: 600; color: var(--gold-dk); }
.pcard__sameday-bot { font-size: 0.85rem; color: var(--ink-soft); }

.pcard__note { color: var(--ink-soft); font-size: 0.92rem; font-style: italic; line-height: 1.55; margin: 0 0 1.6rem; }
.pcard .btn { width: 100%; margin-top: auto; }
.pcard__micro { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin: 0.9rem 0 0; }

.pricing__foot { margin-top: clamp(1.8rem, 3.5vw, 2.6rem); display: grid; gap: 0.9rem; justify-items: center; text-align: center; }
.offer__reassure {
  display: grid; grid-template-columns: auto 1fr; gap: 0.65rem; align-items: start; text-align: left;
  color: var(--ink); font-size: 0.98rem; line-height: 1.55;
  background: color-mix(in srgb, var(--green) 8%, transparent);
  border-radius: 10px; padding: 0.9rem 1.1rem; margin: 0; max-width: 62ch;
}
.offer__reassure svg { width: 1.15rem; height: 1.15rem; color: var(--green); margin-top: 0.15rem; flex: none; }
.offer__pay { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; margin: 0; }

/* ---------- Sobre ---------- */
.sobre { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.sobre__media { justify-self: center; width: 100%; max-width: 420px; }
.sobre__body p { color: var(--ink-soft); margin: 0 0 1.1rem; max-width: 54ch; }
.sobre__creds { font-style: italic; color: var(--ink) !important; font-size: 0.95rem; }
.sobre__body .btn--text { margin-top: 0.6rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--sand); max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--sand); }
.faq__item summary {
  list-style: none; cursor: pointer;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.4rem); font-weight: 500; color: var(--ink);
  padding: 1.5rem 2.5rem 1.5rem 0; position: relative;
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-weight: 400; font-size: 1.6rem; color: var(--green);
  transition: transform .3s var(--ease);
}
.faq__item summary:hover { color: var(--green); }
.faq__item p { margin: 0 0 1.6rem; color: var(--ink-soft); max-width: 68ch; }
/* painel animado (JS controla a altura ao abrir/fechar) */
.faq__panel { overflow: hidden; }
.faq__item.is-open summary::after { transform: translateY(-50%) rotate(45deg); }

/* ---------- CTA final ---------- */
.cta {
  margin: 0 var(--pad) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(600px 320px at 50% 0%, rgba(191,154,84,0.2), transparent 65%),
    var(--forest);
  color: var(--cream);
  border-radius: 20px;
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
}
.cta__inner { max-width: 720px; margin-inline: auto; text-align: center; padding-inline: 0; }
.cta__title { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--cream); text-wrap: balance; margin-bottom: 1.4rem; }
.cta__title em { font-style: italic; color: var(--gold-soft); }
.cta__lead { color: #C6D2C9; font-size: 1.1rem; max-width: 50ch; margin: 0 auto 2.4rem; }
.cta__micro { font-size: 0.86rem; color: var(--gold-soft); margin: 1.2rem 0 0; letter-spacing: 0.02em; }
.cta .btn--gold { margin-inline: auto; }

/* ---------- CTA fixo no mobile ---------- */
.dock {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 1.5rem);
  padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--forest) 96%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(191,154,84,0.35);
  box-shadow: 0 -10px 30px -18px rgba(18,39,31,0.85);
}
.dock__info { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.dock__info strong { font-size: 0.85rem; color: var(--cream); font-weight: 600; }
.dock__info span { font-size: 0.72rem; color: var(--gold-soft); }
.dock__btn { padding: 0.72rem 1.4rem; font-size: 0.9rem; flex: none; }
@media (min-width: 760px) { .dock { display: none; } }
@media (max-width: 759px) { body { padding-bottom: 76px; } }

/* ---------- Footer ---------- */
.foot {
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(191,154,84,0.1), transparent 60%),
    var(--forest-2);
  color: var(--cream);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.foot__inner { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.foot__top { display: grid; gap: 2.25rem; }
.foot .brand__name { color: var(--cream); }
.foot .brand__sub { color: var(--gold-soft); }
.foot__tagline { color: #9FB0A6; font-size: 0.9rem; line-height: 1.55; margin: 1.1rem 0 0; max-width: 34ch; }
.foot__h {
  display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); margin-bottom: 0.9rem;
}
.foot__col { display: grid; gap: 0.5rem; align-content: start; font-size: 0.92rem; color: #C6D2C9; }
.foot__col a { color: var(--gold-soft); text-decoration: none; transition: color .25s var(--ease); }
.foot__col a:hover { color: var(--cream); }
.foot__map { line-height: 1.55; }
.foot__map span { opacity: 0.7; font-size: 0.85em; }
.foot__nav a { width: fit-content; }
.foot__meta { border-top: 1px solid rgba(191,154,84,0.2); padding-top: 1.6rem; }
.foot__meta p { margin: 0; font-size: 0.8rem; color: #9FB0A6; }

/* ===========================================================
   Responsivo
   =========================================================== */
@media (min-width: 640px) {
  .proof { gap: 1.4rem 1.6rem; }
}

@media (min-width: 760px) {
  .pain { grid-template-columns: 1.1fr 0.9fr; }
  .foot__top { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .hero__inner { grid-template-columns: 1.12fr 0.88fr; }
  .hero__portrait { justify-self: end; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem); }
  .step { border-bottom: none; padding-bottom: 0; }
  .offer { grid-template-columns: 0.95fr 1.05fr; }
  .offer__aside { padding-top: 1rem; }
  .sobre { grid-template-columns: 0.85fr 1.15fr; }
  .foot__top { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #22c15c; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.28), 0 2px 6px rgba(0,0,0,.18);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.wa-float svg { width: 40px; height: 40px; }
.wa-float:hover {
  background: #1eae53; transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,.32), 0 3px 8px rgba(0,0,0,.2);
}
.wa-float:active { transform: scale(.96); }
@media (max-width: 759px) { .wa-float { bottom: 88px; right: 18px; width: 60px; height: 60px; } .wa-float svg { width: 36px; height: 36px; } }

/* ---------- Acessibilidade ---------- */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
