/* ── TOKENS ── */
:root {
  --ink:     #0F1C32;
  --navy:    #1B2A4A;
  --navy-dk: #0D1829;
  --navy-md: #243356;
  --blue:    #2F5FD0;
  --blue-lt: #4B7AE8;
  --ice:     #C8DAFC;
  --ice-lt:  #F0F5FF;
  --mute:    #8FA5C9;
  --slate:   #5B6D8A;
  --green:   #15803D;
  --green-lt:#DCFCE7;
  --sand:    #F7F6F3;
  --white:   #FFFFFF;
  --rule:    rgba(255,255,255,.1);
  --rule-dk: rgba(15,28,50,.08);
  --fh: 'Fraunces', Georgia, serif;
  --fb: 'Poppins', system-ui, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--fb); color: var(--ink); background: var(--white); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
.w { width: min(1200px, 92%); margin: 0 auto; }

/* ── ANNOUNCE BAR ── */
.ann {
  background: var(--navy-dk);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 9px 16px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .01em;
  border-bottom: 1px solid var(--rule);
}
.ann a { color: rgba(255,255,255,.9); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.ann a:hover { color: #fff; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy-dk);
  border-bottom: 1px solid var(--rule);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 32px; height: 32px; border-radius: 50%; }
.nav-logo span { font-size: 1rem; font-weight: 600; color: var(--white); letter-spacing: -.01em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: .85rem; color: var(--mute); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }

.hbtn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; flex-direction: column; gap: 5px;
}
.hbtn span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.hbtn.op span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbtn.op span:nth-child(2) { opacity: 0; }
.hbtn.op span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: var(--navy-dk); flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 40px; gap: 32px;
}
.mob.op { display: flex; }
.mob a { color: var(--white); font-size: 1.6rem; font-family: var(--fh); font-weight: 700; }
.mob-cta {
  margin-top: 16px;
  font-size: 1rem !important;
  font-family: var(--fb) !important;
  background: var(--blue);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600 !important;
}

/* ── HERO ── */
.hero {
  background: var(--navy-dk);
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-sym {
  position: absolute; right: -60px; top: -60px;
  width: 520px; height: 520px; opacity: .04; pointer-events: none;
}
.hero-sym img { width: 100%; height: 100%; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(200,218,252,.25);
  color: var(--ice);
  padding: 6px 14px; border-radius: 100px;
  font-size: .78rem; font-weight: 500; letter-spacing: .03em;
  margin-bottom: 36px;
}
.hero-title {
  font-family: var(--fh);
  font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  color: var(--white); line-height: 1.04;
  font-weight: 900; letter-spacing: -.02em;
  margin-bottom: 28px; max-width: 820px;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--ice); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--mute); line-height: 1.7;
  max-width: 520px; margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy-dk);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 600; font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.35); }
.btn-ghost-hero {
  color: var(--mute); font-size: .9rem; font-weight: 500;
  display: flex; align-items: center; gap: 6px; transition: color .2s;
}
.btn-ghost-hero:hover { color: var(--white); }
.btn-ghost-hero svg { transition: transform .2s; }
.btn-ghost-hero:hover svg { transform: translateX(3px); }

