/* ---------- TOKENS ---------- */
:root {
  --navy: #0E2A47;
  --navy-2: #14365A;
  --navy-deep: #081A2E;
  --gold: #C9A36B;
  --gold-soft: #E2C99A;
  --rose: #E8526F;
  --rose-soft: #F8D7DE;
  --rose-bg: #FCEDF1;
  --bg: #FAF7F2;
  --bg-warm: #F2EDE4;
  --ink: #0F1A2E;
  --muted: #5A6378;
  --line: rgba(14, 42, 71, 0.12);
  --line-soft: rgba(14, 42, 71, 0.06);
  --shadow-card: 0 30px 60px -30px rgba(14, 42, 71, 0.25);
  --serif: "DM Serif Display", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- LAYOUT HELPERS ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1040px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--gold-soft); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.08; }
h1 { font-size: clamp(34px, 3.6vw, 54px); }
h2 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.05; }
h3 { font-size: clamp(22px, 2vw, 28px); }
h4 { font-size: 20px; line-height: 1.3; }

.lead { font-size: clamp(16px, 1.3vw, 20px); color: var(--muted); line-height: 1.55; max-width: min(56ch, 100%); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 14px 30px -10px rgba(14, 42, 71, 0.4);
  white-space: nowrap;
}
@media (max-width: 480px) {
  /* Só nos botões inline (hero, steps) — não no float-cta que já tem width:100% */
  .hero-cta-row .btn,
  .steps-cta .btn {
    white-space: normal;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  .btn .arrow { flex-shrink: 0; }
}
.btn:hover { transform: translateY(-2px); background: var(--navy-deep); box-shadow: 0 18px 36px -10px rgba(14, 42, 71, 0.5); }
.btn .arrow {
  width: 30px; height: 30px; border-radius: 999px; background: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.btn .arrow svg { width: 14px; height: 14px; display: block; color: var(--navy); stroke: var(--navy); }
.btn.btn-rose .arrow svg { color: var(--rose); stroke: var(--rose); }
.btn:hover .arrow { transform: translateX(4px); }
.btn.btn-light { background: #fff; color: var(--navy); }
.btn.btn-light:hover { background: var(--gold-soft); }
.btn.btn-rose { background: var(--rose); }
.btn.btn-rose:hover { background: #d63a58; }
.btn.btn-rose .arrow { background: #fff; color: var(--rose); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(14, 42, 71, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s ease;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 19px;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); }
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--gold-soft); }
.nav-cta { padding: 12px 22px; font-size: 14px; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.nav-hamburger:hover { background: var(--line-soft); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy-deep);
  flex-direction: column;
  justify-content: center;
  z-index: 99;
  padding: 100px 40px 48px;
  min-height: 100dvh;
  visibility: hidden;
  clip-path: circle(0% at calc(100% - 52px) 44px);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.18, 1),
              visibility 0s linear 0.55s;
}
.nav-mobile.open {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 52px) 44px);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.18, 1),
              visibility 0s linear 0s;
}

/* Links com entrada escalonada */
.nav-mobile a,
.nav-mobile .nav-mobile-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.nav-mobile.open a:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.18s; }
.nav-mobile.open a:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.24s; }
.nav-mobile.open a:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.30s; }
.nav-mobile.open a:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.36s; }
.nav-mobile.open .nav-mobile-cta  { opacity: 1; transform: none; transition-delay: 0.44s; }

