/* =========================
       Base + Design Tokens
       ========================= */
    :root {
      --blue: #1A3A8F;
      --gold: #C8962E;
      --yellow: #FFD600;
      --green: #22C55E;
      --white: #FFFFFF;
      --text-soft: rgba(255, 255, 255, 0.88);
      --text-muted: rgba(255, 255, 255, 0.72);
      --shadow-deep: 0 18px 40px rgba(0, 0, 0, 0.35);
      --shadow-cta: 0 12px 28px rgba(34, 197, 94, 0.45);
      --radius-lg: 16px;
      --radius-pill: 999px;
    }

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

    html, body {
      width: 100%;
      min-height: 100%;
    }

    body {
      font-family: "Nunito", sans-serif;
      background-color: #081a4b;
      color: var(--white);
      overflow-x: hidden;
    }

    /* =========================
       Hero Layout
       ========================= */
    .hero {
      position: relative;
      isolation: isolate;
      min-height: 100vh;
      width: 100%;
      display: flex;
      align-items: stretch;
      /* background-image definido por media query abaixo (desktop vs mobile) */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      /* Entrada alinhada a .gs / .hwf (IO + classe no JS) */
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero.hero--visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Evita conflito com .reveal no load — o bloco inteiro “surge” */
    .hero .reveal {
      opacity: 1;
      transform: none;
      animation: none;
    }

    .hero::after {
      /* subtle global darkening for premium contrast */
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(7, 17, 48, 0.15) 0%,
        rgba(7, 17, 48, 0.28) 100%
      );
      z-index: 0;
      pointer-events: none;
    }

    /* Desktop: overlay translúcido no lado esquerdo */
    .hero-text {
      position: relative;
      z-index: 2;
      width: 50%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(
        to right,
        rgba(13, 36, 97, 0.95) 0%,
        rgba(13, 36, 97, 0.85) 50%,
        transparent 100%
      );
    }

    .hero-content {
      width: min(760px, 100%);
      padding: clamp(1.2rem, 3.5vw, 3rem) clamp(1.2rem, 4vw, 4.5rem);
      margin-left: clamp(0rem, 2vw, 1.2rem);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      position: relative;
      z-index: 3;
    }

    /* =========================
       Decorative particles
       ========================= */
    .stars-layer {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    .star {
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 214, 0, 1) 0%, rgba(200, 150, 46, 0.2) 70%);
      box-shadow: 0 0 10px rgba(255, 214, 0, 0.9);
      opacity: 0;
      animation: starFloat var(--duration, 7s) ease-in-out infinite;
      animation-delay: var(--delay, 0s);
    }

    @keyframes starFloat {
      0%, 100% {
        transform: translate3d(0, 0, 0) scale(0.8);
        opacity: 0.15;
      }
      45% {
        transform: translate3d(var(--x-shift, 10px), calc(var(--y-shift, -18px)), 0) scale(1.4);
        opacity: 0.95;
      }
      70% {
        opacity: 0.45;
      }
    }

    /* =========================
       Typographic system
       ========================= */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      width: fit-content;
      padding: 0.45rem 1rem;
      border-radius: var(--radius-pill);
      /* Liquid glass: borda com gradiente dourado, fundo translúcido */
      border: 1px solid rgba(200, 150, 46, 0.55);
      background: linear-gradient(
        135deg,
        rgba(200, 150, 46, 0.22) 0%,
        rgba(255, 214, 0, 0.10) 100%
      );
      color: #ffe7ab;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      backdrop-filter: blur(12px) saturate(160%);
      -webkit-backdrop-filter: blur(12px) saturate(160%);
      box-shadow:
        0 2px 12px rgba(200, 150, 46, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    h1 {
      font-family: "Fredoka", sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.8rem);
      line-height: 1.04;
      letter-spacing: 0.01em;
      color: var(--white);
      text-wrap: balance;
      text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    }

    .highlight {
      color: var(--yellow);
      text-shadow: 0 0 24px rgba(255, 214, 0, 0.35);
    }

    .subheadline {
      max-width: 37ch;
      color: var(--text-soft);
      font-size: clamp(1rem, 1.75vw, 1.34rem);
      line-height: 1.5;
      text-wrap: pretty;
    }

    .price-wrap {
      display: flex;
      align-items: flex-end;
      gap: 0.65rem;
      flex-wrap: wrap;
      margin-top: 0.2rem;
    }

    .old-price {
      font-size: clamp(1rem, 1.6vw, 1.3rem);
      opacity: 0.5;
      text-decoration: line-through;
      text-decoration-thickness: 2px;
      text-decoration-color: rgba(255, 255, 255, 0.65);
      font-weight: 700;
    }

    .new-price {
      font-family: "Fredoka", sans-serif;
      color: var(--yellow);
      font-size: clamp(2.6rem, 5vw, 3.4rem);
      line-height: 1;
      letter-spacing: -0.02em;
      text-shadow:
        0 0 28px rgba(255, 214, 0, 0.45),
        0 4px 16px rgba(255, 214, 0, 0.2);
    }

    .cta {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: fit-content;
      margin-top: 0.35rem;
      padding: 0.9rem 1.4rem;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(34, 197, 94, 0.9);
      background: linear-gradient(135deg, #25d667 0%, #1fb755 100%);
      color: #f8fff8;
      text-decoration: none;
      font-family: "Fredoka", sans-serif;
      font-weight: 700;
      letter-spacing: 0.03em;
      font-size: clamp(0.9rem, 1.65vw, 1.18rem);
      box-shadow: var(--shadow-cta);
      transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
      animation: ctaPulse 2.4s ease-in-out infinite;
      position: relative;
      overflow: hidden;
    }

    /* Shine sweep — passa um brilho suave sobre o botão */
    .cta::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 100%
      );
      animation: ctaShine 3.2s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes ctaShine {
      0%   { left: -100%; }
      40%  { left: 100%; }
      100% { left: 100%; }
    }

    .cta:hover,
    .cta:focus-visible {
      transform: translateY(-2px) scale(1.015);
      filter: brightness(1.04);
      box-shadow: 0 16px 34px rgba(34, 197, 94, 0.55);
      outline: none;
    }

    .cta:active {
      transform: translateY(0);
    }

    @keyframes ctaPulse {
      0%, 100% { box-shadow: 0 10px 24px rgba(34, 197, 94, 0.38); }
      50% { box-shadow: 0 14px 32px rgba(34, 197, 94, 0.58); }
    }

    .micro-copy {
      color: var(--text-muted);
      font-size: clamp(0.84rem, 1.2vw, 1rem);
      font-weight: 700;
    }

    .trust-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-top: 0.2rem;
    }

    .trust-chip {
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-pill);
      padding: 0.42rem 0.78rem;
      color: #eff4ff;
      font-size: 0.88rem;
      font-weight: 700;
      backdrop-filter: blur(5px);
    }

    /* =========================
       Staggered load animation
       ========================= */
    .reveal {
      opacity: 0;
      transform: translateY(-14px);
      animation: fadeDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: var(--stagger, 0s);
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* =========================
       Responsive behavior
       ========================= */

    /* ── Desktop: imagem horizontal 16:9 ── */
    .hero {
      background-image: url("../images/hero.png");
    }

    /* ── Mobile: dois blocos empilhados — texto azul + <img> real ── */
    @media (max-width: 768px) {
      body { background-color: #1A3A8F; }
      .hero {
        background-image: none !important;
        background: #1A3A8F;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 36px 20px 0;
        padding-bottom: 0 !important;
        min-height: 0 !important;
        height: auto !important;
        text-align: center;
      }

      .hero::after { display: none; }
      .stars-layer, .hero-desktop-img, .stars-wrap { display: none !important; }

      /* Bloco de texto: herda o fundo do .hero, sem estilos próprios de fundo */
      .hero-text {
        background: none;
        padding: 24px 20px 16px;
        width: 100%;
        min-height: 0 !important;
        height: auto !important;
        align-items: center;
        justify-content: center;
      }

      /* Elementos ocultos no mobile — presentes no desktop */
      .subheadline,
      .micro-copy,
      .trust-row {
        display: none !important;
      }

      /* BLOCO 1 — Hierarquia tipográfica: espaçamento por grupo, não uniforme */
      .hero-content {
        margin-left: 0;
        text-align: center;
        align-items: center;
        gap: 0;           /* controle individual por elemento */
        padding: 0;
        width: 100%;
      }

      /* Badge fica colado ao h1 — pertencem ao mesmo grupo semântico */
      .hero-content .badge { margin-bottom: 10px; }

      /* Headline ocupa o espaço com autoridade */
      h1 {
        font-size: clamp(2rem, 7.5vw, 2.6rem);
        line-height: 1.08;
        letter-spacing: -0.01em;
      }

      /* Preço: leve respiro após o headline */
      .price-wrap {
        justify-content: center;
        align-items: center;
        margin-top: 14px;
        margin-bottom: 0;
        gap: 0.5rem;
      }

      /* Preço novo: grande o suficiente para parar o olho */
      .new-price {
        font-size: clamp(2.8rem, 10vw, 3.6rem);
        text-shadow:
          0 0 32px rgba(255, 214, 0, 0.55),
          0 4px 20px rgba(255, 214, 0, 0.25);
      }

      .old-price { font-size: 0.95rem; align-self: center; }

      /* CTA: separação clara do grupo de preço */
      .cta {
        width: 100%;
        font-size: 1rem;
        padding: 1rem 1.25rem;
        margin-top: 16px;
        letter-spacing: 0.02em;
      }

      .trust-row { gap: 0.4rem; }
      .trust-chip { font-size: 0.8rem; padding: 0.36rem 0.65rem; }

      /* BLOCO 2: <img> real — abaixo do texto, sem espaço abaixo */
      .hero-mob-img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0;
      }
    }

    /* Wave de transição — só mobile */
    .hero-wave {
      display: none;
    }

    @media (max-width: 768px) {
      .hero-wave {
        display: block;
        width: 100%;
        height: 28px;
        /* posiciona o wave sobre a borda da imagem */
        position: relative;
        z-index: 2;
        margin-bottom: -2px; /* encosta na imagem sem gap */
        flex-shrink: 0;
      }
    }

    /* Desktop: oculta a imagem mobile */
    @media (min-width: 769px) {
      .hero-mob-img { display: none !important; }
    }

    /* =========================
       Gatilho de Valor
       ========================= */
    .value-trigger {
      width: 100%;
      margin-top: 12px;
    }

    .vt-card {
      width: 100%;
      background: linear-gradient(
        135deg,
        rgba(6, 14, 50, 0.88) 0%,
        rgba(13, 30, 88, 0.72) 100%
      );
      border: 1px solid rgba(200, 150, 46, 0.45);
      border-radius: 14px;
      padding: 0.85rem 1rem 0.75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      backdrop-filter: blur(10px) saturate(150%);
      -webkit-backdrop-filter: blur(10px) saturate(150%);
      box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0 0 0.5px rgba(200, 150, 46, 0.18);
      position: relative;
      overflow: hidden;
    }

    /* Brilho ambiente dourado no topo do card */
    .vt-card::before {
      content: "";
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 220px;
      height: 80px;
      background: radial-gradient(ellipse, rgba(200, 150, 46, 0.14) 0%, transparent 72%);
      pointer-events: none;
    }

    /* 20 dots — representam os 20 jogos */
    .vt-dots {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center;
      width: 100%;
    }

    .vt-dot {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      line-height: 1;
      opacity: 0.25;
      transform: scale(0.7);
      transition:
        opacity 0.22s ease,
        transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.22s ease,
        border-color 0.22s ease;
    }

    .vt-dot.lit {
      opacity: 1;
      transform: scale(1);
      background: rgba(200, 150, 46, 0.22);
      border-color: rgba(200, 150, 46, 0.6);
    }

    /* Equação: 20 juegos = 49¢ por juego */
    .vt-equation {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
    }

    .vt-eq-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1;
    }

    .vt-eq-big {
      font-family: "Fredoka", sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }

    .vt-eq-big.gold {
      color: var(--yellow);
      text-shadow: 0 0 22px rgba(255, 214, 0, 0.45);
    }

    .vt-eq-sub {
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 2px;
    }

    .vt-eq-sub.gold { color: rgba(255, 214, 0, 0.72); }

    .vt-eq-sym {
      font-family: "Fredoka", sans-serif;
      font-size: 1.5rem;
      color: rgba(255, 255, 255, 0.28);
      line-height: 1;
      flex-shrink: 0;
    }

    /* Âncora emocional */
    .vt-compare {
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.04em;
      text-align: center;
      line-height: 1.4;
    }

    /* Mobile: ajustes finos */
    @media (max-width: 768px) {
      .value-trigger { margin-top: 14px; }
      .vt-card { padding: 0.8rem 0.9rem 0.7rem; gap: 0.45rem; }
      .vt-eq-big { font-size: 1.85rem; }
      .vt-dot { width: 20px; height: 20px; font-size: 10px; }
    }

