/* ---------- Design Tokens ---------- */
:root {
    /* Colores principales */
    --blue-hero: #2bafd5;
    /* Azul claro del Hero y nav */
    --blue-dark: #000000;
    --blue-footer-light: #3ea8e6;
    --magenta: #e82f65;
    /* Magenta/pink/botones */
    --pink-dark: #ff0379;
    --lilac: #0ab3d1;
    /* Lila, combina con --blue-hero para "Como funciona" */
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --gray-text: #444444;
    --navy-cta: #000000;

    /* Componentes */
    --radius-card: 16px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: 0.3s ease;

    /* Stack overlap: la sección siguiente sube --overlap-margin px
     y muestra sus esquinas redondeadas de --overlap-radius px.
     Para ver las esquinas: cada sección agrega padding-bottom
     equivalente al radio, y el z-index aumenta en cascada. */
    --overlap-radius: 40px;
    --overlap-margin: -40px;

    /* Hero mujer mobile */
    --hero-woman-mobile-left: -70px;
    --hero-woman-mobile-bottom: -40px;

    /* Tipografia */
    --font-main: "Poppins", "Segoe UI", Tahoma, Arial, sans-serif;
    --font-heading: "Poppins", "Segoe UI", Tahoma, Arial, sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--gray-text);
    background: var(--white);
    overflow-x: hidden;
}

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

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

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* ---------- Utility ---------- */
.hidden {
    display: none !important;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.dash {
    display: inline-block;
    margin-inline: 12px;
}

.dash-yellow {
    color: var(--magenta);
}

/* ---------- Animaciones al hacer scroll (reveal) ---------- */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(.16, 1, .3, 1), transform 0.8s cubic-bezier(.16, 1, .3, 1);
}

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

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

.reveal-scale {
    transform: scale(0.88);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Stack overlap – la sección con esta clase aparece encima
   de la anterior mostrando sus esquinas redondeadas superiores. */
.section-stacked {
    position: relative;
    border-top-left-radius: var(--overlap-radius);
    border-top-right-radius: var(--overlap-radius);
    margin-top: var(--overlap-margin);
    /* Sombra que refuerza la separación visual entre secciones */
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
}

/* =============================================================
   1. HEADER
   ============================================================= */
.site-header {
    background: var(--white);
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* =============================================================
   2. HERO
   ============================================================= */
.hero {
    background-color: var(--blue-hero);
    color: var(--white);
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Sunburst rotating rays */
.hero::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%);
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.06) 0deg,
        rgba(255, 255, 255, 0.06) 5deg,
        transparent 5deg,
        transparent 10deg
    );
    animation: sunburst-spin 55s linear infinite;
    z-index: -1;
    pointer-events: none;
    transform-origin: center center;
}

@keyframes sunburst-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-overflow-wrapper {
    position: relative;
    overflow: visible;
    z-index: 2;
}

/* En desktop estos wrappers son invisibles al layout */
.hero-bottom-row,
.hero-prize-cta-col {
    display: contents;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    align-items: center;
    gap: 20px;
}

.hero-woman {
    grid-column: 1;
    grid-row: 1 / 4;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    margin-bottom: -115px;
    width: 100%;
    max-width: 580px;
    justify-self: end;
    align-self: end;
}

.hero-woman img {
    max-height: 680px;
    width: 110%;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.25));
}

.hero-logo-img {
    width: 460px;
    max-width: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Premio */
.hero-prize {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: transparent;
    padding: 0;
}

.prize-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 20px;
    border-radius: 999px;
    animation: prizeLabelFade 0.6s ease both;
}

.prize-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1;
    margin-top: 18px;
}

.prize-currency {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
}

.prize-number {
    font-family: var(--font-heading);
    font-size: 5.8rem;
    font-weight: 900;
    color: var(--white);
    -webkit-text-stroke: 2px var(--magenta);
    text-shadow: 0 6px 0 var(--magenta), 0 14px 26px rgba(0, 0, 0, 0.35);
    letter-spacing: -2px;
    line-height: 1;
    animation: prizeNumberPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.1s;
}

.prize-sub {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
    text-align: center;
    line-height: 1.3;
    color: var(--white);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

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

@keyframes prizeNumberPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* CTA group */
.hero-cta-group {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    position: relative;
}

/* Hint flotante — extremo derecho, solo texto */
.hero-cta-hint {
    grid-column: 3;
    grid-row: 4;
    justify-self: start;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
    color: var(--white);
    width: max-content;
    max-width: 240px;
    margin-top: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    z-index: 4;
}

/* Overlay que reproduce el ancho centrado del hero (1200px/92%) por fuera
   de .hero, para que la imagen pueda salir de su recorte (overflow:hidden)
   y quedar detras de la seccion blanca siguiente. */
.hero-decor-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 1;
    pointer-events: none;
}

/* Imagen decorativa — extremo izquierdo, se hunde detras de la seccion blanca.
   Ancho acotado para no invadir el texto del premio, que va centrado
   en el mismo contenedor. */
.hero-decor {
    pointer-events: auto;
    width: 100%;
    max-width: 300px;
    max-height: 620px;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.2));
}

/* Scroll down arrow */
.scroll-down {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--white);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-down svg {
    width: 32px;
    height: 32px;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* =============================================================
   3. BUTTONS
   ============================================================= */
.br-mobile {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 16px 36px;
    cursor: pointer;
    border: none;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

/* Botón principal PARTICIPA */
.btn-participa {
    position: relative;
    overflow: hidden;
    background: var(--magenta);
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 3px;
    padding: 14px 48px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow:
        0px -6px 0px 0px var(--white),
        0px 8px 20px rgba(0, 0, 0, 0.25);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    animation: buttonHeartbeat 2.2s linear infinite;
}

.btn-participa::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    animation: btnShine 2.6s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -60%; }
    45% { left: 130%; }
    100% { left: 130%; }
}

.btn-participa:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0px -3px 0px 0px var(--white);
}

/* Botón tutorial */
.btn-tutorial {
    background: var(--blue-hero);
    color: var(--white);
    font-size: 1rem;
    padding: 12px 32px;
}

.btn-tutorial .btn-play {
    font-size: 0.9rem;
}

