/* ==========================================================================
   ANA LUIZA — MANICURE DE VALOR | Design System
   ========================================================================== */

:root {
  /* Paleta oficial da marca */
  --gold: #E6B477;
  --gold-light: #F3D9AF;
  --gold-dark: #C99A55;
  --gold-gradient: linear-gradient(120deg, #F0D9A8 0%, #E6B477 45%, #C99A55 100%);
  --gold-gradient-soft: linear-gradient(180deg, rgba(230,180,119,.16), rgba(230,180,119,0));

  --graphite: #575756;
  --charcoal: #2A2A29;
  --charcoal-deep: #1C1C1B;

  --cream: #FAF6F0;
  --cream-dark: #F1E7D8;
  --peach: #F5E3D6;
  --white: #FFFFFF;

  --ink: #3A342C;
  --ink-soft: #6B6259;

  --font-display: 'Jost', sans-serif;
  --font-body: 'Jost', sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-gold: 0 20px 45px -15px rgba(201, 154, 85, .45);
  --shadow-soft: 0 15px 40px -20px rgba(42, 42, 41, .25);

  --container: 1180px;
  --urgency-h: 42px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.15;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-dark);
}
.section--dark .eyebrow { color: var(--gold-light); }
.section--dark .eyebrow::before { background: var(--gold-light); }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 18px;
}
.section-title em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.7;
}
.section--dark .section-sub { color: #C9C6C2; }
.section--dark .section-title { color: var(--white); }

.section {
  position: relative;
  padding: 100px 0;
}
.section--dark {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-deep) 100%);
  color: var(--white);
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(230,180,119,.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(230,180,119,.07), transparent 45%);
  pointer-events: none;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-gradient);
  color: var(--charcoal-deep);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 25px 50px -12px rgba(201, 154, 85, .6);
}
.btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--ink);
}
.section--dark .btn--outline { color: var(--white); border-color: var(--gold-light); }
.btn--outline:hover { background: rgba(230,180,119,.12); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 20px 40px; font-size: 1.05rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
/* ---------- Urgency bar ---------- */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 510;
  min-height: var(--urgency-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(90deg, var(--charcoal-deep), var(--charcoal));
  text-align: center;
}
.urgency-bar p {
  color: var(--gold-light);
  font-size: .78rem;
  letter-spacing: .01em;
  line-height: 1.35;
}
.urgency-bar strong { color: var(--white); }

.header {
  position: fixed;
  top: var(--urgency-h); left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease, top .2s ease;
}
.header.is-scrolled {
  background: rgba(250, 246, 240, .88);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -15px rgba(42,42,41,.15);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}
.header__logo img { height: 42px; width: auto; }
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header__logo-text strong {
  font-size: 1.05rem;
  letter-spacing: .18em;
  color: var(--ink);
}
.header__logo-text span {
  font-size: .58rem;
  letter-spacing: .28em;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.header__nav a {
  font-size: .88rem;
  letter-spacing: .03em;
  color: var(--ink-soft);
  position: relative;
  transition: color .25s;
}
.header__nav a:hover { color: var(--ink); }
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold-dark);
  transition: width .3s ease;
}
.header__nav a:hover::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 16px; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.header__burger span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
body.nav-open .header__burger { visibility: hidden; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--charcoal-deep);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform .45s ease;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  color: var(--white);
  font-size: 1.4rem;
  font-family: var(--font-display);
  letter-spacing: .05em;
}
.mobile-nav .btn { margin-top: 10px; }
.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 1.8rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: calc(170px + var(--urgency-h)) 0 100px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--peach) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(230,180,119,.35), transparent 65%);
  filter: blur(10px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 34px;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__price-hint {
  font-size: .85rem;
  color: var(--ink-soft);
}
.hero__price-hint strong { color: var(--ink); }

.hero__badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--ink-soft);
}
.hero__badge svg { width: 18px; height: 18px; color: var(--gold-dark); flex-shrink: 0; }

.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(230,180,119,.5);
  box-shadow: inset 0 0 0 10px rgba(250,246,240,.6);
}
.hero__ring {
  position: absolute;
  top: -34px; left: -34px;
  width: 130px; height: 130px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: .55;
}
.hero__float-card {
  position: absolute;
  bottom: -26px; left: -30px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero__float-card .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-dark); }
.hero__float-card small { display:block; font-size: .72rem; color: var(--ink-soft); line-height: 1.3; }

/* ==========================================================================
   MARQUEE (transição)
   ========================================================================== */
