 /* ===== RESET & BASE ===== */
    *, *::before, *::after {
      box-sizing: border-box;
      border-color: #1f1f1f;
    }

    html {
      scroll-behavior: smooth;
      scrollbar-color: #e02020 #0a0a0a;
      scrollbar-width: thin;
      -webkit-tap-highlight-color: transparent;
    }

    /* ===== BACKGROUND: preto + quadradinhos vermelhos ===== */
    body {
      background-color: #0a0a0a;
      background-image:
        linear-gradient(to right, rgba(224, 32, 32, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(224, 32, 32, 0.08) 1px, transparent 1px);
      background-size: 40px 40px;
      background-attachment: fixed;
      color: #e5e5e5;
      font-family: 'Inter', system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      min-height: 100vh;
    }

    a, button, [role="button"] {
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #0a0a0a; }
    ::-webkit-scrollbar-thumb { background: #e02020; border-radius: 10px; }
    ::-webkit-scrollbar-thumb:hover { background: #ff2222; }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(10, 10, 10, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(224, 32, 32, 0.15);
      padding: 0 1.5rem;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .navbar-logo {
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: #ffffff;
      text-transform: uppercase;
    }

    .navbar-logo span {
      color: #e02020;
    }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .navbar-links a {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #888;
      text-decoration: none;
      transition: color 0.2s;
    }

    .navbar-links a:hover { color: #e02020; }

    .navbar-cta {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff !important;
      background: #e02020;
      padding: 0.45rem 1.1rem;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s !important;
    }

    .navbar-cta:hover {
      background: #ff2222 !important;
      box-shadow: 0 0 18px rgba(224,32,32,0.5) !important;
      color: #fff !important;
    }

    /* ===== GLOW EFFECTS ===== */
    .glow-red {
      color: #e02020;
      text-shadow: 0 0 24px rgba(224, 32, 32, 0.8), 0 0 12px rgba(224, 32, 32, 0.5);
      animation: text-pulse 2s infinite;
    }

    .glow-red-subtle {
      color: #e02020;
      text-shadow: 0 0 14px rgba(224, 32, 32, 0.4);
    }

    @keyframes text-pulse {
      0%, 100% { text-shadow: 0 0 24px rgba(224, 32, 32, 0.8), 0 0 12px rgba(224, 32, 32, 0.5); }
      50% { text-shadow: 0 0 35px rgba(224, 32, 32, 1), 0 0 20px rgba(224, 32, 32, 0.7); }
    }

    /* ===== ADVANCED BUTTON ANIMATIONS ===== */
    .btn-glow {
      position: relative;
      overflow: hidden;
    }

    .btn-glow::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
      transform: rotate(45deg);
      transition: 0.5s;
      pointer-events: none;
    }

    .btn-glow:hover::after {
      left: 100%;
      top: 100%;
    }

    .btn-primary, .navbar-cta, .btn-whatsapp, .tab-btn.active {
      animation: btn-pulse 2s infinite;
    }

    @keyframes btn-pulse {
      0% { box-shadow: 0 0 0 0 rgba(224, 32, 32, 0.4); }
      70% { box-shadow: 0 0 0 15px rgba(224, 32, 32, 0); }
      100% { box-shadow: 0 0 0 0 rgba(224, 32, 32, 0); }
    }

    .product-card:hover {
      border-color: #e02020;
      box-shadow: 0 0 40px rgba(224, 32, 32, 0.3);
      transform: translateY(-10px) scale(1.02);
    }

    .section-title span {
      animation: color-glow 3s infinite;
    }

    @keyframes color-glow {
      0%, 100% { filter: drop-shadow(0 0 5px rgba(224, 32, 32, 0.5)); }
      50% { filter: drop-shadow(0 0 15px rgba(224, 32, 32, 0.9)); }
    }

    /* ===== HERO ===== */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(224, 32, 32, 0.1);
      border: 1px solid rgba(224, 32, 32, 0.3);
      border-radius: 999px;
      padding: 0.35rem 1rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #e02020;
      margin-bottom: 2rem;
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #e02020;
      box-shadow: 0 0 8px #e02020;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    .hero-title {
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: #ffffff;
    }

    .hero-title .accent { color: #e02020; }

    .hero-subtitle {
      font-size: 1.05rem;
      color: #666;
      line-height: 1.7;
      max-width: 480px;
      margin: 0 auto;
    }

    /* ===== DIVIDER LINE ===== */
    .red-line {
      width: 48px;
      height: 3px;
      background: #e02020;
      border-radius: 2px;
      margin: 0 auto;
      box-shadow: 0 0 10px rgba(224,32,32,0.6);
    }

    /* ===== FEEDBACK CARDS ===== */
    .feedback-card {
      background: #111111;
      border: 1px solid #1f1f1f;
      border-radius: 12px;
      padding: 1.25rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .feedback-card:hover {
      border-color: rgba(224, 32, 32, 0.3);
      box-shadow: 0 0 20px rgba(224, 32, 32, 0.1);
    }

    .avatar-placeholder {
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #e02020 0%, #7f0000 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
      border: 1px solid rgba(224,32,32,0.3);
    }

    /* ===== SECTION TITLE ===== */
    .section-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #e02020;
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #ffffff;
      line-height: 1.15;
    }

    .section-title .muted { color: #444; }

    /* ===== TABS ===== */
    .tabs-wrapper {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .tab-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 2.2rem;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .tab-btn.inactive {
      background: #111111;
      border-color: #1f1f1f;
      color: #666;
    }

    .tab-btn.inactive:hover {
      border-color: rgba(224,32,32,0.3);
      color: #ccc;
    }

    .tab-btn.active {
      background: #e02020;
      border-color: #e02020;
      color: #fff;
      box-shadow: 0 0 20px rgba(224,32,32,0.35);
    }

    /* ===== PRODUCT CARDS ===== */
    .product-card {
      background: #111111;
      border: 1px solid #1f1f1f;
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .product-card:hover {
      border-color: rgba(224, 32, 32, 0.45);
      box-shadow: 0 0 35px rgba(224, 32, 32, 0.2);
      transform: translateY(-6px);
    }

    .product-image {
      position: relative;
      height: 220px;
      overflow: hidden;
      background: #1a1a1a;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.07);
    }

    .product-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    }

    .product-badge {
      position: absolute;
      top: 0.85rem;
      right: 0.85rem;
      background: rgba(224, 32, 32, 0.9);
      color: #fff;
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      backdrop-filter: blur(4px);
      z-index: 10;
    }

    .product-body {
      padding: 1.4rem 1.5rem 1.6rem;
    }

    .product-name {
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: #ffffff;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
    }

    .product-price {
      font-size: 1.6rem;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .product-price-label {
      font-size: 0.7rem;
      font-weight: 600;
      color: #22c55e;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: block;
      width: 100%;
      background: #e02020;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.85rem 1.5rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      margin-top: 1.2rem;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    }

    .btn-primary:hover {
      background: #ff2222;
      box-shadow: 0 0 22px rgba(224, 32, 32, 0.5);
      transform: translateY(-1px);
    }

    .btn-primary:active { transform: translateY(0); }

    .btn-primary:disabled {
      background: #333;
      color: #666;
      cursor: not-allowed;
      box-shadow: none;
      transform: none;
    }

    /* ===== MODAL ===== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .modal-overlay.active { display: flex; }

    .modal-content {
      background: #111111;
      border: 1px solid #2a2a2a;
      border-radius: 16px;
      padding: 2.2rem;
      max-width: 480px;
      width: 92%;
      position: relative;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(224,32,32,0.1);
    }

    .modal-header-line {
      width: 36px;
      height: 3px;
      background: #e02020;
      border-radius: 2px;
      margin-bottom: 1.2rem;
      box-shadow: 0 0 10px rgba(224,32,32,0.6);
    }

    .close-btn {
      position: absolute;
      top: 1.4rem;
      right: 1.4rem;
      background: #1f1f1f;
      border: 1px solid #2a2a2a;
      color: #888;
      cursor: pointer;
      font-size: 1rem;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .close-btn:hover {
      background: #e02020;
      border-color: #e02020;
      color: #fff;
    }

    .plan-option {
      background: #0f0f0f;
      border: 1.5px solid #1f1f1f;
      border-radius: 10px;
      padding: 1.2rem 1.3rem;
      margin-bottom: 0.75rem;
      cursor: pointer;
      transition: all 0.25s;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .plan-option:hover {
      border-color: rgba(224,32,32,0.4);
      background: #141414;
    }

    .plan-option.selected {
      border-color: #e02020;
      background: rgba(224,32,32,0.06);
    }

    .radio-input {
      width: 1.2rem;
      height: 1.2rem;
      cursor: pointer;
      accent-color: #e02020;
      flex-shrink: 0;
    }

    .plan-info { flex: 1; }

    .plan-name {
      font-weight: 700;
      font-size: 0.85rem;
      color: #e5e5e5;
      margin-bottom: 0.2rem;
    }

    .plan-duration {
      font-size: 0.75rem;
      color: #555;
    }

    .plan-price {
      color: #ffffff;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
    }

    /* ===== DISCORD / WHATSAPP SECTION ===== */
    .support-section {
      border-top: 1px solid #1a1a1a;
      border-bottom: 1px solid #1a1a1a;
    }

    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: #25D366;
      color: #fff;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(37,211,102,0.25);
    }

    .btn-whatsapp:hover {
      background: #128C7E;
      box-shadow: 0 4px 30px rgba(37,211,102,0.4);
      transform: translateY(-2px);
    }

    /* ===== FOOTER ===== */
    footer {
      border-top: 1px solid #1a1a1a;
    }

    .footer-logo {
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #fff;
    }

    .footer-logo span { color: #e02020; }

    .btn-tiktok {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: #ffffff;
      color: #000;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s;
      margin-top: 1rem;
    }

    .btn-tiktok:hover {
      background: #ff0050;
      color: #fff;
      box-shadow: 0 0 20px rgba(255, 0, 80, 0.4);
      transform: translateY(-2px);
    }

    footer nav a {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #444;
      text-decoration: none;
      transition: color 0.2s;
    }

    footer nav a:hover { color: #e02020; }

    /* ===== STATS STRIP ===== */
    .stats-strip {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      padding: 2.5rem 1.5rem;
      border-top: 1px solid #1a1a1a;
      border-bottom: 1px solid #1a1a1a;
      background: rgba(13, 13, 13, 0.5);
      backdrop-filter: blur(4px);
    }

    .stat-item { text-align: center; }

    .stat-number {
      font-size: 1.8rem;
      font-weight: 900;
      color: #e02020;
      letter-spacing: -0.03em;
      line-height: 1;
      text-shadow: 0 0 20px rgba(224,32,32,0.4);
    }

    .stat-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #555;
      margin-top: 0.3rem;
    }

    /* ===== PRODUCT PLACEHOLDER (sem imagem) ===== */
    .product-image-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
      color: #333;
      font-size: 2.5rem;
    }