/* ____________ style block ____________ */

/* ── Games Section ── */
.gs {
  position: relative;
  background: linear-gradient(180deg, #0D2461 0%, #1A3A8F 100%);
  padding: 72px 0 56px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.gs.gs--visible { opacity: 1; transform: translateY(0); }

/* Ambient color blob — muda de cor com cada jogo */
.gs-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  opacity: 0.10;
  pointer-events: none;
  transition: background-color 1s ease;
  filter: blur(90px);
  z-index: 0;
}

/* Subtle grid overlay */
.gs::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 0;
  pointer-events: none;
}

/* ── Header ── */
.gs-header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 40px;
}
.gs-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C8962E;
  margin-bottom: 14px;
}
.gs-label::before,
.gs-label::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, #C8962E);
}
.gs-label::after { background: linear-gradient(90deg, #C8962E, transparent); }

.gs-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.04;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
  margin-bottom: 10px;
}
.gs-title em {
  font-style: normal;
  background: linear-gradient(135deg, #FFD600 0%, #C8962E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gs-sub {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.88rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.58);
  font-weight: 700;
}

/* ── Stage ── */
.gs-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  max-width: 960px;
  margin: 0 auto;
}
.gs-arrow {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.22s ease;
  line-height: 1;
}
.gs-arrow:hover {
  background: rgba(200,150,46,0.22);
  border-color: rgba(200,150,46,0.5);
  transform: scale(1.1);
  color: #FFD600;
}

.gs-track-wrap {
  flex: 1;
  overflow: hidden;
}
.gs-track {
  display: flex;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gs-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 10px 28px;
}

/* Image + glow aura */
.gs-img-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Color aura behind image */
.gs-img-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: var(--slide-glow, rgba(200,150,46,0.5));
  filter: blur(48px);
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 0;
  pointer-events: none;
}
.gs-slide.gs--active .gs-img-wrap::after { opacity: 0.65; }

