@font-face {
  font-family: "Overused Grotesk";
  src: url("/lp-parceiros/assets/font/OverusedGrotesk-Roman-BF64eeac17dee17.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("/lp-parceiros/assets/font/OverusedGrotesk-Medium-BF64eeac181a996.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("/lp-parceiros/assets/font/OverusedGrotesk-SemiBold-BF64eeac17e1195.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("/lp-parceiros/assets/font/OverusedGrotesk-Bold-BF64eeac1756b57.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("/lp-parceiros/assets/font/OverusedGrotesk-ExtraBold-BF64eeac180b325.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-display: "Overused Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --font-sans: "Overused Grotesk", "Inter", system-ui, -apple-system, sans-serif;

  --black: #2c222d;
  --white: #ffffff;
  --orange: #6155f5;
  --orange-light: #e7e5ff;
  --orange-mid: #cfc9fb;
  --orange-dark: #2118c9;
  --peach-bg: #f5f3f6;
  --gray: #757575;
  --gray-light: #e9e7e5;
  --section-pad: clamp(60px, 7vw, 96px);
  --container: 1160px;
  --radius: 24px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}

@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes floatY   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes pulse    { 0%,100% { transform:scale(1); } 50% { transform:scale(1.12); } }
@keyframes marquee  { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes shimmer  { 0% { background-position:-200% center; } 100% { background-position:200% center; } }
@keyframes blobMove {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,-30px) scale(1.08); }
  66%  { transform: translate(-30px,20px) scale(0.96); }
  100% { transform: translate(0,0) scale(1); }
}

.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

/* ── NAV ── */
nav {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 5%; background:transparent;
  backdrop-filter:none; -webkit-backdrop-filter:none; position:fixed; top:0; left:0; right:0; width:100%; z-index:200;
  border-bottom:1px solid transparent;
  transition:background .35s ease, backdrop-filter .35s ease, border-color .35s ease, box-shadow .35s ease;
  animation:fadeIn .6s ease forwards;
}
nav.scrolled {
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(97,85,245,.1);
  box-shadow:0 4px 24px rgba(0,0,0,.07);
}
.nav-logo { position:relative; height:34px; display:flex; align-items:center; }
.nav-logo img { height:34px; width:auto; display:block; }
.nav-logo-black { position:absolute; top:0; left:0; opacity:0; transition:opacity .35s ease; }
.nav-logo-white { opacity:1; transition:opacity .35s ease; }
nav.scrolled .nav-logo-white { opacity:0; }
nav.scrolled .nav-logo-black { opacity:1; }
.nav-links { display:flex; align-items:center; gap:30px; list-style:none; }
.nav-links a { position:relative; text-decoration:none; font-size:16px; font-weight:500; color:var(--black); opacity:.6; transition:opacity .2s, color .35s ease; padding-bottom:4px; }
.nav-links a::after { content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background:#ffd100; transform:scaleX(0); transform-origin:center; transition:transform .2s ease; }
.nav-links a:hover { opacity:1; }
.nav-links a:hover::after { transform:scaleX(1); }
nav:not(.scrolled) .nav-links a { color:#fff; opacity:.85; }
nav:not(.scrolled) .nav-links a:hover { opacity:1; }
.nav-cta {
  background:#ffd100; color:var(--black); border:none;
  padding:10px 22px; border-radius:100px; font-size:14px; font-weight:600;
  cursor:pointer; font-family:var(--font-sans);
  transition:background .2s, transform .15s, box-shadow .2s; text-decoration:none;
}
.nav-cta:hover { background:#e6bc00; transform:translateY(-1px); box-shadow:0 6px 20px rgba(255,209,0,.35); }

.nav-actions { display:flex; align-items:center; gap:14px; }
.nav-login-btn {
  background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.5);
  padding:9px 20px; border-radius:100px; font-size:14px; font-weight:600;
  cursor:pointer; font-family:var(--font-sans);
  transition:all .2s; text-decoration:none;
}
.nav-login-btn:hover { background:rgba(255,255,255,.12); border-color:#fff; transform:translateY(-1px); }
nav.scrolled .nav-login-btn { color:var(--black); border-color:rgba(28,27,31,.3); }
nav.scrolled .nav-login-btn:hover { background:rgba(28,27,31,.06); border-color:var(--black); }

/* ── HERO ── */
:root { --hero-blue: #ffd100; }
.hero-section {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + clamp(56px,7vw,88px)) 5% clamp(64px,8vw,110px);
  background: url('/lp-parceiros/assets/serena-indicacao.jpg') center 30% / cover no-repeat;
}
.hero-blob { display:none; }

.hero-inner {
  max-width:var(--container); margin:0 auto;
  display:flex; flex-direction:column; align-items:flex-start;
  text-align:left; position:relative; z-index:1; padding-bottom:56px;
}
.hero-content { display:flex; flex-direction:column; align-items:flex-start; }
.hero-inner h1 {
  font-family:var(--font-display);
  font-size:clamp(38px,5.5vw,68px); line-height:1.03; letter-spacing:-0.01em;
  font-weight:400; color:#fff; margin-bottom:28px; max-width:640px;
  animation:fadeUp .9s .1s ease both;
}
.hero-inner h1 em { font-style:normal; font-weight:600; color:var(--hero-blue); }
.hero-box {
  background: rgba(20,18,26,.45);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: var(--radius);
  padding: 32px 36px;
  max-width: 560px;
  animation:fadeIn .9s .25s ease both;
}
.hero-sub { font-size:clamp(15px,1.3vw,18px); line-height:1.45; color:rgba(255,255,255,.82); margin:0 0 24px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:flex-start; }
.btn-primary {
  background:#ffd100; color:var(--black); border:none;
  padding:14px 28px; border-radius:100px; font-size:15px; font-weight:600;
  cursor:pointer; font-family:var(--font-sans);
  transition:background .2s, transform .15s, box-shadow .2s; text-decoration:none; display:inline-block;
}
.btn-primary:hover { background:#e6bc00; transform:translateY(-2px); box-shadow:0 8px 24px rgba(255,209,0,.32); }
.btn-outline {
  background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.4);
  padding:13px 28px; border-radius:100px; font-size:15px; font-weight:500;
  cursor:pointer; font-family:var(--font-sans);
  transition:all .2s; text-decoration:none; display:inline-block;
}
.btn-outline:hover { background:#fff; color:var(--black); border-color:#fff; transform:translateY(-2px); }
.hero-note { display:flex; align-items:center; justify-content:flex-start; gap:10px; margin-top:24px; font-size:13px; color:rgba(255,255,255,.65); }
.hero-note svg { width:16px; height:16px; flex-shrink:0; }

/* Hero earn strip */
.hero-earn-strip {
  display: flex; align-items: center; flex-wrap:wrap; gap: 8px 14px;
  color: #fff;
  margin-bottom: 24px;
}
.hero-earn-label {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.75);
}
.hero-earn-value {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1; color: var(--hero-blue);
  font-weight: 400; letter-spacing: -0.01em;
}


/* ── MARQUEE ── */
.marquee-section { background:var(--black); padding:16px 0; overflow:hidden; }
.marquee-track { display:flex; animation:marquee 30s linear infinite; width:max-content; }
.marquee-item { display:flex; align-items:center; gap:14px; padding:0 32px; white-space:nowrap; font-size:13px; font-weight:500; color:#d4d4d4; }
.marquee-item .m-dot { width:4px; height:4px; background:#ffd100; border-radius:50%; flex-shrink:0; }

/* ── SECTION LABELS ── */
.section-label { display:inline-block; font-family:var(--font-sans); font-size:14px; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; color:var(--orange); margin-bottom:12px; }
.section-title { font-family:var(--font-display); letter-spacing:-0.01em; font-size:clamp(28px,3.2vw,48px); font-weight:400; line-height:1.1; letter-spacing:-0.005em; margin-bottom:12px; }
.section-title em { font-style:normal; font-weight:600; color:var(--orange); }
.section-sub { font-family:var(--font-sans); font-size:18px; color:var(--gray); line-height:1.45; max-width:520px; }

/* ── SOBRE A PJZEN ── */
.sobre-section { padding:var(--section-pad) 5%; background:var(--white); --yellow:#ffd100; --yellow-pale:#fff3c4; }
.sobre-section .section-label { color:var(--black); }
.sobre-inner { max-width:var(--container); margin:0 auto; }
.sobre-header { text-align:center; margin-bottom:56px; }
.sobre-header .section-sub { margin:0 auto; max-width:672px; }
.sobre-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.sobre-card {
  background:var(--white); border:1.5px solid var(--gray-light); border-radius:var(--radius); padding:32px 28px;
  transition:transform .3s, box-shadow .3s, border-color .3s; cursor:default; position:relative; overflow:hidden;
}
.sobre-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,0,0,.12); }
.sobre-icon { width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.sobre-icon.orange { background:var(--yellow); }
.sobre-icon.peach  { background:var(--yellow); }
.sobre-icon.light  { background:var(--yellow); }
.sobre-icon svg { width:26px; height:26px; }
.sobre-card h3 { font-size:17px; font-weight:600; margin-bottom:10px; }
.sobre-card p  { font-size:15px; color:var(--gray); line-height:1.65; }

/* ── COMO FUNCIONA ── */
.how-section { background:#ffd10026; padding:var(--section-pad) 5%; }
.how-section .section-label { color:var(--black); }
.how-section .section-title { color:var(--black); }
.how-section .section-title em { color:var(--black); }
.how-inner { max-width:var(--container); margin:0 auto; }
.how-header { display:flex; justify-content:space-between; align-items:flex-end; gap:32px; margin-bottom:64px; }
.how-header-text .section-label { margin-bottom:12px; }
.how-header-cta { display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:var(--black); text-decoration:none; white-space:nowrap; flex-shrink:0; transition:gap .2s; }
.how-header-cta:hover { gap:13px; }
.how-header-cta svg { width:14px; height:14px; }
.how-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.how-step { background:#fff; border-radius:var(--radius); padding:28px 24px; transition:transform .25s, box-shadow .25s; }
.how-step:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.12); }
.how-step-num { display:block; font-size:18px; font-weight:700; letter-spacing:.06em; color:#ffd100; margin-bottom:14px; }
.how-step h4 { font-size:20px; font-weight:600; color:var(--black); margin-bottom:10px; line-height:1.25; }
.how-step p  { font-size:15px; color:rgba(26,26,26,.72); line-height:1.65; }

/* ── COMISSÕES ── */
.comm-section { padding:var(--section-pad) 5%; background:var(--white); }
.comm-inner { max-width:var(--container); margin:0 auto; }
.comm-header { text-align:center; margin-bottom:52px; }
.comm-header .section-sub { margin:0 auto; }
.comm-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:900px; margin:0 auto 24px; }
.comm-card {
  background:var(--white); border-radius:var(--radius); padding:36px 32px;
  border:1.5px solid var(--gray-light); transition:transform .3s, box-shadow .3s; cursor:default; position:relative; text-align:center;
}
.comm-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,.07); }
.comm-card.featured { background:var(--black); border-color:var(--orange); overflow:hidden; }
.comm-card.featured::before { content:''; position:absolute; top:-80px; right:-80px; width:200px; height:200px; background:var(--orange); border-radius:50%; opacity:.08; animation:floatY 7s ease-in-out infinite; }
.comm-card.featured:hover { box-shadow:0 16px 48px rgba(97,85,245,.22); }
.comm-plan-name { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#aaa; margin-bottom:16px; display:block; }
.comm-card.featured .comm-plan-name { color:var(--orange); }
.comm-plan-detail { font-size:13px; color:var(--gray); margin-bottom:12px; }
.comm-card.featured .comm-plan-detail { color:rgba(255,255,255,.5); }
.comm-earn-label { display:inline-block; background:#ffd100; color:#000; font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; padding:4px 12px; border-radius:100px; margin-bottom:6px; }
.comm-earn-value { font-family:var(--font-display); letter-spacing:-0.01em; font-size:52px; line-height:1; margin-bottom:4px; }
.comm-card.featured .comm-earn-value { color:#fff; }
.comm-earn-sub { font-size:13px; color:#aaa; margin-bottom:24px; }
.comm-card.featured .comm-earn-sub { color:rgba(255,255,255,.4); }
.comm-div { height:1px; background:var(--gray-light); margin-bottom:20px; }
.comm-card.featured .comm-div { background:rgba(255,255,255,.1); }
.comm-feats { display:flex; flex-direction:column; gap:10px; text-align:left; }
.comm-feat { display:flex; align-items:flex-start; gap:10px; font-size:14px; line-height:1.5; }
.comm-card.featured .comm-feat { color:rgba(255,255,255,.85); }
.feat-ck { width:18px; height:18px; background:#ffd100; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; margin-top:2px; }
.feat-ck svg { width:9px; height:9px; }
.comm-note { text-align:center; font-size:16px; color:var(--gray); margin-top:8px; }
.comm-note strong { color:var(--black); }
.comm-section .section-label,
.comm-section .section-title em { color:#000; }

/* ── SIMULADOR ── */
.sim-section {
  background:#0d0d0d; padding:var(--section-pad) 5% calc(var(--section-pad) / 2);
}
.sim-inner { max-width:var(--container); margin:0 auto; }
.sim-inner .section-title { color:#fff; text-align:center; max-width:900px; margin:0 auto 12px; }
.sim-inner .section-title em { color:#ffd100; }
.sim-inner .section-label { display:block; text-align:center; color:#ffd100; }
.sim-inner .section-sub { color:rgba(255,255,255,.55); text-align:center; margin:0 auto 52px; }
.sim-box { background:#1a1a1a; border:1px solid rgba(255,255,255,.08); border-radius:28px; padding:48px 56px; max-width:760px; margin:0 auto; }

/* Multi-plan cards */
.sim-plans-multi { display:flex; gap:14px; }
.sim-plan-card {
  flex:1; background:rgba(255,209,0,.08); border:1.5px solid rgba(255,209,0,.35);
  border-radius:18px; padding:22px 18px 16px; transition:border-color .2s, background .2s, box-shadow .2s;
}
.sim-plan-card.has-qty { border-color:#ffd100; box-shadow:0 8px 24px rgba(0,0,0,.25); }
.spmc-name { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#ffd100; margin-bottom:10px; }
.spmc-value { font-family:var(--font-display); letter-spacing:-0.01em; font-size:34px; color:#fff; line-height:1; margin-bottom:2px; }
.spmc-per { font-size:11px; color:rgba(255,255,255,.5); margin-bottom:16px; }
.spmc-stepper {
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(0,0,0,.25); border-radius:10px; padding:4px;
}
.spmc-btn {
  width:30px; height:30px; border-radius:7px; border:none;
  background:rgba(255,255,255,.08); color:#fff;
  font-size:18px; font-weight:300; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s, color .2s; user-select:none; flex-shrink:0; line-height:1;
}
.spmc-btn:hover { background:#ffd100; color:#000; }
.spmc-count {
  font-family:var(--font-display); letter-spacing:-0.01em; font-size:22px; color:#ffd100;
  min-width:28px; text-align:center; line-height:1; transition:color .2s;
}

/* Result */
.sim-divider { height:1px; background:rgba(255,255,255,.1); margin:28px 0; }
.sim-result { display:flex; justify-content:space-between; align-items:center; gap:16px; }
.sim-result-label { font-size:14px; color:rgba(255,255,255,.5); line-height:1.7; }
.sim-result-label strong { color:#fff; font-weight:600; font-size:16px; display:block; margin-bottom:2px; }
.sim-result-value {
  font-family:var(--font-display); letter-spacing:-0.01em; font-size:64px; font-weight:700; color:#fff;
  line-height:1; flex-shrink:0; transition:opacity .15s;
}
.sim-result-value.zero { color:rgba(255,255,255,.22); font-size:48px; }
.sim-hint { text-align:center; font-size:13px; line-height:1.2; color:#fff; margin-top:20px; display:flex; align-items:center; justify-content:center; gap:6px; }
.sim-hint svg { width:13px; height:13px; color:#fff; flex-shrink:0; }
.sim-caption { text-align:center; font-size:12px; line-height:1.2; color:#fff; margin-top:2px; }

/* ── PAGAMENTO ── */
.payment-section { background:#ffd10026; padding:calc(var(--section-pad) / 2) 5% var(--section-pad); }
.payment-section .section-label { color:var(--black); }
.payment-section .section-title em { color:var(--black); }
.payment-inner { max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.pay-cards { display:flex; flex-direction:column; gap:16px; }
.pay-card { background:var(--white); border-radius:16px; padding:22px 24px; display:flex; align-items:flex-start; gap:16px; transition:transform .25s, box-shadow .25s; cursor:default; }
.pay-card:hover { transform:translateX(4px); box-shadow:0 8px 28px rgba(37,99,39,.15); }
.pay-icon { width:44px; height:44px; background:#ffd100; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pay-icon svg { width:22px; height:22px; }
.pay-card h4 { font-size:17px; font-weight:600; margin-bottom:4px; }
.pay-card p  { font-size:15px; color:var(--gray); line-height:1.55; }

/* ── VANTAGENS ── */
.why-section { padding:var(--section-pad) 5%; background:var(--white); }
.why-section .section-label { color:var(--black); }
.why-section .section-title { color:var(--black); }
.why-section .section-title em { color:var(--black); }
.why-section .section-sub { color:var(--gray); }
.why-inner { max-width:var(--container); margin:0 auto; }
.why-header { text-align:center; margin-bottom:56px; }
.why-header .section-sub { margin:0 auto; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.why-card { background:var(--white); border:1px solid var(--gray-light); border-radius:20px; padding:28px 24px; transition:transform .25s, box-shadow .25s; cursor:default; }
.why-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(0,0,0,.12); }
.why-icon { width:48px; height:48px; background:#ffd100; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.why-icon svg { width:22px; height:22px; }
.why-card h4 { font-size:17px; font-weight:600; margin-bottom:8px; }
.why-card p  { font-size:15px; color:var(--gray); line-height:1.6; }
.badge-soon { display:inline-block; background:rgba(255,209,0,.18); color:#8a6d00; font-size:10px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:3px 8px; border-radius:100px; margin-left:6px; vertical-align:middle; }

/* ── STATS ── */
.stats-section { background:#ffd100; padding:clamp(48px,6vw,72px) 5%; position:relative; overflow:hidden; }
.stats-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.1) 0%, transparent 60%); }
.stats-grid { max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; position:relative; z-index:1; }
.stat-item .stat-num { font-family:var(--font-display); font-weight:600; letter-spacing:-0.01em; font-size:clamp(30px,3.5vw,48px); color:var(--black); display:block; line-height:1; margin-bottom:8px; }
.stat-item .stat-lbl { font-size:15px; color:var(--black); line-height:1.45; }

/* ── FAQ ── */
.faq-section { background:#fff; padding:var(--section-pad) 5%; }
.faq-inner { max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:1fr 1.5fr; gap:80px; align-items:start; }
.faq-left .section-label { color:var(--black); }
.faq-left .section-title { color:var(--black); font-family:var(--font-sans); font-weight:800; letter-spacing:normal; }
.faq-left .section-title em { color:var(--black); font-style:normal; font-weight:800; }
.faq-left .section-sub { color:var(--gray); font-weight:600; margin-top:12px; }
.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item { background:rgba(0,0,0,.03); border:none; border-radius:0; overflow:hidden; transition:background .18s ease; }
.faq-item.open { background:rgba(0,0,0,.08); }
.faq-q { font-size:18px; font-weight:600; color:var(--black); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; padding:22px 24px; user-select:none; transition:color .2s; }
.faq-q:hover { color:#5E4D00; }
.faq-icon {
  width:34px; height:34px; border-radius:50%; background:var(--black); color:#fff;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  font-size:15px; font-weight:700; line-height:1; transition:background .18s ease, color .18s ease;
}
.faq-item.open .faq-icon { background:#fff; color:var(--black); }
.faq-a { font-size:15px; color:var(--gray); line-height:1.7; padding:0 24px 22px; display:none; animation:fadeUp .3s ease both; }
.faq-item.open .faq-a { display:block; }

/* ── FORMULÁRIO ── */
.form-section { padding:var(--section-pad) 5%; background:#ffd100; }
.form-inner { max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; text-align:left; }
.form-copy-left .section-label { margin-bottom:12px; color:var(--black); }
.form-copy-left .section-title { margin-bottom:16px; font-size:calc(clamp(28px,3.2vw,48px) + 20px); }
.form-copy-left .section-title em { color:var(--black); }
.form-copy-left .section-sub { color:rgba(0,0,0,.65); }
.form-perks { display:flex; flex-direction:column; gap:14px; text-align:left; }
.form-perk { display:flex; align-items:center; gap:12px; font-size:15.4px; color:var(--black); font-weight:500; }
.form-perk-icon { width:35px; height:35px; background:#fff; border-radius:11px; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.form-perk-icon svg { width:15.4px; height:15.4px; }
.form-cta-btn { margin-top:28px; background:var(--black); color:#fff; }
.form-cta-btn:hover { background:#1a1a1a; }

/* Modal de cadastro */
.cadastro-modal-overlay {
  position:fixed; inset:0; z-index:999; padding:24px;
  background:rgba(20,18,26,.6);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s ease;
}
.cadastro-modal-overlay.active { opacity:1; visibility:visible; }
.cadastro-modal-overlay .form-card { transform:translateY(16px); transition:transform .25s ease; }
.cadastro-modal-overlay.active .form-card { transform:translateY(0); }
.cadastro-modal-close {
  position:absolute; top:16px; right:16px; width:32px; height:32px; border-radius:50%;
  background:var(--peach-bg); border:none; display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--black); transition:background .2s;
}
.cadastro-modal-close:hover { background:var(--gray-light); }
.cadastro-modal-close svg { width:14px; height:14px; }
.form-card { position:relative; background:var(--white); border-radius:var(--radius); padding:40px 36px; box-shadow:0 20px 60px rgba(0,0,0,.25); max-width:520px; width:100%; max-height:90vh; overflow-y:auto; text-align:left; }
.form-card h3 { font-family:var(--font-display); letter-spacing:-0.01em; font-size:22px; font-weight:400; margin-bottom:24px; }
.form-card h3 em { font-style:normal; font-weight:600; color:var(--black); }
.f-field { margin-bottom:18px; }
.f-label { display:block; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--black); margin-bottom:8px; }
.f-input, .f-select, .f-textarea {
  width:100%; border:1.5px solid var(--gray-light);
  background:var(--white); color:var(--black);
  font-family:var(--font-sans); font-size:15px;
  padding:13px 16px; border-radius:12px; outline:none; transition:border-color .2s; appearance:none;
}
.f-input::placeholder, .f-textarea::placeholder { color:#c0bab6; }
.f-input:focus, .f-select:focus, .f-textarea:focus { border-color:var(--orange); }
.f-select { cursor:pointer; }
.f-textarea { resize:vertical; min-height:96px; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.f-submit { width:100%; padding:15px; border-radius:100px; font-size:15px; font-weight:700; cursor:pointer; font-family:var(--font-sans); background:#ffd100; color:var(--black); border:none; transition:background .2s, transform .15s, box-shadow .2s; margin-top:8px; }
.f-submit:hover { background:#e6bc00; transform:translateY(-1px); box-shadow:0 8px 24px rgba(255,209,0,.32); }
.f-submit:disabled { opacity:.7; cursor:not-allowed; transform:none; box-shadow:none; }
.f-note { text-align:center; font-size:12px; color:#aaa; margin-top:12px; }

/* Wizard de etapas do modal */
.form-steps-indicator { display:flex; align-items:center; justify-content:center; gap:8px; margin-bottom:24px; }
.form-step-dot {
  width:26px; height:26px; border-radius:50%; background:var(--gray-light); color:var(--gray);
  font-size:12px; font-weight:700; display:flex; align-items:center; justify-content:center;
  transition:background .25s, color .25s;
}
.form-step-dot.active { background:#ffd100; color:var(--black); }
.form-step-dot.done { background:var(--black); color:#fff; }
.form-step-line { width:32px; height:2px; background:var(--gray-light); }
.form-step { display:none; }
.form-step.active { display:block; animation:fadeIn .3s ease both; }
.form-step-back {
  display:inline-flex; align-items:center; gap:6px; background:none; border:none; cursor:pointer;
  font-family:var(--font-sans); font-size:13px; font-weight:600; color:var(--gray); padding:0; margin-bottom:16px;
}
.form-step-back:hover { color:var(--black); }
.form-step-back svg { width:14px; height:14px; }
.form-tipo-options { display:flex; gap:10px; flex-wrap:wrap; }
.form-tipo-btn {
  flex:1; min-width:110px; padding:12px 14px; border-radius:12px; border:1.5px solid var(--gray-light);
  background:var(--white); color:var(--black); font-family:var(--font-sans); font-size:14px; font-weight:600;
  cursor:pointer; transition:border-color .2s, background .2s, color .2s;
}
.form-tipo-btn:hover { border-color:#ffd100; }
.form-tipo-btn.active { border-color:#ffd100; background:#ffd100; }
.form-tipo-fields { margin-top:18px; animation:fadeIn .3s ease both; }
.form-card.step2-wide { max-width:820px; transition:max-width .25s ease; }
.form-step2-grid { display:grid; grid-template-columns:1fr 240px; gap:32px; align-items:start; }
.form-step2-tips { display:flex; flex-direction:column; gap:12px; padding-top:38px; }
.form-tips-label { font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--gray); margin-bottom:2px; }
.form-tip-card { background:var(--peach-bg); border:1.5px solid transparent; border-radius:12px; padding:14px 16px; transition:border-color .2s, background .2s; }
.form-tip-card strong { display:block; font-size:14px; font-weight:700; color:var(--black); margin-bottom:4px; }
.form-tip-card p { font-size:14px; color:var(--gray); line-height:1.5; margin:0; }
.form-tip-card.active { border-color:#ffd100; background:#fffbe8; }
.form-success { display:none; text-align:center; padding:16px 0; }
.form-success-icon { width:64px; height:64px; background:#ffd100; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.form-success-icon svg { width:28px; height:28px; }
.form-success h3 { font-family:var(--font-display); letter-spacing:-0.01em; font-size:22px; font-weight:400; margin-bottom:10px; }
.form-success p { font-size:16px; color:#666; line-height:1.6; }

/* ── FOOTER ── */
footer { background:#111; padding:clamp(48px,5vw,64px) 5%; }
.footer-logo-only { max-width:var(--container); margin:0 auto; display:flex; justify-content:center; }
.footer-logo-only img { width:100%; max-width:350px; height:auto; display:block; }

/* ── RESPONSIVE ── */
@media (max-width:960px) {
  .hero-comm-cards { flex-wrap:wrap; }
  .hero-comm-card { min-width:calc(50% - 12px); }
  .how-header { flex-direction:column; align-items:flex-start; gap:20px; margin-bottom:40px; }
  .how-steps { grid-template-columns:1fr 1fr; gap:36px; }
  .sobre-grid { grid-template-columns:1fr; }
  .comm-grid { grid-template-columns:1fr; max-width:420px; }
  .sim-grid { grid-template-columns:1fr; gap:20px; }
  .sim-total { flex-direction:column; gap:12px; text-align:center; }
  .payment-inner { grid-template-columns:1fr; gap:44px; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .faq-inner { grid-template-columns:1fr; gap:40px; }
  .form-inner { grid-template-columns:1fr; gap:32px; }
  nav .nav-links { display:none; }
}
@media (max-width:540px) {
  .hero-inner h1 { font-size:32px; }
  .hero-box { padding:26px 22px; }
  .hero-btns { flex-direction:column; align-items:stretch; }
  .hero-btns a { text-align:center; }
  .hero-comm-card { min-width:100%; }
  .how-steps { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .f-row { grid-template-columns:1fr; }
  .form-step2-grid { grid-template-columns:1fr; }
  .form-step2-tips { padding-top:0; }
  .sim-box { padding:32px 20px; }
  .sim-plans-multi { flex-direction:column; }
  .sim-result { flex-direction:column; gap:16px; text-align:center; }
  .sim-result-value { font-size:48px; }
  .sim-result-value.zero { font-size:36px; }
}
#rotating-word {
  display:inline-block;
  color:var(--hero-blue);
  font-weight:600;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#rotating-word.fade-out {
  opacity:0;
  transform:translateY(-8px);
}
