    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
    .reveal.in { opacity: 1; transform: none; }

    /* ── BOTÃO HAMBÚRGUER (glass + ícone que vira "X") ── */
    .nav-toggle {
      display: none;
      position: relative;
      width: 46px; height: 46px;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      color: var(--text-main);
      background: color-mix(in srgb, var(--g1) 42%, transparent);
      border: 1px solid var(--border-soft);
      box-shadow: 0 6px 18px rgba(0,0,0,.28), inset 0 1px 0 color-mix(in srgb, var(--g6) 14%, transparent);
      backdrop-filter: blur(10px) saturate(120%);
      -webkit-backdrop-filter: blur(10px) saturate(120%);
      transition: transform .25s var(--ease), background .25s var(--ease),
                  border-color .25s var(--ease), box-shadow .25s var(--ease);
    }
    .nav-toggle:hover {
      background: color-mix(in srgb, var(--g2) 55%, transparent);
      border-color: var(--border-strong);
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(0,0,0,.34), inset 0 1px 0 color-mix(in srgb, var(--g6) 18%, transparent);
    }
    .nav-toggle:active { transform: translateY(0) scale(.96); }
    .nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

    .nav-toggle__box { position: relative; display: block; width: 20px; height: 14px; }
    .nav-toggle__bar {
      position: absolute; left: 0;
      width: 100%; height: 2px;
      border-radius: 2px;
      background: currentColor;
      transform-origin: center;
      transition: transform .3s var(--ease), opacity .2s var(--ease), width .3s var(--ease);
    }
    .nav-toggle__bar:nth-child(1) { top: 0; }
    .nav-toggle__bar:nth-child(2) { top: 50%; transform: translateY(-50%); width: 70%; }
    .nav-toggle__bar:nth-child(3) { bottom: 0; }
    .nav-toggle:hover .nav-toggle__bar:nth-child(2) { width: 100%; }

    .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(0); }
    .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

    /* ── MENU MOBILE: CANAIS OFICIAIS ── */
    body.mobile-menu-open { overflow: hidden; }

    .mobile-social-menu {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: none;
      pointer-events: none;
    }
    .mobile-social-menu.is-open {
      display: block;
      pointer-events: auto;
    }
    .mobile-social-menu::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 85% 0%, color-mix(in srgb, var(--g2) 32%, transparent), transparent 55%),
        rgba(8,8,10,.55);
      backdrop-filter: blur(6px) saturate(110%);
      -webkit-backdrop-filter: blur(6px) saturate(110%);
      opacity: 0;
      transition: opacity .28s var(--ease);
    }
    .mobile-social-menu.is-open::before { opacity: 1; }
    .mobile-social-menu__panel {
      position: absolute;
      top: 76px;
      right: 16px;
      width: min(320px, calc(100vw - 32px));
      max-height: calc(100vh - 96px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      border-radius: 20px;
      background:
        radial-gradient(120% 100% at 100% 0%, color-mix(in srgb, var(--g3) 16%, transparent), transparent 58%),
        linear-gradient(165deg, color-mix(in srgb, var(--g1) 94%, transparent), color-mix(in srgb, var(--g2) 90%, transparent));
      border: 1px solid var(--border-soft);
      box-shadow:
        0 28px 80px rgba(0,0,0,.6),
        inset 0 1px 0 color-mix(in srgb, var(--g6) 10%, transparent);
      backdrop-filter: blur(20px) saturate(130%);
      -webkit-backdrop-filter: blur(20px) saturate(130%);
      transform: translateY(-12px) scale(.96);
      opacity: 0;
      transform-origin: top right;
      transition: opacity .26s var(--ease), transform .26s var(--ease);
      z-index: 2;
    }
    .mobile-social-menu.is-open .mobile-social-menu__panel {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .mobile-social-menu__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: 1px solid var(--border-soft);
      position: relative;
      z-index: 2;
    }
    .mobile-social-menu__head span {
      display: inline-flex;
      align-items: center;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--text-soft);
    }
    .mobile-social-menu__head span::before {
      content: "";
      width: 7px; height: 7px;
      margin-right: 9px;
      border-radius: 50%;
      background: var(--green);
      animation: majuPulse 2.4s var(--ease) infinite;
    }
    @keyframes majuPulse {
      0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--green) 55%, transparent); }
      70%  { box-shadow: 0 0 0 7px transparent; }
      100% { box-shadow: 0 0 0 0 transparent; }
    }
    .mobile-social-menu__close {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 11px;
      color: var(--text-main);
      background: color-mix(in srgb, var(--g6) 8%, transparent);
      border: 1px solid var(--border-soft);
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
      transition: background .2s var(--ease), border-color .2s var(--ease),
                  transform .2s var(--ease);
    }
    .mobile-social-menu__close:hover {
      background: color-mix(in srgb, var(--g6) 16%, transparent);
      border-color: var(--border-strong);
      transform: rotate(90deg);
    }
    .mobile-social-menu__links {
      position: relative;
      z-index: 2;
      display: grid !important;
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 14px;
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
    }
    .mobile-social-menu__links a {
      display: flex !important;
      align-items: center;
      gap: 13px;
      width: 100%;
      min-height: 56px;
      padding: 12px 14px;
      border-radius: 14px;
      color: var(--text-main) !important;
      background: color-mix(in srgb, var(--g6) 6%, transparent);
      border: 1px solid var(--border-soft);
      box-shadow: inset 0 1px 0 color-mix(in srgb, var(--g6) 8%, transparent);
      text-decoration: none;
      font-weight: 800;
      pointer-events: auto;
      transition: transform .2s var(--ease), background .2s var(--ease),
                  border-color .2s var(--ease), box-shadow .2s var(--ease);
    }
    .mobile-social-menu__links a:hover,
    .mobile-social-menu__links a:active,
    .mobile-social-menu__links a:focus-visible {
      background: color-mix(in srgb, var(--g6) 12%, transparent);
      border-color: var(--border-strong);
      transform: translateX(4px);
      box-shadow: inset 0 1px 0 color-mix(in srgb, var(--g6) 12%, transparent), 0 8px 22px rgba(0,0,0,.28);
      outline: none;
    }
    /* seta indicando ação */
    .mobile-social-menu__links a::after {
      content: "";
      width: 7px; height: 7px;
      margin-left: auto;
      flex: 0 0 auto;
      border-right: 2px solid var(--text-soft);
      border-bottom: 2px solid var(--text-soft);
      transform: rotate(-45deg);
      opacity: .5;
      transition: transform .2s var(--ease), opacity .2s var(--ease);
    }
    .mobile-social-menu__links a:hover::after { opacity: 1; transform: rotate(-45deg) translate(2px, 2px); }
    /* entrada escalonada dos itens quando o menu abre */
    .mobile-social-menu.is-open .mobile-social-menu__links a { animation: majuLinkIn .42s var(--ease) backwards; }
    .mobile-social-menu.is-open .mobile-social-menu__links a:nth-child(1) { animation-delay: .05s; }
    .mobile-social-menu.is-open .mobile-social-menu__links a:nth-child(2) { animation-delay: .10s; }
    .mobile-social-menu.is-open .mobile-social-menu__links a:nth-child(3) { animation-delay: .15s; }
    .mobile-social-menu.is-open .mobile-social-menu__links a:nth-child(4) { animation-delay: .20s; }
    .mobile-social-menu.is-open .mobile-social-menu__links a:nth-child(5) { animation-delay: .25s; }
    @keyframes majuLinkIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: none; }
    }
    .mobile-social-menu__icon {
      width: 34px;
      height: 34px;
      min-width: 34px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 11px;
      color: #fff;
      background: rgba(255,255,255,.12);
    }
    .mobile-social-menu__icon svg {
      width: 20px;
      height: 20px;
      display: block;
      fill: currentColor;
    }
    .mobile-social-menu__text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
      min-width: 0;
    }
    .mobile-social-menu__text strong {
      display: block;
      font-size: .92rem;
      line-height: 1.1;
      color: #fff;
      font-weight: 900;
    }
    .mobile-social-menu__text small {
      display: block;
      font-size: .72rem;
      line-height: 1.2;
      color: rgba(255,255,255,.68);
      font-weight: 600;
    }
    .mobile-social-menu__icon--whatsapp { background: #25D366; }
    .mobile-social-menu__icon--telegram { background: #229ED9; }
    .mobile-social-menu__icon--instagram { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
    .mobile-social-menu__icon--discord { background: #5865F2; }
    .mobile-social-menu__icon--tiktok { background: #111; border: 1px solid rgba(255,255,255,.22); }

    @media (max-width: 640px) {
      .mobile-social-menu__panel {
        top: 72px;
        left: 14px;
        right: 14px;
        width: auto;
        max-height: calc(100vh - 92px);
      }
      .mobile-social-menu__links { padding: 12px; gap: 9px; }
    }

    @media (max-width: 380px) {
      .mobile-social-menu__links { padding: 10px; gap: 8px; }
      .mobile-social-menu__links a { min-height: 50px; padding: 10px 12px; }
      .mobile-social-menu__text strong { font-size: .88rem; }
      .mobile-social-menu__text small { font-size: .68rem; }
    }

    @media (min-width: 901px) {
      .mobile-social-menu { display: none !important; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .logo img { height: 46px; width: auto; }
      /* hero mobile: enquadramento estilo Garena — altura moderada (≈108% da
         largura), recorte suave com object-fit: cover e personagens centrados */
      .hero { display: block; padding: 0; height: auto; }
      .hero img.hero-bg {
        width: 100%; height: 108vw; max-height: 82vh;
        object-fit: cover; object-position: center;
      }
      .hero-inner {
        grid-template-columns: 1fr; grid-template-rows: auto;
        grid-template-areas: "content" "visual";
        row-gap: 24px;
      }
      .hero-content { max-width: 720px; }
      .benefits-grid, .testimonials, .steps { grid-template-columns: 1fr 1fr; }
      .stats { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 36px; }
      .footer-extra { grid-template-columns: 1fr; gap: 12px; text-align: left; }
      .footer-safe-note { justify-self: start; text-align: left; }
      .footer-bottom { grid-template-columns: 1fr; gap: 10px; }
      .footer-bottom > span, .footer-legal { justify-self: start; }
      .footer-legal { justify-content: flex-start; }
    }
    @media (max-width: 640px) {
      section { padding-block: 56px; }
      #vantagens { padding-block-start: 40px; }
      .logo img { height: 42px; width: auto; }
      .nav { display: flex; justify-content: space-between; }
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .nav-cta .btn { display: none; }
      .benefits-grid, .testimonials, .steps { grid-template-columns: 1fr; }
      .site-footer { padding-block: 24px 26px; }
      .footer-trust { gap: 8px; padding-inline: 12px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
      .footer-brand { align-items: center; }
      .footer-grid .about p { margin-inline: auto; }
      .footer-col h4 { margin-bottom: 8px; }
      .footer-col a,
      .footer-col span { width: auto; margin-inline: auto; }
      .footer-col a:hover { transform: none; }
      .footer-extra { text-align: center; }
      .footer-payments { justify-content: center; }
      .footer-payment-list { justify-content: center; }
      .footer-safe-note { justify-self: center; text-align: center; margin-inline: auto; }
      .footer-bottom { text-align: center; }
      .footer-bottom > span, .footer-legal { justify-self: center; }
      .footer-legal { justify-content: center; }
      .footer-legal span { white-space: normal; }
      .hero { padding: 0; }
      .hero-inner { gap: 20px; }
      .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.05; letter-spacing: -0.03em; gap: 4px; }
      .hero-title-highlight { transform-origin: left center; }
      .hero p.sub { margin-bottom: 0; font-size: 1rem; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { width: 100%; }
      .hero-actions .btn-lg { min-height: 56px; padding: 16px 26px; }
      .hero-card-grid { grid-template-columns: 1fr; gap: 12px; }
      .hero-feature-card { min-height: auto; padding: 17px; }
      .hero-card-icon { width: 42px; height: 42px; }
      .btn { width: 100%; }

    }
    /* ══════════════════════════════════════════════════
       FOOTER MOBILE/TABLET COMPACTO (≤900px)
       Reestrutura o rodapé no mobile: oculta selos, colunas
       (Loja / Segurança / Canais oficiais) e links legais
       duplicados, deixando só marca + pagamentos + avisos.
       Aplicado em ≤900px com !important para vencer as regras
       mobile anteriores. Desktop (>900px) permanece intacto.
       ══════════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .site-footer {
        position: relative !important;
        padding: 14px 0 20px !important;
        min-height: auto !important;
        border-top: 1px solid rgba(0,0,0,.08) !important;
        overflow: hidden !important;
      }

      /* Camada de contraste p/ legibilidade (sem blur no texto) */
      .site-footer::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        pointer-events: none !important;
        background: linear-gradient(
          180deg,
          rgba(255,255,255,.52) 0%,
          rgba(255,255,255,.36) 50%,
          rgba(255,255,255,.50) 100%
        ) !important;
      }

      .site-footer > .container {
        position: relative !important;
        z-index: 1 !important;
        max-width: 420px !important;
        padding-inline: 16px !important;
        margin-inline: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
      }

      /* Selos ocultos no mobile (já aparecem acima) */
      .site-footer .footer-trust {
        display: none !important;
      }

      /* Categorias ocultas no mobile: Loja, Segurança, Canais oficiais e Pagamentos aceitos.
         Especificidade extra (3 classes) para vencer as regras display:block/flex abaixo. */
      .site-footer .footer-grid .footer-col,
      .site-footer .footer-extra .footer-payments,
      .site-footer .footer-grid .about p {
        display: none !important;
      }

      /* Marca em cima (largura total) + 3 colunas lado a lado */
      .site-footer .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px 6px !important;
        width: 100% !important;
        margin: 0 0 8px !important;
        padding: 0 !important;
        text-align: center !important;
      }

      .site-footer .about.footer-brand {
        grid-column: 1 / -1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto 4px !important;
      }

      /* Colunas compactas, lado a lado */
      .site-footer .footer-col {
        display: block !important;
        min-width: 0 !important;
        text-align: center !important;
        margin: 0 !important;
      }
      .site-footer .footer-col h4 {
        margin: 0 0 5px !important;
        font-size: 8.5px !important;
        letter-spacing: .04em !important;
        white-space: nowrap !important;
      }
      .site-footer .footer-col a,
      .site-footer .footer-col span {
        display: block !important;
        width: auto !important;
        margin: 0 auto !important;
        padding: 1px 0 !important;
        font-size: .64rem !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
      }
      .site-footer .footer-col a:hover { transform: none !important; }

      .site-footer .footer-brand .logo img {
        height: 38px !important;
        width: auto !important;
        margin: 0 auto !important;
      }

      .site-footer .footer-brand-name {
        margin-top: 6px !important;
        font-size: .78rem !important;
        line-height: 1.1 !important;
        letter-spacing: .04em !important;
        font-weight: 900 !important;
        color: #050505 !important;
      }

      .site-footer .footer-grid .about p {
        max-width: 285px !important;
        margin: 7px auto 0 !important;
        font-size: .78rem !important;
        line-height: 1.35 !important;
        font-weight: 500 !important;
        color: rgba(0,0,0,.86) !important;
      }

      /* Pagamentos compactos */
      .site-footer .footer-extra {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        margin: 8px 0 0 !important;
        padding: 9px 0 !important;
        border-top: 1px solid rgba(0,0,0,.07) !important;
        border-bottom: 1px solid rgba(0,0,0,.07) !important;
        text-align: center !important;
      }

      .site-footer .footer-payments {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        width: 100% !important;
      }

      .site-footer .footer-extra-label {
        font-size: 8.5px !important;
        line-height: 1 !important;
        letter-spacing: .12em !important;
        font-weight: 900 !important;
        color: #050505 !important;
      }

      .site-footer .footer-payment-list {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        flex-wrap: wrap !important;
      }

      .site-footer .footer-payment-list span {
        min-height: 22px !important;
        padding: 3px 9px !important;
        font-size: .68rem !important;
        line-height: 1 !important;
        font-weight: 800 !important;
        border-radius: 999px !important;
        color: #050505 !important;
        background: rgba(255,255,255,.42) !important;
        border: 1px solid rgba(0,0,0,.11) !important;
        box-shadow: none !important;
        text-shadow: none !important;
      }

      .site-footer .footer-safe-note {
        max-width: 260px !important;
        margin: 0 auto !important;
        font-size: .7rem !important;
        line-height: 1.25 !important;
        font-weight: 600 !important;
        text-align: center !important;
        color: rgba(0,0,0,.82) !important;
      }

      /* Rodapé legal resumido */
      .site-footer .footer-bottom {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        padding-top: 8px !important;
        margin: 0 !important;
        text-align: center !important;
        font-size: .68rem !important;
        line-height: 1.25 !important;
        color: rgba(0,0,0,.82) !important;
      }

      /* Troca visual do copyright p/ remover "· Loja independente" */
      .site-footer .footer-bottom > span {
        justify-self: center !important;
        text-align: center !important;
        font-size: 0 !important;
        line-height: 1.25 !important;
        color: rgba(0,0,0,.82) !important;
      }

      .site-footer .footer-bottom > span::before {
        content: "© 2026 Maju Company" !important;
        font-size: .68rem !important;
        line-height: 1.25 !important;
        color: rgba(0,0,0,.82) !important;
      }

      .site-footer .footer-legal {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        flex-wrap: nowrap !important;
        text-align: center !important;
      }

      .site-footer .footer-legal span:nth-child(1),
      .site-footer .footer-legal span:nth-child(2) {
        display: none !important;
      }

      .site-footer .footer-legal span:nth-child(3) {
        display: block !important;
        font-size: .68rem !important;
        line-height: 1.25 !important;
        color: rgba(0,0,0,.78) !important;
        white-space: normal !important;
      }

      .site-footer .footer-legal span::after {
        display: none !important;
        content: none !important;
      }

      /* Texto nítido (sem blur/sombra) */
      .site-footer,
      .site-footer * {
        text-shadow: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        -webkit-font-smoothing: antialiased !important;
        text-rendering: geometricPrecision !important;
      }

      /* Footer preto com texto branco no mobile */
      .site-footer {
        background: #000 !important;
        border-top: 1px solid rgba(255,255,255,.12) !important;
      }
      .site-footer::before {
        background: rgba(0,0,0,.4) !important;
      }
      .site-footer .footer-extra {
        border-top: 1px solid rgba(255,255,255,.12) !important;
        border-bottom: 1px solid rgba(255,255,255,.12) !important;
      }
      .site-footer .footer-brand-name,
      .site-footer .footer-safe-note,
      .site-footer .footer-bottom,
      .site-footer .footer-bottom > span,
      .site-footer .footer-bottom > span::before,
      .site-footer .footer-legal span:nth-child(3) {
        color: #fff !important;
      }

      /* WhatsApp flutuante não cobre o footer */
      .float-wa {
        width: 48px !important;
        height: 48px !important;
        right: 14px !important;
        bottom: 14px !important;
        z-index: 60 !important;
      }

      .float-wa svg {
        width: 25px !important;
        height: 25px !important;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; }
      .reveal { opacity: 1; transform: none; transition: none; }
      html { scroll-behavior: auto; }
    }
