﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: inherit; }

  :root {
    --navy: #0a0f1e;
    --navy-2: #111827;
    --navy-3: #1a2540;
    --blue: #1e6fff;
    --blue-light: #4d8fff;
    --blue-glow: rgba(30,111,255,0.18);
    --cyan: #00d2ff;
    --white: #f4f7ff;
    --grey: #8a96b0;
    --border: rgba(255,255,255,0.07);
    --card: rgba(255,255,255,0.04);
    --max-w: 1140px;
    --pad-x: max(20px, calc((100% - var(--max-w)) / 2));
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: .5;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: rgba(10,15,30,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .topbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
  .topbar-logo { display: flex; align-items: center; }
  .topbar-logo img { height: 44px; width: auto; display: block; }
  .topbar-cta {
    background: var(--blue);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: .88rem;
    padding: 9px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .topbar-cta:hover { background: var(--blue-light); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 82vh;
    overflow: hidden;
    padding: 0 24px;
  }
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 24px;
    align-items: center;
    padding: 80px 0 20px;
    min-height: 82vh;
  }
  .hero-content {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 1;
  }
  .hero-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: relative;
    z-index: 1;
  }
  .hero-stats-wrapper {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    justify-content: center;
    margin-top: 32px;
    position: relative;
    z-index: 1;
  }
  /* Animação flutuante da imagem */
  @keyframes floatImg {
    0%   { transform: translateY(0px) scale(1); }
    50%  { transform: translateY(-18px) scale(1.01); }
    100% { transform: translateY(0px) scale(1); }
  }
  @keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(30,111,255,0.3)) drop-shadow(0 0 80px rgba(0,210,255,0.15)) drop-shadow(-60px 0 80px rgba(30,111,255,0.12)); }
    50%       { filter: drop-shadow(0 0 60px rgba(30,111,255,0.5)) drop-shadow(0 0 120px rgba(0,210,255,0.25)) drop-shadow(-80px 0 100px rgba(30,111,255,0.2)); }
  }
  .hero-img {
    width: 100%;
    max-height: 92vh;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
    animation: floatImg 5s ease-in-out infinite, glowPulse 5s ease-in-out infinite;
    transform-origin: center center;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 75% 40%, rgba(30,111,255,0.22) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 30% 60%, rgba(0,210,255,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30,111,255,0.12);
    border: 1px solid rgba(30,111,255,0.3);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--cyan);
    margin-bottom: 16px;
    width: fit-content;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp .7s ease .1s forwards;
  }
  .hero-content { max-width: 680px; }
  .hero-badge-dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
  }

  .hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin-bottom: 24px;
  }
  .hero h1 em { font-style: normal; color: var(--blue); }
  .hero h1 .line-cyan { color: var(--cyan); }

  .hero-sub {
    font-size: 1.1rem;
    color: #a0aec0;
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
  }

  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

  .btn-primary {
    background: var(--blue);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 0 0 0 rgba(30,111,255,0);
  }
  .btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30,111,255,0.4); }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color .2s, background .2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }

  .hero-stats-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 72px;
    gap: 72px;
    max-width: 780px;
    width: 100%;
  }
  .hero-stat-item { text-align: center; }
  .hero-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1;
    margin-bottom: 6px;
  }
  .hero-stat-label {
    font-size: .78rem;
    color: #8a96b0;
    letter-spacing: .02em;
  }
  .hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
  }

  /* ── FORM CARD ── */
  .form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  }
  .form-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .form-card-sub { font-size: .84rem; color: var(--grey); margin-bottom: 24px; }

  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: .78rem; font-weight: 500; color: #7a89a8; margin-bottom: 6px; letter-spacing: .03em; text-transform: uppercase; }
  .form-group input, .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: .92rem;
    outline: none;
    transition: border-color .2s, background .2s;
    -webkit-appearance: none;
  }
  .form-group input::placeholder { color: #4a5568; }
  .form-group input:focus, .form-group select:focus { border-color: var(--blue); background: rgba(30,111,255,0.07); }
  .form-group select option { background: var(--navy-2); color: var(--white); }
  .form-group input[type="file"] { cursor: pointer; padding: 10px 14px; }
  .form-group input[type="file"]::file-selector-button { background: rgba(30,111,255,0.15); border: 1px solid rgba(30,111,255,0.3); color: var(--blue-light); border-radius: 6px; padding: 4px 12px; margin-right: 12px; cursor: pointer; font-size: .8rem; transition: background .2s; }
  .form-group input[type="file"]::file-selector-button:hover { background: rgba(30,111,255,0.25); }
  .form-file-hint { display: block; font-size: .72rem; color: #4a5568; margin-top: 5px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .btn-form {
    width: 100%;
    background: var(--blue);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 6px;
    transition: background .2s, transform .15s, box-shadow .2s;
  }
  .btn-form:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(30,111,255,0.4); }

  .form-trust { display: flex; align-items: center; gap: 7px; font-size: .75rem; color: var(--grey); margin-top: 12px; justify-content: center; }
  .form-trust svg { flex-shrink: 0; }

  /* ── SECTION BASE ── */
  section { padding: 90px 24px; position: relative; z-index: 1; }
  .container { max-width: 1140px; margin: 0 auto; }
  .section-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .section-sub { font-size: 1rem; color: #8a96b0; max-width: 560px; line-height: 1.7; margin-top: 8px; }

  /* ── SOCIAL PROOF BAR ── */
  .proof-bar {
    background: var(--navy-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
  }
  .proof-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: #a0aec0; }
  .proof-icon { font-size: 1.1rem; }
  .proof-num { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--white); }

  /* ── PROBLEM SECTION ── */
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }
  .problem-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 26px;
    transition: border-color .25s, transform .25s;
  }
  .problem-card:hover { border-color: rgba(30,111,255,0.3); transform: translateY(-3px); }
  .problem-icon { font-size: 1.6rem; margin-bottom: 14px; color: var(--blue-light); }
  .problem-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
  .problem-desc { font-size: .88rem; color: var(--grey); line-height: 1.65; }

  /* ── FEATURES ── */
  .features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .feat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
    transition: border-color .25s, background .25s;
  }
  .feat-card:hover { border-color: rgba(30,111,255,0.3); background: rgba(30,111,255,0.06); }
  .feat-icon { font-size: 1.4rem; margin-bottom: 10px; color: var(--cyan); }
  .feat-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .92rem; margin-bottom: 6px; }
  .feat-desc { font-size: .82rem; color: var(--grey); line-height: 1.6; }

  .features-visual {
    background: var(--navy-3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
  }
  .features-visual::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(30,111,255,0.15) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    pointer-events: none;
  }
  .mock-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }
  .mock-dot { width: 11px; height: 11px; border-radius: 50%; }
  .mock-dot-r { background: #ff5f57; }
  .mock-dot-y { background: #febc2e; }
  .mock-dot-g { background: #28c840; }
  .mock-title { font-size: .8rem; color: var(--grey); margin-left: 10px; font-family: 'Poppins', sans-serif; }

  .mock-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 14px; }
  .mock-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
  }
  .mock-stat-val { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--cyan); }
  .mock-stat-lbl { font-size: .7rem; color: var(--grey); margin-top: 2px; }

  .mock-call-list { display: flex; flex-direction: column; gap: 8px; }
  .mock-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: .8rem;
  }
  .mock-call-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  .mock-call-info { flex: 1; }
  .mock-call-name { font-weight: 600; font-size: .78rem; color: var(--white); }
  .mock-call-status { font-size: .7rem; color: var(--grey); }
  .mock-call-badge {
    font-size: .65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
  }
  .badge-green { background: rgba(40,200,90,0.15); color: #28c85a; border: 1px solid rgba(40,200,90,0.3); }
  .badge-yellow { background: rgba(254,188,46,0.15); color: #febc2e; border: 1px solid rgba(254,188,46,0.3); }
  .badge-blue { background: rgba(30,111,255,0.15); color: var(--blue-light); border: 1px solid rgba(30,111,255,0.3); }

  /* ── HOW IT WORKS ── */
  .steps { display: flex; flex-direction: column; gap: 0; margin-top: 52px; max-width: 700px; margin-left: auto; margin-right: auto; }
  .step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    align-items: start;
    padding-bottom: 40px;
    position: relative;
  }
  .step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--blue), transparent);
  }
  .step-num {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--blue-glow);
    border: 2px solid rgba(30,111,255,0.4);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue-light);
    flex-shrink: 0;
  }
  .step-title { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; padding-top: 14px; }
  .step-desc { font-size: .92rem; color: var(--grey); line-height: 1.7; }

  /* ── SEGMENTS ── */
  .segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .seg-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    transition: border-color .25s, transform .2s;
  }
  .seg-card:hover { border-color: rgba(30,111,255,0.3); transform: translateY(-3px); }
  .seg-icon { font-size: 1.6rem; color: var(--blue-light); flex-shrink: 0; padding-top: 2px; }
  .seg-body { flex: 1; min-width: 0; }
  .seg-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .92rem; margin-bottom: 6px; }
  .seg-desc { font-size: .8rem; color: var(--grey); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }
  .testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color .25s;
  }
  .testi-card:hover { border-color: rgba(30,111,255,0.25); }
  .testi-stars { color: #f6c90e; font-size: .9rem; margin-bottom: 14px; display: flex; gap: 3px; }
  .testi-text { font-size: .92rem; color: #c0cce4; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
  }
  .testi-name { font-weight: 600; font-size: .88rem; }
  .testi-role { font-size: .76rem; color: var(--grey); }

  /* ── FAQ ── */
  .faq-list { max-width: 1140px; margin: 48px auto 0; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .faq-q {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--white);
    user-select: none;
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
  }
  .faq-q:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 6px; border-radius: 6px; }
  .faq-q::after { content: '+'; font-size: 1.4rem; color: var(--blue); flex-shrink: 0; transition: transform .2s; }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a { font-size: .9rem; color: var(--grey); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

  /* ── FINAL CTA ── */
  .final-cta {
    text-align: center;
    padding: 100px var(--pad-x);
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,111,255,0.18) 0%, transparent 70%);
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .final-cta .section-title { margin-bottom: 20px; }
  .final-cta .section-sub { margin: 0 auto 36px; }
  .final-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
  .final-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--grey); }
  .trust-check { color: #28c85a; }

  /* ── FORM SECTION ── */
  .form-section { background: var(--navy-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 24px; }
  .form-section-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .form-section-left .section-title { margin-bottom: 14px; }
  .form-section-left .section-sub { margin-bottom: 28px; }
  .checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: #c0cce4; }
  .checklist li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

  .form-standalone {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
  }
  .form-standalone-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 4px; }
  .form-standalone-sub { font-size: .83rem; color: var(--grey); margin-bottom: 24px; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-2);
    border-top: 1px solid var(--border);
    padding: 32px 24px;
    font-size: .8rem;
    color: var(--grey);
    text-align: center;
    position: relative;
    z-index: 1;
  }
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  footer a { color: var(--grey); text-decoration: none; }
  footer a:hover { color: var(--white); }
  .footer-links { display: flex; align-items: center; gap: 8px; }
  .footer-sep { color: var(--border); }
  .footer-recaptcha { font-size: .72rem; max-width: 620px; line-height: 1.6; color: #4a5568; }

  /* ── LEGAL PAGES ── */
  .legal-wrap { max-width: 1140px; margin: 0 auto; padding: 64px 24px 80px; }
  .legal-wrap h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 6px; }
  .legal-updated { font-size: .8rem; color: var(--grey); margin-bottom: 48px; }
  .legal-wrap h2 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin: 36px 0 10px; }
  .legal-wrap p, .legal-wrap li { font-size: .9rem; color: var(--grey); line-height: 1.8; margin-bottom: 10px; }
  .legal-wrap ul { padding-left: 20px; margin-bottom: 10px; }
  .legal-wrap a { color: var(--blue-light); text-decoration: none; }
  .legal-wrap a:hover { text-decoration: underline; }
  .legal-contact { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px 28px; margin-top: 40px; }
  .legal-contact p { margin-bottom: 4px; }

  /* reCAPTCHA v3 — badge oculto; divulgação feita no footer conforme política do Google */
  .grecaptcha-badge { visibility: hidden !important; }

  /* ── TO TOP ── */
  #to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    z-index: 999;
  }
  #to-top.visible { opacity: 1; pointer-events: auto; }
  #to-top:hover { transform: translateY(-3px); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * {
    opacity: 0;
    animation: fadeUp .7s ease forwards;
  }
  .hero-content > *:nth-child(1) { animation-delay: .22s; }
  .hero-content > *:nth-child(2) { animation-delay: .34s; }
  .hero-content > *:nth-child(3) { animation-delay: .46s; }
  .form-card { animation: fadeUp .7s ease .3s forwards; opacity: 0; }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .hero { min-height: auto; }
    .hero .container { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; padding-bottom: 40px; }
    .hero-badge { grid-column: 1; grid-row: 1; align-self: start; margin-bottom: 0; }
    .hero-visual { grid-column: 1; grid-row: 2; margin-top: 16px; }
    .hero-content { grid-column: 1; grid-row: 3; margin-top: 32px; }
    .hero-stats-wrapper { grid-column: 1; grid-row: 4; justify-content: center; }
    .hero-img { width: 100%; max-width: 480px; height: auto; margin: 0 auto; }
    .hero::after { display: none; }
    .features-layout { grid-template-columns: 1fr; }
    .form-section-inner { grid-template-columns: 1fr; gap: 40px; }
    #whatsapp > div { grid-template-columns: 1fr !important; gap: 40px !important; }
    #whatsapp h2.section-title { text-align: center !important; }
    .segments-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats-card { padding: 24px 32px; gap: 40px; }
  }
  @media (max-width: 620px) {
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .features-grid { grid-template-columns: 1fr; }
    .proof-bar { gap: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .topbar-logo img { height: 40px; }
    .topbar-cta { display: none; }
    .segments-grid { grid-template-columns: 1fr; }
    .hero-stats-card { padding: 20px 16px; gap: 20px; flex-wrap: wrap; }
    .hero-stat-divider { width: 100%; height: 1px; display: none; }
    .hero-stat-item { flex: 1; min-width: 80px; }
    .hero-stats-wrapper { padding: 0 8px; }
    .form-standalone { padding: 28px 20px; }
    .form-card { padding: 28px 20px; }
    .final-cta { padding: 64px 24px; }
  }

  /* ── OBRIGADO ── */
  #obrigado {
    display: none;
    background: rgba(30,111,255,0.08);
    border: 1px solid rgba(30,111,255,0.3);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    margin-top: 16px;
  }
  #obrigado.show { display: block; }
  #obrigado h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; margin-bottom: 6px; }
  #obrigado p { font-size: .86rem; color: var(--grey); }

  #obrigado2 {
    display: none;
    background: rgba(30,111,255,0.08);
    border: 1px solid rgba(30,111,255,0.3);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    margin-top: 16px;
  }
  #obrigado2.show { display: block; }
  #obrigado2 h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; margin-bottom: 6px; }
  #obrigado2 p { font-size: .86rem; color: var(--grey); }