/* Botón PARTICIPA YA (CTA final) */
.btn-participa-ya {
    background: var(--magenta);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 5px 20px;
    border-radius: 50px;
    box-shadow:
        0px -6px 0px 0px var(--white),
        0px 10px 24px rgba(0, 0, 0, 0.28);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    animation: buttonHeartbeat 2.2s linear infinite;
}

.btn-participa-ya:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0px -3px 0px 0px var(--white);
}

/* SVG icon en botón PARTICIPA */
.btn-icon-svg {
    display: inline-block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    vertical-align: middle;
    flex-shrink: 0;
}

/* =============================================================
   4. PASOS (Flip Cards interactivas)
   ============================================================= */
.pasos {
    background: var(--white);
    padding: 80px 0 135px;
    /* 95px + 40px overlap compensation */
    position: relative;
    z-index: 2;
}

.pasos-title {
    font-size: 2.4rem;
    color: var(--blue-hero);
    margin-bottom: 50px;
}

.numero-destacado {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1;
    vertical-align: baseline;
    display: inline-block;
}

.pasos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    margin-bottom: 35px;
    max-width: 960px;
    margin-inline: auto;
}

/* Tarjeta de paso (imagen + titulo corto + titulo + instruccion + tutorial) */
.paso-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 42px 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.paso-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.paso-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    background: var(--magenta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(232, 47, 101, 0.35);
}

.paso-image {
    width: 100%;
    max-width: 160px;
    margin-top: 8px;
}

.paso-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.paso-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--blue-hero);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.paso-instruction {
    font-size: 0.92rem;
    color: var(--gray-text);
    line-height: 1.55;
}

.paso-tutorial-btn {
    margin-top: 6px;
    background: var(--white);
    color: var(--magenta);
    border: 2px solid var(--magenta);
    font-size: 0.85rem;
    padding: 8px 22px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.paso-tutorial-btn:hover {
    background: var(--magenta);
    color: var(--white);
}

.pasos-footnote {
    font-size: 0.85rem;
    color: var(--blue-hero);
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transition: opacity var(--transition);
    font-weight: 600;
}

.pasos-tutorial {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pasos-tutorial p {
    font-size: 1rem;
    color: var(--blue-hero);
    font-weight: 700;
}

/* =============================================================
   5. PREMIOS
   ============================================================= */
.premios {
    background: var(--magenta);
    padding: 110px 0 130px;
    /* 90px + 40px overlap compensation */
    z-index: 3;
    position: relative;
    overflow: hidden;
}

.hero-cta-group {
    animation: heroFastEntrance 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
    transform: translateY(15px);
    animation-delay: 0.5s;
}

.hero-logo-img {
    animation: heroScaleEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0.8);
    animation-delay: 0.25s;
}

.hero-prize {
    animation: heroScaleEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0.8);
    animation-delay: 0.4s;
}

@keyframes heroFastEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroScaleEntrance {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Destello de fondo estático */
.premios::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.04) 0deg,
        rgba(255, 255, 255, 0.04) 5deg,
        transparent 5deg,
        transparent 10deg
    );
    z-index: 0;
    pointer-events: none;
}

.premios .container {
    position: relative;
    z-index: 1;
}

.premios-title {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 40px;
}

/* Encabezado moderno de la seccion de premios */
.premios-header {
    text-align: center;
    margin-bottom: 36px;
}

.premios-header-top {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.premios-header-badge {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--magenta);
    padding: 10px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(232, 47, 101, 0.35);
    text-transform: uppercase;
}

.premios-header-sub {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    background: var(--blue-hero);
    padding: 8px 20px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(43, 175, 213, 0.35);
}

.premios-countdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 640px;
    margin: 0 auto;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    backdrop-filter: blur(4px);
}

.premios-countdown.hidden {
    display: none;
}

.premios-countdown-msg {
    color: var(--white);
    font-size: 0.95rem;
}

.premios-countdown-msg strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
}

.premios-countdown-boxes {
    display: flex;
    gap: 10px;
}

.premios-countdown-box {
    min-width: 62px;
    text-align: center;
    background: var(--blue-hero);
    border-radius: 12px;
    padding: 8px 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.premios-countdown-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
}

.premios-countdown-label {
    display: block;
    margin-top: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 640px) {
    .premios-countdown {
        flex-direction: column;
        gap: 12px;
    }
}

.premios-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    border-radius: 16px;
    width: fit-content;
    margin: 0 auto 36px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.tab-btn {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 14px 52px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: #e0e0e0;
    color: rgba(43, 175, 213, 0.5);
    transition: all var(--transition);
}

.tab-btn.tab-active {
    background: var(--blue-hero);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.premios-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 20px;
}

.premios-grid.top-row {
    grid-template-columns: repeat(3, 1fr);
}

.premios-grid.bottom-row {
    grid-template-columns: repeat(4, 1fr);
}

.premio-card {
    background: var(--white);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-card);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    opacity: 0;
    transform: translateY(24px);
}

.premio-card.animate-card {
    animation: premioEntrance 0.5s ease-out forwards;
}

.premio-card:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
    z-index: 2;
    transform: scale(1.04);
}

@property --pulse-scale {
    syntax: "<number>";
    inherits: false;
    initial-value: 1.015;
}

/* Latido suave del panel de premios */
.premios-panel {
    --pulse-scale: 1.015;
    animation: panelHeartbeat 3.5s infinite ease-in-out;
    transform-origin: center top;
    transition: --pulse-scale 0.4s ease;
}

.premios-panel:hover {
    --pulse-scale: 1.035;
}

@keyframes premioEntrance {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes panelHeartbeat {
    0%,
    100% {
        scale: 1;
    }

    50% {
        scale: var(--pulse-scale);
    }
}

@keyframes buttonHeartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

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

.premio-monto {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 38px;
    letter-spacing: -2px;
    color: var(--blue-hero);
}

.premio-ganadores {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--magenta);
    text-transform: uppercase;
}