/* Shimmer sweep on activation */
.gs-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: -80%; bottom: 0;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  z-index: 3;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
}
.gs-slide.gs--active .gs-img-wrap::before {
  animation: gsShimmer 0.9s ease forwards;
}
@keyframes gsShimmer {
  0%   { left: -80%; opacity: 1; }
  100% { left: 120%; opacity: 1; }
}

.gs-img-wrap img {
  display: block;
  max-height: 400px;
  width: auto;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.55s ease;
}
.gs-slide.gs--active .gs-img-wrap img {
  animation: gsFloat 4s ease-in-out infinite;
  box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.05);
}
@keyframes gsFloat {
  0%, 100% { transform: translateY(0px) rotate(-0.3deg); }
  50%       { transform: translateY(-12px) rotate(0.3deg); }
}

/* ── Game Info ── */
.gs-info {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4px 24px 0;
  min-height: 100px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.gs-info.gs--fade { opacity: 0; transform: translateY(10px); }

.gs-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgba(200,150,46,0.42);
  background: rgba(200,150,46,0.13);
  color: #ffe7ab;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
}
.gs-name {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: #FFD600;
  text-shadow: 0 0 40px rgba(255,214,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  line-height: 1.1;
  margin-bottom: 8px;
}
.gs-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Thumbnails ── */
.gs-thumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px 0;
  max-width: 680px;
  margin: 0 auto;
}
.gs-thumb {
  width: 80px; height: 80px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  flex-shrink: 0;
}
.gs-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.25s;
}
.gs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-thumb:hover {
  transform: scale(1.08) translateY(-3px);
  border-color: rgba(200,150,46,0.5);
}
.gs-thumb:hover::after { background: rgba(0,0,0,0.2); }
.gs-thumb.gs--active {
  border-color: #C8962E;
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 0 0 3px rgba(200,150,46,0.3), 0 8px 24px rgba(0,0,0,0.4);
}
.gs-thumb.gs--active::after { background: rgba(200,150,46,0.1); }

/* ── Progress + Counter ── */
.gs-progress-wrap {
  position: relative;
  z-index: 2;
  max-width: 160px;
  margin: 22px auto 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
}
.gs-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #C8962E, #FFD600);
  transition: width 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gs-counter {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.12em;
  margin-top: 8px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .gs { padding: 48px 0 40px; }
  .gs-arrow { display: none !important; }
  .gs-img-wrap img { max-height: 260px; }
  .gs-thumb { width: 60px; height: 60px; border-radius: 10px; }
  .gs-thumbs { gap: 8px; max-width: 328px; }
  .gs-name { font-size: 1.75rem; }
  .gs-desc { font-size: 0.9rem; }
  .gs-info { min-height: 80px; }
}

/* ════════════════════════════════════
   PREMIUM UPGRADES (design system mix)
════════════════════════════════════ */

/* ── Film grain (parallax-clean + glass-effect2) ── */
.gs::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* ── Liquid ambient blobs (glass-effect2) ── */
.gs-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: gsBlob 14s ease-in-out infinite alternate;
}
.gs-blob-1 { width: 340px; height: 340px; top: -60px; left: -60px; opacity: 0.06; }
.gs-blob-2 { width: 280px; height: 280px; bottom: -40px; right: -40px; opacity: 0.05; animation-delay: -7s; animation-duration: 18s; }
@keyframes gsBlob {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 50px) scale(1.12); }
}