.nav-mobile a {
  font-size: clamp(22px, 5vw, 32px);
  font-family: var(--serif);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s ease, opacity 0.35s ease, transform 0.35s ease;
}
.nav-mobile a:hover { color: var(--gold-soft); }
.nav-mobile a::after { content: "›"; font-size: 24px; color: var(--gold); font-family: var(--sans); }
.nav-mobile .nav-mobile-cta { margin-top: 32px; }
.nav-mobile .nav-mobile-cta .btn {
  width: 100%;
  justify-content: center;
  background: var(--rose);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(232, 82, 111, 0.5);
  padding: 13px 22px;
  font-size: 14px;
}
.nav-mobile .nav-mobile-cta .btn::after { display: none; }
.nav-mobile .nav-mobile-cta .btn .arrow { background: rgba(255,255,255,0.25); }
.nav-mobile .nav-mobile-cta .btn .arrow svg { color: #fff; stroke: #fff; }

/* Overlay — não usado com menu full-screen */
.nav-overlay { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 160px 0 140px;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-headline { margin: 28px 0 24px; }
.hero-headline em {
  font-style: italic;
  color: var(--rose);
  position: relative;
  display: inline-block;
}
.hero-sub {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 32px 0 36px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--ink); font-weight: 500;
}
.check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--rose); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 800;
}
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-cta-note { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-cta-note::before { content: "⏱"; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-img-main {
  position: absolute; inset: 0;
  background: var(--bg-warm);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 30px 50px -20px rgba(14, 42, 71, 0.3);
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
}
.hero-badge-icon {
  width: 44px; height: 44px; background: var(--rose-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: 22px;
}
.hero-badge-text { font-size: 13px; line-height: 1.3; }
.hero-badge-text strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; font-size: 14px; }
.hero-badge-text span { color: var(--muted); }

.hero-stat {
  position: absolute;
  top: 32px; right: -36px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: left;
  box-shadow: 0 30px 50px -20px rgba(14, 42, 71, 0.5);
  z-index: 3;
}
.hero-stat .num { font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-top: 6px; }

.hero-deco {
  position: absolute;
  width: 360px; height: 360px;
  top: 80px; right: -180px;
  background: radial-gradient(circle, var(--rose-soft) 1px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.5;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero { padding: 130px 0 120px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 480px; margin: 0 auto; margin-bottom: 60px; }
  .hero-stat { right: 16px; top: 16px; }
  .hero-badge { left: 16px; bottom: -48px; }
  .hero-deco { display: none; }
}
@media (max-width: 560px) {
  .hero { padding: 110px 0 100px; }
  .hero-stat { right: 12px; top: 12px; padding: 12px 16px; }
  .hero-stat .num { font-size: 24px; }
  .hero-badge-icon { width: 36px; height: 36px; font-size: 18px; }
}

/* ---------- PROBLEM ---------- */
.section { padding: 120px 0; }
.section-dark {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201, 163, 107, 0.12), transparent 50%);
  pointer-events: none;
}

.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  align-items: start; position: relative;
}
.problem-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.25;
  color: var(--gold-soft);
  margin: 32px 0 40px;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.problem-list li {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; gap: 20px; align-items: flex-start;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
}
.problem-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.problem-num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 30px;
}
.problem-footer {
  margin-top: 56px;
  font-size: 19px;
  color: #fff;
  max-width: 38ch;
}
.problem-footer strong { color: var(--gold-soft); font-weight: 600; }

@media (max-width: 960px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 80px 0; }
}

/* ---------- COMO FUNCIONA ---------- */
.steps-head { text-align: center; margin-bottom: 80px; max-width: 760px; margin-left: auto; margin-right: auto; }
.steps-head .lead { margin: 20px auto 0; }

.step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step.reverse .step-visual { order: -1; }
.step-num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--rose);
  font-style: italic;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.step-num .digit {
  font-family: var(--serif);
  font-style: normal;
  font-size: 64px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.step h3 { font-size: 32px; margin-bottom: 16px; color: var(--navy); }
.step p { color: var(--muted); font-size: 17px; max-width: 44ch; }

.step-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-warm);
}
.step-visual img { width: 100%; height: 100%; object-fit: cover; }
.step-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(14,42,71,0.15));
}
.step-visual .tag {
  position: absolute; top: 24px; left: 24px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--navy);
  letter-spacing: 0.04em;
  z-index: 2;
}
.step-visual.rose-frame { background: var(--rose-bg); padding: 24px; }
.step-visual.rose-frame img { border-radius: 8px; }
.step-visual.gold-frame { background: var(--gold-soft); padding: 24px; }
.step-visual.gold-frame img { border-radius: 8px; }

.steps-cta { text-align: center; margin-top: 80px; }

@media (max-width: 960px) {
  .step { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .step.reverse .step-visual { order: 0; }
  .step-num .digit { font-size: 48px; }
}

/* ---------- DIFERENCIAIS ---------- */
.diff-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
@media (max-width: 960px) {
  .diff-head { grid-template-columns: 1fr; gap: 24px; }
  .diff-head .lead { max-width: 100%; }
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.diff-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid var(--line-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.diff-card .ico {
  width: 56px; height: 56px;
  background: var(--rose-bg);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--rose);
}
.diff-card:nth-child(2) .ico { background: rgba(201, 163, 107, 0.18); color: var(--gold); }
.diff-card:nth-child(3) .ico { background: rgba(14, 42, 71, 0.08); color: var(--navy); }
.diff-card:nth-child(4) .ico { background: var(--rose-bg); color: var(--rose); }
.diff-card .ico svg { width: 26px; height: 26px; }
.diff-card h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 10px; color: var(--navy); }
.diff-card p { color: var(--muted); font-size: 15px; line-height: 1.5; }

@media (max-width: 960px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* ---------- PARA QUEM É ---------- */
.audience { background: var(--bg-warm); }
.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.audience-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.audience-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 20px;
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
  transition: padding 0.25s ease;
}
.audience-list li:last-child { border-bottom: 1px solid var(--line); }
.audience-list li:hover { padding-left: 12px; }
.audience-check {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--navy); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 800;
}