.premios-nota {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.nota-icon {
    width: 26px;
    height: 26px;
    background: var(--white);
    color: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.premios-nota p {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.3;
    opacity: 0.95;
}

/* =============================================================
   6. FECHAS
   ============================================================= */
.fechas {
    background: var(--white);
    padding: 115px 0 130px;
    /* 90px + 40px overlap compensation */
    z-index: 4;
    position: relative;
    color: var(--gray-text);
}

.fechas-title {
    font-size: 2.2rem;
    color: var(--blue-hero);
    margin-bottom: 10px;
}

.fechas-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--blue-hero);
    font-weight: 700;
    margin-bottom: 50px;
}

/* Tarjetas mobile de fechas */
.fechas-mobile {
    display: none;
    flex-direction: column;
    gap: 24px;
}

.fecha-card-mobile {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    border: 1px solid #d0d0d0;
}

.fecha-card-header {
    background: var(--magenta);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 16px;
}

.fecha-card-row {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}

.fecha-card-row--last {
    border-bottom: none;
}

.fecha-card-label {
    background: var(--blue-hero);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 0 160px;
    min-width: 160px;
    width: 160px;
    border-right: 1px solid rgba(43, 175, 213, 0.15);
}

.fecha-card-value {
    background: var(--white);
    color: var(--gray-text);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    line-height: 1.4;
}

.fecha-card-value--highlight strong {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--blue-hero);
}

.fechas-nota-legal {
    margin-top: 50px;
    text-align: center;
    font-family: var(--font-main);
    font-weight: 400;
    font-style: italic;
    font-size: 15px;
    color: var(--blue-hero);
    line-height: 1.7;
    opacity: 0.9;
}

/* =============================================================
   6. PREGUNTAS FRECUENTES
   ============================================================= */
.faq {
    background: var(--blue-hero);
    padding: 110px 0 130px;
    z-index: 4;
    position: relative;
    overflow: hidden;
}

/* Destello de fondo estático, igual que .premios::before */
.faq::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.05) 0deg,
        rgba(255, 255, 255, 0.05) 5deg,
        transparent 5deg,
        transparent 10deg
    );
    z-index: 0;
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--magenta);
    padding: 12px 32px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(232, 47, 101, 0.35);
}

.faq-list {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition: box-shadow var(--transition);
}

.faq-item.is-open {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 22px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue-hero);
    text-align: left;
}

.faq-item.is-open .faq-question {
    background: var(--magenta);
    color: var(--white);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    overflow: hidden;
    padding: 0 22px;
    font-size: 0.92rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.faq-item.is-open .faq-answer p {
    padding: 16px 22px 20px;
}

@media (max-width: 640px) {
    .faq-question {
        font-size: 0.92rem;
        padding: 16px 18px;
    }
}

/* =============================================================
   7. LO QUE DEBES SABER
   ============================================================= */
.saber {
    background: var(--magenta);
    padding: 110px 0 135px;
    /* 95px + 40px overlap compensation */
    z-index: 5;
    position: relative;
    overflow: hidden;
}

/* Destello de fondo estático, igual que .premios::before */
.saber::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.05) 0deg,
        rgba(255, 255, 255, 0.05) 5deg,
        transparent 5deg,
        transparent 10deg
    );
    z-index: 0;
    pointer-events: none;
}

.saber .container {
    position: relative;
    z-index: 1;
}

.saber-header {
    text-align: center;
    margin-bottom: 45px;
}

.saber-title-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--magenta);
    background: var(--white);
    padding: 12px 32px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.saber-title-sub {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffd447;
}

.saber-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.saber-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 38px 26px 32px;
    text-align: center;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.saber-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.saber-card-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    background: var(--blue-hero);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.saber-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saber-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    box-shadow: none;
}

.saber-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--blue-hero);
    line-height: 1.2;
}

.saber-card-text {
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--gray-text);
}

.saber-card-text a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    color: inherit;
}

.saber-cta {
    text-align: center;
    margin-top: 48px;
}

.saber-cta-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 18px;
}

.saber-cta-btn {
    position: relative;
    overflow: hidden;
    background: #ffd447;
    color: #7a4b00;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 16px 44px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
    animation: buttonHeartbeat 2.2s linear infinite;
}

.saber-cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    transform: skewX(-20deg);
    animation: btnShine 3s ease-in-out infinite;
}

.saber-cta-btn:hover {
    background: #ffcb1f;
    transform: translateY(-3px) scale(1.03);
}

/* =============================================================
   8. CTA FINAL
   ============================================================= */
.cta-final {
    background: var(--blue-hero);
    padding: 80px 0 0;
    overflow: visible;
    z-index: 6;
    position: relative;
    /* z-index 6: encima de saber (5), sus esquinas redondeadas son visibles */
}

.cta-final-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.cta-bottom-row {
    display: contents;
}

.cta-text {
    color: var(--white);
    text-align: left;
    max-width: 420px;
    flex: 1;
}

.cta-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--magenta);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
    animation: premioBtnPulse 2.2s ease-in-out infinite;
}

.cta-sub strong {
    color: #ffd447;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    line-height: 0.8;
    margin-bottom: 20px;
}

.cta-ganar {
    color: var(--magenta);
    font-size: 7rem;
    font-weight: 700;
    display: block;
}

.cta-sub {
    font-size: 1.2rem;
    opacity: 1;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-action-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--magenta);
    line-height: 1.2;
}

.cta-woman {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    margin-bottom: -5px;
}

.cta-woman img {
    max-height: 480px;
    width: auto;
    object-fit: contain;
    vertical-align: bottom;
    filter: drop-shadow(0 -5px 15px rgba(0, 0, 0, 0.3));
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 60px;
}

.cta-logo {
    max-width: 220px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* =============================================================
   9. FOOTER
   ============================================================= */
.site-footer {
    background: var(--blue-hero);
    z-index: 7;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Sunburst estático en el footer */
.site-footer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%);
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.06) 0deg,
        rgba(255, 255, 255, 0.06) 5deg,
        transparent 5deg,
        transparent 10deg
    );
    z-index: 0;
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1.3fr;
    gap: 0 20px;
    padding: 50px 0 35px;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* Divisor vertical entre columnas */
.footer-divider-vertical {
    width: 1px;
    background: var(--white);
    align-self: stretch;
}

/* Línea divisora entre CTA y zona legal */
.footer-divider {
    width: 100%;
    height: 2px;
    opacity: 1;
    background: var(--white);
    margin: 5px 0;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
}