/* ── 3D tilt (glass-green-effect preserve-3d) ── */
.gs-img-wrap {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Active thumbnail: animated glow pulse (glass-green-effect) ── */
@keyframes thumbGlow {
  0%, 100% { box-shadow: 0 0 0 2px #C8962E, 0 0 14px rgba(200,150,46,0.5), 0 6px 22px rgba(0,0,0,0.45); }
  50%       { box-shadow: 0 0 0 2.5px #FFD600, 0 0 26px rgba(255,214,0,0.75), 0 8px 28px rgba(0,0,0,0.55); }
}
.gs-thumb.gs--active { animation: thumbGlow 2.2s ease-in-out infinite; }

/* ── Word-by-word name reveal (parallax-clean word-inner) ── */
.gs-name-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 3px;
  line-height: 1.1;
}
.gs-name-word-inner {
  display: inline-block;
  transform: translateY(108%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.gs-name-word-inner.gs--up { transform: translateY(0); }

/* ── Editorial counter (digital-architect mix-blend-difference) ── */
.gs-num {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: white;
  mix-blend-mode: difference;
  z-index: 4;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Glass stats pill (glass-green-effect floating-stats) ── */
.gs-stats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.gs-info.gs--fade .gs-stats { opacity: 0; transform: translateY(8px); }
.gs-stats-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(200,150,46,0.55);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .gs::after { opacity: 0.02; }
  .gs-num { display: none; }
  .gs-blob-1, .gs-blob-2 { display: none; }
  .gs-stats { font-size: 0.85rem; padding: 5px 14px; }
}

/* ____________ style block ____________ */

/* ═══════════════════════════════════════
   TESTIMONIALS — Spotlight Hybrid
═══════════════════════════════════════ */
.tst {
  position: relative;
  background: linear-gradient(180deg, #1A3A8F 0%, #071440 55%, #0D2461 100%);
  padding: 80px 0 72px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.05s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.tst.tst--visible { opacity: 1; transform: translateY(0); }

/* Grid overlay */
.tst::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 0;
  pointer-events: none;
}

/* Film grain */
.tst::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Ambient blobs */
.tst-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: tstBlob 16s ease-in-out infinite alternate;
}
.tst-blob-1 { width: 420px; height: 420px; top: -80px; right: -80px; background: #C8962E; opacity: 0.05; }
.tst-blob-2 { width: 320px; height: 320px; bottom: -60px; left: -50px; background: #6D28D9; opacity: 0.06; animation-delay: -8s; animation-duration: 20s; }
@keyframes tstBlob {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(35px, 45px) scale(1.1); }
}

/* Social proof badge */
.tst-badge {
  position: relative; z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.tst-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border-radius: 999px;
  background: rgba(200,150,46,0.1);
  border: 1px solid rgba(200,150,46,0.38);
  backdrop-filter: blur(12px);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffe7ab;
  text-transform: uppercase;
}
.tst-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FFD600;
  flex-shrink: 0;
  animation: tstDotPulse 2s ease-in-out infinite;
}
@keyframes tstDotPulse {
  0%,100% { box-shadow: 0 0 6px rgba(255,214,0,0.6); }
  50%      { box-shadow: 0 0 16px rgba(255,214,0,1), 0 0 28px rgba(200,150,46,0.5); }
}

/* Header */
.tst-header {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 48px;
}
.tst-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8962E;
  margin-bottom: 14px;
}
.tst-label::before, .tst-label::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, #C8962E);
}
.tst-label::after { background: linear-gradient(90deg, #C8962E, transparent); }
.tst-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
  margin-bottom: 10px;
}
.tst-title em {
  font-style: normal;
  background: linear-gradient(135deg, #FFD600 0%, #C8962E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Spotlight card */
.tst-spotlight {
  position: relative; z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.tst-card {
  position: relative;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(200,150,46,0.28);
  border-radius: 28px;
  padding: 52px 52px 44px;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.tst-card:hover {
  border-color: rgba(200,150,46,0.62);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 30px rgba(200,150,46,0.1);
}
.tst-card.tst--fade { opacity: 0; transform: translateY(14px); }

/* Shimmer sweep on hover */
.tst-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0; width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  pointer-events: none; z-index: 0;
  transition: left 0.7s ease;
}
.tst-card:hover::before { left: 140%; }

/* Decorative quote mark */
.tst-qmark {
  position: absolute;
  top: 10px; left: 22px;
  font-family: 'Fredoka', sans-serif;
  font-size: 10rem;
  line-height: 1;
  color: rgba(200,150,46,0.12);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Card inner layout */
.tst-inner {
  position: relative; z-index: 1;
  display: flex;
  gap: 44px;
  align-items: center;
}

/* Person column */
.tst-person {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 134px;
}
.tst-person-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

/* Photo ring */
.tst-photo-ring {
  position: relative;
  width: 118px; height: 118px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: tstRingGlow 2.8s ease-in-out infinite;
}
@keyframes tstRingGlow {
  0%,100% {
    box-shadow: 0 0 0 3px #C8962E, 0 0 18px rgba(200,150,46,0.5), 0 0 36px rgba(200,150,46,0.15);
  }
  50% {
    box-shadow: 0 0 0 3px #FFD600, 0 0 28px rgba(255,214,0,0.7), 0 0 52px rgba(255,214,0,0.25);
  }
}
.tst-photo {
  display: block;
  width: 112px; height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid #0D2461;
  position: absolute;
  top: 3px; left: 3px;
  transition: opacity 0.3s ease;
}

/* Stars */
.tst-stars { display: flex; gap: 4px; }
.tst-star {
  font-size: 1.05rem;
  color: #FFD600;
  text-shadow: 0 0 10px rgba(255,214,0,0.6);
  opacity: 0;
  transform: scale(0.4) rotate(-20deg);
  transition: opacity 0.25s ease, transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
  display: inline-block;
}
.tst-star.tst--lit { opacity: 1; transform: scale(1) rotate(0deg); }

.tst-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.08rem;
  color: #FFD600;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(255,214,0,0.28);
}
.tst-country {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  text-align: center;
}

/* Quote column */
.tst-quote-col { flex: 1; padding-top: 4px; }
.tst-quote-text {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-style: italic;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.72;
}

/* Thumbnails strip */
.tst-thumbs {
  position: relative; z-index: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  padding: 0 20px;
}
.tst-thumb {
  width: 58px; height: 58px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.12);
  transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  flex-shrink: 0;
}
.tst-thumb::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  transition: background 0.25s;
}
.tst-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.tst-thumb:hover { transform: scale(1.1) translateY(-3px); border-color: rgba(200,150,46,0.6); }
.tst-thumb:hover::after { background: rgba(0,0,0,0.18); }
.tst-thumb.tst--active {
  border-color: #C8962E;
  transform: scale(1.18) translateY(-4px);
  animation: tstThumbGlow 2.2s ease-in-out infinite;
}
.tst-thumb.tst--active::after { background: rgba(200,150,46,0.1); }
@keyframes tstThumbGlow {
  0%,100% { box-shadow: 0 0 0 2px #C8962E, 0 0 12px rgba(200,150,46,0.5), 0 6px 18px rgba(0,0,0,0.4); }
  50%      { box-shadow: 0 0 0 2.5px #FFD600, 0 0 22px rgba(255,214,0,0.7), 0 8px 24px rgba(0,0,0,0.5); }
}

/* Progress dots */
.tst-dots {
  position: relative; z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.tst-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.tst-dot.tst--active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #C8962E, #FFD600);
}

/* Closing line */
.tst-closing {
  position: relative; z-index: 2;
  text-align: center;
  padding: 44px 24px 0;
  max-width: 580px;
  margin: 0 auto;
}
.tst-closing-text {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.92rem, 2vw, 1.06rem);
  font-weight: 700;
  color: rgba(255,255,255,0.58);
  line-height: 1.68;
}
.tst-closing-text strong { color: #FFD600; font-weight: 900; }

/* Mobile */
@media (max-width: 768px) {
  .tst { padding: 56px 0 48px; }
  .tst::after { opacity: 0.018; }
  .tst-blob-1, .tst-blob-2 { display: none; }
  .tst-card { padding: 32px 22px 28px; border-radius: 20px; }
  .tst-inner { flex-direction: column; align-items: center; gap: 20px; }
  .tst-person {
    flex-direction: row;
    width: 100%;
    gap: 18px;
    align-items: center;
    justify-content: center;
  }
  .tst-person-text { align-items: flex-start; margin-top: 0; }
  .tst-photo-ring { width: 84px; height: 84px; }
  .tst-photo { width: 78px; height: 78px; }
  .tst-name, .tst-country { text-align: left; }
  .tst-quote-col { width: 100%; }
  .tst-quote-text { font-size: 0.93rem; }
  .tst-qmark { font-size: 6rem; top: 8px; left: 14px; }
  .tst-thumb { width: 48px; height: 48px; }
  .tst-thumbs { gap: 10px; }
}

/* ____________ style block ____________ */

/* ═══════════════════════════════════════
   BONUS SECTION
═══════════════════════════════════════ */
.bn {
  position: relative;
  background: linear-gradient(180deg, #0D2461 0%, #1A3A8F 100%);
  padding: 80px 0 0;
  overflow: hidden;
}

/* Grid overlay */
.bn::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 0; pointer-events: none;
}

/* Film grain */
.bn::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n3'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n3)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none; z-index: 1; mix-blend-mode: overlay;
}

/* Floating particles layer */
.bn-particles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.bn-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,150,46,0.3);
  opacity: var(--op, 0.22);
  animation: bnParticle var(--dur, 9s) ease-in-out infinite alternate;
}
@keyframes bnParticle {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(var(--tx, 20px), var(--ty, -30px)) scale(1.4); opacity: calc(var(--op, 0.22) * 0.3); }
}

/* ── Header ── */
.bn-header {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 52px;
}
.bn-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #C8962E; margin-bottom: 14px;
}
.bn-label::before, .bn-label::after {
  content: ''; display: block; width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, #C8962E);
}
.bn-label::after { background: linear-gradient(90deg, #C8962E, transparent); }
.bn-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.12; color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
  margin-bottom: 10px;
}
.bn-title em {
  font-style: normal;
  background: linear-gradient(135deg, #FFD600 0%, #C8962E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Cards grid ── */
.bn-grid {
  position: relative; z-index: 2;
  display: flex; gap: 22px;
  justify-content: center;
  padding: 0 24px;
  max-width: 1060px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Individual card */
.bn-card {
  flex: 1;
  min-width: 280px; max-width: 320px;
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,150,46,0.3);
  border-radius: 24px;
  padding: 30px 26px 26px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.07);
  transition:
    border-color 0.35s ease,
    box-shadow   0.35s ease,
    transform    1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity      0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(40px);
}
.bn-card.bn--visible { opacity: 1; transform: translateY(0); }
.bn-card:hover {
  border-color: rgba(200,150,46,0.68);
  box-shadow: 0 28px 72px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 32px rgba(200,150,46,0.14);
  transform: translateY(-7px);
}

/* Gift icon bounce */
.bn-gift {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
  animation: bnBounce 2.4s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(200,150,46,0.55));
}
.bn-card:nth-child(2) .bn-gift { animation-delay: 0.35s; }
.bn-card:nth-child(3) .bn-gift { animation-delay: 0.7s; }
@keyframes bnBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  42%, 58% { transform: translateY(-10px) scale(1.1); }
}

/* BONO EXCLUSIVO badge — shimmer gold */
.bn-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem; font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #0D2461;
  background: linear-gradient(90deg, #C8962E 0%, #FFD600 30%, #fffbe6 50%, #FFD600 70%, #C8962E 100%);
  background-size: 250% auto;
  animation: bnShimmer 2.8s linear infinite;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(200,150,46,0.55);
}
@keyframes bnShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* Image area */
.bn-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.bn-card:hover .bn-img-wrap {
  transform: perspective(800px) rotateY(5deg) scale(1.04);
}
.bn-img-wrap img {
  width: 100%; max-height: 196px;
  object-fit: contain; border-radius: 14px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.42));
  display: block;
}