.marquee {
  background: var(--charcoal-deep);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee__track span::after { content: '✦'; color: var(--gold-dark); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   DORES / VIRADA
   ========================================================================== */
.pain {
  background: var(--cream);
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.pain__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid rgba(230,180,119,.25);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pain__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pain__card svg { width: 26px; height: 26px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.pain__card p { color: var(--ink-soft); line-height: 1.6; font-size: .98rem; }
.pain__flip {
  margin-top: 60px;
  text-align: center;
  padding: 44px 30px;
  border-radius: var(--radius);
  background: var(--gold-gradient);
  color: var(--charcoal-deep);
}
.pain__flip h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); max-width: 700px; margin: 0 auto; }

/* ==========================================================================
   HISTÓRIA
   ========================================================================== */
.story { background: var(--peach); }
.story__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.story__media { position: relative; }
.story__media img {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.story__quote-mark {
  position: absolute;
  top: -20px; right: -20px;
  width: 60px; height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-dark);
}
.story__text p {
  color: var(--ink-soft);
  line-height: 1.85;
  font-size: 1.03rem;
  margin-bottom: 18px;
}
.story__text strong { color: var(--ink); }
.story__timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 34px 0 6px;
  position: relative;
}
.story__timeline::before {
  content: "";
  position: absolute;
  top: 7px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,154,85,0), var(--gold) 12%, var(--gold) 88%, rgba(201,154,85,0));
}
.story__milestone {
  position: relative;
  padding: 26px 12px 0 0;
  text-align: left;
}
.story__milestone::before {
  content: "";
  position: absolute;
  top: 2px; left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 0 4px var(--peach);
}
.story__milestone-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.story__milestone-label {
  display: block;
  margin-top: 3px;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.story__highlight {
  margin-top: 26px;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ==========================================================================
   MÉTODO (stats, dark)
   ========================================================================== */
.method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.method__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(230,180,119,.22);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}
.method__card:hover { transform: translateY(-6px); border-color: var(--gold); }
.method__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.method__card span {
  font-size: .85rem;
  color: #C9C6C2;
  line-height: 1.4;
  display: block;
}
.method__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.method__pillar {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
}
.method__pillar-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--charcoal-deep);
}
.method__pillar h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.method__pillar p { color: #C9C6C2; font-size: .92rem; line-height: 1.6; }

/* ==========================================================================
   MÓDULOS
   ========================================================================== */
.modules__tabs {
  display: flex;
  gap: 10px;
  margin: 46px 0 34px;
  flex-wrap: wrap;
}
.modules__tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .85rem;
  border: 1px solid rgba(230,180,119,.35);
  color: #C9C6C2;
  transition: all .3s ease;
}
.modules__tab.is-active,
.modules__tab:hover {
  background: var(--gold-gradient);
  color: var(--charcoal-deep);
  border-color: transparent;
}
.modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(230,180,119,.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.module-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(230,180,119,.06);
}
.module-card__tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal-deep);
  background: var(--gold-gradient);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.module-card h4 {
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.module-card p {
  color: #B9B6B1;
  font-size: .88rem;
  line-height: 1.55;
}
.module-card--bonus {
  border-style: dashed;
  border-color: rgba(230,180,119,.4);
}

/* ==========================================================================
   SESSÕES (timeline)
   ========================================================================== */
.sessions { background: var(--cream); }
.timeline {
  position: relative;
  margin-top: 56px;
  padding-left: 46px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(230,180,119,.15));
}
.timeline__item {
  position: relative;
  padding-bottom: 40px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -46px; top: 2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--charcoal-deep);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--cream);
}
.timeline__card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  border: 1px solid rgba(230,180,119,.22);
}
.timeline__card h4 { font-size: 1.08rem; margin-bottom: 6px; }
.timeline__card .obj { color: var(--gold-dark); font-size: .82rem; font-weight: 600; margin-bottom: 8px; display:block; }
.timeline__card p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; }
.timeline__card .task {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--ink);
  background: var(--peach);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ==========================================================================
   PROVA SOCIAL
   ========================================================================== */
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
}
.proof-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(230,180,119,.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease;
}
.proof-card:hover { transform: translateY(-6px); }
.proof-card img { width: 100%; display: block; }
.proof__row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(230,180,119,.18);
}
.proof__row img {
  border-radius: 20px;
  width: 260px;
  aspect-ratio: 4/5;
  object-fit: cover;
  flex-shrink: 0;
}
.proof__row-text h3 { color: var(--white); margin-bottom: 14px; font-size: 1.5rem; }
.proof__row-text p { color: #C9C6C2; line-height: 1.7; }

/* ==========================================================================
   PARA QUEM É
   ========================================================================== */
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.audience__media { position: relative; }
.audience__media img {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.audience__list { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.audience__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(230,180,119,.22);
}
.audience__item svg { width: 22px; height: 22px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.audience__item p { color: var(--ink); font-size: .96rem; line-height: 1.5; }
.audience__item strong { display: block; margin-bottom: 2px; }

/* ==========================================================================
   OFERTA
   ========================================================================== */
.offer { text-align: center; }
.offer__stack {
  max-width: 640px;
  margin: 50px auto 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(230,180,119,.3);
  border-radius: 24px;
  padding: 44px;
}
.offer__list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; text-align: left; }
.offer__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(230,180,119,.25);
  color: #E7E4E0;
  font-size: .95rem;
}
.offer__list li:last-child { border-bottom: none; padding-bottom: 0; }
.offer__list li span:last-child { color: var(--gold-light); font-weight: 600; }
.offer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(230,180,119,.3);
}
.offer__total-label { color: #C9C6C2; font-size: .95rem; }
.offer__total-value { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-light); }