/* ── HERO MOCK ── */
.hero-mock-wrap { margin-top: 72px; }
.hero-mock {
  background: #F1F4F9; border-radius: 16px 16px 0 0; overflow: hidden;
  box-shadow: 0 -24px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.07);
  max-width: 960px; margin: 0 auto;
}
.mock-bar { background: #E5E9F2; padding: 11px 16px; display: flex; align-items: center; gap: 7px; }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; }
.mock-url {
  flex: 1; margin-left: 8px; background: #D0D6E4; border-radius: 5px;
  padding: 4px 12px; font-size: .68rem; color: #6B7A93; font-family: var(--fb);
}
.mock-body { display: grid; grid-template-columns: 220px 1fr; min-height: 340px; }
.mock-sidebar { background: #1B2A4A; padding: 20px 0; }
.mock-sidebar-logo {
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 16px;
}
.mock-sidebar-logo span { font-size: .75rem; font-weight: 600; color: #fff; }
.mock-nav-item {
  padding: 9px 16px; font-size: .72rem; color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 10px; cursor: default;
}
.mock-nav-item.active { background: rgba(47,95,208,.25); color: #fff; border-left: 2px solid #2F5FD0; }
.mock-nav-item svg { flex-shrink: 0; }
.mock-content { background: #F4F7FC; padding: 24px; }
.mock-greeting { font-size: .9rem; font-weight: 700; color: #1B2A4A; margin-bottom: 4px; }
.mock-date { font-size: .7rem; color: #6B7A93; margin-bottom: 20px; }
.mock-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
.mock-card { background: #fff; border-radius: 10px; padding: 14px 16px; box-shadow: 0 1px 6px rgba(0,0,0,.06); }
.mock-card-val { font-size: 1.3rem; font-weight: 700; color: #1B2A4A; }
.mock-card-val.c2 { color: #0F766E; }
.mock-card-val.c3 { color: #7C3AED; }
.mock-card-val.c4 { color: #2F5FD0; font-size: .82rem; font-weight: 700; }
.mock-card-lbl { font-size: .62rem; color: #6B7A93; margin-top: 2px; }
.mock-sect { font-size: .68rem; font-weight: 700; color: #1B2A4A; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.mock-row {
  background: #fff; border-radius: 8px; padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px; box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.mock-row-t { font-size: .68rem; color: #2F5FD0; font-weight: 600; margin-bottom: 2px; }
.mock-row-n { font-size: .76rem; font-weight: 500; color: #1F2937; }
.mock-badge { font-size: .6rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.mb-green  { background: #DCFCE7; color: #15803D; }
.mb-blue   { background: #EEF3FB; color: #2F5FD0; }
.mb-purple { background: #EDE9FE; color: #7C3AED; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--navy); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: mscroll 30s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes mscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 32px; font-size: .78rem; font-weight: 600;
  color: var(--mute); letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap; border-right: 1px solid var(--rule);
}
.marquee-item .sep { color: var(--blue); font-size: .5rem; }

/* ── STATEMENT ── */
.statement { padding: 120px 0; background: var(--white); }
.statement-inner { max-width: 860px; }
.statement-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.statement-label::after { content: ''; display: block; height: 1px; width: 48px; background: var(--blue); }
.statement h2 {
  font-family: var(--fh); font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--ink); line-height: 1.12; font-weight: 900;
  letter-spacing: -.02em; margin-bottom: 32px;
}
.statement h2 em { font-style: italic; font-weight: 300; color: var(--slate); }
.statement p { font-size: 1.1rem; color: var(--slate); line-height: 1.75; max-width: 600px; margin-bottom: 48px; }
.statement-stats { display: flex; gap: 56px; }
.stat-n { font-family: var(--fh); font-size: 3rem; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.stat-l { font-size: .85rem; color: var(--slate); margin-top: 6px; font-weight: 500; }

/* ── FEATURES ── */
.features { padding: 0 0 120px; background: var(--white); }
.features-header { padding: 80px 0 60px; border-bottom: 1px solid var(--rule-dk); }
.features-header-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.features-header h2 {
  font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink); font-weight: 900; letter-spacing: -.02em; max-width: 500px;
}
.features-header p { font-size: .9rem; color: var(--slate); max-width: 320px; margin-top: 12px; line-height: 1.65; }
.feat-row {
  display: grid; grid-template-columns: 200px 1fr 1fr;
  padding: 40px 0; border-bottom: 1px solid var(--rule-dk);
  transition: background .2s, padding .2s, margin .2s;
  cursor: default;
}
.feat-row:hover { background: var(--ice-lt); margin: 0 -4%; padding: 40px 4%; }
.feat-row-num {
  font-family: var(--fh); font-size: 3.5rem; font-weight: 900;
  color: rgba(15,28,50,.06); line-height: 1; letter-spacing: -.04em; padding-top: 4px;
}
.feat-row-title {
  font-family: var(--fh); font-size: 1.5rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.01em; padding-right: 32px;
  display: flex; flex-direction: column; gap: 8px;
}
.feat-row-tag {
  display: inline-block; font-family: var(--fb);
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; width: fit-content;
}
.feat-row-desc { font-size: .92rem; color: var(--slate); line-height: 1.75; padding-top: 8px; }

/* ── HOW ── */
.how { background: var(--navy-dk); padding: 120px 0; position: relative; overflow: hidden; }
.how-sym { position: absolute; left: -100px; bottom: -100px; width: 500px; height: 500px; opacity: .03; pointer-events: none; }
.how-sym img { width: 100%; height: 100%; }
.how-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-lt); margin-bottom: 64px;
  display: flex; align-items: center; gap: 12px;
}
.how-label::after { content: ''; display: block; height: 1px; width: 48px; background: var(--blue-lt); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); position: relative; z-index: 2; }
.how-step { padding: 0 48px 0 0; }
.how-step + .how-step { padding: 0 48px 0 48px; border-left: 1px solid var(--rule); }
.how-step-num {
  font-family: var(--fh); font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,.06); line-height: 1; letter-spacing: -.04em; margin-bottom: 20px;
}
.how-step h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.how-step p { font-size: .88rem; color: var(--mute); line-height: 1.7; }

/* ── LGPD / SEGURANÇA ── */
.lgpd-sec { background: var(--sand); padding: 120px 0; }
.lgpd-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lgpd-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.lgpd-label::after { content: ''; display: block; height: 1px; width: 32px; background: var(--green); }
.lgpd-left h2 {
  font-family: var(--fh); font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 900; color: var(--ink); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 24px;
}
.lgpd-left p { font-size: .95rem; color: var(--slate); line-height: 1.75; }
.lgpd-right { display: flex; flex-direction: column; padding-top: 8px; }
.lgpd-item { padding: 28px 0; border-bottom: 1px solid rgba(15,28,50,.09); display: flex; gap: 20px; align-items: flex-start; }
.lgpd-item:first-child { padding-top: 0; }
.lgpd-item:last-child { border-bottom: none; }
.lgpd-item-n {
  font-family: var(--fh); font-size: 1.8rem; font-weight: 900;
  color: rgba(15,28,50,.1); line-height: 1; flex-shrink: 0; width: 36px;
}
.lgpd-item h4 { font-size: .95rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.lgpd-item p { font-size: .85rem; color: var(--slate); line-height: 1.6; margin: 0; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--navy-dk); padding: 120px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-sym { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; opacity: .04; pointer-events: none; }
.cta-sym img { width: 100%; height: 100%; }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-final h2 {
  font-family: var(--fh); font-size: clamp(2.4rem,5vw,4.2rem);
  font-weight: 900; color: var(--white); letter-spacing: -.03em; line-height: 1.05; margin-bottom: 20px;
}
.cta-final h2 em { font-style: italic; font-weight: 300; color: var(--ice); }
.cta-final p { font-size: 1rem; color: var(--mute); line-height: 1.7; margin-bottom: 44px; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-cta-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy-dk);
  padding: 16px 32px; border-radius: 8px; font-weight: 700; font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-cta-main:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.btn-cta-ghost { display: inline-flex; align-items: center; gap: 8px; color: var(--mute); font-size: .9rem; font-weight: 500; transition: color .2s; }
.btn-cta-ghost:hover { color: var(--white); }

/* ── FOOTER ── */
footer { background: #090F1C; padding: 60px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 32px; height: 32px; border-radius: 50%; }
.footer-brand span { font-weight: 600; color: var(--white); font-size: .95rem; }
.footer-desc { font-size: .85rem; color: var(--mute); line-height: 1.65; max-width: 260px; }
.footer-col h5 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: .88rem; color: var(--mute); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.vis { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .mock-body { grid-template-columns: 180px 1fr; }
  .mock-cards { grid-template-columns: repeat(2,1fr); }
  .how-steps { grid-template-columns: 1fr; gap: 48px; }
  .how-step + .how-step { padding: 48px 0 0; border-left: none; border-top: 1px solid var(--rule); }
  .lgpd-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .features-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .feat-row { grid-template-columns: 100px 1fr; }
  .feat-row-desc { grid-column: 2; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
    .hbtn { display: flex; }
  .hero { padding: 72px 0 0; }
  .hero-title { font-size: 2.8rem; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .mock-cards { grid-template-columns: repeat(2,1fr); }
  .statement-stats { gap: 32px; flex-wrap: wrap; }
  .feat-row { grid-template-columns: 1fr; gap: 12px; }
  .feat-row:hover { margin: 0; padding: 40px 0; }
  .feat-row-num { font-size: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; }
  .how-step-num { font-size: 3.5rem; }
}