/* Bono 3 icon background */
.bn-icon-bg {
  width: 156px; height: 156px;
  border-radius: 22px;
  background: linear-gradient(135deg, #A0661A 0%, #C8962E 40%, #FFD600 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.4rem;
  box-shadow: 0 20px 56px rgba(200,150,46,0.48), 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.bn-card:hover .bn-icon-bg {
  transform: perspective(800px) rotateY(5deg) scale(1.04);
  box-shadow: 0 28px 72px rgba(200,150,46,0.6), 0 0 0 1px rgba(255,255,255,0.14);
}

/* Card title */
.bn-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.18rem; color: #FFD600;
  text-align: center; line-height: 1.28;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255,214,0,0.22);
}

/* Card desc */
.bn-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.87rem; font-weight: 700;
  color: rgba(255,255,255,0.76);
  text-align: center; line-height: 1.62;
  margin-bottom: 18px; flex: 1;
}

/* Value display */
.bn-value {
  display: flex; align-items: center;
  gap: 12px; justify-content: center;
  margin-top: auto;
}
.bn-value-old {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: rgba(255,90,90,0.9);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.bn-value-free {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.55rem; color: #22C55E;
  text-shadow: 0 0 18px rgba(34,197,94,0.55);
  letter-spacing: 0.02em;
}

/* ── Gold bottom strip: value bar + CTA ── */
.bn-bottom {
  position: relative; z-index: 2;
  margin-top: 56px;
  padding: 40px 24px 52px;
  text-align: center;
  background: linear-gradient(135deg, #9A6118 0%, #C8962E 45%, #B8851E 100%);
  overflow: hidden;
}
.bn-bottom::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.07) 50%, transparent 100%);
  pointer-events: none;
}

/* Value rows */
.bn-value-rows {
  position: relative;
  max-width: 520px; margin: 0 auto 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.bn-vrow {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.bn-vrow-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem; font-weight: 800;
  color: rgba(10,26,70,0.85); letter-spacing: 0.03em;
}
.bn-vrow-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem; color: rgba(10,26,70,0.65);
  text-decoration: line-through; text-decoration-thickness: 2px;
}
.bn-vrow-sep { height: 1px; background: rgba(10,26,70,0.18); }
.bn-vrow--main .bn-vrow-label {
  font-size: 1.06rem; color: #0D2461;
}
.bn-vrow--main .bn-vrow-num {
  font-size: 2rem; color: #0D2461;
  text-decoration: none; opacity: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* CTA */
.bn-cta {
  display: inline-flex;
  justify-content: center; align-items: center; gap: 10px;
  padding: 1.1rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(34,197,94,0.9);
  background: linear-gradient(135deg, #25d667 0%, #1fb755 100%);
  color: #f8fff8; text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.22rem);
  letter-spacing: 0.03em;
  box-shadow: 0 12px 28px rgba(34,197,94,0.45);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: bnCtaPulse 2.4s ease-in-out infinite;
  position: relative; overflow: hidden;
  max-width: 560px; width: 100%;
}
.bn-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: bnCtaShine 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bnCtaShine {
  0%   { left: -100%; }
  40%  { left: 100%; }
  100% { left: 100%; }
}
.bn-cta:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 18px 36px rgba(34,197,94,0.58);
}
.bn-cta:active { transform: translateY(0); }
@keyframes bnCtaPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(34,197,94,0.38); }
  50%       { box-shadow: 0 16px 34px rgba(34,197,94,0.6); }
}

/* Mobile */
@media (max-width: 768px) {
  .bn { padding: 56px 0 0; }
  .bn::after { opacity: 0.015; }
  .bn-particles { display: none; }
  .bn-grid { flex-direction: column; padding: 0 16px; gap: 16px; }
  .bn-card { min-width: 100%; max-width: 100%; padding: 26px 20px 22px; }
  .bn-icon-bg { width: 130px; height: 130px; font-size: 3.6rem; }
  .bn-vrow { flex-direction: column; gap: 2px; }
  .bn-vrow--main .bn-vrow-num { font-size: 1.65rem; }
  .bn-bottom { padding: 32px 16px 44px; }
  .bn-cta { font-size: 0.98rem; padding: 1rem 1.1rem; }
}

/* ____________ style block ____________ */