.offer__price-box {
  margin-top: 40px;
  padding: 40px;
  border-radius: 24px;
  background: var(--gold-gradient);
  color: var(--charcoal-deep);
  max-width: 460px;
  margin-inline: auto;
  position: relative;
}
.offer__old-price {
  font-size: 1rem;
  text-decoration: line-through;
  opacity: .65;
}
.offer__main-price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  margin: 6px 0 4px;
}
.offer__main-price small { font-size: 1rem; font-weight: 500; }
.offer__cash {
  font-size: .9rem;
  margin-bottom: 26px;
  opacity: .85;
}
.offer__badge-tag {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--charcoal-deep);
  color: var(--gold-light);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.offer__guarantee {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
  color: #C9C6C2;
  font-size: .88rem;
  max-width: 480px;
  margin-inline: auto;
}
.offer__guarantee svg { width: 32px; height: 32px; color: var(--gold-light); flex-shrink: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__list { max-width: 760px; margin: 50px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(230,180,119,.25);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  cursor: pointer;
}
.faq-item__q h4 { font-size: 1.02rem; font-weight: 500; }
.faq-item__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform .35s ease;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold-dark);
}
.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after { width: 1.5px; height: 10px; transition: transform .3s ease; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item__a p {
  padding: 0 4px 24px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: .95rem;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta {
  background: linear-gradient(160deg, var(--peach), var(--cream-dark));
  text-align: center;
}
.final-cta h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.final-cta p { color: var(--ink-soft); max-width: 540px; margin: 0 auto 34px; line-height: 1.7; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--charcoal-deep);
  color: #C9C6C2;
  padding: 70px 0 30px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(230,180,119,.18);
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { height: 46px; }
.footer__brand-text strong { display: block; color: var(--white); letter-spacing: .16em; font-family: var(--font-display); }
.footer__brand-text span { font-size: .62rem; letter-spacing: .24em; color: var(--gold-light); text-transform: uppercase; }
.footer__tagline { max-width: 320px; font-size: .9rem; line-height: 1.6; }

.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230,180,119,.35);
  transition: all .3s ease;
}
.footer__social a:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: translateY(-3px);
}
.footer__social svg { width: 22px; height: 22px; color: var(--gold-light); transition: color .3s; }
.footer__social a:hover svg { color: var(--charcoal-deep); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: .8rem;
}
.footer__bottom a { color: var(--gold-light); }
.footer__bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- Sticky CTA bar (mobile) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--charcoal-deep);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(100%);
  transition: transform .25s ease;
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,.4);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__price { color: var(--white); font-size: .85rem; }
.sticky-cta__price strong { color: var(--gold-light); font-family: var(--font-display); font-size: 1.05rem; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 410;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.4);
  transition: transform .3s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: white; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ==========================================================================
   LEGAL PAGES (Política de Privacidade etc.)
   ========================================================================== */
.legal {
  padding-top: calc(150px + var(--urgency-h));
}
.legal__container {
  max-width: 820px;
}
.legal__updated {
  color: var(--ink-soft);
  font-size: .9rem;
  margin-bottom: 40px;
}
.legal p {
  margin-bottom: 18px;
  line-height: 1.8;
}
.legal ul {
  margin-bottom: 24px;
}
.legal ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-gradient);
}
.legal h2 {
  font-size: 1.35rem;
  margin: 48px 0 16px;
}
.legal a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__back {
  margin-top: 50px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .method__grid { grid-template-columns: repeat(2, 1fr); }
  .modules__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid, .audience__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  body { padding-top: var(--urgency-h); }
  .header { position: static; top: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 380px; margin: 0 auto; }
  .hero { padding-top: 40px; }
  .legal { padding-top: 40px; }
  .pain__grid { grid-template-columns: 1fr; }
  .method__pillars { grid-template-columns: 1fr; }
  .story__timeline { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .story__timeline::before { display: none; }
  .story__milestone { padding: 0 12px 0 20px; }
  .story__milestone::before { top: 6px; }
  .proof__row { flex-direction: column; text-align: center; }
  .proof__row img { width: 220px; margin: 0 auto; }
  .sticky-cta { display: flex; }
  #modulos { padding-top: 40px !important; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .method__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .modules__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 38px; }
  .timeline__dot { left: -38px; width: 28px; height: 28px; font-size: .75rem; }
  .offer__stack { padding: 30px 24px; }
  .offer__price-box { padding: 30px 24px; }
  .footer__top { flex-direction: column; }
  .wa-float { width: 54px; height: 54px; bottom: 90px; }
}

/* Link para a Mentoria Premium */
.header__nav-highlight { color: var(--gold-dark) !important; font-weight: 500; }
.header__nav-highlight:hover { color: var(--gold) !important; }