.footer-legal {
    align-self: stretch;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.footer-legal-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.footer-payment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.footer-payment-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-top: 10px;
}

.footer-payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    transition: opacity var(--transition);
}

.footer-payment-method:hover {
    opacity: 0.8;
}

.footer-payment-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--white);
    padding: 3px;
}

.footer-payment-qr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-payment-qr img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--white);
    padding: 6px;
}

.footer-payment-qr span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--white);
    line-height: 1.5;
    font-weight: 700;
    transition: opacity var(--transition);
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-link-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-link-icon-svg {
    display: inline-block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer bottom: logo Aissa + copyright */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 0 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* La imagen del logo trae mucho lienzo transparente alrededor del isotipo;
   se recorta la ventana visible para no arrastrar ese espacio vacio. */
.footer-logo-frame {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 284px;
    width: auto;
    object-fit: contain;
    filter: none;
}


/* =============================================================
   RESPONSIVE – Tablet + Mobile (≤ 1080px)
   Breakpoint unificado. Las clases .force-mobile comparten
   las mismas reglas aplicadas también aquí.
   ============================================================= */
@media (max-width: 1080px) {
    /* --- Barra superior (logo + Registrarme) --- */
    .top-bar {
        padding: 12px 0;
    }

    .top-bar-link {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    /* --- Hero --- */
    .hero {
        min-height: auto;
        padding-top: 76px;
        padding-bottom: 48px;
    }

    .hero-supertitle {
        font-size: 12px;
        margin-top: 0;
        text-align: center;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 0;
    }

    .hero-logo-block {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 0;
        margin-top: 4px;
    }

    .hero-logo-img {
        max-width: 90%;
        width: 340px;
    }

    .hero-bottom-row {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        gap: 0;
        order: 2;
        margin-top: 8px;
        position: relative;
        min-height: 250px;
    }

    /* Ocultar mujer en mobile */
    .hero-woman {
        display: none;
    }

    /* La chica no se muestra en mobile */
    .hero-decor-wrap {
        display: none;
    }

    .hero-prize-cta-col {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 0 24px;
        gap: 8px;
        position: relative;
        z-index: 2;
    }

    .hero-prize {
        align-items: center;
        text-align: center;
        gap: 2px;
    }

    .prize-label {
        font-size: 0.78rem;
        letter-spacing: 1.5px;
        padding: 6px 16px;
    }

    .prize-amount {
        gap: 2px;
        align-items: baseline;
        margin-top: 12px;
    }

    .prize-currency {
        font-size: 1.8rem;
        font-weight: 900;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.247);
    }

    .prize-number {
        font-size: 3.2rem;
        letter-spacing: -2px;
        -webkit-text-stroke: 1.5px var(--magenta);
        text-shadow: 0 4px 0 var(--magenta), 0 10px 18px rgba(0, 0, 0, 0.35);
    }

    .prize-sub {
        font-size: 0.85rem;
        font-weight: 700;
        text-align: center;
        margin-top: 10px;
        padding-top: 10px;
        line-height: 1.3;
    }

    .prize-sub .br-desktop {
        display: none;
    }

    .br-mobile {
        display: inline;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
        margin-top: 8px;
    }

    .hero-cta-hint {
        position: static;
        transform: none;
        margin-left: 0;
        margin-top: 4px;
        width: 100%;
        max-width: none;
        justify-self: auto;
        text-align: center;
        font-size: 0.82rem;
        font-weight: 500;
        line-height: 1.3;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }

    .btn-participa {
        font-size: 1.15rem;
        padding: 8px 24px;
        box-shadow:
            0px -4px 0px 0px var(--white),
            0 4px 12px rgba(0, 0, 0, 0.5);
    }

    /* --- Pasos --- */
    .pasos {
        padding-top: 80px;
    }

    .pasos-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-inline: auto;
        gap: 16px;
    }

    .paso-card {
        padding: 38px 18px 22px;
    }

    .paso-title {
        font-size: 1rem;
    }

    .paso-instruction {
        font-size: 0.88rem;
    }

    /* --- Premios --- */
    .premios-grid {
        gap: 14px;
    }

    .premios-grid.top-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .premios-grid.top-row .premio-card:first-child {
        grid-column: 1 / -1;
        margin-bottom: 14px;
    }

    .premios-grid.bottom-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .premio-monto {
        font-size: 26px;
        letter-spacing: -1px;
    }

    .premio-ganadores {
        font-size: 13px;
    }

    .premios-tabs {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
    }

    .premios-tabs .tab-btn {
        flex: 1;
        text-align: center;
        padding: 12px 8px;
    }

    /* --- Lo que debes saber --- */
    .saber-grid {
        grid-template-columns: 1fr;
    }

    /* --- Títulos de sección --- */
    .pasos-title,
    .premios-title,
    .saber-title,
    .fechas-title {
        font-size: 1.75rem;
        font-weight: 700;
    }

    /* Ocultar guiones decorativos en mobile */
    .section-title .dash {
        display: none;
    }

    /* --- CTA Final + Footer --- */
    .cta-final-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-text {
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }

    .cta-bottom-row {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
        position: relative;
        min-height: 250px;
    }

    .cta-woman {
        position: absolute;
        left: -10px;
        bottom: -25px;
        width: 55%;
        max-width: 280px;
        margin: 0;
        z-index: 1;
    }

    .cta-woman img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 380px;
    }

    .cta-right {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-bottom: 20px;
        position: relative;
        z-index: 2;
    }

    .cta-logo {
        width: 100%;
        max-width: 160px;
        margin-bottom: 15px;
    }

    .cta-headline {
        font-size: 2.8rem;
        line-height: 1;
    }

    .cta-ganar {
        font-family: var(--font-heading);
        font-weight: 700;
        font-style: italic;
        font-size: 4rem;
    }

    .cta-action-text {
        color: var(--magenta);
        font-size: 1.1rem;
        font-weight: 700;
        margin-top: 10px;
    }

    .btn-participa-ya {
        font-size: 1.15rem;
        padding: 8px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-divider-vertical {
        display: none;
    }

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

    .footer-link {
        justify-content: flex-start;
        text-align: left;
        align-items: center;
        font-size: 1rem;
        gap: 16px;
    }

    .footer-link-icon-svg {
        width: 40px;
        height: auto;
        flex-shrink: 0;
    }
}