/* ── Section 5 · Oferta Imperdible ──────────────────────────────────────── */
.of-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0D2461 0%, #070F30 55%, #0D2461 100%);
  padding: clamp(64px,9vw,110px) 20px clamp(80px,11vw,130px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* hex-grid background */
.of-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,1 59,17 59,49 30,65 1,49 1,17' fill='none' stroke='rgba(200,150,46,0.055)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
  z-index: 0;
}
/* film grain */
.of-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.025'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
/* light rays */
.of-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.of-ray {
  position: absolute;
  left: 50%;
  top: 40%;
  height: 1px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(200,150,46,0) 0%, rgba(200,150,46,0.18) 40%, rgba(200,150,46,0) 100%);
  border-radius: 1px;
  animation: ofRayPulse var(--ray-dur,5s) ease-in-out infinite var(--ray-del,0s);
}
@keyframes ofRayPulse {
  0%,100% { opacity: 0.35; }
  50%      { opacity: 1; }
}
/* particles */
.of-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.of-p {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD600 0%, rgba(255,214,0,0) 70%);
  opacity: 0;
  animation: ofPFloat var(--dur,9s) ease-in-out infinite var(--del,0s);
}
@keyframes ofPFloat {
  0%   { transform: translate(0,0) scale(0.6); opacity: 0; }
  20%  { opacity: var(--op,.15); }
  80%  { opacity: var(--op,.15); }
  100% { transform: translate(var(--tx,0),var(--ty,-40px)) scale(0); opacity: 0; }
}
/* badge label */
.of-label {
  position: relative;
  z-index: 2;
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(0.8rem,1.8vw,0.95rem);
  letter-spacing: 0.2em;
  color: #FFD600;
  background: rgba(255,214,0,0.1);
  border: 1.5px solid rgba(255,214,0,0.38);
  border-radius: 100px;
  padding: 9px 30px;
  margin-bottom: 44px;
  animation: ofLabelPulse 3s ease-in-out infinite;
}
@keyframes ofLabelPulse {
  0%,100% { box-shadow: 0 0 0 rgba(255,214,0,0); }
  50%      { box-shadow: 0 0 28px rgba(255,214,0,0.4), 0 0 60px rgba(255,214,0,0.12); }
}
/* card outer */
.of-card-outer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
}
/* SVG animated dashed border */
.of-border-svg {
  position: absolute;
  inset: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  overflow: visible;
  pointer-events: none;
  z-index: 5;
}
.of-border-rect-glow {
  fill: none;
  stroke: rgba(200,150,46,0.28);
  stroke-width: 12;
  stroke-dasharray: 16 11;
  animation: ofDash 2.8s linear infinite, ofGlowBreathe 3.5s ease-in-out infinite;
}
.of-border-rect {
  fill: none;
  stroke: #C8962E;
  stroke-width: 2.5;
  stroke-dasharray: 16 11;
  filter: drop-shadow(0 0 5px rgba(200,150,46,0.85));
  animation: ofDash 2.8s linear infinite;
}
@keyframes ofDash {
  to { stroke-dashoffset: -54; }
}
@keyframes ofGlowBreathe {
  0%,100% { opacity: 0.35; stroke-width: 9; }
  50%      { opacity: 0.85; stroke-width: 16; }
}
/* corner ornaments */
.of-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 6;
  pointer-events: none;
}
.of-corner::before,
.of-corner::after {
  content: '';
  position: absolute;
  background: #FFD600;
  box-shadow: 0 0 7px rgba(255,214,0,0.65);
  border-radius: 2px;
}
.of-corner::before { width: 100%; height: 2px; top: 0; left: 0; }
.of-corner::after  { width: 2px; height: 100%; top: 0; left: 0; }
.of-corner.tl { top: 12px; left: 12px; }
.of-corner.tr { top: 12px; right: 12px; transform: scaleX(-1); }
.of-corner.bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
.of-corner.br { bottom: 12px; right: 12px; transform: scale(-1); }
/* main card */
.of-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  transform: perspective(1100px) rotateY(-20deg) scale(0.91);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.of-card.of--in {
  opacity: 1;
  transform: perspective(1100px) rotateY(0deg) scale(1);
}
/* spinning guarantee seal */
.of-seal-wrap {
  position: absolute;
  right: -14px;
  top: -14px;
  z-index: 7;
}
.of-seal {
  width: 78px;
  height: 78px;
  position: relative;
}
.of-seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#8B6914 0deg, #C8962E 60deg, #FFD600 120deg, #C8962E 180deg, #FFD600 240deg, #C8962E 300deg, #8B6914 360deg);
  animation: ofSealSpin 10s linear infinite;
  box-shadow: 0 0 22px rgba(200,150,46,0.7), 0 0 44px rgba(200,150,46,0.25);
}
.of-seal-inner {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0D2461, #060E2A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Fredoka One', sans-serif;
  color: #FFD600;
  line-height: 1.15;
}
.of-seal-num { font-size: 1.25rem; }
.of-seal-txt { font-size: 0.36rem; letter-spacing: 0.05em; margin-top: -1px; }
@keyframes ofSealSpin {
  to { transform: rotate(360deg); }
}
/* discount badge */
.of-discount {
  position: absolute;
  left: -12px;
  top: 18px;
  z-index: 7;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #B71C1C, #E53935);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(183,28,28,0.7);
  font-family: 'Fredoka One', sans-serif;
  color: #fff;
  line-height: 1;
  animation: ofDiscountPop 2.5s ease-in-out infinite;
}
.of-discount-pct { font-size: 0.95rem; }
.of-discount-off { font-size: 0.38rem; letter-spacing: 0.05em; }
@keyframes ofDiscountPop {
  0%,100% { transform: scale(1) rotate(-8deg); }
  50%      { transform: scale(1.08) rotate(-8deg); }
}
/* red banner */
.of-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #7F0000 0%, #D32F2F 35%, #C62828 65%, #7F0000 100%);
  color: #fff;
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(0.9rem,2.2vw,1.15rem);
  text-align: center;
  padding: 18px 52px 18px 32px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.of-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 250% auto;
  background-position: -100% center;
  animation: ofBannerShine 3.2s ease-in-out infinite;
}
@keyframes ofBannerShine {
  0%,100% { background-position: -100% center; }
  60%      { background-position: 210% center; }
}
/* checklist */
.of-list {
  list-style: none;
  margin: 0;
  padding: 26px 32px 0;
  display: flex;
  flex-direction: column;
}
.of-item {
  position: relative;
  padding: 11px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem,2vw,1.05rem);
  color: #fff;
  opacity: 0;
  transform: translateX(-22px) translateY(12px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.of-item.of--vis {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.of-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, rgba(200,150,46,0.5), transparent);
  transition: width 0.65s ease 0.25s;
}
.of-item.of--vis::after { width: 100%; }
.of-item:last-child::after { display: none; }
.of-item-icon {
  font-size: 1.15em;
  margin-top: 1px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(34,197,94,0.7));
}
.of-item.of--gold .of-item-icon {
  filter: drop-shadow(0 0 7px rgba(255,214,0,0.8));
}
.of-item-text strong {
  color: #FFD600;
  font-weight: 900;
}
/* price block */
.of-price-block {
  padding: 28px 32px 16px;
  text-align: center;
  position: relative;
}
.of-old-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.05rem,2.4vw,1.35rem);
  color: rgba(255,105,105,0.88);
  display: inline-block;
  position: relative;
  margin-bottom: 6px;
}
.of-old-price::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 2.5px;
  width: 0;
  background: #FF5252;
  box-shadow: 0 0 8px rgba(255,82,82,0.9);
  transform: translateY(-50%);
  border-radius: 2px;
  transition: width 0.85s cubic-bezier(0.77,0,0.175,1);
}
.of-old-price.of--struck::after { width: 100%; }
.of-today-label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.85rem,1.4vw,0.92rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin: 8px 0 6px;
}
.of-price-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.of-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(255,214,0,0.4);
  transform: translate(-50%,-50%);
  pointer-events: none;
  width: 80px;
  height: 80px;
  opacity: 0;
}
.of-ring.of--active {
  animation: ofRingExpand var(--rd,3s) ease-out infinite var(--rdel,0s);
}
@keyframes ofRingExpand {
  0%   { width: 80px; height: 80px; opacity: 0.7; }
  100% { width: 300px; height: 300px; opacity: 0; }
}
.of-price {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(4rem,8vw,6rem);
  color: #FFD600;
  line-height: 1;
  text-shadow: 0 0 50px rgba(255,214,0,0.75), 0 4px 28px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.4) translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  z-index: 1;
}
.of-price.of--pop {
  opacity: 1;
  transform: scale(1) translateY(0);
}
/* cta area */
.of-cta-wrap {
  padding: 8px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.of-cta {
  display: block;
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(1.1rem,2.5vw,1.4rem);
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #14532D 0%, #22C55E 45%, #16A34A 100%);
  border-radius: 100px;
  padding: 22px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 44px rgba(34,197,94,0.6), 0 2px 8px rgba(0,0,0,0.3);
  animation: ofCtaGlow 2.2s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: 0.01em;
}
.of-cta:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 18px 60px rgba(34,197,94,0.8), 0 4px 14px rgba(0,0,0,0.3);
}
.of-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,0.3) 50%, transparent 72%);
  background-size: 250% auto;
  animation: ofCtaShine 2.5s ease-in-out infinite;
}
@keyframes ofCtaGlow {
  0%,100% { box-shadow: 0 10px 44px rgba(34,197,94,0.6), 0 2px 8px rgba(0,0,0,0.3); }
  50%      { box-shadow: 0 10px 64px rgba(34,197,94,0.9), 0 0 110px rgba(34,197,94,0.22), 0 2px 8px rgba(0,0,0,0.3); }
}
@keyframes ofCtaShine {
  0%,100% { background-position: -100% center; }
  55%      { background-position: 220% center; }
}
/* urgency strip */
.of-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.85rem,1.5vw,0.92rem);
  color: rgba(255,255,255,0.6);
}
.of-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5252;
  box-shadow: 0 0 8px rgba(255,82,82,0.85);
  flex-shrink: 0;
  animation: ofDotBlink 1.1s ease-in-out infinite;
}
@keyframes ofDotBlink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.25; transform: scale(0.55); }
}
/* micro copy */
.of-micro {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.85rem,1.8vw,0.92rem);
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.6;
  margin: 0;
  padding: 0 32px 28px;
}
.of-micro strong {
  color: #FFD600;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
/* mobile */
@media (max-width: 600px) {
  .of-list       { padding: 20px 20px 0; }
  .of-price-block{ padding: 22px 20px 12px; }
  .of-cta-wrap   { padding: 8px 20px 20px; }
  .of-micro      { padding: 0 20px 22px; }
  .of-seal-wrap  { right: -8px; top: -10px; }
  .of-seal       { width: 62px; height: 62px; }
  .of-seal-inner { inset: 6px; }
  .of-seal-num   { font-size: 1rem; }
  .of-discount   { left: -8px; width: 44px; height: 44px; }
  .of-discount-pct { font-size: 0.8rem; }
}

/* ____________ style block ____________ */

/* ── Section 6 · Garantía ──────────────────────────────────────────────── */
.gar-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0D2461 0%, #1A3A8F 100%);
  padding: clamp(60px,8vw,100px) 20px clamp(70px,9vw,110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
/* Background grid dots */
.gar-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200,150,46,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}
/* Divider wave between cards */
.gar-divider {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
}
.gar-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,46,0.5), transparent);
}
.gar-divider-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(200,150,46,0.6));
}

