    /* RESET & VARS */
    :root {
      --bg-dark: #0f1015;
      --bg-darker: #08080a;
      --gold: #D4AF37;
      --gold-glow: rgba(212, 175, 55, 0.4);
      --green-wpp: #25D366;
      --text-main: #ffffff;
      --text-muted: #a0a0B0;
    }
    * {
      margin: 0; padding: 0; box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-main);
      overflow-x: hidden;
      line-height: 1.6;
      font-size: 17px; /* Acessibilidade aprimorada */
    }
    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
    }
    a { text-decoration: none; }

    /* CONTAINER */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* BARRA DE URGÊNCIA */
    .urgency-bar {
      background-color: #ff4757;
      color: white;
      text-align: center;
      padding: 10px 20px;
      font-weight: 600;
      font-size: 0.95rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      animation: flashBg 3s infinite;
    }
    .urgency-bar a {
      color: white;
      text-decoration: underline;
      font-weight: 700;
    }
    @keyframes flashBg {
      0%, 100% { background-color: #ff4757; }
      50% { background-color: #d1303e; }
    }

    /* HEADER MINIMALISTA */
    header {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      background: rgba(15, 16, 21, 0.9);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .btn-header {
      background: var(--green-wpp);
      color: #fff;
      padding: 12px 24px;
      border-radius: 5px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: 0.3s;
      min-height: 44px; /* Acessibilidade mobile */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .btn-header:hover {
      background: #1ebc5a;
      transform: scale(1.05);
    }

    /* HERO AGRESSIVO */
    .hero {
      padding: 80px 0 100px;
      position: relative;
      background: radial-gradient(circle at top right, rgba(212,175,55,0.1), transparent 40%),
                  radial-gradient(circle at bottom left, rgba(37,211,102,0.05), transparent 40%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 50px;
      align-items: center;
    }
    .headline-badge {
      display: inline-block;
      background: rgba(255,0,0,0.1);
      color: #ff4757;
      border: 1px solid #ff4757;
      padding: 6px 18px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero h1 {
      font-size: 3.2rem;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .highlight {
      color: var(--gold);
      position: relative;
    }
    .hero p {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 30px;
      max-width: 90%;
    }
    
    /* PROVA SOCIAL INLINE (NOVO) */
    .inline-proof {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 40px;
      background: rgba(255,255,255,0.03);
      padding: 10px 15px;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.05);
      width: fit-content;
    }
    .avatars {
      display: flex;
    }
    .avatars img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      border: 2px solid var(--bg-dark);
      margin-left: -10px;
      object-fit: cover;
    }
    .avatars img:first-child { margin-left: 0; }
    .proof-text {
      font-size: 0.9rem;
      font-weight: 600;
      color: #e0e0e0;
    }
    .proof-stars {
      color: var(--gold);
      font-size: 0.8rem;
    }

    /* VSL / VIDEO PLACEHOLDER */
    .vsl-box {
      background: #000;
      border: 2px solid rgba(212,175,55,0.3);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px var(--gold-glow);
      position: relative;
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
    }
    .vsl-box:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
    }
    .vsl-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.7;
      transition: 0.3s;
    }
    .vsl-box:hover img {
      opacity: 0.5;
    }
    .play-btn {
      position: absolute;
      width: 80px;
      height: 80px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      color: #000;
      padding-left: 5px;
      box-shadow: 0 0 20px rgba(212,175,55,0.6);
      animation: pulsePlay 2s infinite;
    }
    @keyframes pulsePlay {
      0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
      70% { box-shadow: 0 0 0 20px rgba(212,175,55,0); }
      100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
    }

    /* BOTAO CTA PRINCIPAL */
    .cta-btn-wrapper {
      margin-top: 10px;
    }
    .cta-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      background: linear-gradient(to right, #25D366, #1daf54);
      color: #fff;
      font-size: 1.4rem;
      font-weight: 800;
      padding: 22px 40px;
      border-radius: 8px;
      text-transform: uppercase;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      transition: 0.3s;
      width: 100%;
      text-align: center;
      border-bottom: 4px solid #14833b;
      animation: pulseGreen 2s infinite;
    }
    .cta-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    }
    @keyframes pulseGreen {
      0% { transform: scale(1); }
      50% { transform: scale(1.02); }
      100% { transform: scale(1); }
    }
    .cta-subtext {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 15px;
      font-size: 0.9rem;
      color: #aaa;
      font-weight: 500;
      gap: 5px;
    }

    /* STATS / CONTADORES (NOVO) */
    .section-stats {
      padding: 60px 0;
      background: #050505;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      text-align: center;
    }
    .stat-item h3 {
      font-size: 3rem;
      color: var(--gold);
      margin-bottom: 5px;
      font-weight: 900;
      line-height: 1;
    }
    .stat-item p {
      color: var(--text-muted);
      font-size: 1.1rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* PROBLEMA AGITAÇÃO */
    .section-agitation {
      padding: 90px 0;
      background: var(--bg-darker);
      text-align: center;
    }
    .agitation-title {
      font-size: 2.5rem;
      max-width: 800px;
      margin: 0 auto 50px;
    }
    .cards-agitation {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }
    .card-agit {
      background: rgba(255,0,0,0.03);
      border: 1px solid rgba(255,0,0,0.1);
      padding: 40px 30px;
      border-radius: 12px;
      transition: 0.3s;
    }
    .card-agit:hover {
      background: rgba(255,0,0,0.06);
      transform: translateY(-5px);
    }
    .card-agit i {
      font-size: 2.5rem;
      color: #ff4757;
      margin-bottom: 20px;
    }
    .card-agit h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
    }
    .card-agit p {
      color: var(--text-muted);
      font-size: 1.05rem;
    }

    /* DIREITOS (SOLUÇÃO) */
    .section-rights {
      padding: 100px 0;
      position: relative;
    }
    .rights-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .rights-header h2 {
      font-size: 2.8rem;
      margin-bottom: 15px;
    }
    .rights-grid {
      display: grid;
      gap: 24px;
      align-items: start;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) and (max-width: 999px) {
      .rights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
      }
      .rights-grid .right-card:last-child {
        grid-column: 1 / -1;
      }
    }
    @media (min-width: 1000px) {
      .rights-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
      }
    }
    .right-card {
      background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
      border: 1px solid rgba(212,175,55,0.1);
      border-radius: 15px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      transition: 0.4s;
    }
    .right-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 4px; height: 100%;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: 0.4s;
    }
    .right-card:hover {
      transform: translateY(-5px);
      border-color: rgba(212,175,55,0.4);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    .right-card:hover::before {
      transform: scaleY(1);
    }
    .right-card .val {
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      line-height: 1;
      margin-bottom: 10px;
      opacity: 0.5;
    }
    .right-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--gold);
    }
    .right-card p {
      color: #ddd;
      font-size: 1.05rem;
    }
    .vehicle-benefits {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-top: 8px;
    }
    .vb-block {
      background: rgba(0,0,0,0.2);
      border-radius: 10px;
      padding: 18px 18px 16px;
      border: 1px solid rgba(212,175,55,0.12);
    }
    .vb-block strong {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      font-size: 1rem;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .vb-block strong i {
      opacity: 0.9;
    }
    .vb-block p {
      margin: 0;
      font-size: 0.98rem;
      line-height: 1.55;
    }
    .vb-pct {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 14px;
      background: rgba(212,175,55,0.12);
      border: 1px solid rgba(212,175,55,0.25);
      border-radius: 8px;
      font-size: 0.92rem;
      color: #e8e0c8;
      line-height: 1.45;
    }
    .vb-pct strong {
      color: var(--gold);
      font-weight: 700;
    }
    .vb-note {
      margin-top: 18px !important;
      margin-bottom: 0 !important;
      font-size: 0.88rem !important;
      color: var(--text-muted) !important;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.5;
    }
    .vb-note i {
      margin-top: 3px;
      color: var(--gold);
      opacity: 0.7;
    }

    /* DEPOIMENTOS (NOVO) */
    .section-testimonials {
      padding: 100px 0;
      background: var(--bg-darker);
      text-align: center;
    }
    .testi-title {
      font-size: 2.5rem;
      margin-bottom: 60px;
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .testi-card {
      background: #15161d;
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 15px;
      padding: 40px 30px;
      text-align: left;
      position: relative;
    }
    .testi-card i.fa-quote-left {
      position: absolute;
      top: 30px;
      right: 30px;
      font-size: 3rem;
      color: rgba(212,175,55,0.1);
    }
    .testi-stars {
      color: var(--gold);
      margin-bottom: 20px;
      font-size: 1.1rem;
    }
    .testi-text {
      font-size: 1.1rem;
      font-style: italic;
      color: #eee;
      margin-bottom: 30px;
      line-height: 1.7;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .testi-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }
    .testi-info h4 {
      font-size: 1.1rem;
      margin-bottom: 2px;
    }
    .testi-info p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* COMO FUNCIONA (NOVO) */
    .section-steps {
      padding: 100px 0;
      text-align: center;
    }
    .steps-title {
      font-size: 2.5rem;
      margin-bottom: 60px;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: rgba(212,175,55,0.2);
      z-index: 1;
    }
    .step-item {
      position: relative;
      z-index: 2;
    }
    .step-number {
      width: 80px;
      height: 80px;
      background: var(--bg-dark);
      border: 2px solid var(--gold);
      color: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 800;
      font-family: 'Montserrat', sans-serif;
      margin: 0 auto 25px;
      box-shadow: 0 0 20px rgba(212,175,55,0.2);
    }
    .step-item h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
    }
    .step-item p {
      color: var(--text-muted);
      font-size: 1.05rem;
    }

    @media (max-width: 900px) {
      .steps-grid::before { display: none; }
      .steps-grid { grid-template-columns: 1fr; gap: 50px; }
    }

    /* CHECKLIST / QUEM TEM DIREITO */
    .section-who {
      padding: 100px 0;
      background: var(--bg-darker);
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .who-flex {
      display: flex;
      gap: 60px;
      align-items: center;
    }
    .who-text {
      flex: 1;
    }
    .who-text h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
    }
    .check-list {
      list-style: none;
    }
    .check-list li {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 1.15rem;
      margin-bottom: 20px;
      background: rgba(255,255,255,0.02);
      padding: 15px 20px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.05);
      transition: 0.3s;
    }
    .check-list li:hover {
      background: rgba(255,255,255,0.05);
      border-color: rgba(212,175,55,0.3);
    }
    .check-list li i {
      color: var(--green-wpp);
      font-size: 1.5rem;
    }
    .who-img {
      flex: 1;
      position: relative;
    }
    .who-img img {
      width: 100%;
      border-radius: 20px;
      border: 2px solid rgba(212,175,55,0.2);
    }
    .floating-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--gold);
      color: #000;
      padding: 20px;
      border-radius: 10px;
      font-weight: 800;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    /* AUTORIDADE */
    .section-authority {
      padding: 100px 0;
      text-align: center;
      background: url('https://www.transparenttextures.com/patterns/cubes.png');
    }
    .auth-box {
      background: rgba(15, 16, 21, 0.95);
      border: 1px solid rgba(212,175,55,0.2);
      border-radius: 20px;
      padding: 60px;
      max-width: 900px;
      margin: 0 auto;
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }
    .auth-box img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      margin-bottom: 25px;
      border: 4px solid var(--gold);
      object-fit: cover;
      box-shadow: 0 0 20px rgba(212,175,55,0.4);
    }
    .auth-box h3 {
      font-size: 2.2rem;
      margin-bottom: 10px;
    }
    .auth-box p {
      font-size: 1.15rem;
      color: #ddd;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    /* CTA DE URGÊNCIA FINAL (NOVO) */
    .section-final-cta {
      padding: 80px 0;
      background: linear-gradient(135deg, #14833b 0%, #0d5426 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .section-final-cta::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url('https://www.transparenttextures.com/patterns/diagonal-stripes.png');
      opacity: 0.1;
      pointer-events: none;
    }
    .final-cta-content {
      position: relative;
      z-index: 2;
    }
    .final-cta-content h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #fff;
    }
    .final-cta-content p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      color: #e0f2e5;
    }
    .btn-final {
      background: #0f1015;
      color: #fff;
      font-size: 1.4rem;
      font-weight: 800;
      padding: 22px 50px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      gap: 15px;
      border: 2px solid #0f1015;
      transition: 0.3s;
      text-transform: uppercase;
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    .btn-final:hover {
      background: transparent;
      border-color: #fff;
      transform: translateY(-3px);
    }

    /* FAQ ACCORDION */
    .section-faq {
      padding: 100px 0;
      background: var(--bg-darker);
    }
    .faq-title {
      text-align: center;
      font-size: 2.8rem;
      margin-bottom: 60px;
    }
    .faq-wrapper {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq-item {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: 0.3s;
    }
    .faq-item:hover {
      background: rgba(255,255,255,0.04);
    }
    .faq-q {
      padding: 25px;
      font-size: 1.15rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }
    .faq-q i {
      color: var(--gold);
      transition: 0.3s;
      font-size: 1.2rem;
    }
    .faq-a {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: var(--text-muted);
      font-size: 1.05rem;
    }
    .faq-item.active .faq-a {
      padding: 0 25px 25px;
      max-height: 300px;
    }
    .faq-item.active .faq-q i {
      transform: rotate(180deg);
    }

    /* FOOTER LP */
    footer {
      padding: 50px 0;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.05);
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    /* FLOATING ACTION BUTTON (FAB) */
    .fab-whatsapp {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #25D366;
      color: #fff;
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 35px;
      box-shadow: 0 10px 25px rgba(37,211,102,0.4);
      z-index: 9999;
      animation: pulseGreen 2s infinite;
      transition: 0.3s;
    }
    .fab-whatsapp:hover {
      transform: scale(1.1);
      background: #1ebc5a;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; gap: 30px; }
      .hero { text-align: center; padding: 40px 0 60px; }
      .inline-proof { margin: 0 auto 30px; }
      .hero h1 { font-size: 2.3rem; }
      .cta-main { font-size: 1.15rem; padding: 18px 20px; }
      .headline-badge { margin: 0 auto 20px; }
      .hero p { margin: 0 auto 30px; font-size: 1.05rem; }
      .stats-grid { grid-template-columns: 1fr; gap: 30px; }
      .who-flex { flex-direction: column; gap: 40px; }
      .auth-box { padding: 40px 20px; }
      .section-final-cta h2 { font-size: 2.2rem; }
      .btn-final { font-size: 1.1rem; padding: 18px 25px; width: 100%; justify-content: center;}
      .faq-title, .agitation-title, .steps-title, .testi-title, .rights-header h2 { font-size: 2.2rem; }
    }
