@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;
}

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(8px);
    -webkit-backdrop-filter: blur(8px);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%);
    background-blend-mode: multiply;
}

.fixed-header__content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-header__logo {
    max-width: 180px;
    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: visible;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero {
    min-height: 100vh;
    background-image: url('../images/bg-hero.png');
    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: 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: 0 0 25px 0;
    position: relative;
    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 10px 0;
    color: var(--color-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 4;
}

.hero__prize-amount {
    margin: 10px 0;
    line-height: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero__prize-image {
    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;
    transition: all 0.3s ease;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0;
}

.hero__cta-button:hover {
    content: url('../images/buttonhover.png');
}

.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-x: clip;

    overflow-y: visible;
    /* Permite que se vea verticalmente */
}

.hero__hands-image {
    position: absolute;
    /* Ahora absolute dentro del wrapper sticky */
    bottom: 0;
    right: 0;
    width: 50%;
    height: calc(100vh - 100px);
    max-height: 90vh;
    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;
}

.como-participar {
    min-height: 100vh;
    background-image: url('../images/bg-como.jpg');
    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%;
    filter: drop-shadow(1px 2px 2px #00000088);
}

.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;
    height: 253px;

}

.slick-slide {
    height: 253px;
}

.slick-slide>div {
    height: 253px;
}

.slide--2 {
    height: 253px;
    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: 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: 30vh;
}

.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: 40px;
}

.faq__title {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: #D9B65D;
    margin: 0 0 40px 0;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    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;
    transition: opacity 0.3s ease;
    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: pointer;
    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: 22px;
    right: 0;
    z-index: 2;
    cursor: pointer;
}

.faq__item.active .faq__icon {
    position: absolute;
    bottom: 5px;
    right: 0px;
    top: auto;
    z-index: 3;
}

.faq__icon svg {
    width: 35px;
    height: 35px;
    display: block;
}

.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.png');
    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: 50px 30px;
    }

    .faq__title {
        font-size: 48px;
        margin: 0 0 35px 0;
    }


    .faq__question span:first-child {
        font-size: 24px;
    }

    .faq__answer p {
        font-size: 15px;
    }
}