/* =============================================================
   Force Mobile – aplica las mismas reglas mobile cuando JS
   detecta pantalla física pequeña con modo escritorio activo.
   ============================================================= */
.force-mobile .top-bar {
    padding: 12px 0;
}

.force-mobile .logo-blanco {
    left: 16px;
    height: 38px;
}

.force-mobile .top-bar-link {
    font-size: 0.8rem;
    padding: 8px 14px;
}

.force-mobile .nav-burger {
    display: flex;
}

.force-mobile .top-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(0, 0, 0, 0.9);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height var(--transition), opacity var(--transition);
}

.force-mobile .nav-toggle:checked ~ .top-nav {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
}

.force-mobile .top-nav-link,
.force-mobile .top-nav .top-bar-link {
    text-align: center;
    padding: 14px 20px;
    border-radius: 0;
}

.force-mobile .top-nav .top-bar-link--cta {
    margin: 10px 20px;
    border-radius: 50px;
}

.force-mobile .hero {
    padding-top: 76px;
}

.force-mobile .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.force-mobile .hero-bottom-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    gap: 0;
    order: 2;
    margin-top: 8px;
    position: relative;
    min-height: 250px;
}

/* Ocultar mujer en force-mobile también */
.force-mobile .hero-woman {
    display: none;
}

.force-mobile .hero-decor-wrap {
    display: none;
}

.force-mobile .hero-prize-cta-col {
    display: flex;
    flex: 1;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 24px;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.force-mobile .hero-prize {
    align-items: center;
    text-align: center;
    gap: 0;
}

.force-mobile .prize-label {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    padding: 6px 16px;
}

.force-mobile .prize-currency {
    font-size: 1.5rem;
}

.force-mobile .prize-number {
    font-size: 4rem;
    letter-spacing: -2px;
    -webkit-text-stroke: 1.5px var(--magenta);
    text-shadow: 0 4px 0 var(--magenta), 0 10px 18px rgba(0, 0, 0, 0.35);
}

.force-mobile .prize-sub {
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    line-height: 1.2;
}

.force-mobile .prize-sub .br-desktop {
    display: none;
}

.force-mobile .br-mobile {
    display: inline;
}

.force-mobile .hero-cta-group {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-top: 8px;
}

.force-mobile .hero-cta-hint {
    position: static;
    transform: none;
    margin-left: 0;
    width: 100%;
    max-width: none;
    justify-self: auto;
    text-align: center;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.force-mobile .btn-participa {
    font-size: 1.55rem;
    padding: 8px 24px;
    box-shadow:
        0px -4px 0px 0px var(--white),
        0 4px 12px rgba(0, 0, 0, 0.5);
    animation: buttonHeartbeat 2.2s linear infinite;
}

.force-mobile .cta-final-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.force-mobile .cta-text {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.force-mobile .cta-bottom-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    position: relative;
    min-height: 250px;
}

.force-mobile .cta-woman {
    position: absolute;
    left: -10px;
    bottom: -7px;
    width: 55%;
    max-width: 280px;
    margin: 0;
    z-index: 1;
}

.force-mobile .cta-woman img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
}

.force-mobile .cta-right {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}

.force-mobile .cta-logo {
    width: 100%;
    max-width: 210px;
    margin-bottom: 15px;
}

.force-mobile .cta-headline {
    font-size: 2.8rem;
    line-height: 1;
}

.force-mobile .cta-ganar {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 4rem;
}

.force-mobile .btn-participa-ya {
    font-size: 1.55rem;
    padding: 8px 24px;
    box-shadow:
        0px -6px 0px 0px var(--white),
        0px 10px 24px rgba(0, 0, 0, 0.28);
    animation: buttonHeartbeat 2.2s linear infinite;
}

.force-mobile .cta-action-text {
    color: var(--magenta);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 10px;
}

/* Footer legal mobile */
.force-mobile .footer-legal-parrafo {
    text-align: justify;
    text-align-last: left;
    -moz-text-align-last: left;
    -webkit-text-size-adjust: 100%;
    line-height: 1.15;
}

.force-mobile .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
}

.force-mobile .footer-divider-vertical {
    display: none;
}

.force-mobile .footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
}

.force-mobile .footer-link {
    justify-content: flex-start;
    text-align: left;
    align-items: center;
    font-size: 1rem;
    gap: 16px;
}

.force-mobile .footer-link-icon-svg {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.force-mobile .footer-legal {
    align-self: stretch;
}

.force-mobile .pasos-grid,
.force-mobile .saber-grid {
    grid-template-columns: 1fr;
}

.force-mobile .premios-grid.top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.force-mobile .premios-grid.top-row .premio-card:first-child {
    grid-column: 1 / -1;
    margin-bottom: 14px;
}

.force-mobile .premios-grid.bottom-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.force-mobile .premio-monto {
    font-size: 26px;
    letter-spacing: -1px;
}

.force-mobile .premio-ganadores {
    font-size: 13px;
}

.force-mobile .pasos-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
    gap: 30px;
}

.force-mobile .paso-card {
    padding: 38px 20px 22px;
}

.force-mobile .paso-title {
    font-size: 1.1rem;
}

.force-mobile .paso-instruction {
    font-size: 0.95rem;
}

/* Ocultar guiones en títulos con force-mobile */
.force-mobile .section-title .dash {
    display: none;
}

.force-mobile .pasos-title,
.force-mobile .premios-title,
.force-mobile .saber-title,
.force-mobile .fechas-title {
    font-size: 1.75rem;
    font-weight: 700;
}

/* =============================================================
   9. AISSA — Clases nuevas (barra superior, hero vacio, exito,
   cuenta regresiva, tiktok, premio unico, formulario CTA)
   ============================================================= */

/* Barra superior flotante sobre el hero */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 20px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.top-nav-link {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 16px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}

.top-nav-link:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.top-nav-link.is-active {
    background: var(--magenta);
    box-shadow: 0 4px 14px rgba(232, 47, 101, 0.45);
}

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
    z-index: 60;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background var(--transition);
}

