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

    :root {
      --gold: #F2C772;
      --lime: #D7FF41;
      --orange: #FD622F;
      --black: #000000;
      --dark: #0a0a0a;
      --dark2: #111111;
      --white: #F6FAFF;
      --gray: #DDDDDD;
      --gray2: #999999;
      --light-bg: #F0F4FA;
    }

    html {
      scroll-behavior: smooth;
      width: 100%;
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
      overscroll-behavior-x: none;
    }

    /* â”€â”€â”€ HERO â”€â”€â”€ */
    .hero {
      position: relative;
      min-height: 820px;
      display: flex;
      align-items: flex-end;
      padding: 0 20px 60px;
      background: var(--black) url('https://marcospaulodesig.com.br/wp-content/uploads/2026/03/CAPA-1-1.jpg') no-repeat center top / cover;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.9) 100%);
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: end;
    }
    .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 45px;
      font-weight: 500;
      line-height: 1.1;
      color: var(--white);
    }
    .hero h1 .gold { color: var(--gold); }
    .hero-right p {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
      margin-bottom: 32px;
    }
    .hero-right p strong { font-weight: 700; color: var(--white); }

    .hero-cta {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    @keyframes glow-pulse {
      0%, 100% { box-shadow: 0 0 12px 2px rgba(242,180,80,0.45), 0 0 28px 4px rgba(232,146,74,0.25); }
      50%       { box-shadow: 0 0 24px 8px rgba(242,180,80,0.70), 0 0 50px 12px rgba(232,146,74,0.40); }
    }
    .btn-hero {
      display: inline-block;
      background: linear-gradient(135deg, #E8924A 0%, #F5C842 100%);
      color: #000;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      padding: 18px 30px;
      border-radius: 50px;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.3s;
      white-space: nowrap;
      animation: glow-pulse 2.5s ease-in-out infinite;
    }
    .btn-hero:hover {
      opacity: 0.9;
      transform: translateY(-2px);
      box-shadow: 0 0 36px 12px rgba(242,180,80,0.80), 0 0 64px 18px rgba(232,146,74,0.50);
      animation-play-state: paused;
    }
    .hero-whatsapp {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.5;
    }

    /* Avatar carousel at bottom of hero */
    @keyframes avatar-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .hero-avatars {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      overflow-x: clip;
      overflow-y: visible;
      padding: 14px 0;
      transform: translateY(50%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    }
    .hero-avatars-track {
      display: flex;
      width: max-content;
      gap: clamp(24px, 5vw, 80px);
      animation: avatar-scroll 18s linear infinite;
    }
    .hero-avatars:hover .hero-avatars-track {
      animation-play-state: paused;
    }
    .hero-avatars img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 2px solid #111;
      object-fit: cover;
      flex-shrink: 0;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .hero-avatars img:hover { transform: scale(1.18) translateY(-5px); z-index: 10; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }

    /* â”€â”€â”€ PORTFOLIO â”€â”€â”€ */
    .portfolio {
      background: var(--black);
      padding: 100px 0 80px;
      overflow: hidden;
    }
    .portfolio-header {
      text-align: center;
      margin-bottom: 60px;
      padding: 0 20px;
    }
    .portfolio-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 48px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 20px;
    }
    .portfolio-header p {
      font-size: 18px;
      color: var(--gray);
      line-height: 1.6;
    }

    /* Marquee rows */
    .marquee-track {
      display: flex;
      gap: 16px;
      width: max-content;
      margin-bottom: 16px;
    }
    .marquee-track:last-child { margin-bottom: 0; }

    .marquee-row {
      overflow: hidden;
      padding: 8px 0;
    }

    @keyframes scroll-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes scroll-right {
      0%   { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    .marquee-row-1 .marquee-track {
      animation: scroll-left 28s linear infinite;
      animation-play-state: var(--marquee-play, running);
      will-change: transform;
    }
    .marquee-row-2 .marquee-track {
      animation: scroll-right 28s linear infinite;
      animation-play-state: var(--marquee-play, running);
      will-change: transform;
    }
    .marquee-row:hover .marquee-track {
      animation-play-state: paused;
    }
    @media (hover: none) {
      .marquee-row:hover .marquee-track {
        animation-play-state: running;
      }
    }

    /* Portfolio card */
    .pcard {
      width: 340px;
      height: 220px;
      border-radius: 12px;
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
      cursor: grab;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      user-select: none;
      touch-action: pan-y;
    }
    .pcard:hover {
      transform: scale(1.03);
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    }
    .pcard.dragging { cursor: grabbing; transform: scale(1.03); }
    .pcard-bg {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      transition: background-position 0.05s linear;
      pointer-events: none;
    }
    .pcard-label { display: none; }

    /* Lightbox */
    .lb-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 9999;
      justify-content: center;
      align-items: flex-start;
      padding: 40px 20px;
      overflow-y: auto;
      cursor: zoom-out;
    }
    .lb-overlay.open { display: flex; }
    .lb-overlay img {
      max-width: min(900px, 92vw);
      border-radius: 10px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.8);
      cursor: default;
    }
    .lb-close {
      position: fixed;
      top: 18px;
      right: 24px;
      font-size: 32px;
      color: #fff;
      cursor: pointer;
      line-height: 1;
      opacity: 0.7;
      transition: opacity 0.2s;
      z-index: 10000;
    }
    .lb-close:hover { opacity: 1; }

    /* â”€â”€â”€ PROBLEM / SOLUTION â”€â”€â”€ */
    .problem {
      background: var(--black);
      padding: 80px 20px;
    }
    .section-badge {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.7);
      margin-bottom: 28px;
    }
    .problem-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .problem-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 35px;
      font-weight: 600;
      color: var(--white);
    }
    .problem-header h2 .gold { color: var(--gold); }
    .problem-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .problem-col {
      border-radius: 12px;
      overflow: hidden;
    }
    .problem-col img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      display: block;
    }
    .problem-col-body { padding: 28px 0 0; }
    .problem-col-body h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 25px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 20px;
    }
    .problem-col-body ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .problem-col-body li {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
      padding-left: 0;
    }
    .problem-cta {
      text-align: center;
      margin-top: 60px;
    }
    .btn-gold {
      display: inline-block;
      background: linear-gradient(135deg, #E8924A 0%, #F5C842 100%);
      color: #000;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 18px 36px;
      border-radius: 50px;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.3s;
      animation: glow-pulse 2.5s ease-in-out infinite;
    }
    .btn-gold:hover {
      opacity: 0.9;
      transform: translateY(-2px);
      box-shadow: 0 0 36px 12px rgba(242,180,80,0.80), 0 0 64px 18px rgba(232,146,74,0.50);
      animation-play-state: paused;
    }

    /* â”€â”€â”€ BENEFITS â”€â”€â”€ */
    .benefits {
      background: linear-gradient(180deg, #0d1a0d 0%, #0a1510 100%);
      padding: 80px 20px;
    }
    .benefits-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .benefits-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 40px;
      font-weight: 600;
      color: var(--white);
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      max-width: 1100px;
      margin: 0 auto;
    }
    .benefit-item {
      padding: 40px 36px;
      border-right: 1px solid rgba(255,255,255,0.1);
      transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
      border-radius: 12px;
    }
    .benefit-item:last-child { border-right: none; }
    .benefit-item:hover {
      background: rgba(242,199,114,0.06);
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(242,199,114,0.2);
    }
    .benefit-item:hover .benefit-icon {
      transform: scale(1.2) rotate(-8deg);
    }
    .benefit-icon {
      font-size: 36px;
      margin-bottom: 20px;
      display: block;
      transition: transform 0.35s ease;
    }
    .benefit-item h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .benefit-item p {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: #D1D1D1;
      line-height: 1.7;
    }

    /* ─── HOW IT WORKS ─── */
    .how {
      background: #0d0b09;
      padding: 100px 20px;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .how-header {
      text-align: center;
      margin-bottom: 20px;
    }
    .how-header p {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .how-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 40px;
      font-weight: 600;
      color: var(--white);
    }
    .how-header h2 .gold { color: var(--gold); }
    .how-steps {
      max-width: 1000px;
      margin: 80px auto 0;
      display: flex;
      flex-direction: column;
      gap: 80px;
    }
    .how-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .how-step.reverse { direction: rtl; }
    .how-step.reverse > * { direction: ltr; }
    .how-step-text p.step-label {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.38);
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }
    .how-step-text p.step-label span { color: var(--gold); }
    .how-step-text h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 26px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .how-step-text p.step-desc {
      font-size: 15px;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
    }
    .how-step-img {
      border-radius: 12px;
      overflow: hidden;
      background: #1a1410;
      aspect-ratio: 4/3;
      border: 1px solid rgba(242,199,114,0.1);
    }
    .how-step-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .how-step-img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a1410 0%, #2a1e0e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      min-height: 280px;
    }

    /* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
    .testimonials {
      background: var(--black);
      padding: 80px 20px;
      overflow: hidden;
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .testimonials-badge {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.1em;
      margin-bottom: 20px;
    }
    .testimonials-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 40px;
      font-weight: 500;
      color: var(--white);
    }

    .carrossel-wrapper {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .carrossel-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .testimonial-card {
      background: #141414;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 24px;
    }
    .testimonial-card p {
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-author img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
    }
    .author-name {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
    }

    /* â”€â”€â”€ ABOUT â”€â”€â”€ */
    .about {
      background: #0a0a0a;
      padding: 100px 20px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .about-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
    .about-circle {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 340px;
      height: 340px;
      background: radial-gradient(circle at center, rgba(242, 180, 80, 0.28) 0%, rgba(180, 90, 20, 0.14) 45%, transparent 72%);
      border-radius: 50%;
      z-index: 0;
    }
    .about-img-wrap img {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 420px;
      object-fit: cover;
      display: block;
      border-radius: 24px;
    }
    .about-text { }
    .about-label {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(242,199,114,0.32);
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .about-text h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 28px;
    }
    .about-text p {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .about-text p:last-of-type { margin-bottom: 36px; }
    .btn-green {
      display: inline-block;
      background: #2BDD66;
      color: #000;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 18px 36px;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 0 18px 4px rgba(43,221,102,0.35), 0 0 40px 8px rgba(43,221,102,0.15);
      animation: glow-green 2.5s ease-in-out infinite;
    }
    @keyframes glow-green {
      0%, 100% { box-shadow: 0 0 14px 3px rgba(43,221,102,0.40), 0 0 32px 6px rgba(43,221,102,0.20); }
      50%       { box-shadow: 0 0 26px 8px rgba(43,221,102,0.65), 0 0 54px 14px rgba(43,221,102,0.35); }
    }
    .btn-green:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 36px 12px rgba(43,221,102,0.75), 0 0 64px 18px rgba(43,221,102,0.45);
      animation-play-state: paused;
    }
    @media (max-width: 767px) {
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-circle { width: 240px; height: 240px; }
      .about-text h2 { font-size: 28px; }
    }

    /* â”€â”€â”€ FAQ â”€â”€â”€ */
    .faq {
      background: #0a0a0a;
      padding: 80px 20px;
    }
    .faq-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .faq-left {}
    .faq-left h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 32px;
    }
    .faq-left h2 .lime { color: var(--lime); }
    .faq-whatsapp {
      background: #1a1a1a;
      border-radius: 12px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.08);
      transition: border-color 0.2s;
    }
    .faq-whatsapp:hover { border-color: var(--lime); }
    .faq-whatsapp-icon {
      width: 44px;
      height: 44px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .faq-whatsapp-icon svg { width: 24px; height: 24px; fill: white; }
    .faq-whatsapp-text strong {
      display: block;
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
    }
    .faq-whatsapp-text strong span { color: var(--lime); }
    .faq-whatsapp-text small {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .faq-item {
      background: #141414;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.07);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      line-height: 1.4;
    }
    .faq-chevron {
      font-size: 18px;
      color: rgba(255,255,255,0.4);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer {
      display: none;
      padding: 0 24px 20px;
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }
    .faq-item.open .faq-answer { display: block; }

    /* â”€â”€â”€ CTA FINAL â”€â”€â”€ */
    .cta-final {
      background: var(--black);
      padding: 100px 20px;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .cta-final h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 48px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .cta-final p {
      font-size: 18px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 48px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    /* â”€â”€â”€ WHATSAPP FLOAT â”€â”€â”€ */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      z-index: 999;
      transition: transform 0.2s;
    }
    .wa-float:hover { transform: scale(1.1); }
    .wa-float svg { width: 28px; height: 28px; fill: white; }

    /* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
    @media (max-width: 1024px) {
      .pcard { width: 280px; }
      .benefits-grid { grid-template-columns: 1fr; }
      .benefit-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .how-step, .how-step.reverse { grid-template-columns: 1fr; direction: ltr; }
    }
@media (max-width: 767px) {
      /* ── Nav mobile: só logo + CTA ── */
      .top-nav {
        border-radius: 10px;
        padding: 6px 8px;
        gap: 0;
      }
      .top-nav-link { display: none; }
      .top-nav-logo {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
      }
      .top-nav-cta {
        height: 44px;
        min-width: auto;
        padding: 0 18px;
        font-size: 13px;
        border-radius: 8px;
      }

      /* Hero mobile: imagem vertical, cover para preencher sem sambando */
      .hero {
        background-image: url('IMAGEM MOBILE.jpg') !important;
        background-size: cover !important;
        background-position: center 14% !important;
        min-height: 100svh;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
        padding: 112px 16px 34px;
      }
      .hero::after {
        background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.75) 65%, rgba(0,0,0,0.97) 100%);
      }
      .hero-inner {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        min-height: 0;
        flex: 1;
        padding-top: clamp(220px, 43vh, 360px);
        gap: 16px;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        justify-items: center;
      }
      .hero-left,
      .hero-right {
        text-align: center;
        width: min(92vw, 360px);
      }
      .hero h1 {
        font-size: 28px;
        line-height: 1.15;
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
      }
      .hero-right p {
        font-size: 15px;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
        max-width: 330px;
      }
      .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 14px;
      }
      .hero-whatsapp {
        text-align: center;
        line-height: 1.45;
      }
      .hero-avatars {
        position: relative;
        transform: translateY(0);
        margin-top: 56px;
        padding: 12px 0;
        overflow-x: hidden;
        touch-action: pan-y;
      }
      .hero-avatars-track { gap: 18px; will-change: transform; }
      .hero-avatars img { width: 40px; height: 40px; }

      /* Layout geral mobile */
      .problem-cols { grid-template-columns: 1fr; }
      .benefits-grid { grid-template-columns: 1fr; }
      .benefit-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .how-step, .how-step.reverse { grid-template-columns: 1fr; direction: ltr; }
      .carrossel-wrapper { grid-template-columns: 1fr; }
      .faq-inner { grid-template-columns: 1fr; }

      /* Tipografia mobile */
      .portfolio-header h2 { font-size: 32px; }
      .benefits-header h2, .testimonials-header h2, .cta-final h2 { font-size: 28px; }
      .problem-header h2 { font-size: 26px; }

      /* Cards do marquee menores no mobile */
      .pcard { width: 260px; height: 170px; }
      .marquee-row,
      .marquee-track,
      .carrossel-wrapper {
        touch-action: pan-y;
      }
      .hero-avatars-track,
      .marquee-track {
        will-change: transform;
      }
      .btn-hero,
      .btn-green {
        animation: none;
      }

      /* Scroll reveal no mobile â€” sem translateX pra evitar scroll horizontal */
      .reveal-left, .reveal-right {
        transform: translateY(40px);
      }
      .reveal-left.visible, .reveal-right.visible {
        transform: translateY(0);
      }
    }

    /* â”€â”€ Scroll Reveal â”€â”€ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }
    /* delay helpers */
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── TOP MENU (AB) ─── */
.top-nav-wrap {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 1200;
  display: flex;
  justify-content: center;
  padding: 0 12px;
  max-width: 100vw;
  overflow-x: hidden;
}