/* iPad Pro - Layout móvil con mano ancho completo (1024px - 1400px) - SOLO VERTICAL */
@media (min-width: 1024px) and (max-width: 1400px) and (orientation: portrait) {

    .fixed-header__content {
        padding: 8px 60px;
    }

    /* Hero Section - Diseño móvil para iPad Pro */
    .hero {
        background-attachment: scroll;
        background-position: center center;
        min-height: 100vh;
        position: relative !important;
        padding-top: 120px;
    }

    .hero__container {
        padding: 0 60px !important;
        padding-top: 0px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }

    .hero__content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 20px !important;
    }

    .hero__image-content {
        display: none !important;
    }

    .hero__text-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-bottom: 50px !important;
        margin: 0 auto !important;
        gap: 15px !important;
    }

    .hero__title {
        font-size: 62px !important;
        line-height: 66px !important;
        margin: 0 auto 15px !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .hero__prize-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        gap: 8px;
    }

    .hero__prize-text {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero__prize-image {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    .hero__prize-amount {
        justify-content: center;
        width: 100%;
    }

    .hero__secondary-prizes {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero__cta-button {
        margin: 0 auto 40px;
        max-width: 320px;
    }

    /* Mano ocupando ancho completo - IMPORTANTE     */
    .hero__hands-wrapper {
        position: sticky;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 0;
        z-index: 6;
        pointer-events: none;
        overflow: visible;
    }

    .hero__hands-image {
        width: 100vw !important;
        max-width: 100vw !important;
        right: 0 !important;
        left: 0 !important;
        height: calc(100vh - 100px);
        object-fit: contain;
    }

    .hero__legal {
        display: block !important;
        position: absolute !important;
        bottom: 20px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 2 !important;
    }

    .hero__legal .hero__legal-text {
        font-size: 11px !important;
        text-align: center !important;
        padding-left: 10% !important;
        padding-right: 10% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .hero__legal-mobile {
        display: none !important;
    }

    /* Como Participar - Diseño móvil para iPad Pro */
    .como-participar {
        padding: 60px 0;
    }

    .como-participar__container {
        margin: 0 auto;
        padding: 0 60px;
        max-width: 100%;
    }

    .como-participar__title {
        font-size: 58px;
        text-align: center;
        white-space: normal;
        margin: 0 auto 40px;
        padding: 0;
        padding-top: 40px;
    }




    /* FAQ - Diseño centrado para iPad Pro */
    .nueva-seccion {
        padding-bottom: 450px;
    }

    .nueva-seccion__container {
        margin: 0 auto;
        padding: 50px 60px;
    }


    .faq__title {
        font-size: 54px;
        margin: 0 auto 40px;
        text-align: center;
    }

    .faq__accordion {
        width: 80%;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq__question {
        padding: 22px 0;
        min-height: 75px;
    }

    .faq__item.active .faq__question {
        padding: 28px 38px 16px 0;
    }

    .faq__question span {
        font-size: 26px;
    }

    .faq__icon {
        width: 35px;
        height: 35px;
    }

    .faq__icon svg {
        width: 35px;
        height: 35px;
    }

    .faq__item.active .faq__icon {
        bottom: 5px;
        right: 0px;
    }

    .faq__item.active .faq__answer {
        padding: 0 38px 65px 0;
    }

    .faq__answer p {
        font-size: 16px;
        margin: 0 0 12px 0;
    }
}

/* Tablets en HORIZONTAL - Layout Desktop (1024px - 1400px landscape) */
@media (min-width: 1024px) and (max-width: 1400px) and (orientation: landscape) {

    .fixed-header__content {
        padding: 8px 50px;
    }

    /* Hero Section - Layout Desktop para tablets horizontales */
    .hero {
        padding-top: 100px;
    }

    .hero__container {
        padding: 0 50px;
    }

    .hero__content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
        text-align: left;
    }

    .hero__text-content {
        display: block;
        text-align: left;
    }

    .hero__title {
        font-size: 56px;
        line-height: 60px;
        text-align: left;
        max-width: 100%;
    }

    .hero__prize-text {
        font-size: 1.8rem;
        text-align: left;
    }

    .hero__prize-amount {
        justify-content: flex-start;
    }

    .hero__secondary-prizes {
        font-size: 1.8rem;
        text-align: left;
    }

    .hero__cta-button {
        margin: 0;
        max-width: 280px;
    }

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

    .hero__prize-image {
        max-width: 100%;
    }

    /* Mano en el lado derecho como desktop */
    .hero__hands-wrapper {
        position: sticky;
        bottom: 0;
        height: 0;
        width: 100%;
        z-index: 6;
        pointer-events: none;
        overflow-x: clip;
        overflow-y: visible;
    }

    .hero__hands-image {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 45%;
        height: calc(100vh - 80px);
        max-height: 90vh;
        object-fit: contain;
        object-position: bottom right;
    }

    .hero__legal {
        display: block;
        position: relative;
        padding: 15px 50px 25px;
    }

    .hero__legal-text {
        text-align: left;
        max-width: 50%;
    }

    .hero__legal-mobile {
        display: none;
    }

    /* Como Participar - Layout ajustado para horizontal */
    .como-participar__container {
        margin: 0 0 0 60px;
        padding: 50px 40px;
    }

    .como-participar__title {
        font-size: 58px;
        text-align: left;
        white-space: nowrap;
        padding-top: 80px;
    }

    /* FAQ - Layout ajustado para horizontal */
    .nueva-seccion__container {
        margin: 0 0 0 60px;
        padding: 50px 40px;
    }

    .faq__title {
        font-size: 52px;
        text-align: left;
    }

    .faq__accordion {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) and (orientation: portrait) {

    /* Hero Section - Tablet */
    .hero {
        padding-top: 120px;
    }

    .hero__container {
        padding: 0 35px;
        padding-top: 25px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero__title {
        font-size: 58px;
        line-height: 62px;
        margin: 0 auto 20px;
        max-width: 100%;
        text-align: center;
    }

    .hero__prize-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero__prize-amount {
        justify-content: center;
    }

    .hero__cta-button {
        margin: 0 auto;
        max-width: 260px;
    }

    .hero__hands-image {
        width: 480px;
        right: -30px;
    }

    .hero__text-content {
        padding-bottom: 180px;
    }

    .hero__legal-text {
        max-width: 80%;
    }

    /* Como Participar - Tablet */
    .como-participar__container {
        margin: 0 auto;
        padding: 50px 35px;
    }

    .como-participar__title {
        font-size: 58px;
        padding-top: 60px;
        text-align: center;
        white-space: normal;
    }





    /* FAQ - Tablet */
    .nueva-seccion__container {
        margin: 0 auto;
        padding: 40px 35px;
    }


    .faq__title {
        font-size: 48px;
        margin: 0 0 35px 0;
        text-align: center;
    }

    .faq__accordion {
        width: 70%;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq__question {
        padding: 20px 0;
        min-height: 70px;
    }

    .faq__item.active .faq__question {
        padding: 25px 35px 15px 0;
    }

    .faq__question span {
        font-size: 23px;
    }

    .faq__icon {
        width: 34px;
        height: 34px;
    }

    .faq__icon svg {
        width: 34px;
        height: 34px;
    }

    .faq__item.active .faq__icon {
        bottom: 5px;
        right: 0px;
    }

    .faq__item.active .faq__answer {
        padding: 0 35px 60px 0;
    }

    .faq__answer p {
        font-size: 15px;
        margin: 0 0 10px 0;
    }
}

@media (max-width: 768px) {
    .como-participar {
        padding: 40px 0 !important;
    }

    .como-participar {
        min-height: 100vh;
        background-image: url('../images/bg-como-mob.png');
        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 !important;
        padding: 0 20px !important;
        max-width: 100% !important;
    }

    .como-participar__title {

        font-size: 58px !important;
        text-align: center !important;
        white-space: normal !important;
        margin: 30px auto !important;
        padding: 0 20px !important;
    }



    .nueva-seccion {
        min-height: auto;
        padding-bottom: 400px;
    }

    .nueva-seccion__container {
        padding: 30px 20px;
    }

    .faq__title {
        font-size: 36px;
        margin: 0 0 25px 0;
        text-align: center;
    }

    .faq__accordion {
        width: 100%;
    }

    .faq__question {
        padding: 18px 0;
        min-height: 60px;
        gap: 20px;
    }

    .faq__item.active .faq__question {
        padding: 20px 25px 12px 0;
        gap: 40px;
    }

    .faq__question span:first-child {
        font-size: 20px;
        line-height: 1.3;
    }

    .faq__icon {
        width: 30px;
        height: 30px;
    }

    .faq__icon svg {
        width: 30px;
        height: 30px;
    }

    .faq__item.active .faq__icon {
        bottom: 4px;
        right: 0px;
    }

    .faq__item.active .faq__answer {
        max-height: 800px;
        padding: 0 25px 55px 0;
    }

    .faq__answer p {
        font-size: 14px;
        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: 32px;
        margin: 0 0 20px 0;
    }

    .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__icon {
        width: 28px;
        height: 28px;
    }

    .faq__icon svg {
        width: 28px;
        height: 28px;
    }

    .faq__item.active .faq__icon {
        bottom: 4px;
        right: 4px;
    }

    .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;
        margin: 0 0 18px 0;
    }

    .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__icon {
        width: 26px;
        height: 26px;
    }

    .faq__icon svg {
        width: 26px;
        height: 26px;
    }

    .faq__item.active .faq__icon {
        bottom: 3px;
        right: 0px;
    }

    .faq__item.active .faq__answer {
        padding: 0 18px 45px 0;
    }

    .faq__answer p {
        font-size: 12px;
    }
}



@media (max-width: 1200px) {
    .hero__container {
        padding: 0 30px;
        align-items: flex-start;
        padding-top: 30px;
    }

    .hero__content {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }

    .hero__title {
        font-size: 64px;
        line-height: 70px;
    }

    .hero__prize-image {
        max-width: 550px;
    }

    .hero__hands-image {
        width: 50vw;
    }

    .hero__legal {
        padding: 20px 30px 30px;
    }
}


@media (max-width: 992px) {
    .hero__container {

        align-items: flex-start;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__title {
        font-size: 54px;
        line-height: 58px;
        margin: 0 auto 25px;
        text-align: center;
    }

    .hero__prize-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero__prize-amount {
        justify-content: center;
    }

    .hero__cta-button {
        margin: 0 auto;
    }

    .hero__hands-image {
        width: 80vw;
        right: -50px;
    }

    .hero__text-content {
        padding-bottom: 200px;
    }

    .hero__legal-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .fixed-header__content {
        padding: 8px 20px;
    }

    .fixed-header__logo {
        max-width: 140px;
    }

    .hero {
        background-attachment: scroll;
        min-height: 100svh;
        background-position: right center;
        padding-top: 100px;
    }

    .hero__container {
        padding: 0 20px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .hero__content {
        gap: 20px;
        text-align: center;
    }

    .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: 100%;
        position: relative;
        z-index: 4;
    }

    .hero__logo {
        max-width: 140px;
    }

    .hero__title {
        font-size: 52px;
        line-height: 56px;
        margin: 0 auto 25px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero__prize-text {
        font-size: 1.6rem;
    }

    .hero__prize-image {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero__prize-amount {
        justify-content: center;
    }

    .hero__secondary-prizes {
        font-size: 1.6rem;
    }

    .hero__cta-button {
        padding-top: 30px;
        max-width: 220px;
        margin: 0 auto;
        display: flex;
    }

    .hero__hands-image {
        transform: none;
        bottom: 0;
    }

    .hero__text-content {
        padding-bottom: 250px;
    }


}

@media (max-width: 576px) {
    .fixed-header__content {
        padding: 8px 16px;
    }

    .fixed-header__logo {
        max-width: 120px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero__container {
        padding: 0 16px;
        align-items: flex-start;
        padding-top: 15px;
    }

    .hero__title {
        font-size: 42px;
        line-height: 40px;
        margin-bottom: 18px;
        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 {
        font-size: 42px;
        line-height: 40px;
        margin-bottom: 18px;
        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;
        left: 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;

    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;

}



.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;
    filter: blur(2px);
}





.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%;
    filter: drop-shadow(1px 2px 2px #00000088);

}

.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 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: 47%;
        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%;
        filter: blur(6px);
    }

    .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 {
        top: 26%;
        left: 68%;
        width: 6.5%;
    }

    .faq__snowflake--3 {
        top: 3%;
        right: 30%;
        width: 6%;
    }

    .faq__snowflake--4 {
        bottom: -4%;
        left: -1%;
        width: 20%;
    }


    /* Como Participar decorative elements */

}


@media (max-width: 992px) {

    /* 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%;
        filter: blur(0px);
    }

    .participar__snowflake--3 {
        top: 3%;
        right: 4%;
        width: 10%;
    }

    .participar__snowflake--4 {
        bottom: -5%;
        left: -6%;
        width: 44%;
        filter: blur(4px);
    }

    .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: 768px) {
    .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%;
        filter: blur(1.5px);
    }

    .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);
    }

    .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: 0%;
        right: -15%;
        filter: blur(8px);
    }

    .faq__snowflake--2 {
        width: 18%;
        top: 25%;
        left: 35%;
        filter: blur(3px);
    }

    .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%;
        filter: blur(1.5px);
    }


    .tinkering_star__participar {
        width: 15%;
        top: 500px;
        left: unset;
        right: 10%;
    }

    .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: 298px;
    }

    .slick-slide {
        height: 298px;
    }

    .slick-slide>div {
        height: 298px;
    }

    .slide--2 {
        height: 298px;
        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: 298px;
    }

    .slide--2 .mano--2 {
        display: none;
    }

    .slide--2 .mano--1 {
        display: none;
    }

    .slide--2 .mano--2--mob {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 281px;
    }


    .slide-number,
    .card-title {
        font-family: var(--font-primary);
        font-size: 28px;
        line-height: 28px;
        color: #D9B65D;
    }

    .card-title {
        max-width: 230px !important;

    }

    .slide-number {
        width: 40px !important;
        height: 40px !important;
    }

    #tapa1,
    #tapa2 {
        min-height: 70px;
        min-width: 70px;
    }

    .card-title .title-smaller {
        font-size: 16px;
        font-family: var(--font-secondary);
    }

    .slide--1 .card-image {
        z-index: 40;
        position: relative;

    }

    .slide--2 .card-title {
        display: flex;
        flex-direction: column;
    }

    .card-text {
        position: relative;
        font-size: 14px;
        margin: 16px 36px 16px 58px !important;
    }
}

@media (max-width: 375px) {

    .hero__prize-text {

        margin: 0;

    }

    .hero__prize-amount {
        margin: 0;

    }

    .hero__secondary-prizes {
        margin: 0;
    }

    .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: 100% !important;
        height: 298px;
    }

    .slick-slide {
        height: 298px;
    }

    .slick-slide>div {
        height: 298px;
    }

    .slide--2 {
        mask-image: url('../images/mask-mobile.svg');
        mask-size: 100% 100%;
        mask-repeat: no-repeat;
        mask-position: center;
        -webkit-mask-image: url('../images/mask-mobile.svg');
        -webkit-mask-size: 100% 100%;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        background-color: #27201F;
        width: 100% !important;
        height: 298px;
    }

    .slide--2 .mano--2 {
        display: none;
    }

    .slide--2 .mano--1 {
        display: none;
    }

    .slide--2 .mano--2--mob {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 281px;
    }


    .slide-number,
    .card-title {
        font-family: var(--font-primary);
        font-size: 22px;
        line-height: 22px;
        color: #D9B65D;
    }

    .card-title {
        max-width: 230px !important;

    }

    .slide-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }

    #tapa1,
    #tapa2 {
        min-height: 70px;
        min-width: 70px;
    }


    .card-title .title-smaller {
        font-size: 16px;
        font-family: var(--font-secondary);
    }

    .slide--1 .card-image {
        z-index: 40;
        position: relative;

    }

    .slide--2 .card-title {
        display: flex;
        flex-direction: column;
    }

    .slide {
        padding: 35px 10px !important;
    }

    .card-text {
        position: relative;
        font-size: 14px;
        margin: 16px 49px 16px 58px !important;
    }

}

@media (max-width: 360px) {

    #tapa1,
    #tapa2 {
        min-height: 67px !important;
        min-width: 67px !important;
    }

    .button-wrapper {
        transform: translateY(-6px) !important;
    }
}

@media (max-width: 321px) {

    #tapa1,
    #tapa2 {
        min-height: 58px !important;
        min-width: 58px !important;
    }

    .button-wrapper {
        transform: translateY(-24px) !important;
    }

    .slide-number {
        width: 22px !important;
        height: 22px !important;
        font-size: 16px !important;
        margin-right: 8px !important;
    }

    .card-text {
        margin: 4px 49px 16px 56px !important;
    }
}

@media (max-width: 360px) {
    .hero__title {
        font-size: 34px;
        line-height: 34px;
        margin-bottom: 18px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1400px) and (orientation: landscape) {

    .fixed-header__content {
        padding: 8px 50px;
    }

    /* Hero Section - Layout Desktop para tablets horizontales */
    .hero {
        padding-top: 100px;
    }

    .hero__container {
        padding: 0 50px;
    }

    .hero__content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
        text-align: left;
    }

    .hero__text-content {
        display: block;
        text-align: left;
    }

    .hero__title {
        font-size: 56px;
        line-height: 60px;
        text-align: left;
        max-width: 100%;
    }

    .hero__prize-text {
        font-size: 1.8rem;
        text-align: left;
    }

    .hero__prize-amount {
        justify-content: flex-start;
    }

    .hero__secondary-prizes {
        font-size: 1.8rem;
        text-align: left;
    }

    .hero__cta-button {
        margin: 0;
        max-width: 280px;
    }

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

    .hero__prize-image {
        max-width: 100%;
    }

    /* Mano en el lado derecho como desktop */
    .hero__hands-wrapper {
        position: sticky;
        bottom: 0;
        height: 0;
        width: 100%;
        z-index: 6;
        pointer-events: none;
        overflow-x: clip;
        overflow-y: visible;
    }

    .hero__hands-image {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 45%;
        height: calc(100vh - 80px);
        max-height: 90vh;
        object-fit: contain;
        object-position: bottom right;
    }

    .hero__legal {
        display: block;
        position: relative;
        padding: 15px 50px 25px;
    }

    .hero__legal-text {
        text-align: left;
        max-width: 50%;
    }

    .hero__legal-mobile {
        display: none;
    }

    /* Como Participar - Layout ajustado para horizontal */
    .como-participar__container {
        margin: 0 0 0 60px;
        padding: 50px 40px;
    }

    .como-participar__title {
        font-size: 58px;
        text-align: left;
        white-space: nowrap;
        padding-top: 80px;
    }

    /* FAQ - Layout ajustado para horizontal */
    .nueva-seccion__container {
        margin: 0 0 0 60px;
        padding: 50px 40px;
    }

    .faq__title {
        font-size: 52px;
        text-align: left;
    }

    .faq__accordion {
        width: 60%;
        margin: 0;
    }
}