.nav-burger:hover {
    background: rgba(255, 255, 255, 0.18);
}

.nav-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle:checked ~ .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked ~ .nav-burger span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked ~ .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo-blanco {
    position: absolute;
    /* top: 50%; */
    left: 24px;
    transform: translateY(-50%);
    height: 190px;
    width: auto;
    z-index: 999;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.top-bar-link {
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    transition: transform var(--transition), background var(--transition);
}

.top-bar-link:not(.top-bar-link--cta):hover {
    background: rgba(255, 255, 255, 0.14);
}

.top-bar-link--cta {
    background: var(--magenta);
    box-shadow: 0 4px 14px rgba(232, 47, 101, 0.4);
    margin-left: 6px;
}

.top-bar-link--cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    animation: btnShine 3.2s ease-in-out infinite;
}

.top-bar-link--cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(232, 47, 101, 0.55);
}

@media (max-width: 1080px) {
    .nav-burger {
        display: flex;
    }

    .top-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: auto;
        min-width: 220px;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: rgba(10, 10, 15, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        transition: max-height var(--transition), opacity var(--transition);
    }

    .nav-toggle:checked ~ .top-nav {
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
    }

    .top-nav-link,
    .top-nav .top-bar-link {
        text-align: center;
        padding: 14px 20px;
        border-radius: 14px;
    }

    .top-nav .top-bar-link--cta {
        margin: 8px 4px 2px;
        border-radius: 50px;
    }
}

/* Hero sin sorteo activo */
.hero--empty {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-inner-empty h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-inner-empty p {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Registro exitoso */
.ticket-success {
    background: var(--blue-hero);
    color: var(--white);
    padding: 160px 0;
    text-align: center;
}

.ticket-success-inner {
    max-width: 480px;
    margin-inline: auto;
}

.ticket-success-icon {
    width: 64px;
    height: 64px;
    margin-inline: auto;
    border-radius: 50%;
    background: var(--white);
    color: var(--blue-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
}

.ticket-success h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 16px 0 8px;
}

.ticket-success-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--magenta);
    margin: 8px 0;
}

.ticket-success-hint {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    font-size: 1rem;
    padding: 14px 32px;
}

/* Enlaces TikTok en la seccion de pasos */
.pasos-tiktok-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

.tiktok-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--blue-hero);
    transition: color var(--transition);
}

.tiktok-link:hover {
    color: var(--magenta);
}

.tiktok-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Premio unico (sin niveles) */
.premio-main {
    max-width: 360px;
    margin-inline: auto;
    padding: 40px 24px;
}

.premios-grid.top-row {
    grid-template-columns: 1fr;
}

.premio-main .premio-monto {
    font-size: 3rem;
}

/* Slider de tarjetas de sorteos (varios premios, con "peek" del siguiente) */
.premios-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 20px;
    padding: 0 46px;
}

.premios-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 0 14px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.premios-slider-track::-webkit-scrollbar {
    display: none;
}

.premios-slider-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.premio-card-slide {
    flex: 0 0 90%;
    max-width: 560px;
    scroll-snap-align: start;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.premio-card-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(232, 47, 101, 0.25);
}

.premio-card-media {
    position: relative;
    flex: 0 0 45%;
    overflow: hidden;
    background: var(--gray-light);
}

.premio-card-media-zoom {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.premio-card-media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: contain;
    display: block;
    background: var(--gray-light);
    transition: transform 0.4s ease;
}

.premio-card-media-zoom:hover img {
    transform: scale(1.15);
}

.premio-estado {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--white);
    background: var(--magenta);
}

.premio-estado--finalizado{
    background: var(--magenta);
    color: var(--white);
}

.premio-estado--activo {
    background: var(--magenta);
    color: var(--white);
}

.premio-card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 20px 22px;
    text-align: left;
    overflow: hidden;
}


.premio-card-body > * {
    opacity: 0;
    transform: translateY(10px);
    animation: premioFadeUp 0.5s ease forwards;
}

.premio-card-body > *:nth-child(1) { animation-delay: 0.05s; }
.premio-card-body > *:nth-child(2) { animation-delay: 0.12s; }
.premio-card-body > *:nth-child(3) { animation-delay: 0.19s; }
.premio-card-body > *:nth-child(4) { animation-delay: 0.26s; }
.premio-card-body > *:nth-child(5) { animation-delay: 0.33s; }

@keyframes premioFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premio-card-fecha {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    background: var(--blue-hero);
    padding: 5px 12px;
    border-radius: 2px;
}

.premio-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--blue-hero);
    line-height: 1.25;
}

.premio-card-sub {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.premio-card-precio {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--magenta);
    border: 2px dashed var(--magenta);
    border-radius: 999px;
    padding: 6px 14px;
    margin-top: 2px;
}

.premio-card-cta {
    position: relative;
    margin-top: 8px;
    width: 100%;
    text-align: center;
    background: var(--white);
    color: var(--blue-hero);
    border: 2px solid var(--blue-hero);
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(43, 175, 213, 0.25);
}

@keyframes premioBtnPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(43, 175, 213, 0.25); }
    50% { box-shadow: 0 4px 18px rgba(43, 175, 213, 0.5); }
}

.premio-card-cta:hover {
    background: var(--blue-hero);
    color: var(--white);
    transform: translateY(-2px) scale(1.03);
    animation-play-state: paused;
}

@media (min-width: 900px) {
    .premio-card-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .premios-slider {
        padding: 0 8px;
    }

    .premio-card-slide {
        flex: 0 0 92%;
        flex-direction: column;
    }

    .premio-card-media {
        flex: 0 0 auto;
    }

    .premio-card-media img {
        min-height: 180px;
        height: 200px;
    }
}

/* Formulario de participacion dentro del CTA final */
.cta-form-wrap {
    display: flex;
    justify-content: center;
}

.cta-form-card {
    background: var(--white);
    color: var(--gray-text);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    padding: 36px 32px;
    width: 100%;
    max-width: 420px;
    border-top: 8px solid var(--magenta);
}

@media (min-width: 901px) {
    .cta-form-card {
        max-width: 640px;
        padding: 40px 44px;
    }
}