.top-nav {
  width: 100%;
  max-width: 1140px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(242, 199, 114, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(12,9,5,0.90), rgba(7,5,3,0.94));
  backdrop-filter: blur(12px);
  box-sizing: border-box;
}

.top-nav-logo {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(242, 199, 114, 0.18);
  background: rgba(242, 199, 114, 0.04);
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark {
  font-size: 22px;
  line-height: 1;
}

.top-nav-link {
  color: rgba(240, 230, 210, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 0 14px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}

.top-nav-link:hover {
  color: #ffffff;
  background: rgba(242, 199, 114, 0.06);
}

.top-nav-cta {
  margin-left: auto;
  text-decoration: none;
  height: 56px;
  min-width: 138px;
  border: 1px solid rgba(242, 199, 114, 0.52);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 180, 80, 0.06);
  transition: background 0.2s ease, color 0.2s ease;
}

.top-nav-cta:hover {
  background: rgba(242, 180, 80, 0.14);
  color: #fff;
}

/* ─── BENEFITS V2 (AB) ─── */
.benefits-v2 {
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 180, 80, 0.1), rgba(10, 8, 5, 0.96) 46%),
    linear-gradient(180deg, #0a0805 0%, #060402 100%);
  padding-top: 120px;
}

.benefits-v2 .benefits-header {
  margin-bottom: 44px;
}