/* ── Cards ── */
.gar-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  border-radius: 24px;
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  padding: clamp(28px,5vw,48px) clamp(24px,5vw,48px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}
.gar-card.gar--vis { opacity: 1; transform: translateY(0); }

/* Card 1 — Speed / green */
.gar-card-1 {
  background: rgba(34,197,94,0.07);
  border: 1.5px solid rgba(34,197,94,0.35);
  box-shadow: 0 8px 40px rgba(34,197,94,0.12), inset 0 1px 0 rgba(34,197,94,0.2);
}
/* Card 2 — Trust / gold */
.gar-card-2 {
  background: rgba(200,150,46,0.07);
  border: 1.5px solid rgba(200,150,46,0.38);
  box-shadow: 0 8px 40px rgba(200,150,46,0.14), inset 0 1px 0 rgba(200,150,46,0.2);
}

/* Shimmer sweep on both cards */
.gar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  background-size: 250% auto;
  background-position: -100% center;
  animation: garCardShine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes garCardShine {
  0%,100% { background-position: -100% center; }
  60%      { background-position: 220% center; }
}

/* Card inner layout */
.gar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* ── Card 1 – Speed icon ── */
.gar-speed-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gar-speed-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.4);
  animation: garSpeedRingPulse 2s ease-in-out infinite;
}
.gar-speed-ring-2 {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(34,197,94,0.18);
  animation: garSpeedRingPulse 2s ease-in-out infinite 0.5s;
}
@keyframes garSpeedRingPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}
.gar-speed-emoji {
  font-size: 2.6rem;
  filter: drop-shadow(0 0 12px rgba(34,197,94,0.7));
  animation: garSpeedBounce 2s ease-in-out infinite;
}
@keyframes garSpeedBounce {
  0%,100% { transform: scale(1) rotate(-5deg); }
  50%      { transform: scale(1.1) rotate(5deg); }
}

.gar-q {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin: 0;
}
.gar-a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #fff;
  line-height: 1.6;
  margin: 0;
}
.gar-a em {
  font-style: normal;
  color: #4ADE80;
  font-weight: 900;
}

/* ── Card 2 – Guarantee seal ── */
.gar-trust-headline {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #FFD600;
  line-height: 1;
  margin: 0;
  text-shadow: 0 0 40px rgba(255,214,0,0.5);
}
.gar-seal-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}
/* Halo behind seal */
.gar-halo {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,46,0.35) 0%, rgba(200,150,46,0) 70%);
  animation: garHaloPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes garHaloPulse {
  0%,100% { transform: scale(0.9); opacity: 0.7; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.gar-halo-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,150,46,0.35);
  animation: garHaloRing 4s ease-in-out infinite;
}
@keyframes garHaloRing {
  0%,100% { width: 200px; height: 200px; opacity: 0.5; }
  50%      { width: 260px; height: 260px; opacity: 0; }
}
.gar-seal-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: garSealSpin 20s linear infinite;
  filter: drop-shadow(0 0 18px rgba(200,150,46,0.6)) drop-shadow(0 0 40px rgba(200,150,46,0.25));
}
@keyframes garSealSpin {
  to { transform: rotate(360deg); }
}
.gar-trust-bold {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
.gar-trust-normal {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
}
/* Trust badges row */
.gar-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.gar-badge {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 0.92rem);
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  background: rgba(200,150,46,0.1);
  border: 1px solid rgba(200,150,46,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Shared CTA ── */
.gar-cta {
  display: block;
  width: 100%;
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, #14532D 0%, #22C55E 50%, #15803D 100%);
  border-radius: 100px;
  padding: 18px 36px;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  box-shadow: 0 8px 36px rgba(34,197,94,0.5), 0 2px 6px rgba(0,0,0,0.3);
  animation: garCtaPulse 2.4s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gar-cta:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 14px 52px rgba(34,197,94,0.75), 0 4px 10px rgba(0,0,0,0.3);
}
.gar-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  background-size: 250% auto;
  animation: garCtaShine 2.8s ease-in-out infinite;
}
@keyframes garCtaPulse {
  0%,100% { box-shadow: 0 8px 36px rgba(34,197,94,0.5), 0 2px 6px rgba(0,0,0,0.3); }
  50%      { box-shadow: 0 8px 56px rgba(34,197,94,0.85), 0 0 90px rgba(34,197,94,0.2), 0 2px 6px rgba(0,0,0,0.3); }
}
@keyframes garCtaShine {
  0%,100% { background-position: -100% center; }
  55%      { background-position: 220% center; }
}

/* decorative floating icons */
.gar-float-icon {
  position: absolute;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  pointer-events: none;
  z-index: 1;
  animation: garFloatDrift var(--fd, 7s) ease-in-out infinite var(--fdel, 0s);
  opacity: 0.18;
}
@keyframes garFloatDrift {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(8deg); }
}

/* Mobile */
@media (max-width: 600px) {
  .gar-seal-img { width: 180px; height: 180px; }
  .gar-halo     { width: 200px; height: 200px; }
}

/* ____________ style block ____________ */

/* ── Section 7 · Quién soy ─────────────────────────────────────────────── */
.qui-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1A3A8F 0%, #0D2461 100%);
  padding: clamp(64px,9vw,110px) 20px 0;
}
/* radial glow at top */
.qui-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200,150,46,0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Particles canvas area ── */
.qui-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.qui-p {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD600 0%, transparent 70%);
  opacity: 0;
  animation: quiPFloat var(--dur,9s) ease-in-out infinite var(--del,0s);
}
@keyframes quiPFloat {
  0%   { opacity:0; transform:translate(0,0) scale(.5); }
  20%  { opacity:var(--op,.12); }
  80%  { opacity:var(--op,.12); }
  100% { opacity:0; transform:translate(var(--tx,0px),var(--ty,-50px)) scale(0); }
}

/* ── Container ── */
.qui-wrap {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  margin: 0 auto;
}

/* ── Headline ── */
.qui-headline {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFD600;
  text-align: center;
  margin: 0 0 56px;
  text-shadow: 0 0 40px rgba(255,214,0,0.35);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.qui-headline.qui--vis { opacity:1; transform:translateY(0); }

/* ── Two-column layout ── */
.qui-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 680px) {
  .qui-body { grid-template-columns: 1fr; text-align: center; }
}

/* ── Left col · Avatar ── */
.qui-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}
.qui-left.qui--vis { opacity:1; transform:translateX(0); }