.cta-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-hero);
    text-align: center;
}

.cta-form-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-text);
    opacity: 0.8;
    margin-top: 4px;
    margin-bottom: 16px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Cada paso del formulario se presenta como un tramo de una historia:
   numero + titulo, con una linea vertical que conecta los pasos. */
.form-step {
    position: relative;
    padding: 0 0 22px 34px;
}

.form-step::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 12px;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--blue-hero) 0 4px,
        transparent 4px 9px
    );
}

.form-step--last::before {
    display: none;
}

.form-step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.form-step-num {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--blue-hero);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.form-step-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--magenta);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-step-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 901px) {
    .form-step-fields--2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.form-privacy-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    line-height: 1.3;
    color: var(--gray-text);
    background: var(--gray-light);
    border-radius: 10px;
    padding: 8px 12px;
    margin-top: 2px;
}

.form-privacy-note i {
    color: var(--blue-hero);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.form-privacy-note strong {
    color: var(--magenta);
}

.form-field label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--blue-hero);
}

.form-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 14px;
    color: var(--magenta);
    font-size: 0.9rem;
    pointer-events: none;
}

.form-field input {
    width: 100%;
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 12px 14px 12px 40px;
    border: 2px solid #e6e6e6;
    background: var(--gray-light);
    border-radius: 12px;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
}

.form-field input:focus {
    border-color: var(--blue-hero);
    background: var(--white);
}

.form-error {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #d92d20;
}

.cta-form .btn-participa-ya {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .cta-final-inner {
        grid-template-columns: 1fr;
    }
}

/* Confeti al pasar el mouse por elementos del hero */
[data-confetti] {
    cursor: pointer;
}

.confetti-piece {
    position: absolute;
    width: var(--size, 8px);
    height: var(--size, 8px);
    border-radius: var(--radius, 2px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    animation: confetti-burst 0.9s cubic-bezier(0.25, 0.8, 0.4, 1) forwards;
}

@keyframes confetti-burst {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy)))
            rotate(var(--rot)) scale(0.4);
        opacity: 0;
    }
}

/* =============================================================
   10. Paginas independientes (Premios, Ganadores, Beneficios,
   Como funciona, Suscripciones)
   ============================================================= */


.page-first-section {
    padding-top: 190px;
}

.page-empty {
    text-align: center;
    color: var(--gray-text);
    opacity: 0.7;
    padding: 40px 0;
}

.page-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Ganadores usa .fechas como primera seccion; de fondo blanco (como
   aparece dentro del home, tras el hero) no combina siendo la primera
   seccion bajo el top-bar transparente, asi que se le da fondo de
   color con destello, igual que .premios::before */
.fechas.page-first-section {
    background: var(--blue-hero);
    color: var(--white);
    overflow: hidden;
}

.fechas.page-first-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.06) 0deg,
        rgba(255, 255, 255, 0.06) 5deg,
        transparent 5deg,
        transparent 10deg
    );
    z-index: 0;
    pointer-events: none;
}

.fechas.page-first-section .container {
    position: relative;
    z-index: 1;
}

.fechas.page-first-section .fechas-title,
.fechas.page-first-section .fechas-subtitle {
    color: var(--white);
}

/* Beneficios usa .saber como primera seccion: ya tiene fondo magenta,
   solo se agrega el destello estatico */
.saber.page-first-section {
    overflow: hidden;
}

.saber.page-first-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.05) 0deg,
        rgba(255, 255, 255, 0.05) 5deg,
        transparent 5deg,
        transparent 10deg
    );
    z-index: 0;
    pointer-events: none;
}

.saber.page-first-section .container {
    position: relative;
    z-index: 1;
}

/* Como funciona usa .pasos como primera seccion: fondo lila que
   combina con el azul --blue-hero (#2bafd5) */
.pasos.page-first-section {
    background: var(--lilac);
    overflow: hidden;
}

.pasos.page-first-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.06) 0deg,
        rgba(255, 255, 255, 0.06) 5deg,
        transparent 5deg,
        transparent 10deg
    );
    z-index: 0;
    pointer-events: none;
}

.pasos.page-first-section .container {
    position: relative;
    z-index: 1;
}

.pasos.page-first-section .pasos-title,
.pasos.page-first-section .pasos-tutorial p {
    color: var(--white);
}

.pasos.page-first-section .tiktok-link {
    color: var(--white);
}

.pasos.page-first-section .tiktok-link:hover {
    color: var(--blue-dark);
    opacity: 0.8;
}

.fechas.page-first-section .page-empty {
    color: rgba(255, 255, 255, 0.85);
    opacity: 1;
}

/* --- Beneficios --- */
.benefits-header {
    text-align: center;
    margin-bottom: 45px;
}

.benefits-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--magenta);
    background: #ffd447;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.benefits-header-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    letter-spacing: 0.5px;
    color: var(--white);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.benefits-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    margin-top: 12px;
    margin-bottom: 26px;
    max-width: 520px;
    margin-inline: auto;
}

.benefits-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--magenta);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: benefitsCtaPulse 2.4s ease-in-out infinite;
}

.benefits-header-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

@keyframes benefitsCtaPulse {
    0%, 100% { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25); }
    50% { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(255, 255, 255, 0.15); }
}

.benefits-filter {
    margin-bottom: 32px;
}

.benefits-filter-label {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.benefits-filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.benefit-filter-pill {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.benefit-filter-pill:hover {
    background: rgba(255, 255, 255, 0.25);
}

.benefit-filter-pill.is-active {
    background: var(--white);
    color: var(--magenta);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition: transform var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-card-image {
    position: relative;
    flex: 0 0 38%;
    background: var(--gray-light);
    min-height: 100%;
}

.benefit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--magenta);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.benefit-card-body {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.benefit-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.25;
}

.benefit-card-badge {
    align-self: flex-start;
    background: rgba(232, 47, 101, 0.12);
    color: var(--magenta);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 10px;
}

.benefit-card-text {
    font-size: 0.85rem;
    color: var(--gray-text);
    opacity: 0.85;
    line-height: 1.4;
}

.benefit-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--white);
    background: var(--magenta);
    padding: 10px 18px;
    border-radius: 999px;
    margin-top: auto;
    box-shadow: 0 6px 16px rgba(232, 47, 101, 0.35);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.benefit-card-cta:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(232, 47, 101, 0.45);
}