.benefits-chip {
  display: inline-block;
  border: 1px solid rgba(242, 199, 114, 0.28);
  color: rgba(242, 199, 114, 0.88);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 20px;
  background: rgba(242, 180, 80, 0.04);
}

.benefits-v2 .benefits-header h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.15;
  color: var(--white);
  font-weight: 500;
}

.benefits-v2 .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(242, 199, 114, 0.14);
  border-left: 1px solid rgba(242, 199, 114, 0.14);
  background: rgba(10, 6, 3, 0.28);
}

.benefits-v2 .benefit-item {
  min-height: 280px;
  border: 0;
  border-right: 1px solid rgba(242, 199, 114, 0.12);
  border-bottom: 1px solid rgba(242, 199, 114, 0.12);
  border-radius: 0;
  padding: 36px 28px;
  background: linear-gradient(180deg, rgba(20, 14, 6, 0.18), rgba(8, 5, 2, 0.06));
  transition: background 0.3s ease;
}

.benefits-v2 .benefit-item:hover {
  transform: none;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(28, 18, 6, 0.38), rgba(12, 7, 2, 0.14));
}

.benefits-v2 .benefit-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(242, 199, 114, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 199, 114, 0.18), rgba(180, 100, 30, 0.08) 48%, rgba(10, 6, 2, 0.7) 70%);
  box-shadow: inset 0 0 20px rgba(180, 100, 30, 0.2);
}

