﻿    /* ── FAQ ── */
    .faq { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
    .faq details { border-radius: 14px; padding: 0 22px; overflow: hidden; }
    .faq summary {
      list-style: none; cursor: pointer; padding: 20px 0; font-weight: 600;
      font-size: 1.02rem; color: var(--text-main);
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); transition: transform .25s; flex: none; }
    .faq details[open] summary::after { transform: rotate(45deg); }
    .faq details p { color: var(--text-soft); padding-bottom: 20px; font-size: .96rem; }

    /* ── CTA ── */
    .cta-box {
      position: relative; overflow: hidden; text-align: center; border-radius: 26px; padding: 70px 30px;
      background:
        radial-gradient(ellipse 80% 100% at 50% -10%, color-mix(in srgb, var(--g5) 18%, transparent), transparent 65%),
        linear-gradient(165deg, var(--g3), var(--g2));
      border: 1px solid var(--border-soft);
      box-shadow: 0 28px 64px var(--shadow-color);
    }
    .cta-box h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.08; letter-spacing: -.03em; max-width: 18ch; margin: 0 auto 16px; color: var(--text-main); }
    .cta-box p { color: var(--text-soft); font-size: 1.08rem; max-width: 50ch; margin: 0 auto 32px; }
    .hero-note { margin-top: 16px; font-size: .88rem; color: var(--text-soft); }

    /* ── FUNDO CONTÍNUO: "Simples Assim" + divisor + footer ── */
    .final-continuous-bg {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background-color: #f2f2f4;
    }

    .final-continuous-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      user-select: none;
      background-image: url("../media/backgrounds/final-bg.png?v=20260616-03");
      background-repeat: no-repeat;
      /* enquadramento equilibrado: zoom levemente reduzido para mostrar
         mais do personagem; eixo X menor desloca o conteúdo visual da
         imagem para a direita, tirando o rosto de trás do 3º card e
         deixando-o visível na lateral direita sem sair do viewport;
         eixo Y mantém o rosto um pouco acima sem cortar a cabeça */
      background-size: 116% auto;
      background-position: 58% 40%;
    }

    .final-continuous-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.08) 45%, rgba(255,255,255,.20) 100%);
    }

    .final-continuous-bg > #como-funciona,
    .final-continuous-bg > .ff-band,
    .final-continuous-bg > .site-footer {
      position: relative;
      z-index: 2;
    }
    /* imagem de fundo só na penúltima seção (#como-funciona); divisor transparente */
    .final-continuous-bg > #como-funciona,
    .final-continuous-bg > .ff-band {
      background: transparent !important;
    }
    /* última seção (rodapé) com fundo preto, cobrindo a imagem contínua */
    .final-continuous-bg > .site-footer {
      background: #000 !important;
    }

    @media (max-width: 900px) {
      .final-continuous-bg::before {
        background-size: cover;
        background-position: 64% 40%;
      }
    }

    @media (max-width: 640px) {
      .final-continuous-bg::before {
        background-size: cover;
        background-position: 72% 40%;
      }

      .final-continuous-bg::after {
        background: linear-gradient(
          180deg,
          rgba(255,255,255,.28) 0%,
          rgba(255,255,255,.14) 48%,
          rgba(255,255,255,.26) 100%
        );
      }
    }

    /* ── FOOTER ── */
    .site-footer {
      border-top: 1px solid var(--border-soft); padding-block: 22px 24px;
      background: transparent !important;
      box-shadow: none !important;
    }
    .site-footer .container,
    .site-footer .footer-trust,
    .site-footer .footer-grid,
    .site-footer .footer-bottom {
      background: transparent !important;
    }
    .site-footer .footer-trust-item {
      background: rgba(255,255,255,.32) !important;
      border: 1px solid rgba(0,0,0,.10) !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }
    .site-footer,
    .site-footer .footer-trust-item {
      color: #050505 !important;
    }
    /* ── NITIDEZ GERAL DO RODAPÉ ── */
    .site-footer,
    .site-footer p,
    .site-footer span,
    .site-footer a,
    .site-footer h4,
    .footer-brand-name,
    .footer-safe-note,
    .footer-bottom,
    .footer-legal span {
      text-shadow: none !important;
      filter: none !important;
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }
    .site-footer .container {
      max-width: 1120px;
      margin-inline: auto;
      padding-inline: 22px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: minmax(240px, 1.3fr) minmax(120px, .75fr) minmax(150px, .85fr) minmax(150px, .85fr);
      gap: clamp(32px, 4vw, 56px);
      align-items: start;
      margin-bottom: 18px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-brand .logo img { height: 52px; width: auto; }
    .footer-brand-name {
      display: block;
      margin-top: 10px;
      font-size: .95rem;
      font-weight: 900;
      letter-spacing: .02em;
      text-transform: uppercase;
      color: #050505 !important;
    }
    .footer-grid .about p {
      color: rgba(0,0,0,.86) !important;
      font-size: .94rem;
      font-weight: 500;
      line-height: 1.55;
      max-width: 34ch;
      margin-top: 8px;
    }
    .footer-col h4 {
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      color: #050505 !important;
      margin-bottom: 10px;
    }
    .footer-col a,
    .footer-col span {
      display: block;
      width: fit-content;
      color: rgba(0,0,0,.86) !important;
      font-size: .94rem;
      font-weight: 600;
      line-height: 1.35;
      padding: 3px 0;
      transition: color .2s var(--ease), transform .2s var(--ease);
    }
    .footer-col a:hover {
      color: #000 !important;
      transform: translateX(3px);
    }
    .footer-col--security span {
      cursor: default;
      color: #050505 !important;
      font-weight: 600;
      opacity: 1;
    }

    .footer-extra {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 24px;
      margin-top: 10px;
      padding: 14px 0;
      border-top: 1px solid rgba(0,0,0,.08);
      border-bottom: 1px solid rgba(0,0,0,.08);
    }
    .footer-payments {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      flex-wrap: wrap;
    }
    .footer-extra-label {
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #050505 !important;
      opacity: 1;
      text-shadow: none !important;
    }
    .footer-payment-list {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .footer-payment-list span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 5px 12px;
      border-radius: 999px;
      font-size: .78rem;
      font-weight: 800;
      color: #050505 !important;
      background: rgba(255,255,255,.38) !important;
      border: 1px solid rgba(0,0,0,.12) !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }
    .footer-safe-note {
      margin: 0;
      max-width: none;
      justify-self: end;
      text-align: right;
      color: rgba(0,0,0,.86) !important;
      font-size: .84rem;
      font-weight: 600;
      line-height: 1.45;
      text-shadow: none !important;
      filter: none !important;
    }
    .footer-bottom {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 24px;
      padding-top: 14px;
      border-top: 0;
      color: rgba(0,0,0,.86) !important;
      font-size: .82rem;
      font-weight: 600;
      text-shadow: none !important;
    }
    .footer-bottom > span {
      justify-self: start;
      color: rgba(0,0,0,.86) !important;
    }
    .footer-legal {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
      justify-self: end;
    }
    .footer-legal span {
      color: rgba(0,0,0,.86) !important;
      font-weight: 600;
      white-space: nowrap;
    }
    .footer-legal span:not(:last-child)::after {
      content: "•";
      margin-left: 10px;
      color: rgba(0,0,0,.55);
    }

    /* ── RODAPÉ ESCURO: texto e elementos claros sobre fundo preto ── */
    .site-footer,
    .site-footer .footer-trust-item {
      color: #fff !important;
    }
    .site-footer .footer-brand-name,
    .site-footer .footer-col h4,
    .site-footer .footer-extra-label,
    .site-footer .footer-col a:hover {
      color: #fff !important;
    }
    .site-footer .footer-grid .about p,
    .site-footer .footer-col a,
    .site-footer .footer-col span,
    .site-footer .footer-col--security span,
    .site-footer .footer-safe-note,
    .site-footer .footer-bottom,
    .site-footer .footer-bottom > span,
    .site-footer .footer-legal span {
      color: rgba(255,255,255,.78) !important;
    }
    .site-footer .footer-legal span:not(:last-child)::after {
      color: rgba(255,255,255,.4);
    }
    /* divisores em branco translúcido */
    .site-footer .footer-extra {
      border-top: 1px solid rgba(255,255,255,.12);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    /* chips (pagamentos e selos): apenas texto, sem fundo/borda */
    .site-footer .footer-payment-list span,
    .site-footer .footer-trust-item {
      color: #fff !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      padding-inline: 0 !important;
    }
    .site-footer .footer-trust-item:hover {
      color: #fff !important;
      border-color: transparent !important;
    }
    .site-footer .footer-trust-icon,
    .site-footer .footer-trust-icon svg,
    .site-footer .footer-trust-item img,
    .site-footer .footer-trust-item svg,
    .site-footer .footer-trust-item i {
      color: #fff !important;
      fill: #fff !important;
      stroke: #fff !important;
    }

    /* ── HERO MAIN (tela inicial estilo game) ── */
    .hero-main {
      position: relative;
      height: 100vh;
      min-height: 620px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      isolation: isolate;
      background: var(--g1);
    }

    .hero-main .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
      user-select: none;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.05) 40%, rgba(0,0,0,0) 70%),
        linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.18) 100%);
    }

    .hero-brand-content {
      position: absolute;
      left: clamp(56px, 6.5vw, 96px);
      top: 52%;
      z-index: 2;
      width: fit-content;
      max-width: min(42vw, 520px);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
      transform: translateY(-50%);
    }

    /* O PNG da logo tem ~38% de área transparente embaixo e ~27% em cima.
       Este wrapper recorta a faixa útil (linhas 276–626 de 1024) para que
       os botões fiquem logo abaixo da arte, sem o vão gigante. */
    .hero-brand-logo-wrap {
      position: relative;
      width: clamp(240px, 22vw, 360px);
      aspect-ratio: 1536 / 350;
      overflow: hidden;
      background: transparent !important;
      box-shadow: none !important;
      filter: none !important;
      backdrop-filter: none !important;
    }

    .hero-brand-logo {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
      transform: translateY(-26.95%);
      object-fit: contain;
      opacity: 0.65;
      filter: none !important;
      box-shadow: none !important;
      background: transparent !important;
    }

    .hero-store-buttons {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: clamp(14px, 1.8vw, 20px);
      flex-wrap: nowrap;
    }

    .hero-store-btn {
      width: auto;
      min-width: 120px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 5px 9px;
      border-radius: 8px;
      background: rgba(7, 9, 18, .88);
      border: 1px solid rgba(255,255,255,.22);
      color: #fff;
      box-shadow: 0 10px 26px rgba(0,0,0,.32);
      backdrop-filter: blur(8px);
      transition:
        transform .22s var(--ease),
        border-color .22s var(--ease),
        background .22s var(--ease),
        box-shadow .22s var(--ease);
    }

    .hero-store-btn:hover {
      transform: translateY(-3px);
      border-color: rgba(255,180,58,.85);
      background: rgba(7, 9, 18, .92);
      box-shadow:
        0 20px 46px rgba(0,0,0,.54),
        0 0 0 1px rgba(255,180,58,.18),
        inset 0 1px 0 rgba(255,255,255,.16);
    }

    .hero-store-btn__icon {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 6px;
      color: #fff;
      border: 1px solid rgba(255,255,255,.22);
    }

    .hero-store-btn__icon svg {
      width: 14px;
      height: 14px;
      display: block;
    }

    .hero-store-btn--whatsapp .hero-store-btn__icon { background: #25D366; }
    .hero-store-btn--discord .hero-store-btn__icon { background: #5865F2; }

    .hero-store-btn__text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1.05;
    }

    .hero-store-btn__text small {
      font-size: 7px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: rgba(255,255,255,.62);
    }

    .hero-store-btn__text strong {
      margin-top: 2px;
      font-size: 13px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -.02em;
      color: #fff;
    }

    @media (max-width: 900px) {
      .hero.hero-main {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
        height: 108vw;
        max-height: 82vh;
      }
      .hero-main .hero-bg { object-position: center; }
      .hero-main .hero-brand-content {
        left: clamp(40px, 5vw, 72px);
        top: 54%;
        max-width: min(56vw, 460px);
        transform: translateY(-50%);
      }
      .hero-brand-logo-wrap { width: clamp(280px, 44vw, 420px); }
    }

    @media (max-width: 640px) {
      .hero-main {
        height: 108vw;
        min-height: 520px;
        max-height: 760px;
      }
      .hero-main .hero-brand-content { display: none; }
    }

    /* ── FLOATING WHATSAPP ── */
    .float-wa {
      position: fixed; right: 20px; bottom: 20px; z-index: 60;
      width: 56px; height: 56px; border-radius: 50%; background: var(--green);
      display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
      transition: transform .2s;
    }
    .float-wa:hover { transform: scale(1.08); }
    .float-wa svg { width: 30px; height: 30px; fill: #fff; }


