

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

    /* ============================================================
       VARIÁVEIS — IDENTIDADE SEM PARAR
    ============================================================ */
    :root {
      --green:        #00B140;
      --green-dark:   #008A31;
      --white:        #FFFFFF;
      --gray-light:   #F5F5F5;
      --gray-text:    #4D4D4D;
      --btn-radius:   18px;
      --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html, body {
      min-height: 100%;
      font-family: 'Inter', sans-serif;
      background: var(--green-dark);
    }

    body {
      -webkit-font-smoothing: antialiased;
    }

    /* ============================================================
       FUNDO — foto premium da praça de pedágio Sem Parar
       + overlay verde da marca + brilho sutil
    ============================================================ */
    .bg-photo {
      position: fixed;
      top: -12px; left: -12px; right: -12px; bottom: -12px;
      z-index: 0;
      background-image: url('../images/bg-pedagio.jpg');
      background-size: cover;
      background-position: center 70%;
      background-repeat: no-repeat;
      background-attachment: fixed;
      filter: blur(2px);
    }

    .overlay {
      position: fixed;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        180deg,
        rgba(0,30,15,0.50) 0%,
        rgba(0,60,28,0.38) 45%,
        rgba(0,80,35,0.52) 100%
      );
      pointer-events: none;
    }

    .bg-glow {
      position: fixed;
      z-index: 2;
      border-radius: 50%;
      filter: blur(50px);
      pointer-events: none;
      mix-blend-mode: screen;
    }
    .bg-glow-1 {
      width: 360px;
      height: 360px;
      top: -100px;
      left: -90px;
      background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
    }
    .bg-glow-2 {
      width: 420px;
      height: 420px;
      bottom: -120px;
      right: -120px;
      background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
    }

    .bg-sweep {
      position: fixed;
      inset: -20%;
      z-index: 3;
      background: linear-gradient(100deg, transparent 44%, rgba(255,255,255,0.07) 50%, transparent 56%);
      animation: sweep 8s linear infinite;
      mix-blend-mode: screen;
      pointer-events: none;
    }
    @keyframes sweep {
      from { transform: translateX(-25%); }
      to   { transform: translateX(25%); }
    }

    /* ============================================================
       LAYOUT GERAL

    ============================================================ */
    .page {
      position: relative;
      z-index: 10;
      max-width: 500px;
      margin: 0 auto;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 36px 20px 110px;
    }

    /* ============================================================
       CABEÇALHO
    ============================================================ */
    .header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-align: center;
      opacity: 0;
      animation: fadeUp 0.7s 0.15s ease forwards;
    }

    .logo-circle {
      width: 162px;
      height: 162px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      box-shadow: 0 12px 32px rgba(0,0,0,0.35);
      overflow: hidden;
      padding: 22px;
    }

    .logo-circle img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.22));
    }

    .brand-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: clamp(1.9rem, 8vw, 2.5rem);
      color: var(--white);
      letter-spacing: 0.01em;
      margin-top: 16px;
      text-shadow: 0 3px 18px rgba(0,0,0,0.3);
    }

    .subtitle-1 {
      font-size: 0.86rem;
      font-weight: 400;
      color: rgba(255,255,255,0.85);
      margin-top: 8px;
    }

    .subtitle-2 {
      font-size: 0.95rem;
      font-weight: 600;
      color: #ffffff;
      margin-top: 4px;
    }

    /* ============================================================
       DIVISOR
    ============================================================ */
    .divider {
      width: 44px;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
      margin: 24px 0;
      opacity: 0;
      animation: fadeUp 0.5s 0.35s ease forwards;
    }

    /* ============================================================
       BOTÕES
    ============================================================ */
    .links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
    }

    .btn {
      position: relative;
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      min-height: 74px;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.96);
      border: none;
      border-radius: var(--btn-radius);
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(0,0,0,0.16), 0 1px 3px rgba(0,0,0,0.10);
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
      opacity: 0;
    }

    .btn:nth-child(1) { animation: fadeUp 0.5s 0.40s ease forwards; }
    .btn:nth-child(2) { animation: fadeUp 0.5s 0.47s ease forwards; }
    .btn:nth-child(3) { animation: fadeUp 0.5s 0.54s ease forwards; }
    .btn:nth-child(4) { animation: fadeUp 0.5s 0.61s ease forwards; }
    .btn:nth-child(5) { animation: fadeUp 0.5s 0.68s ease forwards; }
    .btn:nth-child(6) { animation: fadeUp 0.5s 0.75s ease forwards; }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.12);
      background: #ffffff;
    }

    .btn:active {
      transform: scale(0.97);
      box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    }

    .btn:focus-visible,
    .fab-whatsapp:focus-visible {
      outline: 3px solid #ffffff;
      outline-offset: 2px;
    }

    /* Botão principal — Falar com um Consultor */
    .btn-primary {
      background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
      box-shadow: 0 10px 30px rgba(0,177,64,0.45), 0 4px 10px rgba(0,0,0,0.18);
      animation: fadeUp 0.5s 0.40s ease forwards, pulseGlow 2.8s 1.2s ease-in-out infinite;
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #00C94A 0%, var(--green) 100%);
      box-shadow: 0 16px 38px rgba(0,177,64,0.55), 0 4px 12px rgba(0,0,0,0.2);
    }

    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 10px 30px rgba(0,177,64,0.45), 0 4px 10px rgba(0,0,0,0.18); }
      50%      { box-shadow: 0 10px 38px rgba(0,177,64,0.75), 0 4px 10px rgba(0,0,0,0.18); }
    }

    .btn-primary .btn-icon { background: rgba(255,255,255,0.20); }
    .btn-primary .btn-icon svg { fill: #ffffff; }
    .btn-primary .btn-label { color: #ffffff; }
    .btn-primary .btn-sub { color: rgba(255,255,255,0.88); }
    .btn-primary .btn-arrow { color: rgba(255,255,255,0.75); }

    .btn-icon {
      width: 46px;
      height: 46px;
      border-radius: 13px;
      background: rgba(0,177,64,0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.35rem;
    }

    .btn-icon svg {
      width: 23px;
      height: 23px;
      fill: var(--green);
    }

    .btn-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .btn-label {
      font-size: 0.94rem;
      font-weight: 700;
      color: #1A1A1A;
      letter-spacing: 0.01em;
    }

    .btn-sub {
      font-size: 0.73rem;
      font-weight: 400;
      color: var(--gray-text);
    }

    .btn-arrow {
      font-size: 0.95rem;
      color: #b3b3b3;
      transition: transform var(--transition), color var(--transition);
      flex-shrink: 0;
    }

    .btn:hover .btn-arrow {
      transform: translateX(3px);
      color: var(--green);
    }

    /* ============================================================
       PROVA SOCIAL
    ============================================================ */
    .social-proof {
      width: 100%;
      margin-top: 28px;
      padding: 20px 22px;
      text-align: center;
      color: #ffffff;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      opacity: 0;
      animation: fadeUp 0.6s 0.85s ease forwards;
    }

    .stars {
      font-size: 1.05rem;
      letter-spacing: 3px;
      margin-bottom: 10px;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
    }

    .proof-main {
      font-size: 0.92rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .proof-sub {
      font-size: 0.78rem;
      font-weight: 400;
      color: rgba(255,255,255,0.85);
      line-height: 1.5;
    }

    /* ============================================================
       BENEFÍCIOS
    ============================================================ */
    .benefits {
      width: 100%;
      margin-top: 16px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      opacity: 0;
      animation: fadeUp 0.6s 0.95s ease forwards;
    }

    .benefit-card {
      background: rgba(255,255,255,0.95);
      border-radius: 16px;
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-align: center;
      box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    }

    .benefit-icon {
      font-size: 1.5rem;
    }

    .benefit-text {
      font-size: 0.74rem;
      font-weight: 600;
      color: #1A1A1A;
      line-height: 1.35;
    }

    /* ============================================================
       RODAPÉ
    ============================================================ */
    .footer {
      margin-top: 26px;
      font-size: 0.68rem;
      font-weight: 400;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.04em;
      text-align: center;
      opacity: 0;
      animation: fadeUp 0.5s 1.05s ease forwards;
    }

    /* ============================================================
       BOTÃO FLUTUANTE — WHATSAPP
    ============================================================ */
    .fab-whatsapp {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(0,0,0,0.35);
      z-index: 50;
      animation: pulseFab 2.4s infinite;
      text-decoration: none;
    }

    .fab-whatsapp svg {
      width: 30px;
      height: 30px;
      fill: #ffffff;
    }

    @keyframes pulseFab {
      0%   { box-shadow: 0 0 0 0 rgba(0,177,64,0.55), 0 6px 20px rgba(0,0,0,0.35); }
      70%  { box-shadow: 0 0 0 14px rgba(0,177,64,0), 0 6px 20px rgba(0,0,0,0.35); }
      100% { box-shadow: 0 0 0 0 rgba(0,177,64,0), 0 6px 20px rgba(0,0,0,0.35); }
    }

    /* ============================================================
       KEYFRAMES GERAIS
    ============================================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ============================================================
       REDUÇÃO DE MOVIMENTO
    ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      .bg-sweep, .btn-primary, .fab-whatsapp,
      .header, .divider, .btn, .social-proof, .benefits, .footer {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* ============================================================
       TELAS MAIORES
    ============================================================ */
    @media (min-width: 640px) {
      .logo-circle { width: 180px; height: 180px; }
      .brand-title { font-size: 2.6rem; }
      .btn-label { font-size: 0.98rem; }
    }
  