.audience-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.audience-visual .main-img {
  position: absolute; inset: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.audience-visual .main-img img { width: 100%; height: 100%; object-fit: cover; }
.audience-visual .small-img {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 70%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 8px solid var(--bg-warm);
  box-shadow: var(--shadow-card);
}
.audience-visual .small-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 960px) {
  .audience-grid { grid-template-columns: 1fr; gap: 60px; }
  .audience-visual { max-width: 480px; margin: 0 auto; overflow: visible; }
  .audience-visual .small-img { right: 0; bottom: -20px; }
}
@media (max-width: 560px) {
  .audience-visual .small-img { display: none; }
  .audience-visual { aspect-ratio: 3 / 4; }
}

/* ---------- PROVA DE CONFIANÇA ---------- */
.trust { padding: 140px 0; position: relative; }
.trust-quote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.trust-mark {
  font-family: var(--serif);
  font-size: 100px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 20px;
}
.trust-quote h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 32px;
}
.trust-quote h2 em { font-style: italic; color: var(--rose); }
.trust-quote p { color: var(--muted); font-size: 18px; max-width: 56ch; margin: 0 auto; }

.trust-team {
  margin-top: 90px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.trust-team img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.trust-team::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,42,71,0.7), transparent 60%);
}
.trust-team-caption {
  position: absolute;
  left: 36px; right: 36px; bottom: 32px;
  color: #fff;
  display: flex; justify-content: space-between; align-items: end;
  z-index: 2;
  gap: 24px;
}
.trust-team-caption .title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
  max-width: 24ch;
}
.trust-team-caption .badge {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-soft);
  backdrop-filter: blur(8px);
  background: rgba(14, 42, 71, 0.3);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .trust { padding: 80px 0; }
  .trust-team { aspect-ratio: 4 / 5; }
  .trust-team img { object-position: center; }
  .trust-team-caption { left: 20px; right: 20px; bottom: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-warm); }
.faq-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-bottom: 60px; align-items: end; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--navy);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--rose); }
.faq-toggle {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.3s ease;
}
.faq-toggle svg { width: 16px; height: 16px; color: var(--navy); transition: transform 0.3s ease; }
.faq-item.open .faq-toggle { background: var(--rose); border-color: var(--rose); }
.faq-item.open .faq-toggle svg { color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 32px;
}
.faq-a p { color: var(--muted); font-size: 17px; max-width: 64ch; line-height: 1.6; }

@media (max-width: 800px) {
  .faq-head { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- FECHO + FORM ---------- */
.close-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.close-section::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 82, 111, 0.25), transparent 60%);
  bottom: -300px; left: -200px;
  pointer-events: none;
}
.close-section::after {
  content: ""; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 163, 107, 0.18), transparent 60%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.close-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.close-head h2 { color: #fff; font-size: clamp(36px, 4vw, 60px); margin: 24px 0; }
.close-head h2 em { color: var(--gold-soft); font-style: italic; }
.close-head p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 44ch; }
.close-perks {
  margin-top: 36px;
  display: flex; gap: 28px; flex-wrap: wrap;
}
.close-perks span {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.75);
}
.close-perks span::before {
  content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 999px;
}

.form-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.5);
}
.form-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card .small { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;
}
.form-row label {
  font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.02em;
}
.form-row input, .form-row select, .form-row textarea {
  font: inherit; font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--rose); background: #fff;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.form-pill {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-pill:hover { border-color: var(--navy); }
.form-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.form-submit {
  width: 100%; margin-top: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: background 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.form-submit:hover { background: var(--navy-deep); }
.form-legal { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.45; }
.form-success {
  display: none;
  padding: 24px;
  background: var(--rose-bg);
  border: 1px solid var(--rose-soft);
  border-radius: 12px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h4 { color: var(--navy); margin-bottom: 8px; font-family: var(--serif); font-size: 22px; }
.form-success p { color: var(--muted); font-size: 14px; }

@media (max-width: 960px) {
  .close-grid { grid-template-columns: 1fr; gap: 48px; }
  .close-section { padding: 80px 0; }
  .form-card { padding: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .logo { color: #fff; }
.footer .logo-mark { background: rgba(255,255,255,0.15); }
.footer .logo-mark svg { color: #fff; }
.footer h5 {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); font-family: var(--sans); font-weight: 700;
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--gold-soft); }
.footer-instagram { display: inline-flex; align-items: center; opacity: 0.7; transition: opacity 0.2s ease; }
.footer-instagram:hover { opacity: 1; color: var(--gold-soft); }
.footer-disclaimer {
  font-size: 12px; color: rgba(255,255,255,0.5);
  max-width: 60ch; margin-top: 16px;
}
.footer-bottom {
  margin-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.footer-bottom .bdp {
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding-bottom: 96px; }
}

/* ---------- ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- FLOAT CTA MOBILE ---------- */
.float-cta {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 90;
}
.float-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 700px) {
  .float-cta { display: block; }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 20px; }
  .hero-badge { left: -8px; }
}