.benefits-v2 .benefit-icon span {
  font-size: 26px;
  filter: none;
}

.benefits-v2 .benefit-item h3 {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--white);
}

.benefits-v2 .benefit-item p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(220, 210, 195, 0.78);
}

@media (max-width: 1100px) {
  .top-nav-link { font-size: 16px; padding: 0 12px; }
  .top-nav-cta { min-width: 122px; font-size: 16px; }

  .benefits-v2 .benefit-item h3 { font-size: 17px; }
  .benefits-v2 .benefit-item p { font-size: 14px; }
}

@media (max-width: 900px) {
  .top-nav {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .top-nav::-webkit-scrollbar { display: none; }
  .top-nav-link { white-space: nowrap; }
  .top-nav-cta { white-space: nowrap; }

  .benefits-v2 .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}



@media (max-width: 767px) {
  .top-nav-wrap {
    top: 6px;
    padding: 0 8px;
  }
  .top-nav {
    padding: 8px;
    gap: 4px;
    backdrop-filter: none;
  }
  .top-nav-logo {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }
  .top-nav-link {
    height: 46px;
    font-size: 14px;
    padding: 0 10px;
  }
  .top-nav-cta {
    height: 46px;
    min-width: 104px;
    font-size: 14px;
  }

  .benefits-v2 {
    padding-top: 86px;
  }
  .benefits-v2 .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefits-v2 .benefit-item {
    min-height: auto;
    padding: 24px 20px;
  }
  .benefits-v2 .benefit-item h3 {
    font-size: 17px;
  }
  .benefits-v2 .benefit-item p {
    font-size: 14px;
  }
}

/* Ajuste final de centralização do hero no mobile (override) */
@media (max-width: 767px) {
  .hero-inner {
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
  }

  .hero-left,
  .hero-right {
    width: min(92vw, 360px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero h1,
  .hero-right p,
  .hero-whatsapp {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-cta {
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .btn-hero {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ═══════════════════════════════════════
   MOBILE FINAL — sobrescreve tudo acima
═══════════════════════════════════════ */
@media (max-width: 767px) {

  /* Scroll instantâneo no mobile — evita travar durante animação */
  html { scroll-behavior: auto !important; }

  /* Nav: scrollável horizontalmente, sem scrollbar visível */
  .top-nav {
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    flex-wrap: nowrap !important;
  }
  .top-nav::-webkit-scrollbar { display: none !important; }
  .top-nav-link {
    display: inline-flex !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  /* Remove WhatsApp flutuante no mobile (conflito com botão do hero) */
  .wa-float { display: none !important; }

  /* Hero avatars: tira o absolute e coloca em fluxo abaixo do conteúdo */
  .hero-avatars {
    position: relative !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 32px !important;
    padding: 12px 0 !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
  }

  /* Headline centralizada */
  .hero h1 {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ═══════════════════════════════════════
   VERSÃO AB — MELHORIAS VISUAIS
═══════════════════════════════════════ */

/* [AB] 1. Textura de pontos global */
html::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: plus-lighter;
  user-select: none;
}

/* [AB] 2. Blur nos scroll reveals */
.reveal      { filter: blur(8px); }
.reveal-left { filter: blur(8px); }
.reveal-right{ filter: blur(8px); }
.reveal.visible      { filter: blur(0); transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease; }
.reveal-left.visible { filter: blur(0); transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease; }
.reveal-right.visible{ filter: blur(0); transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease; }

/* [AB] 3. text-wrap balance nos headings */
h1, h2, h3 { text-wrap: balance; }

/* [AB] 4. Shinery nos CTAs — base */
.btn-hero,
.btn-gold,
.btn-green {
  position: relative;
  overflow: hidden;
}

/* shinery dourado (btn-hero e btn-gold) */
.btn-hero::before,
.btn-gold::before {
  content: '';
  background: linear-gradient(10deg, rgba(255,255,255,0.32) 12.81%, rgba(255,255,255,0) 66.66%);
  width: 65px;
  height: 140%;
  position: absolute;
  transform: translateX(-50%) skew(-25deg);
  bottom: 0;
  pointer-events: none;
  user-select: none;
  animation: shinery-ab-gold 3.5s infinite ease-in-out;
  filter: blur(3px);
  z-index: 1;
}
@keyframes shinery-ab-gold {
  0%,100% { left:-10%; opacity:0; }
  20%     { opacity:1; }
  48%     { left:110%; opacity:1; }
  51%     { opacity:0; }
}

/* shinery verde (btn-green) */
.btn-green::before {
  content: '';
  background: linear-gradient(10deg, rgba(255,255,255,0.28) 12.81%, rgba(255,255,255,0) 66.66%);
  width: 65px;
  height: 140%;
  position: absolute;
  transform: translateX(-50%) skew(-25deg);
  bottom: 0;
  pointer-events: none;
  user-select: none;
  animation: shinery-ab-green 4s infinite ease-in-out;
  filter: blur(3px);
  z-index: 1;
}
@keyframes shinery-ab-green {
  0%,100% { left:-10%; opacity:0; }
  15%     { opacity:1; }
  45%     { left:110%; opacity:1; }
  48%     { opacity:0; }
}


/* [AB] 5. Entrada escalonada no hero — CSS puro (sem JS) */
@keyframes ab-hero-entry {
  from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}
.hero-left  { animation: ab-hero-entry 0.85s ease 0.2s  both; }
.hero-right { animation: ab-hero-entry 0.85s ease 0.45s both; }

/* [AB] 6. Lenis toma conta do scroll — desativa scroll-behavior CSS */
html { scroll-behavior: auto !important; }

/* [AB] 7. Fairy points — desativado */
.fairy-layer { display: none; }

.fairy-layer-unused {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.fairy {
  --size:0.35vw; --duration:14s; --delay:0s;
  --x:50vw; --y:50vh; --tx:10vw; --ty:-12vh; --scale:0.8;
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--size); height: var(--size);
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  animation:
    fairy-move var(--duration) ease-in-out var(--delay) infinite alternate,
    fairy-flash calc(var(--duration)*0.7) ease-in-out var(--delay) infinite;
  transform: translate3d(0,0,0) scale(var(--scale));
}
.fairy::before {
  content:""; position:absolute; inset:-4px; border-radius:inherit;
  background:radial-gradient(circle,rgba(255,255,255,0.9),rgba(255,255,255,0));
  opacity:0.55;
}
@keyframes fairy-move {
  0%   { transform:translate3d(0,0,0) scale(var(--scale)); }
  100% { transform:translate3d(var(--tx),var(--ty),0) scale(calc(var(--scale)*1.12)); }
}
@keyframes fairy-flash {
  0%,30%,100% { opacity:0.15; box-shadow:0 0 0 0 rgba(145,94,255,0); }
  8% { opacity:1; box-shadow:0 0 1.2vw 0.22vw rgba(145,94,255,0.75); }
}
.fairy:nth-child(1)  {--x:8vw;  --y:16vh;--tx:14vw; --ty:-21vh;--duration:11s;--delay:0.2s; --scale:0.62;}
.fairy:nth-child(2)  {--x:16vw; --y:40vh;--tx:-10vw;--ty:-18vh;--duration:14s;--delay:1.2s; --scale:0.8; }
.fairy:nth-child(3)  {--x:24vw; --y:10vh;--tx:12vw; --ty:22vh; --duration:17s;--delay:0.8s; --scale:0.5; }
.fairy:nth-child(4)  {--x:31vw; --y:62vh;--tx:-16vw;--ty:-14vh;--duration:13s;--delay:2.8s; --scale:0.94;}
.fairy:nth-child(5)  {--x:39vw; --y:24vh;--tx:11vw; --ty:18vh; --duration:15s;--delay:0.4s; --scale:0.66;}
.fairy:nth-child(6)  {--x:47vw; --y:78vh;--tx:-8vw; --ty:-25vh;--duration:12s;--delay:1.8s; --scale:0.41;}
.fairy:nth-child(7)  {--x:56vw; --y:34vh;--tx:13vw; --ty:-17vh;--duration:18s;--delay:2.4s; --scale:0.88;}
.fairy:nth-child(8)  {--x:64vw; --y:12vh;--tx:-15vw;--ty:24vh; --duration:10s;--delay:0.6s; --scale:0.47;}
.fairy:nth-child(9)  {--x:73vw; --y:49vh;--tx:9vw;  --ty:-12vh;--duration:16s;--delay:3.2s; --scale:0.75;}
.fairy:nth-child(10) {--x:81vw; --y:68vh;--tx:-14vw;--ty:-19vh;--duration:12s;--delay:1.1s; --scale:0.58;}
.fairy:nth-child(11) {--x:89vw; --y:22vh;--tx:-10vw;--ty:21vh; --duration:14s;--delay:2.1s; --scale:0.83;}
.fairy:nth-child(12) {--x:95vw; --y:54vh;--tx:-20vw;--ty:-10vh;--duration:9s; --delay:0.5s; --scale:0.52;}
.fairy:nth-child(13) {--x:6vw;  --y:76vh;--tx:17vw; --ty:-26vh;--duration:13s;--delay:2.6s; --scale:0.79;}
.fairy:nth-child(14) {--x:19vw; --y:86vh;--tx:8vw;  --ty:-32vh;--duration:11s;--delay:1.4s; --scale:0.44;}
.fairy:nth-child(15) {--x:33vw; --y:44vh;--tx:-22vw;--ty:9vh;  --duration:19s;--delay:2.3s; --scale:0.96;}
.fairy:nth-child(16) {--x:46vw; --y:6vh; --tx:7vw;  --ty:27vh; --duration:15s;--delay:0.9s; --scale:0.72;}
.fairy:nth-child(17) {--x:59vw; --y:84vh;--tx:13vw; --ty:-20vh;--duration:17s;--delay:3.1s; --scale:0.6; }
.fairy:nth-child(18) {--x:71vw; --y:38vh;--tx:-18vw;--ty:16vh; --duration:12s;--delay:1.6s; --scale:0.9; }
.fairy:nth-child(19) {--x:84vw; --y:8vh; --tx:-9vw; --ty:35vh; --duration:10s;--delay:0.3s; --scale:0.63;}
.fairy:nth-child(20) {--x:92vw; --y:90vh;--tx:-24vw;--ty:-30vh;--duration:14s;--delay:2.9s; --scale:0.48;}