.qui-avatar-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Glow blob behind avatar */
.qui-avatar-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,46,0.4) 0%, transparent 70%);
  animation: quiAvatarGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes quiAvatarGlow {
  0%,100% { transform: scale(0.88); opacity: 0.7; }
  50%      { transform: scale(1.12); opacity: 1; }
}
/* Orbiting dots */
.qui-orbit {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px dashed rgba(200,150,46,0.25);
  animation: quiOrbit 12s linear infinite;
  pointer-events: none;
}
.qui-orbit-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFD600;
  box-shadow: 0 0 8px rgba(255,214,0,0.9);
}
@keyframes quiOrbit {
  to { transform: rotate(360deg); }
}
.qui-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8962E 0%, #F0B942 50%, #C8962E 100%);
  box-shadow: 0 0 0 4px rgba(200,150,46,0.25), 0 0 60px rgba(200,150,46,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  z-index: 2;
  animation: quiAvatarBreath 4s ease-in-out infinite;
}
@keyframes quiAvatarBreath {
  0%,100% { box-shadow: 0 0 0 4px rgba(200,150,46,0.25), 0 0 60px rgba(200,150,46,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(200,150,46,0.35), 0 0 90px rgba(200,150,46,0.65); }
}
.qui-name {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #FFD600;
  margin: 0;
  text-shadow: 0 0 20px rgba(255,214,0,0.4);
}
.qui-title-pill {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.3vw, 0.92rem);
  color: #C8962E;
  background: rgba(200,150,46,0.12);
  border: 1px solid rgba(200,150,46,0.38);
  border-radius: 100px;
  padding: 6px 16px;
  text-align: center;
  line-height: 1.3;
}
/* Mobile divider */
.qui-mobile-divider {
  display: none;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C8962E, transparent);
  margin: 4px auto 0;
}
@media (max-width: 680px) {
  .qui-mobile-divider { display: block; }
}

/* ── Right col · Text ── */
.qui-right {
  position: relative;
}
/* Giant decorative quote mark */
.qui-qmark {
  position: absolute;
  top: -20px;
  left: -24px;
  font-size: 9rem;
  color: rgba(200,150,46,0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 680px) {
  .qui-qmark { left: 50%; transform: translateX(-50%); top: -14px; font-size: 6rem; }
}
.qui-para {
  position: relative;
  z-index: 1;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin: 0 0 22px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.qui-para.qui--vis { opacity:1; transform:translateY(0); }
.qui-para:last-child { margin-bottom: 0; }
.qui-para .hi-gold {
  color: #FFD600;
  font-weight: 900;
}
.qui-para .hi-italic {
  font-style: italic;
  font-weight: 800;
  color: #fff;
}

/* ── FAQ Section ── */
.faq-section {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 64px auto 0;
  padding: 0 0 64px;
}
.faq-headline {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  text-align: center;
  margin: 0 0 32px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-headline.faq--vis { opacity:1; transform:translateY(0); }

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

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(200,150,46,0.18);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background 0.3s ease;
}
.faq-item.faq--vis { opacity:1; transform:translateY(0); }
.faq-item.faq--open {
  border-color: rgba(200,150,46,0.5);
  background: rgba(200,150,46,0.08);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}
.faq-btn-q {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #fff;
  flex: 1;
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(200,150,46,0.15);
  border: 1.5px solid rgba(200,150,46,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease;
  color: #C8962E;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.faq--open .faq-icon {
  transform: rotate(45deg);
  background: rgba(200,150,46,0.3);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.22,1,0.36,1);
}
.faq-body-inner {
  padding: 0 20px 18px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* ── Footer ── */
.qui-footer {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(200,150,46,0.2);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.qui-footer-copy {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.5vw,  0.95rem);
  color: rgba(255,255,255,0.55);
}
.qui-footer-copy strong {
  color: rgba(255,255,255,0.8);
}
.qui-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.qui-footer-links a {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  font-weight: 600;
  color: rgba(200,150,46,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.qui-footer-links a:hover { color: #FFD600; }
.qui-footer-dot {
  color: rgba(200,150,46,0.35);
}

/* ═══════════════════════════════════════════════════════════════
   ¿Cómo funciona? — faixa PDF (entre hero e carrossel)
═══════════════════════════════════════════════════════════════ */
@keyframes ms-hwf-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hwf {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0D2461 0%, #1A3A8F 100%);
  padding: clamp(28px, 4vw, 44px) 18px;
  opacity: 0;
  /* translate3d: camada GPU — no iOS/Android a transição costuma ser mais fiável que translateY só */
  transform: translate3d(0, 40px, 0);
  transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hwf.hwf--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hwf-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hwf-headline {
  font-family: "Fredoka One", "Fredoka", sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0 0 clamp(18px, 3vw, 26px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.hwf-flow {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.hwf-step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 300px;
  text-align: center;
  padding: clamp(16px, 2.2vw, 22px) clamp(14px, 2vw, 20px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(200, 150, 46, 0.38);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hwf-icon-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  margin-bottom: 8px;
}
.hwf-step-num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-family: "Fredoka One", "Fredoka", sans-serif;
  font-size: clamp(2.8rem, 6vw, 3.75rem);
  font-weight: 400;
  color: rgba(200, 150, 46, 0.22);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hwf-icon {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.hwf-step-title {
  font-family: "Fredoka One", "Fredoka", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFD600;
  margin: 0 0 8px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(255, 214, 0, 0.2);
}
.hwf-step-desc {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  margin: 0;
  position: relative;
  z-index: 1;
}
.hwf-arrow {
  flex: 0 0 auto;
  align-self: center;
  font-family: "Fredoka One", "Fredoka", sans-serif;
  font-size: 1.6rem;
  color: rgba(200, 150, 46, 0.65);
  padding: 0 10px;
  line-height: 1;
  user-select: none;
}
.hwf-arrow--mob {
  display: none;
}
@media (max-width: 768px) {
  .hwf-arrow--desk {
    display: none;
  }
  .hwf-arrow--mob {
    display: block;
    text-align: center;
    padding: 6px 0;
    width: 100%;
    align-self: center;
  }
  .hwf-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .hwf-step {
    max-width: 420px;
    width: 100%;
  }

  /* Secção alta em coluna: IO com threshold alto às vezes dispara tarde ou “salta” no WebKit */
  .hwf {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.hwf-badge {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: clamp(18px, 2.5vw, 24px) auto 0;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  font-weight: 700;
  text-align: center;
  color: #C8962E;
  background: rgba(200, 150, 46, 0.15);
  border: 1px solid rgba(200, 150, 46, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  line-height: 1.35;
}
@media (prefers-reduced-motion: reduce) {
  .hero {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hwf {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hwf.hwf--visible {
    animation: none !important;
  }
}

/* ── Scroll reveal: mobile ainda mais suave ── */
@media (max-width: 768px) {
  .hero,
  .gs,
  .tst,
  .hwf {
    transition: opacity 1.22s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.32s cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* WebKit mobile: transição em pai com filhos backdrop-filter costuma falhar; @keyframes é mais fiável */
  .hwf.hwf--visible {
    animation: ms-hwf-reveal 1.22s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transition: none;
  }
  .bn-card {
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      transform 1.12s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 1.08s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .of-card {
    transition: opacity 1.32s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.38s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .of-item {
    transition: opacity 1.05s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .gar-card {
    transition: opacity 1.12s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.18s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .qui-headline {
    transition: opacity 1.08s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.12s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .qui-left {
    transition: opacity 1.12s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.18s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .qui-para {
    transition: opacity 1.02s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.08s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .faq-headline {
    transition: opacity 1.02s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.06s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .faq-item {
    transition:
      opacity 1.02s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 1.08s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.3s ease,
      background 0.3s ease;
  }
}