  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --azul: #0B5CAD;
    --azul-escuro: #071D49;
    --azul-brilho: #38A3FF;
    --laranja: #F97316;
    --laranja-claro: #FDBA3B;
    --verde-whats: #25D366;
    --creme: #F5F8FC;
    --texto: #102033;
    --texto-suave: #50627A;
    --borda: rgba(11,92,173,0.15);
    --fonte-display: 'Syne', sans-serif;
    --fonte-corpo: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--fonte-corpo);
    background: var(--creme);
    color: var(--texto);
    line-height: 1.6;
    overflow-x: hidden;
  }
  .hero {
    padding: 150px 5% 86px;
    color: #fff;
    background:
      radial-gradient(circle at 82% 18%, rgba(37,211,102,0.24), transparent 30%),
      radial-gradient(circle at 78% 58%, rgba(56,163,255,0.34), transparent 34%),
      linear-gradient(135deg, #061426 0%, #071D49 54%, #0B5CAD 100%);
  }
  .hero-inner, .section-inner {
    max-width: 1180px;
    margin: 0 auto;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center;
  }
  .badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #A7F3D0;
    background: rgba(37,211,102,0.14);
    border: 1px solid rgba(37,211,102,0.35);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  h1 {
    font-family: var(--fonte-display);
    font-size: clamp(42px, 5.3vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
  }
  h1 em, .section-title em { color: var(--laranja-claro); font-style: normal; }
  .hero p {
    color: rgba(255,255,255,0.86);
    font-size: 19px;
    line-height: 1.72;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }
  .btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 15px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
  }
  .btn-primary {
    color: #062E1C;
    background: linear-gradient(135deg, var(--verde-whats), #9AE6B4);
    box-shadow: 0 18px 38px rgba(37,211,102,0.28);
  }
  .btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.36);
    background: rgba(255,255,255,0.06);
  }
  .chat-panel {
    padding: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 34px 90px rgba(0,0,0,0.24);
  }
  .chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: 20px 20px 0 0;
    background: #075E54;
    color: #fff;
  }
  .chat-header strong {
    display: block;
    font-family: var(--fonte-display);
    font-size: 17px;
  }
  .chat-header span {
    color: rgba(255,255,255,0.74);
    font-size: 12px;
  }
  .chat-body {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: #E7F6EF;
    border-radius: 0 0 20px 20px;
  }
  .bubble {
    max-width: 82%;
    padding: 12px 14px;
    border-radius: 16px;
    color: #163226;
    background: #fff;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .bubble.right {
    margin-left: auto;
    background: #DCF8C6;
  }
  .chat-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
  }
  .chat-stat {
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(11,92,173,0.1);
  }
  .chat-stat strong {
    display: block;
    color: var(--azul-escuro);
    font-family: var(--fonte-display);
    font-size: 20px;
  }
  .chat-stat span {
    color: var(--texto-suave);
    font-size: 12px;
  }
  section { padding: 84px 5%; }
  .section-head { max-width: 770px; margin-bottom: 36px; }
  .kicker {
    display: block;
    color: var(--laranja);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .section-title {
    font-family: var(--fonte-display);
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.04;
    color: var(--azul-escuro);
    letter-spacing: -0.035em;
    margin-bottom: 14px;
  }
  .section-desc { color: var(--texto-suave); font-size: 17px; line-height: 1.72; }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .feature-card {
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(11,92,173,0.12);
    box-shadow: 0 18px 48px rgba(7,29,73,0.08);
  }
  .feature-card small {
    display: inline-flex;
    margin-bottom: 12px;
    color: #128C4C;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }
  .feature-card h3 {
    font-family: var(--fonte-display);
    color: var(--azul-escuro);
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 10px;
  }
  .feature-card p {
    color: var(--texto-suave);
    font-size: 14.5px;
    line-height: 1.68;
  }
  .proof-section {
    color: #fff;
    background:
      radial-gradient(circle at 85% 24%, rgba(37,211,102,0.2), transparent 32%),
      linear-gradient(135deg, #061426, #071D49 55%, #0B5CAD);
  }
  .proof-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
  }
  .proof-section .section-title { color: #fff; }
  .proof-section .section-desc { color: rgba(255,255,255,0.78); }
  .proof-list {
    display: grid;
    gap: 14px;
  }
  .proof-item {
    display: flex;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .proof-item span {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(37,211,102,0.18);
    color: #A7F3D0;
    font-weight: 800;
  }
  .cta-band {
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--azul-escuro), var(--azul));
  }
  .cta-band .section-title { color: #fff; }
  .cta-band .section-desc {
    max-width: 740px;
    margin: 0 auto 26px;
    color: rgba(255,255,255,0.82);
  }
  footer {
    background: #08111B;
    padding: 46px 5% 38px;
  }
  .footer-inner { max-width: 1180px; margin: 0 auto; }
  .footer-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.28);
  }
  .footer-logo {
    display: inline-flex;
    flex-direction: column;
    width: fit-content;
    color: #fff;
    text-decoration: none;
    font-family: var(--fonte-display);
    line-height: 1;
  }
  .footer-logo-main { font-size: 32px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.05em; }
  .footer-logo-sub { margin-top: 5px; color: var(--laranja-claro); font-size: 10px; font-weight: 800; letter-spacing: 0.42em; text-transform: uppercase; }
  .footer-copy { color: rgba(255,255,255,0.68); font-size: 13.5px; text-align: center; }
  .footer-socials { justify-self: end; color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 700; }
  @media (max-width: 860px) {
    .nav-links li { flex: 0 0 auto; }
    .nav-links a {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      white-space: nowrap;
      font-size: 12px;
    }
    .hero { padding-top: 150px; text-align: center; }
    .hero-grid, .feature-grid, .proof-grid, .footer-bar, .chat-stats { grid-template-columns: 1fr; }
    .hero-actions { justify-content: center; }
    .btn-primary, .btn-outline { width: 100%; max-width: 360px; }
    section { padding: 62px 5%; }
    .footer-bar { justify-items: center; text-align: center; }
    .footer-logo { align-items: center; }
    .footer-socials { justify-self: center; }
  }
.scroll-reveal{opacity:0;transform:translateY(34px) scale(.985);filter:blur(8px);transition:opacity .75s ease,transform .75s cubic-bezier(.2,.8,.2,1),filter .75s ease;transition-delay:var(--reveal-delay,0ms);will-change:opacity,transform,filter}.scroll-reveal.visible{opacity:1;transform:translateY(0) scale(1);filter:blur(0)}@media(prefers-reduced-motion:reduce){.scroll-reveal{opacity:1;transform:none;filter:none;transition:none}}