.benefit-card-terms {
    font-size: 0.72rem;
    color: var(--gray-text);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- Suscripciones --- */
.plans-title {
    text-align: center;
    margin-bottom: 12px;
}

.plans-title-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--magenta);
    padding: 12px 32px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(232, 47, 101, 0.35);
}

.plans-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #ffd447;
    margin-bottom: 46px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 40px 28px 32px;
    text-align: center;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition);
}

.plan-butterfly {
    position: absolute;
    width: 34px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.plan-butterfly--1 {
    top: -14px;
    left: -10px;
    animation: butterflyFlyA 7s ease-in-out infinite;
}

.plan-butterfly--2 {
    bottom: 10px;
    right: -12px;
    width: 26px;
    animation: butterflyFlyB 8.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.plan-butterfly-wing {
    transform-origin: 32px 24px;
    animation: butterflyFlap 0.5s ease-in-out infinite alternate;
}

.plan-butterfly-wing--right {
    animation-delay: 0.05s;
}

@keyframes butterflyFlap {
    from { transform: scaleX(1); }
    to { transform: scaleX(0.55); }
}

@keyframes butterflyFlyA {
    0%, 100% { transform: translate(0, 0) rotate(-8deg); }
    25% { transform: translate(14px, -16px) rotate(6deg); }
    50% { transform: translate(4px, 6px) rotate(-4deg); }
    75% { transform: translate(-10px, -8px) rotate(10deg); }
}

@keyframes butterflyFlyB {
    0%, 100% { transform: translate(0, 0) rotate(6deg); }
    30% { transform: translate(-16px, -12px) rotate(-10deg); }
    60% { transform: translate(-6px, 10px) rotate(8deg); }
    85% { transform: translate(10px, -6px) rotate(-6deg); }
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.plan-card--featured {
    background: var(--magenta);
    border-color: #ffd447;
    transform: scale(1.04);
    box-shadow: 0 16px 40px rgba(232, 47, 101, 0.4);
}

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

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd447;
    color: #7a4b00;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    padding: 6px 18px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.plan-image {
    width: 112px;
    height: 112px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--gray-light);
    clip-path: path("M56,56 C38,48 30,26 56,8 C82,26 74,48 56,56 Z M56,56 C48,74 26,82 8,56 C26,30 48,38 56,56 Z M56,56 C74,64 82,86 56,104 C30,86 38,64 56,56 Z M56,56 C64,38 86,30 104,56 C86,82 64,74 56,56 Z");
}

.plan-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--blue-hero);
}

.plan-card--featured .plan-name {
    color: var(--white);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--magenta);
}

.plan-price-amount {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--blue-hero);
    line-height: 1;
}

.plan-price-frequency {
    font-size: 0.9rem;
    color: var(--gray-text);
    opacity: 0.8;
}

.plan-card--featured .plan-price-currency,
.plan-card--featured .plan-price-amount {
    color: var(--white);
}

.plan-card--featured .plan-price-frequency {
    color: rgba(255, 255, 255, 0.85);
}

.plan-features {
    list-style: none;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--gray-text);
    line-height: 1.4;
}

.plan-card--featured .plan-features li {
    color: rgba(255, 255, 255, 0.95);
}

.plan-feature-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--magenta);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 900;
}

.plan-card--featured .plan-feature-check {
    background: var(--white);
    color: var(--magenta);
}

.plan-cta {
    position: relative;
    overflow: hidden;
    margin-top: auto;
    width: 100%;
    text-align: center;
    background: var(--magenta);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(232, 47, 101, 0.4);
    animation: premioBtnPulse 2.2s ease-in-out infinite;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.plan-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    animation: btnShine 3s ease-in-out infinite;
}

.plan-cta:hover {
    background: var(--pink-dark);
    transform: translateY(-2px) scale(1.03);
}

.plan-card--featured .plan-cta {
    background: #ffd447;
    color: #7a4b00;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.plan-card--featured .plan-cta:hover {
    background: #ffcb1f;
}

/* --- Ganadores --- */
.ganadores-raffle-group {
    margin-bottom: 60px;
}

.ganadores-raffle-group:last-child {
    margin-bottom: 0;
}

/* Filtros de busqueda */
.ganadores-filtros {
    max-width: 720px;
    margin: 0 auto 40px;
    color: var(--white);
}

.ganadores-filtros-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.ganadores-filtros-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ganadores-filtro-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    border-radius: 14px;
    padding: 8px 16px;
    min-width: 160px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.ganadores-filtro-field span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    color: var(--magenta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ganadores-filtro-field select {
    border: none;
    background: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-text);
    padding: 2px 0;
    cursor: pointer;
}

.ganadores-filtro-field select:focus {
    outline: none;
}

.ganadores-page-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: 28px;
}

.ganadores-semana-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--magenta);
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(232, 47, 101, 0.35);
}

.ganadores-raffle-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

/* Slider automatico de boletos (dos filas, direcciones opuestas) */
.tickets-marquee {
    overflow: hidden;
    margin-top: 28px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.tickets-marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: marqueeLeft 28s linear infinite;
}

.tickets-marquee-track--reverse {
    animation-name: marqueeRight;
}

.tickets-marquee:hover .tickets-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.ticket-card-wrap {
    position: relative;
    flex: 0 0 300px;
    width: 300px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.ticket-card-wrap:hover {
    transform: translateY(-4px);
}

.ticket-card-canvas {
    width: 100%;
    display: block;
}

.ticket-card--winner {
    box-shadow: 0 0 0 4px #ffd447, 0 16px 36px rgba(232, 47, 101, 0.4);
}

@media (max-width: 1080px) {
    .logo-blanco {
        left: 16px;
        top: 8px;
        transform: none;
        height: 100px;
    }

    .page-first-section {
        padding-top: 120px;
    }

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

    .benefit-card {
        flex-direction: column;
    }

    .benefit-card-image {
        flex: 0 0 auto;
        height: 160px;
    }

    .ticket-card-wrap {
        flex-basis: 240px;
        width: 240px;
    }
}
