    /* ===================================
       🎨 VARIÁVEIS & RESET
    =================================== */
    :root {
      --bg: #0c0314;
      --bg-alt: #110520;
      --card: #14071f;
      --primary: #8a00cc;
      --primary-dark: #6b00a0;
      --secondary: #b300ff;
      --accent: #d966ff;
      --accent-soft: rgba(217, 102, 255, 0.15);
      --text: #f5f0fa;
      --muted: #b8a8c7;
      --glass: rgba(20, 7, 31, 0.65);
      --border: rgba(179, 0, 255, 0.15);
      --border-strong: rgba(179, 0, 255, 0.3);
      --gradient: linear-gradient(135deg, #8a00cc, #b300ff);
      --gradient-hero: linear-gradient(135deg, #8a00cc 0%, #b300ff 50%, #d966ff 100%);
      --shadow-primary: 0 10px 40px rgba(138, 0, 204, 0.3);
      --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: "Inter", system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===================================
       ✨ GRADIENT TEXT
    =================================== */
    .gradient-text {
      background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* ===================================
       🎯 NAVBAR
    =================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(12, 3, 20, 0.6);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    /* Necessário para o dropdown mobile se posicionar abaixo da navbar */
    .nav-container {
      position: relative;
    }

    .navbar.scrolled {
      background: rgba(12, 3, 20, 0.95);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.5px;
      font-size: 1.25rem;
      text-decoration: none;
    }

    .nav-logo img {
      height: 34px;
      width: auto;
      display: block;
    }

    .nav-logo span {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-weight: 500;
      color: var(--muted);
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      color: var(--text);
    }

    /* ===================================
       🎨 BUTTONS
    =================================== */
    .btn-primary {
      background: var(--gradient);
      color: #fff;
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-primary);
      position: relative;
      overflow: hidden;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 50px rgba(138, 0, 204, 0.5);
      filter: brightness(1.1);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
      color: var(--text);
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
      border-color: var(--border-strong);
    }

    .btn-outline {
      background: transparent;
      color: var(--accent);
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 600;
      border: 2px solid var(--accent);
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background: var(--accent);
      color: var(--bg);
      transform: translateY(-2px);
    }

    .btn-lg {
      padding: 16px 36px;
      font-size: 1.1rem;
    }

    /* ===================================
       🚀 HERO
    =================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 24px 80px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .gradient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.25;
      animation: orb-float 20s ease-in-out infinite;
    }

    .orb-1 {
      width: 600px;
      height: 600px;
      background: var(--primary);
      top: -200px;
      left: -200px;
    }

    .orb-2 {
      width: 500px;
      height: 500px;
      background: var(--accent);
      bottom: -150px;
      right: -150px;
      animation-delay: 5s;
    }

    .orb-3 {
      width: 400px;
      height: 400px;
      background: #6b00a0;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation-delay: 10s;
    }

    @keyframes orb-float {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      25% {
        transform: translate(30px, -30px) scale(1.1);
      }

      50% {
        transform: translate(-20px, 20px) scale(0.9);
      }

      75% {
        transform: translate(20px, 30px) scale(1.05);
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: var(--accent-soft);
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      color: var(--accent);
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 24px;
      animation: badge-pulse 2s ease-in-out infinite;
    }

    @keyframes badge-pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }
    }

    .hero-text h1 {
      font-size: clamp(2.5rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.08;
      margin-bottom: 24px;
      letter-spacing: -2px;
    }

    .hero-text p {
      font-size: 1.2rem;
      color: var(--muted);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent);
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* Benefícios com animação typewriter */
    .benefit-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
    }

    .benefit-icon {
      font-size: 2rem;
      filter: drop-shadow(0 0 10px rgba(217, 102, 255, 0.5));
    }

    .benefit-text {
      font-size: 0.9rem;
      color: var(--text);
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid var(--accent);
      animation: blink-caret 0.75s step-end infinite;
      min-height: 1.2em;
    }

    .benefit-text.typing-complete {
      border-right: none;
      animation: none;
    }

    @keyframes blink-caret {

      from,
      to {
        border-color: transparent;
      }

      50% {
        border-color: var(--accent);
      }
    }

    /* Hero Image - floating cards */
    .hero-image {
      position: relative;
      height: 550px;
    }

    .floating-card {
      position: absolute;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      transition: transform 0.3s ease;
    }

    .floating-card:hover {
      animation-play-state: paused;
    }

    .card-1 {
      width: 380px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: fc1 6s ease-in-out infinite;
      border-radius: 24px;
      background: var(--card);
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .card-1 img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .card-1-body {
      padding: 20px;
    }

    .card-1-body h4 {
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .card-1-body p {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .card-2 {
      width: 270px;
      top: 5%;
      right: 0;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 20px;
      animation: fc2 7s ease-in-out infinite;
    }

    .card-3 {
      width: 280px;
      bottom: 5%;
      left: -10px;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 20px;
      animation: fc3 8s ease-in-out infinite;
    }

    @keyframes fc1 {

      0%,
      100% {
        transform: translate(-50%, -50%) rotate(0deg);
      }

      50% {
        transform: translate(-50%, -45%) rotate(1deg);
      }
    }

    @keyframes fc2 {

      0%,
      100% {
        transform: translateY(0) rotate(-3deg);
      }

      50% {
        transform: translateY(-15px) rotate(-1deg);
      }
    }

    @keyframes fc3 {

      0%,
      100% {
        transform: translateY(0) rotate(3deg);
      }

      50% {
        transform: translateY(-12px) rotate(1deg);
      }
    }

    .metric-preview {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .metric-icon {
      font-size: 2rem;
    }

    .metric-icon-svg {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(74, 222, 128, 0.15);
      border: 1px solid rgba(74, 222, 128, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #4ade80;
      margin-top: 2px;
    }

    .metric-icon-svg svg {
      width: 18px;
      height: 18px;
    }

    .metric-title {
      font-size: 0.75rem;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .metric-sub {
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: 5px;
      opacity: 0.7;
    }

    .metric-sub-green {
      color: #4ade80;
      opacity: 1;
    }

    .metric-icon-calendar {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--primary-soft);
      border: 1px solid rgba(179, 0, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--primary);
      margin-top: 2px;
    }

    .metric-value {
      font-size: 1.4rem;
      font-weight: 700;
      color: #4ade80;
    }

    .chat-preview {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .chat-bubble {
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 0.85rem;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
    }

    .chat-bubble.bot {
      background: var(--gradient);
      color: #fff;
      align-self: flex-end;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 0.8rem;
      animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(-10px);
      }
    }

    .mouse {
      width: 22px;
      height: 36px;
      border: 2px solid var(--muted);
      border-radius: 11px;
      position: relative;
    }

    .wheel {
      width: 3px;
      height: 7px;
      background: var(--muted);
      border-radius: 2px;
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      animation: wheel-scroll 2s ease-in-out infinite;
    }

    @keyframes wheel-scroll {

      0%,
      100% {
        opacity: 1;
        top: 6px;
      }

      50% {
        opacity: 0.4;
        top: 18px;
      }
    }

    /* ===================================
       SECTION SHARED
    =================================== */
    .section {
      padding: 120px 0;
    }

    .section-alt {
      background: var(--bg-alt);
    }

    .section-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: var(--accent-soft);
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      color: var(--accent);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -1px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
    }

    /* ===================================
       📱 WHATSAPP SECTION
    =================================== */
    /* Slider wrapper */
    .wpp-slider-wrapper {
      position: relative;
      overflow: hidden;
    }

    .wpp-slider {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .wpp-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .wpp-slide-phone {
      display: flex;
      justify-content: center;
    }

    /* Dots */
    .wpp-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 36px;
    }

    .wpp-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s ease;
    }

    .wpp-dot.active {
      background: #b300ff;
      width: 24px;
      border-radius: 4px;
    }

    /* Áudio bubble */
    .msg-audio {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px !important;
      min-width: 160px;
    }

    .audio-play {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .audio-play svg {
      width: 12px;
      height: 12px;
      color: #e9edef;
      margin-left: 2px;
    }

    .audio-wave {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
      height: 24px;
    }

    .audio-wave span {
      display: block;
      width: 3px;
      border-radius: 2px;
      background: rgba(255,255,255,0.5);
      animation: wave-bar 1.2s ease-in-out infinite;
    }

    .audio-wave span:nth-child(1)  { height: 6px;  animation-delay: 0s; }
    .audio-wave span:nth-child(2)  { height: 14px; animation-delay: 0.1s; }
    .audio-wave span:nth-child(3)  { height: 10px; animation-delay: 0.2s; }
    .audio-wave span:nth-child(4)  { height: 18px; animation-delay: 0.15s; }
    .audio-wave span:nth-child(5)  { height: 8px;  animation-delay: 0.05s; }
    .audio-wave span:nth-child(6)  { height: 16px; animation-delay: 0.25s; }
    .audio-wave span:nth-child(7)  { height: 12px; animation-delay: 0.1s; }
    .audio-wave span:nth-child(8)  { height: 20px; animation-delay: 0.3s; }
    .audio-wave span:nth-child(9)  { height: 8px;  animation-delay: 0.2s; }
    .audio-wave span:nth-child(10) { height: 14px; animation-delay: 0.05s; }
    .audio-wave span:nth-child(11) { height: 10px; animation-delay: 0.15s; }
    .audio-wave span:nth-child(12) { height: 6px;  animation-delay: 0s; }

    @keyframes wave-bar {
      0%, 100% { transform: scaleY(1); opacity: 0.5; }
      50%       { transform: scaleY(1.6); opacity: 1; }
    }

    .audio-dur {
      font-size: 0.7rem;
      color: #8696a0;
      flex-shrink: 0;
    }

    /* PDF / Doc bubble */
    .msg-doc {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px !important;
      min-width: 170px;
    }

    .doc-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(179,0,255,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .doc-icon svg {
      width: 18px;
      height: 18px;
      color: #d580ff;
    }

    .doc-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .doc-name {
      font-size: 0.78rem;
      font-weight: 600;
      color: #e9edef;
    }

    .doc-meta {
      font-size: 0.65rem;
      color: #8696a0;
    }

    .whatsapp-demo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .phone-frame {
      width: 320px;
      height: 650px;
      background: #111;
      border-radius: 40px;
      padding: 12px;
      box-shadow: var(--shadow-xl);
      position: relative;
      margin: 0 auto;
    }

    .phone-notch {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 130px;
      height: 26px;
      background: #111;
      border-radius: 0 0 18px 18px;
      z-index: 2;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: #0b141a;
      border-radius: 30px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .wa-header {
      background: #1f2c33;
      padding: 36px 14px 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #e9edef;
    }

    .wa-header img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
    }

    .wa-name {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .wa-status {
      font-size: 0.7rem;
      color: #8696a0;
    }

    .wa-messages {
      flex: 1;
      padding: 14px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .msg {
      display: flex;
      flex-direction: column;
      max-width: 80%;
    }

    .msg.user {
      align-self: flex-end;
    }

    .msg.bot {
      align-self: flex-start;
    }

    .msg-bubble {
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 0.82rem;
      line-height: 1.4;
    }

    .msg.user .msg-bubble {
      background: #005c4b;
      color: #e9edef;
      border-radius: 8px 8px 0 8px;
    }

    .msg.bot .msg-bubble {
      background: #1f2c33;
      color: #e9edef;
      border-radius: 8px 8px 8px 0;
    }

    .msg-time {
      font-size: 0.6rem;
      color: #8696a0;
      margin-top: 3px;
      align-self: flex-end;
    }

    .wa-input {
      background: #1f2c33;
      padding: 10px 14px;
      display: flex;
      align-items: center;
    }

    .wa-input span {
      flex: 1;
      font-size: 0.82rem;
      color: #8696a0;
    }

    .wpp-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .wpp-feat {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 22px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      transition: all 0.3s ease;
    }

    .wpp-feat:hover {
      transform: translateX(8px);
      border-color: var(--border-strong);
    }

    .wpp-feat-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(179, 0, 255, 0.12);
      border: 1px solid rgba(179, 0, 255, 0.2);
      color: #b300ff;
    }

    .wpp-feat-icon svg {
      width: 22px;
      height: 22px;
      stroke-width: 2;
    }

    .wpp-feat h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .wpp-feat p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    /* ===================================
       🎨 FEATURES
    =================================== */
    /* ===================================
       ✨ FEATURES — SHOWCASE ROWS
    =================================== */
    .feat-showcase {
      display: flex;
      flex-direction: column;
      gap: 140px;
      margin-top: 80px;
    }

    .feat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 80px;
      position: relative;
    }

    .feat-row::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(138, 0, 204, 0.12) 0%, transparent 65%);
      filter: blur(60px);
      z-index: 0;
      pointer-events: none;
      top: 50%;
      left: -100px;
      transform: translateY(-50%);
    }

    .feat-row--reverse {
      direction: rtl;
    }

    .feat-row--reverse > * {
      direction: ltr;
    }

    .feat-row--reverse::before {
      left: auto;
      right: -100px;
    }

    .feat-shot {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: linear-gradient(135deg, rgba(138, 0, 204, 0.4), rgba(217, 102, 255, 0.2));
      padding: 1px;
      z-index: 1;
      transition: transform 0.5s ease;
    }

    .feat-shot::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      background: linear-gradient(135deg, transparent 40%, rgba(217, 102, 255, 0.25));
      pointer-events: none;
      mix-blend-mode: overlay;
    }

    .feat-shot:hover {
      transform: translateY(-6px) scale(1.01);
    }

    .feat-shot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 23px;
      display: block;
      transition: transform 0.7s ease;
    }

    .feat-shot:hover img {
      transform: scale(1.06);
    }

    .feat-shot-tag {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 2;
      padding: 7px 14px;
      border-radius: 999px;
      background: rgba(12, 3, 20, 0.75);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(217, 102, 255, 0.3);
      color: var(--accent);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .feat-shot-tag svg {
      width: 13px;
      height: 13px;
    }

    .feat-content {
      position: relative;
      z-index: 1;
    }

    .feat-num {
      font-size: 5.5rem;
      font-weight: 800;
      line-height: 0.9;
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
      opacity: 0.9;
    }

    .feat-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    .feat-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--accent);
      opacity: 0.6;
    }

    .feat-headline {
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
      color: var(--text);
    }

    .feat-headline strong {
      background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }

    .feat-desc {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 28px;
      max-width: 520px;
    }

    .feat-desc strong {
      color: var(--text);
      font-weight: 600;
    }

    .feat-bullets {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      padding: 0;
      margin: 0;
    }

    .feat-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .feat-bullets li::before {
      content: '';
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      margin-top: 1px;
      border-radius: 7px;
      background: rgba(217, 102, 255, 0.12);
      border: 1px solid rgba(217, 102, 255, 0.25);
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d966ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
      background-size: 13px;
      background-repeat: no-repeat;
      background-position: center;
    }

    /* Mobile + tablet stacking */
    @media (max-width: 900px) {
      .feat-showcase {
        gap: 80px;
        margin-top: 50px;
      }

      .feat-row,
      .feat-row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
      }

      .feat-row--reverse .feat-shot {
        order: -1;
      }

      .feat-row::before,
      .feat-row--reverse::before {
        width: 400px;
        height: 400px;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
      }

      .feat-num {
        font-size: 3.8rem;
        margin-bottom: 12px;
      }

      .feat-headline {
        font-size: 1.7rem;
      }

      .feat-desc {
        font-size: 1rem;
      }
    }

    /* legacy classes — kept for compatibility, not used by showcase */
    .feat-info .icon-lg {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--primary-soft);
      border: 1px solid rgba(179, 0, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 16px;
      flex-shrink: 0;
    }

    .feat-info .icon-lg svg {
      width: 24px;
      height: 24px;
    }

    .feat-info h3 {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feat-info p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .feat-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .feat-list li {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .feat-list li::before {
      content: '✓ ';
      color: var(--accent);
      font-weight: bold;
    }

    /* ===================================
       🔄 HOW IT WORKS
    =================================== */
    .steps-container {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .step {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 36px;
      align-items: start;
    }

    .step-num {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .step-num span {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--gradient);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 800;
      box-shadow: var(--shadow-primary);
      position: relative;
      z-index: 2;
    }

    .step-line {
      position: absolute;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 80px;
      background: linear-gradient(180deg, var(--primary), transparent);
    }

    .step-body {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 28px;
      border-radius: 24px;
      transition: all 0.3s ease;
    }

    .step-body:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
      border-color: var(--border-strong);
    }

    .step-body .icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--primary-soft);
      border: 1px solid rgba(179, 0, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 16px;
      flex-shrink: 0;
    }

    .step-body .icon svg {
      width: 26px;
      height: 26px;
    }

    .step-body h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step-body p {
      color: var(--muted);
      line-height: 1.7;
    }

    /* ===================================
       💰 PLANS
    =================================== */
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .plan-card {
      background: linear-gradient(180deg, rgba(138, 0, 204, 0.05), rgba(20, 7, 31, 0.4));
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .plan-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border-color: var(--primary);
    }

    .plan-card.featured {
      background: linear-gradient(180deg, rgba(138, 0, 204, 0.18), rgba(20, 7, 31, 0.6));
      border: 1px solid rgba(217, 102, 255, 0.4);
      transform: scale(1.05);
      z-index: 2;
    }

    .plan-card.featured:hover {
      transform: scale(1.05) translateY(-8px);
    }

    .plan-tag {
      position: absolute;
      top: 18px;
      right: 18px;
      background: var(--gradient);
      padding: 6px 14px;
      border-radius: 99px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .plan-trial-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(74, 222, 128, 0.12);
      border: 1px solid rgba(74, 222, 128, 0.3);
      color: #4ade80;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      margin-bottom: 12px;
    }

    .plan-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--muted);
    }

    .plan-price {
      font-size: 2.5rem;
      font-weight: 800;
      margin: 12px 0 6px;
      color: #fff;
    }

    .plan-price span {
      font-size: 1rem;
      color: var(--muted);
      font-weight: 500;
    }

    .plan-period {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .plan-commitment {
      font-size: 0.85rem;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .plan-discount {
      display: inline-block;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 6px 14px;
      border-radius: 12px;
      font-size: 0.85rem;
      margin-bottom: 20px;
    }

    .plan-benefits {
      list-style: none;
      margin-bottom: 24px;
    }

    .plan-benefits li {
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .plan-benefits li strong {
      color: #fff;
    }

    .plan-benefits li::before {
      content: '✓';
      color: var(--accent);
      font-weight: bold;
    }

    .plan-note {
      font-size: 0.8rem;
      color: var(--muted);
      text-align: center;
      opacity: 0.7;
    }

    /* ===================================
       ⭐ TESTIMONIALS
    =================================== */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .test-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 28px;
      border-radius: 24px;
      transition: all 0.3s ease;
    }

    .test-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
      border-color: var(--border-strong);
    }

    .test-stars {
      font-size: 1.1rem;
      margin-bottom: 14px;
    }

    .test-card>p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

    .test-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .test-author img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
    }

    .author-name {
      font-weight: 700;
      font-size: 0.95rem;
    }

    .author-role {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* ===================================
       🚀 CTA FINAL
    =================================== */
    .cta-section {
      padding: 120px 24px;
      text-align: center;
      background: radial-gradient(circle at 50% 50%, rgba(138, 0, 204, 0.15) 0%, transparent 70%);
    }

    .cta-section h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 16px;
    }

    .cta-section>.container>p {
      font-size: 1.15rem;
      color: var(--muted);
      margin-bottom: 40px;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .cta-trust {
      display: flex;
      gap: 28px;
      justify-content: center;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.9rem;
    }

    /* ===================================
       🦶 FOOTER
    =================================== */
    footer {
      position: relative;
      border-top: 1px solid var(--border);
      padding: 64px 0 24px;
      color: var(--muted);
      font-size: 0.9rem;
      background: linear-gradient(180deg, transparent, rgba(179, 0, 255, 0.04));
      overflow: hidden;
    }

    footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      max-width: 600px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(217, 102, 255, 0.5), transparent);
    }

    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px 40px;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 48px;
    }

    .footer-brand .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text);
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 14px;
    }

    .footer-brand .footer-logo img {
      width: 32px;
      height: 32px;
    }

    .footer-brand p {
      color: var(--muted);
      line-height: 1.6;
      max-width: 320px;
      margin-bottom: 18px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .footer-socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      color: var(--muted);
      transition: all 0.25s ease;
    }

    .footer-socials a:hover {
      color: #fff;
      border-color: rgba(217, 102, 255, 0.5);
      background: rgba(179, 0, 255, 0.15);
      transform: translateY(-2px);
    }

    .footer-socials svg {
      width: 16px;
      height: 16px;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 16px;
      letter-spacing: 0.3px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s ease, transform 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-col a:hover {
      color: var(--accent);
      transform: translateX(2px);
    }

    .footer-col .footer-email {
      color: var(--muted);
      font-size: 0.88rem;
      word-break: break-all;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 22px 32px 0;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .footer-bottom .footer-bottom-links {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
    }

    .footer-bottom .footer-bottom-links a {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-bottom .footer-bottom-links a:hover {
      color: var(--accent);
    }

    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 560px) {
      footer {
        padding: 48px 0 20px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 22px 30px;
        text-align: left;
      }
      .footer-brand p {
        max-width: 100%;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 22px 0;
      }
    }

    /* ===================================
       🔄 LOADING
    =================================== */
    #loading-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(12, 3, 20, 0.95);
      backdrop-filter: blur(10px);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .loader {
      width: 48px;
      height: 48px;
      border: 3px solid rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      border-top-color: var(--accent);
      animation: spin 0.8s ease-in-out infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Scroll progress */
    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: var(--gradient);
      z-index: 9998;
      width: 0;
      transition: width 0.1s ease;
    }

    /* ===================================
       ✨ SCROLL REVEAL
    =================================== */
    .reveal-up,
    .reveal-left,
    .reveal-right {
      opacity: 0;
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-up {
      transform: translateY(40px);
    }

    .reveal-left {
      transform: translateX(-40px);
    }

    .reveal-right {
      transform: translateX(40px);
    }

    .reveal-up.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
      opacity: 1;
      transform: translate(0, 0);
    }

    /* ===================================
       📱 RESPONSIVE
    =================================== */
    @media (max-width: 1024px) {

      .hero-content,
      .whatsapp-demo {
        grid-template-columns: 1fr;
      }

      .hero-image {
        height: 400px;
      }

      .features-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .plans-grid {
        grid-template-columns: 1fr;
      }

      .plan-card.featured {
        transform: scale(1);
      }

      .plan-card.featured:hover {
        transform: translateY(-8px);
      }
    }

    /* ===================================
       📱 PLANS CAROUSEL (mobile)
    =================================== */
    /* keyframes fora do @media para compatibilidade total */
    @keyframes swipe-left {
      0%, 100% { transform: translateX(0); opacity: 0.5; }
      50% { transform: translateX(-5px); opacity: 1; }
    }
    @keyframes swipe-right {
      0%, 100% { transform: translateX(0); opacity: 0.5; }
      50% { transform: translateX(5px); opacity: 1; }
    }

    .plans-carousel-wrapper {
      position: relative;
    }

    /* Hint oculto por padrão (desktop) */
    .plans-swipe-hint {
      display: none;
    }

    @media (max-width: 768px) {
      .plans-carousel-wrapper {
        margin: 0 -24px;
      }

      .plans-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 0.78rem;
        color: var(--muted);
        padding: 0 24px 14px;
        letter-spacing: 0.02em;
      }

      .plans-swipe-hint span {
        opacity: 0.85;
      }

      .plans-swipe-hint svg {
        flex-shrink: 0;
        stroke: var(--accent);
        opacity: 0.8;
      }

      .swipe-arrow-left {
        animation: swipe-left 1.4s ease-in-out infinite;
      }

      .swipe-arrow-right {
        animation: swipe-right 1.4s ease-in-out infinite;
        animation-delay: 0.2s;
      }

      /* Sobrescreve o grid para flex horizontal */
      .plans-grid {
        display: flex !important;
        flex-direction: row;
        grid-template-columns: unset;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 8px 24px 24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0;
        max-width: none;
      }

      .plans-grid::-webkit-scrollbar {
        display: none;
      }

      /* Cada card ocupa ~80vw, mostrando pontas dos vizinhos */
      .plans-grid .plan-card {
        flex: 0 0 78vw;
        max-width: 320px;
        scroll-snap-align: start;
        transform: none !important;
      }

      .plans-grid .plan-card.featured {
        transform: none !important;
        border-color: rgba(217, 102, 255, 0.5);
        box-shadow: 0 0 30px rgba(138, 0, 204, 0.2);
      }
    }

    /* Nav mobile wrapper */
    .nav-mobile-actions {
      display: none;
      align-items: center;
      gap: 10px;
    }

    @media (max-width: 768px) {
      /* Esconde nav-links por padrão, mas mostra quando ativa */
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(12, 3, 20, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px 20px;
        gap: 4px;
        z-index: 999;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(179, 0, 255, 0.08);
        font-size: 1rem;
      }

      .nav-links a:last-child {
        border-bottom: none;
      }

      /* Esconde o btn-primary dentro do menu (já visível fixo) */
      .nav-links .btn-primary {
        display: none;
      }

      /* Mostra o wrapper mobile (Entrar + hamburger) */
      .nav-mobile-actions {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }

      .hero-text h1 {
        font-size: 2.4rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-stats {
        flex-direction: column;
        gap: 16px;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .step {
        grid-template-columns: 70px 1fr;
        gap: 20px;
      }

      .step-num span {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }

    /* MOBILE SMALL (480px) */
    @media (max-width: 480px) {
      .navbar {
        padding: 10px 0;
      }

      .nav-container {
        padding: 0 12px;
      }

      .nav-logo img {
        width: 28px;
        height: 28px;
      }

      .nav-logo span {
        font-size: 1rem;
      }

      .hero {
        padding: 100px 16px 40px;
      }

      .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
      }

      .hero-text p {
        font-size: 0.9rem;
      }

      .hero-buttons .btn-primary,
      .hero-buttons .btn-secondary {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
        text-align: center;
      }

      .hero-image {
        height: 280px;
        border-radius: 16px;
      }

      .hero-stats {
        gap: 12px;
      }

      .stat-item {
        padding: 12px;
      }

      .stat-number {
        font-size: 1.4rem;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .section-header p {
        font-size: 0.85rem;
      }

      section {
        padding: 40px 16px;
      }

      .feature-card {
        padding: 20px;
      }

      .step {
        grid-template-columns: 50px 1fr;
        gap: 14px;
      }

      .step-num span {
        width: 44px;
        height: 44px;
        font-size: 1rem;
      }

      .step-content h3 {
        font-size: 1rem;
      }

      .step-content p {
        font-size: 0.85rem;
      }

      .whatsapp-demo {
        padding: 16px;
        border-radius: 16px;
      }

      .phone-mockup {
        min-height: 280px;
        border-radius: 14px;
      }

      .testimonial-card {
        padding: 18px;
      }

      .plan-card {
        padding: 20px;
      }

      .plan-price {
        font-size: 2rem;
      }

      .cta-section h2 {
        font-size: 1.6rem;
      }

      .cta-buttons a {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
        text-align: center;
      }

      .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }

      .footer-links {
        flex-direction: column;
        gap: 12px;
      }
    }