
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --verde: #1B6B4A;
    --verde-claro: #2D9B6A;
    --verde-menta: #E6F5EF;
    --verde-escuro: #0F3D2B;
    --dourado: #C8972A;
    --dourado-claro: #F5E6C0;
    --creme: #FAF7F2;
    --texto: #1A1A1A;
    --texto-mudo: #5A5A5A;
    --branco: #FFFFFF;
    --borda: #E0DDD7;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--creme);
    color: var(--texto);
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  header {
    background: var(--verde-escuro);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .logo {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
  }

  .logo span { color: var(--dourado); }

  .header-cta {
    background: var(--dourado);
    color: var(--verde-escuro);
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s;
  }

  .header-cta:hover { opacity: .88; }

  /* ── HERO ── */
  .hero {
    background: var(--verde-escuro);
    position: relative;
    overflow: hidden;
    padding: 80px 24px 100px;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,151,42,.18) 0%, transparent 70%);
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,155,106,.22) 0%, transparent 70%);
  }

  .hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200,151,42,.18);
    border: 1px solid rgba(200,151,42,.35);
    color: var(--dourado);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--dourado);
  }

  .hero p {
    font-size: 17px;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto 40px;
  }

  /* ── FORM HERO ── */
  .form-hero {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 32px 80px rgba(0,0,0,.28);
  }

  .form-hero h2 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-bottom: 6px;
  }

  .form-hero p.sub {
    font-size: 13px;
    color: var(--texto-mudo);
    margin-bottom: 22px;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .field-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    color: var(--texto-mudo);
    text-transform: uppercase;
  }

  .field-group input,
  .field-group select {
    border: 1.5px solid var(--borda);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--texto);
    background: var(--creme);
    outline: none;
    transition: border-color .2s;
    appearance: none;
    -webkit-appearance: none;
  }

  .field-group input:focus,
  .field-group select:focus {
    border-color: var(--verde-claro);
    background: #fff;
  }

  .select-wrap { position: relative; }

  .select-wrap::after {
    content: '▾';
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--texto-mudo);
    pointer-events: none;
  }

  .btn-submit {
    width: 100%;
    background: var(--verde);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s, transform .15s;
    position: relative;
  }

  .btn-submit:hover { background: var(--verde-claro); transform: translateY(-1px); }
  .btn-submit:active { transform: translateY(0); }

  .form-privacidade {
    font-size: 11px;
    color: var(--texto-mudo);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
  }

  /* ── STRIP OPERADORAS ── */
  .strip {
    background: var(--branco);
    padding: 22px 24px;
    border-bottom: 1px solid var(--borda);
  }

  .strip-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .strip-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--texto-mudo);
    letter-spacing: .6px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-right: 8px;
  }

  .op-badge {
    background: var(--creme);
    border: 1px solid var(--borda);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--texto);
  }

  /* ── BENEFÍCIOS ── */
  .section { padding: 80px 24px; }

  .section-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .section-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--verde-claro);
    margin-bottom: 10px;
  }

  .section h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--verde-escuro);
    margin-bottom: 48px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .card {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: 16px;
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
  }

  .card:hover {
    box-shadow: 0 12px 40px rgba(27,107,74,.1);
    transform: translateY(-3px);
  }

  .card-icon {
    width: 48px; height: 48px;
    background: var(--verde-menta);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }

  .card h3 {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-bottom: 8px;
  }

  .card p {
    font-size: 14px;
    color: var(--texto-mudo);
    line-height: 1.6;
  }

  /* ── PLANOS TIPOS ── */
  .tipos { background: var(--verde-escuro); padding: 80px 24px; }

  .tipos .section-tag { color: var(--dourado); }
  .tipos h2 { color: #fff; }

  .tipo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .tipo-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: background .2s;
  }

  .tipo-card:hover { background: rgba(255,255,255,.11); }

  .tipo-icon {
    font-size: 34px;
    margin-bottom: 14px;
    display: block;
  }

  .tipo-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
  }

  .tipo-card p {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.55;
  }

  /* ── PROCESSO ── */
  .processo { padding: 80px 24px; background: var(--branco); }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    left: 23px; top: 24px;
    width: 2px;
    height: calc(100% - 48px);
    background: var(--borda);
  }

  .step {
    display: flex;
    gap: 20px;
    padding: 0 0 36px;
    align-items: flex-start;
  }

  .step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--verde);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .step-body h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-bottom: 5px;
    padding-top: 10px;
  }

  .step-body p {
    font-size: 14px;
    color: var(--texto-mudo);
    line-height: 1.6;
  }

  /* ── SOCIAL PROOF ── */
  .depoimentos { padding: 80px 24px; background: var(--creme); }

  .depo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 0;
  }

  .depo {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: 16px;
    padding: 24px;
  }

  .stars { color: var(--dourado); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }

  .depo p { font-size: 14px; line-height: 1.65; color: var(--texto); margin-bottom: 16px; }

  .depo-autor {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--verde-menta);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--verde);
  }

  .depo-nome { font-size: 13px; font-weight: 600; color: var(--verde-escuro); }
  .depo-cidade { font-size: 12px; color: var(--texto-mudo); }

  /* ── STATS ── */
  .stats {
    background: var(--verde);
    padding: 60px 24px;
  }

  .stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
  }

  .stat-num span { color: var(--dourado); }

  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    margin-top: 6px;
    font-weight: 500;
  }

  /* ── CTA FINAL ── */
  .cta-final {
    padding: 100px 24px;
    background: var(--creme);
    text-align: center;
  }

  .cta-box {
    background: var(--verde-escuro);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .cta-box::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,151,42,.2) 0%, transparent 70%);
  }

  .cta-box h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -1px;
    position: relative;
  }

  .cta-box p {
    color: rgba(255,255,255,.7);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
    position: relative;
  }

  .btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    position: relative;
  }

  .btn-wpp:hover { opacity: .9; transform: translateY(-2px); }

  .btn-wpp svg { width: 20px; height: 20px; fill: #fff; }

  .btn-tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    text-decoration: none;
    margin-top: 16px;
    position: relative;
    transition: color .2s;
  }

  .btn-tel:hover { color: #fff; }

  /* ── FOOTER ── */
  footer {
    background: #0A2A1C;
    padding: 30px 24px;
    text-align: center;
  }

  footer p {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
  }

  /* ── WHATSAPP FLUTUANTE ── */
  .wpp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
    z-index: 999;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    animation: pulse 2.5s infinite;
  }

  .wpp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37,211,102,.5);
    animation: none;
  }

  .wpp-float svg { width: 30px; height: 30px; fill: #fff; }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
    50% { box-shadow: 0 8px 36px rgba(37,211,102,.6), 0 0 0 10px rgba(37,211,102,.08); }
  }

  /* ── RESPONSIVO ── */
  @media (max-width: 600px) {
    .hero { padding: 60px 20px 80px; }
    .form-hero { padding: 24px 20px; }
    .cta-box { padding: 44px 24px; }
  }

  /* ── ANIMAÇÃO ENTRADA ── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }