@font-face {
    font-family: 'DM Serif Display';
    src: url('../font/DMSerifDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Serif Display';
    src: url('../font/DMSerifDisplay-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-primary: 'DM Serif Display', Georgia, serif;
    --font-secondary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --color-primary: #8B4513;
    --color-secondary: #D2691E;
    --color-gold: #D9B65D;
    --dorado-2: #D9B65D;
    --color-gold-light: #F4E4BC;
    --color-white: #ffffff;
    --color-dark: #2c2c2c;
    --color-black: #27201F;
}

/* Solo habilitar scroll-behavior smooth en desktop */
@media (min-width: 1025px) and (hover: hover) {
    html {
        scroll-behavior: smooth;
    }
}

/* Fixed Header with Blur */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%);
    background-blend-mode: multiply;

    /* Nuevo: altura compacta */
    height: 56px;
    display: flex;
    align-items: center;
    /* asegurar que no empuje el flujo */
    box-sizing: border-box;
}

.fixed-header__content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    /* Nuevo: reducir padding vertical para header más estrecho */
    padding: 6px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-header__logo {
    max-width: 140px;
    height: auto;
    display: block;
}

/* Accessibility utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 8px 16px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Enhanced focus styles for keyboard navigation */
*:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Specific focus styles for interactive elements */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(217, 182, 93, 0.2);
}

.faq__question:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
    background: rgba(217, 182, 93, 0.1);
}

.main-container {
    position: relative;
    background: transparent;
    overflow-x: clip;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero {
    min-height: 100vh;
    background-image: url('../images/bg-hero.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 56px; /* antes 80px */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

.hero__container {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero__text-content {
    color: var(--color-white);
    position: relative;
    z-index: 3;
}

.hero__title {
    max-width: 600px;
    color: var(--dorado-2, #D9B65D);
    font-family: "DM Serif Display";
    font-size: 68px;
    font-style: normal;
    font-weight: 400;
    line-height: 74px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 20px 0 00px 0;
    position: relative;
    text-align: center;
    z-index: 4;
}

.hero__prize-info {
    margin-bottom: 30px;
}

.hero__prize-text {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 0px 0;
    color: var(--color-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 4;
}

.hero__prize-amount {

    line-height: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero__prize-image {
    pointer-events: none;
    max-width: 550px;
    height: auto;
}

.hero__secondary-prizes {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 10px 0 0 0;
    color: var(--color-gold);
    position: relative;
    z-index: 4;
}

.hero__cta-button {
    cursor: pointer;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0;
}

/* Desktop hover effect only - using filter instead of content */
@media (hover: hover) and (pointer: fine) {
    a:has(.hero__cta-button):hover .hero__cta-button {
        filter: brightness(1.1) contrast(1.05);
    }
}

/* Disable ALL hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {

    /* Prevent any hover simulation on touch */
    * {
        -webkit-tap-highlight-color: transparent;
        /* touch-action: manipulation removido - bloquea scroll en iOS Safari */
    }

    /* Force disable all hover effects globally */
    *:hover {
        transform: none !important;
        opacity: inherit !important;
        background: inherit !important;
        color: inherit !important;
        border: inherit !important;
        box-shadow: inherit !important;
        filter: inherit !important;
        scale: inherit !important;
        rotate: inherit !important;
        translate: inherit !important;
    }
}

/* Fix mobile touch interaction - Additional layer for max-width */
@media (max-width: 768px) {

    /* Remove all pointer events from button image */
    .hero__cta-button {
        pointer-events: none;
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        user-select: none;
    }

    /* Disable ALL Tailwind hover effects */
    [class*="hover:"]:hover {
        transform: none !important;
        opacity: inherit !important;
        background: inherit !important;
        color: inherit !important;
        border: inherit !important;
        box-shadow: inherit !important;
        scale: inherit !important;
        rotate: inherit !important;
        translate: inherit !important;
    }
}

.hero__image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Wrapper sticky que no ocupa espacio */
.hero__hands-wrapper {
    position: sticky;
    bottom: 0;
    height: 0;
    /* No ocupa espacio vertical */
    width: 100%;
    z-index: 6;
    pointer-events: none;
    overflow: visible
        /* Permite que se vea verticalmente */
}

.hero__hands-image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 75vh;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    pointer-events: none;
    object-fit: contain;
    object-position: bottom right;
}


.hero__legal {
    position: relative;
    z-index: 4;
    padding: 15px 40px 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero__legal-text {
    font-family: var(--font-secondary);
    font-size: 11px;
    line-height: 1.4;
    color: var(--color-gold);
    margin: 0;
    text-align: left;
    max-width: 50%;
    position: relative;
    z-index: 4;
}

.hero__legal-mobile {
    display: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Animación sutil para copo de nieve en el fondo */
@keyframes snowflakeDrift {
    0% {
        transform: translate(0, 0) rotate(-60deg);
    }

    25% {
        transform: translate(8px, -5px) rotate(-55deg);
    }

    50% {
        transform: translate(12px, 5px) rotate(-65deg);
    }

    75% {
        transform: translate(5px, -3px) rotate(-58deg);
    }

    100% {
        transform: translate(0, 0) rotate(-60deg);
    }
}

/* Animación sutil para estrellas flotantes */
@keyframes starTwinkle {
    0% {
        transform: translate(0, 0) rotate(180deg) scale(1);
        opacity: 1;
    }

    25% {
        transform: translate(-5px, 8px) rotate(175deg) scale(1.05);
        opacity: 0.85;
    }

    50% {
        transform: translate(3px, -6px) rotate(185deg) scale(0.95);
        opacity: 1;
    }

    75% {
        transform: translate(-3px, 5px) rotate(178deg) scale(1.02);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, 0) rotate(180deg) scale(1);
        opacity: 1;
    }
}

@keyframes starGlow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }

    25% {
        transform: translate(6px, -5px) rotate(-3deg) scale(1.03);
        opacity: 0.9;
    }

    50% {
        transform: translate(-4px, 8px) rotate(5deg) scale(0.97);
        opacity: 1;
    }

    75% {
        transform: translate(4px, -4px) rotate(-2deg) scale(1.02);
        opacity: 0.88;
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
}

.separator {
    width: 100%;
    display: block;
    background: transparent;
    position: relative;
    z-index: 0;
}

.separator__image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

.separator__image.second-separator {
    rotate: 180deg;
}


.como-participar {
    min-height: 100vh;
    background-image: url('../images/bg-como.webp');
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.como-participar__container {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 0 0 80px;
    padding: 60px 40px;
    position: relative;
    z-index: 3;
}

.como-participar__title {
    font-family: var(--font-primary);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0 0 40px 0;
    white-space: nowrap;
    padding-top: 100px;
}

.como-participar__content {
    max-width: 598px;
    width: 100%;

}

.slider-shape {
    /* mask-image: url('../images/mask-desktop.svg'); */
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    /* -webkit-mask-image: url('../images/mask-desktop.svg'); */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #27201F;
    width: 598px;
    /* permitir que el contenido determine la altura y proporcionar una mínima por defecto */
    height: auto !important;
    min-height: 253px;
    overflow: visible; /* permitir que la slide crezca fuera del contenedor */
}

.slick-slide {
    height: auto !important;
    min-height: 253px;
}

.slick-slide>div {
    height: auto !important;
    min-height: 253px;
}

.slide--2 {
    height: auto !important;
    /* mask-image: url('../images/mask-desktop.svg'); */
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    /* -webkit-mask-image: url('../images/mask-desktop.svg'); */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #27201F;
    width: 598px;
    height: auto !important;
    min-height: 253px;
}

.slide--2 .mano--2--mob {
    display: none;
}

.btn-container {
    z-index: -1;
}

.card-text {
    margin-top: 16px;
}



.nueva-seccion {
    min-height: 100vh;
    background: radial-gradient(109.87% 39.75% at 75.73% 82.92%, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.36) 100%),
        linear-gradient(0deg, #901C25 0%, #901C25 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-bottom: 50vh;
}

.nueva-seccion__container {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 0 0 80px;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.nueva-seccion__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__title {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: #D9B65D;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.faq__item {
    border-bottom: 1px solid rgba(217, 182, 93, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.faq__item.active {
    border-radius: 30px;
    border-bottom: none;
    margin-bottom: 15px;
    padding-bottom: 0;
}

.faq__background {
    position: absolute;
    top: 0;
    left: -3%;
    width: 103%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}


.faq__item.active .faq__background {
    opacity: 1;
}

.faq__bg-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 73px);
    background: #EAC977;
    border-radius: 20px 20px 0 0;
}

.faq__bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 73px;
    height: 73px;
    background: #EAC977;
    border-radius: 0 0 0 20px;
}

.faq__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 73px;
    height: 73px;
    z-index: 1;
}

.faq__item:has(+ .faq__item.active) {
    border-bottom: none;
}

.faq__question {
    width: 100%;
    display: block;
    padding: 22px 40px 22px 0;
    background: transparent;
    border: none;
    cursor: default;
    /* no indicar que es clicable */
    pointer-events: none;
    /* impedir clic sobre la cabecera */
    text-align: left;
    min-height: 80px;
    position: relative;
    z-index: 2;
}


.faq__question span {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    color: #D9B65D;
    transition: color 0.3s ease;
    display: block;
    padding-right: 50px;
}

.faq__item.active .faq__question span {
    color: #27201F;
    padding-right: 0;
}

.faq__icon {
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 2;
    cursor: pointer;
}

.faq__item.active .faq__icon {
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: auto;
    transform: none;
    z-index: 3;
}

.faq__icon svg {
    width: 35px;
    height: 35px;
    display: block;
}

/* Estado activo: quitar borde del círculo, mantener relleno */
.faq__item.active .faq__icon svg circle {
    stroke: none;
}

/* Estado inactivo: mostrar borde dorado y sin relleno */
.faq__item:not(.active) .faq__icon svg circle {
    stroke: #D9B65D;
    stroke-width: 2;
    fill: none;
}

.faq__item.active .faq__icon svg circle {
    fill: #EAC977;
    /* stroke: #27201F; */
}

.faq__item.active .faq__icon svg path {
    stroke: #901C25;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq__item.active .faq__answer {
    max-height: 600px;
    padding: 0 40px 70px 0;
}

.faq__answer p {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.5;
    color: #27201F;
    margin: 0 0 12px 0;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.footer {
    background-image: url('../images/bg-footer.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
}


@media (max-width: 1200px) {
    .nueva-seccion__container {
        margin: 0 0 0 40px;
        padding: 60px 30px;
    }

    .faq__title {
        font-size: 48px;

    }

    .hero__title {
        padding-top: 60px;
    }

    .faq__question span:first-child {
        font-size: 24px;
    }

    .hero__legal-mobile .hero__legal-text {
        max-width: 90%;

    }

    .faq__answer p {
        font-size: 15px;
    }
}



/* Tablet específico (768px - 1400px) */
@media (min-width: 768px) and (max-width: 1400px) {
    .nueva-seccion {
        padding-bottom: 500px;
    }

    .nueva-seccion__container {
        padding: 60px 40px 40px;
    }

    .faq__accordion {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 1400px) {
    .como-participar {
        padding: 40px 0 !important;
    }

    .como-participar {
        min-height: 100vh;
        background-image: url('../images/bg-como-mob.webp');
        background-position: right center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: scroll;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .como-participar__container {
        margin: 0 auto !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .como-participar__title {
        font-size: 58px !important;
        text-align: center !important;
        white-space: normal !important;
        margin: 0px auto 30px !important;
        padding: 0 20px !important;
    }

    .como-participar__content {
        margin: 0 auto !important;
    }



    .nueva-seccion {
        min-height: auto;
    }

    .nueva-seccion__container {
        padding: 70px 20px;
        margin: 0 auto;
    }

    .faq__title {
        font-size: 58px;

        text-align: center;
    }

    .faq__accordion {
        width: 100%;
        padding-left: 120px;
        padding-right: 120px;
        margin: 0 auto;
    }

    .faq__question {
        padding: 18px 0;
        min-height: 60px;
        gap: 20px;
    }

    .faq__question span {
        padding-right: 50px;
    }

    .faq__item.active .faq__question {
        padding: 20px 0 12px 0;
        gap: 40px;
    }

    .faq__item.active .faq__question span {
        padding-right: 50px;
    }

    .faq__question span:first-child {
        font-size: 32px;
        line-height: 1.3;
    }

    .faq__item.active .faq__icon {
        bottom: 0px;
        right: 0px;
    }

    .faq__item.active .faq__answer {
        max-height: 800px;
        padding: 0 50px 55px 0;
    }

    .faq__answer p {
        margin: 0 0 10px 0;
    }

    .faq__item.active {
        margin-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .como-participar__title {
        max-width: 200px;
        font-size: 40px !important;
        line-height: 42px !important;
        padding: 0 16px !important;
    }



    .nueva-seccion {
        padding-bottom: 280px;
    }

    .nueva-seccion__container {
        padding: 25px 16px;
    }

    .faq__title {
        font-size: 40px;
        width: 50%;
        margin: 0px auto;

    }

    .faq__accordion {
        padding-left: 15px;
        padding-right: 15px;
    }

    .faq__question {
        padding: 20px 0;
        min-height: 55px;
        gap: 15px;
    }

    .faq__item.active .faq__question {
        padding: 18px 20px 10px 0;
        gap: 35px;
    }

    .faq__question span:first-child {
        font-size: 18px;
        line-height: 1.25;
    }


    .faq__item.active .faq__icon {
        bottom: 0px;
        right: 0px;
    }

    .faq__item.active .faq__answer {
        padding: 0 20px 50px 0;
    }

    .faq__answer p {
        font-size: 13px;
        margin: 0 0 8px 0;
        line-height: 1.4;
    }

    .faq__item {
        border-bottom: 1px solid rgba(217, 182, 93, 0.2);
    }

    .faq__item.active {
        border-radius: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 375px) {


    .nueva-seccion {
        padding-bottom: 250px;
    }

    .nueva-seccion__container {
        padding: 20px 12px;
    }

    .faq__title {
        font-size: 28px;
        width: 50%;
        margin: 0px auto;
    }

    .faq__question {
        padding: 20px 0;
        min-height: 50px;
        font-size: 22px;
    }

    .faq__item.active .faq__question {
        padding: 16px 18px 10px 0;
        gap: 30px;
    }

    .faq__question span:first-child {
        font-size: 16px;
    }

    .faq__item.active .faq__icon {
        bottom: 0px;
        right: 0px;
    }

    .faq__item.active .faq__answer {
        padding: 0 18px 45px 0;
    }

    .faq__answer p {
        font-size: 12px;
    }
}






@media (max-width: 1400px) {
    .fixed-header__content {
        padding: 6px 16px;
    }

    .fixed-header__logo {
        max-width: 140px;
    }

    .hero {
        background-attachment: scroll;
        min-height: 100svh;
        background-position: right center;
        padding-top: 0px;
    }

    .hero__container {
    /* Asegúrate de que ocupe toda la altura de la pantalla (o la sección) */
    min-height: 100vh;        /* o la altura que necesites, ej: 80vh */
    background: url('tu-fondo.jpg') center/cover no-repeat; /* si tienes fondo */

    /* Centrado vertical y horizontal */
    display: flex;
    flex-direction: column;
    justify-content: center;     /* centrado vertical */
    align-items: center;         /* centrado horizontal */
    text-align: center;          /* para que el texto dentro también esté centrado */
    padding: 2rem;
    box-sizing: border-box;
}

/* Opcional: mejorar un poco los títulos */
.hero__title {
    margin: 0.4rem 0;
    font-size: 2.8rem;     /* ajusta según necesites */
    line-height: 1.2;
}

/* Si quieres que la imagen sea responsive */
.hero__prize-image {
    max-width: 100%;
    height: auto;
}

    .hero__content {

        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero__text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero__legal {
        display: none;
    }

    .hero__legal-mobile {
        display: block;
        margin-top: 30px;
    }

    .hero__legal-mobile .hero__legal-text {
        font-size: 9px;
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        max-width: 60%;
        margin: 0 auto;
        position: relative;
        z-index: 4;
    }

    .hero__logo {
        max-width: 140px;
    }

    .hero__title {
        padding-top: 60px;
        font-size: 68px;
        line-height: 74px;
        margin: 0px;
        text-align: center;
        max-width: 760px;
        width: auto;
    }

    .hero__prize-text {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        text-align: center;
    }

    .hero__prize-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .hero__prize-text {
        margin: 0;
    }

    .hero__prize-image {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero__prize-amount {
        justify-content: center;
        margin: 0;
    }

    .hero__secondary-prizes {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        text-align: center;
        margin: 0;
    }

    .hero__snowflake.hero__snowflake--3 {
        display: none;

    }

    .hero__cta-button {
        max-width: 300px;
        margin: 0 auto;
        display: flex;
    }

    .hero__hands-image {
        width: 100%;
        transform: none;
        bottom: 0;
    }

    .hero__text-content {
        padding-bottom: 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }


}

@media (max-width: 576px) {
    .fixed-header__content {
        padding: 8px 16px;
    }

    .tinkering_star__participar-slider {
        display: none;
    }

    .fixed-header__logo {
        max-width: 120px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero__container {
        padding: 0 16px;
        align-items: flex-start;
        padding-top: 15px;
    }

    .hero__title {
        padding-top: 40px;
        font-size: 42px;
        line-height: 40px;
        margin-bottom: 0px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero__prize-text {
        font-size: 1.4rem;
    }

    .hero__prize-image {
        max-width: 320px;
    }

    .hero__secondary-prizes {
        font-size: 1.4rem;
    }

    .hero__cta-button {
        max-width: 200px;
    }

    .hero__hands-image {
        width: 100%;
        max-width: 100vw;
        right: 0;
        left: 0;
    }

    .hero__text-content {
        padding-bottom: 220px;
    }
}

@media (max-width: 375px) {
    .fixed-header__content {
        padding: 8px 12px;
    }

    .fixed-header__logo {
        max-width: 100px;
    }

    .hero {
        padding-top: 75px;
    }

    .hero__container {
        padding: 0 12px;
        align-items: flex-start;
        padding-top: 10px;
    }

    .hero__title {
        padding-top: 20px;
        font-size: 42px;
        line-height: 40px;
        margin-bottom: 0px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero__prize-text {
        font-size: 1.2rem;
    }

    .hero__prize-image {
        max-width: 280px;
    }

    .hero__secondary-prizes {
        font-size: 1.2rem;
    }

    .hero__cta-button {
        max-width: 180px;
    }

    .hero__hands-image {
        width: 100%;
        max-width: 100vw;
        right: 0;
    }

    .hero__text-content {
        padding-bottom: 200px;
    }

    .hero__legal-mobile {
        margin-top: 25px;
    }

    .hero__legal-mobile .hero__legal-text {
        font-size: 8px;
    }
}

.faq-star {

    position: absolute;
    top: 1%;
    left: 2%;
    transform: rotate(180deg);
    z-index: 1;
    width: 4.7%;
}

.faq__title {
    position: relative;
    display: inline-block;
}



.faq-question-star {

    position: absolute;
    bottom: 9%;
    left: 52%;
    z-index: 1;
    width: 4.7%;
}



/* Snowflakes decorativos en FAQ */
.faq__snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.faq__snowflake {
    position: absolute;
}

/* esquina derech */
.faq__snowflake--1 {
    top: -20%;
    right: -10%;
    width: 33.33%;
    height: auto;
    filter: blur(12px);
    opacity: 1;
    transform: rotate(38deg);
}

.faq__snowflake--2 {
    top: 28%;
    left: 70%;
    width: 5.66%;
    height: auto;
    filter: blur(4px);
    transform: rotate(33deg);
}

.faq__snowflake--3 {
    top: 2%;
    right: 32%;
    width: 5.4%;
    height: auto;
    filter: blur(2px);
    transform: rotate(-23deg);

}

.faq__snowflake--4 {
    bottom: -5%;
    left: -2%;
    width: 7.4%;
    height: auto;
    filter: blur(5px);

}



.participar__snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.participar__snowflake {
    position: absolute;
}

.participar__snowflake--1 {
    top: -2%;
    left: 0%;
    width: 5.4%;
    height: auto;
    transform: rotate(0deg);
}

.participar__snowflake--2 {
    top: 6%;
    left: 35%;
    width: 4.6%;
    height: auto;
    transform: rotate(0deg);
}


.participar__snowflake--3 {
    top: 2%;
    right: 2%;
    width: 9.33%;
    height: auto;
    transform: rotate(27deg);
}

.participar__snowflake--4 {
    bottom: -17%;
    left: -8%;
    width: 26%;
    height: auto;
    transform: rotate(35deg);
    opacity: 1;

}





.como-participar {
    position: relative;
    min-height: 100dvh;
}

.como-participar__container {
    position: relative;
    z-index: 2;

}

.como-participar__content {
    position: relative;
    z-index: 2;
}

.slide-number,
.card-title {
    font-family: var(--font-primary);
    font-size: 32px;
    line-height: 40px;
    color: #D9B65D;
}



.card-title .title-smaller {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-secondary);
}

.card-text {
    color: #D9B65D;
    font-size: 16px;
    font-family: var(--font-secondary);
}

.tinkering_star__participar-slider {

    position: absolute;
    top: 20%;
    left: 43%;
    transform: rotate(0deg);
    z-index: 1;
    width: 4.73%;


}

.tinkering_star__participar {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: rotate(-180deg);
    z-index: 1;
    width: 4.73%;
}



.hero__star,
.hero__snowflake {
    position: absolute;
}

.hero__star--1 {
    bottom: 15%;
    left: 45%;
    width: 4.73%;
    height: auto;
    transform: rotate(180deg);
    animation: starTwinkle 7s ease-in-out infinite;
}

.hero__star--2 {
    top: 35%;
    right: 4%;
    width: 4.73%;
    height: auto;
    transform: rotate(0deg);
    animation: starGlow 9s ease-in-out infinite;
}

.hero__snowflake--1 {
    top: -12%;
    right: -4%;
    width: 16.33%;
    height: auto;
    transform: rotate(98deg);
}

.hero__snowflake--2 {
    top: 15%;
    left: 2%;
    width: 3.87%;
    height: auto;
    transform: rotate(5deg);
    filter: blur(2px);
}

.hero__snowflake--3 {
    top: 15%;
    right: 30%;
    width: 9.33%;
    height: auto;
    transform: rotate(-60deg);
    animation: snowflakeDrift 8s ease-in-out infinite;
}

.hero__snowflake--4 {
    display: none;

}

@media (max-width: 1500px) {
    .faq-question-star {
        display: none;
    }
}

@media (max-width:1200px) {
    .hero__legal-mobile .hero__legal-text {
        max-width: 90%;

    }

    /* Hero decorative elements */
    .hero__star--1 {
        bottom: 28%;
        left: 2%;
    }

    .hero__star--2 {
        top: 32%;
        right: 5%;
    }

    .hero__snowflake--1 {
        top: -5%;
        right: -5%;
        width: 28%;
        filter: blur(2px);
    }

    .hero__snowflake--2 {
        top: 6%;
        left: 7%;
        width: 28%;
        filter: blur(4px);
    }

    .hero__snowflake--3 {
        top: 66%;
        right: 61%;
        width: 25%;
        filter: blur(12px);
    }

    .participar__snowflake--1 {
        top: 5%;
        left: 2%;
        width: 6%;
    }

    .participar__snowflake--2 {
        top: 86%;
        left: 88%;
        width: 20%;

    }

    .participar__snowflake--3 {
        top: 13%;
        right: 14%;
        width: 15%;
    }

    .participar__snowflake--4 {
        bottom: -5%;
        left: -6%;
        width: 24%;
    }

    .tinkering_star__participar-slider {
        top: 22%;
        left: 45%;
        width: 5%;
    }

    .tinkering_star__participar {
        top: 48%;
        right: 2%;
        width: 5%;
    }

    /* FAQ decorative elements */
    .faq-star {
        top: 0%;
        left: 0%;
        width: 5.5%;
    }

    .faq__snowflake--1 {
        top: -12%;
        right: -8%;
        width: 35%;
    }

    .faq__snowflake--2 {
        opacity: 0.5;
        top: 26%;
        left: 68%;
        width: 6.5%;
        display: none;
    }

    .faq__snowflake--3 {
        display: none;
        top: 3%;
        right: 30%;
        width: 6%;
        display: none;
    }

    .faq__snowflake--4 {
        bottom: -4%;
        left: -1%;
        width: 20%;
    }


    /* Como Participar decorative elements */

}


@media (max-width: 1023px) {

    /* Decorative elements - More Tablet adjustments */
    .faq-question-star {
        display: none;
    }

    /* Hero decorative elements */
    .hero__star--1 {
        bottom: 28%;
        left: 2%;
    }

    .hero__star--2 {
        top: 32%;
        right: 5%;
    }

    .hero__snowflake--1 {
        top: -5%;
        right: -5%;
        width: 28%;
        filter: blur(2px);
    }

    .hero__snowflake--2 {
        top: 36%;
        left: 3%;
        width: 28%;
        filter: blur(4px);
    }

    .hero__snowflake--3 {
        top: 66%;
        right: 18%;
        width: 25%;
        filter: blur(12px);
    }

    /* Como Participar decorative elements */
    .participar__snowflake--1 {
        top: -1%;
        left: 12%;
        width: 19%;
    }

    .participar__snowflake--2 {
        top: 47%;
        left: 48%;
        width: 20%;

    }

    .participar__snowflake--3 {
        top: 3%;
        right: 4%;
        width: 10%;
    }

    .participar__snowflake--4 {
        bottom: -5%;
        left: -6%;
        width: 44%;

    }

    .tinkering_star__participar-slider {
        top: 22%;
        left: 45%;
        width: 5%;
    }

    .tinkering_star__participar {
        top: 48%;
        right: 2%;
        width: 5%;
    }

    /* FAQ decorative elements */
    .faq-star {
        top: 2%;
        left: 3%;
        width: 9.5%;
    }

    .faq__snowflake--1 {
        top: -8%;
        right: -8%;
        width: 30%;
    }

    .faq__snowflake--2 {
        top: 26%;
        left: 68%;
        width: 17.5%;
        filter: blur(8px);
    }

    .faq__snowflake--3 {
        top: 55%;
        right: 79%;
        width: 9%;
        filter: blur(4px);
    }

    .faq__snowflake--4 {
        bottom: 2%;
        left: 13%;
        width: 18%;
    }
}

@media (max-width: 1023px) {
    .faq-star {
        width: 8%;
        top: 2%;
        left: 4%;
    }

    .faq-question-star {
        display: none;
        /* Ocultamos en móvil por espacio */
    }

    .faq__snowflake--1 {
        width: 45%;
        top: -15%;
        right: -15%;
        filter: blur(8px);
    }

    .faq__snowflake--2 {
        width: 8%;
        top: 25%;
        left: 65%;
        filter: blur(3px);
    }

    .faq__snowflake--3 {
        width: 7%;
        top: 4%;
        left: 25%;
    }

    .faq__snowflake--4 {
        width: 35%;
        bottom: -6%;
        left: -6%;
        filter: blur(4px);
    }

    .participar__snowflake--1 {
        position: absolute;
        width: 8%;
        bottom: 100%;
        left: 20%;

    }

    .participar__snowflake--2 {
        display: none;
        width: 7%;
        top: 8%;
        left: 20%;
    }

    .participar__snowflake--3 {
        width: 12%;
        top: 3%;
        right: 3%;
    }

    .participar__snowflake--4 {
        width: 35%;
        bottom: -15%;
        left: -10%;

    }

    .tinkering_star__participar-slider {
        width: 12%;
        top: 130px;
        right: unset;
        left: 3%;
        rotate: 271deg;
    }

    .tinkering_star__participar {
        width: 17%;
        top: 45%;
        right: 0;
        left: unset;
    }

    .hero__star--1 {
        width: 7%;
        bottom: 48%;
        left: 4%;
    }

    .hero__star--2 {
        width: 7%;
        top: 15%;
        right: 3%;
    }

    .hero__snowflake--1 {
        width: 25%;
        top: -8%;
        right: -6%;
        transform: rotate(85deg);
    }

    .hero__snowflake--2 {
        width: 6%;
        top: 18%;
        left: 4%;
        filter: blur(1.5px);
    }

    .hero__snowflake--3 {
        width: 14%;
        top: 18%;
        right: 25%;
        filter: blur(2px);
        transform: rotate(-45deg);
        display: none;
    }

    .hero__snowflake--4 {
        display: flex;
        position: absolute;
        width: 59%;
        top: 75%;
        left: 4%;
        filter: blur(10px);
    }
}


@media (max-width: 425px) {
    .faq-star {
        width: 8%;
        top: 2%;
        left: 4%;
    }

    .faq-question-star {
        display: none;

    }

    .faq__snowflake--1 {
        width: 45%;
        top: -7%;
        right: -15%;
        filter: blur(8px);
    }

    .faq__snowflake--2 {
        width: 18%;
        top: 25%;
        left: 35%;
        filter: blur(3px);
        display: none;
    }

    .faq__snowflake--3 {
        width: 7%;
        top: 4%;
        left: 25%;
    }

    .faq__snowflake--4 {
        width: 35%;
        bottom: 16%;
        left: -6%;
        filter: blur(4px);
    }

    .participar__snowflake--1 {
        display: none;

    }

    .participar__snowflake--2 {
        display: block;
        width: 10%;
        top: 3%;
        left: 22%;
    }

    .participar__snowflake--3 {
        width: 35%;
        top: -4%;
        right: -1%;
    }

    .participar__snowflake--4 {
        width: 35%;
        bottom: -3%;
        left: -10%;

    }


    .tinkering_star__participar {
        width: 15%;
        top: 500px;
        left: unset;
        right: 10%;
    }

    .tinkering_star__participar-slider {
        display: none;
    }

    .hero__star--1 {
        width: 7%;
        bottom: 48%;
        left: 4%;
    }

    .hero__star--2 {
        width: 7%;
        top: 15%;
        right: 3%;
    }

    .hero__snowflake--1 {
        width: 45%;
        top: -8%;
        right: -16%;
        transform: rotate(85deg);
        filter: blur(2px);
    }

    .hero__snowflake--2 {
        width: 9%;
        top: 6%;
        left: 4%;
        filter: blur(1.5px);
    }


    .hero__snowflake--3 {
        width: 14%;
        top: 18%;
        right: 25%;
        filter: blur(2px);
        transform: rotate(-45deg);
    }

    .hero__snowflake--4 {
        display: flex;
        position: absolute;
        width: 106%;
        top: 75%;
        left: 4%;
        filter: blur(10px);
    }
}


@media (max-width: 225px) {

    .faq-star,
    .faq-question-star,
    .faq__snowflake--1,
    .faq__snowflake--2,
    .faq__snowflake--3,
    .faq__snowflake--4,
    .participar__snowflake--1,
    .participar__snowflake--2,
    .participar__snowflake--3,
    .participar__snowflake--4,
    .tinkering_star__participar-slider,
    .tinkering_star__participar,
    .hero__star--1,
    .hero__star--2,
    .hero__snowflake--1,
    .hero__snowflake--2,
    .hero__snowflake--3 {
        display: none;
    }
}


@media (max-width: 640px) {
    .como-participar__content {
        max-width: 333px;
        width: 100%;
        margin: 0 auto;
    }

    .slider-shape {
        /* mask-image: url('../images/mask-mobile.svg'); */
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        /* -webkit-mask-image: url('../images/mask-mobile.svg'); */
        -webkit-mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        background-color: #27201F;
        width: 333px;
        height: auto !important;
        min-height: 298px;
        overflow: visible;
    }

    .slick-slide,
    .slick-slide > div {
        height: auto !important;
        min-height: 298px;
    }

    .slide--2 {
        width: 333px;
        height: auto !important;
        min-height: 298px;
    }

    /* ...existing mobile rules... */
}
/* === Orden de capas y alturas correctas === */
.como-participar__content{ position:relative; }

/* La tarjeta de fondo define la altura base */
.slider-shape{
  background:#27201F !important;
  border-radius:24px;
  min-height:520px;            /* súbelo/bájalo a gusto */
  position:relative;
  z-index:0;                   /* fondo */
  overflow:hidden;             /* si quieres esquinas limpias */
}

/* El slider va ENCIMA y ocupa lo mismo que la shape */
.slider-container{
  position:absolute;           /* ignoramos el Tailwind anterior */
  inset:0;
  z-index:2;
  min-height:520px;            /* clave: da altura real al contenedor abs */
}

/* El propio slider hereda esa altura */
.slider{
  position:relative;
  height:100%;
  min-height:inherit;
}

/* Slick: que no colapse la altura ni recorte */
.slider .slick-list{
  height:100% !important;      /* en vez de auto */
  min-height:inherit !important;
  overflow:visible !important;
  background:transparent !important;
}

.slider .slick-track{
  height:100% !important;
  min-height:inherit !important;
  display:block !important;
}

/* Cada slide se estira a la altura disponible */
.slider .slick-slide,
.slider .slick-slide > div,
.slider .slide,
.slider .slide--2{
  height:100% !important;
  min-height:inherit !important;
  background:transparent !important;
}

/* Contenido visible y sin recortes */
.slider .slide img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

/* Botones de esquina por encima del todo */
.button-wrapper{ z-index:3 !important; }



/* Asegurar que no haya reglas posteriores que vuelvan a forzar height para slides */