.bgSorteo {
    background-color: #1C1A16;
}

.sorteo-container10 {
    width: 100%;
    display: flex;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;

}

svg {
    flex-shrink: 0;
}

.sorteo-container12 {
    width: 100%;
    display: flex;
    align-items: center ;
    flex-direction: column;
    justify-content: flex-start;
}

.btn_dark {
    background-color: #B7963E;
    color: #1C1A16;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 9px;
    font-family: 'manrope', sans-serif;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.5s ease;
}

.btn_dark:hover {
    background-color: #9E7F2F; 
}

.btn_trasnp_bordeColor {
    color: #B7963E;
    padding: 12px;
    border-radius: 9px;
    border: 1px solid #B7963E;
    font-family: 'manrope', sans-serif;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.5s ease;
}

.btn_trasnp_bordeColor:hover {
    color: #9E7F2F; 
}

.texBody {
    color: #BBB3A9;
}

.texBodyDark {
    font-family: "Manrope-Regular";
    color: #554D43;
    font-weight: 700;
}

.sorteo-titulo {
    color: rgb(243, 242, 240);
    font-size: 66px;
    font-family: "LatienneBecker-Bold";
    font-weight: 700;
    line-height: 1.18;
}

.sorteo-h {
    color: rgb(243, 242, 240);
    font-family: "LatienneBecker-Bold";
    font-weight: 700;
    line-height: 1.18;
}

.sorteo-p {
    font-family: "Manrope-Regular";
    line-height: 1.6;
}

.sorteo-pBold {
    font-family: "Manrope-Bold";
    line-height: 1.6;
    font-weight: 700;
}

a {
    color: #B7963E;
    transition: color 0.3s ease;
    text-decoration: underline;
}

a:hover {
    color: #9E7F2F;
}

.content_ext {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    box-sizing: border-box;

}

.content_int {
    width: 100%;
    max-width: 1440px;
    height: auto;
    box-sizing: border-box;
}

.content_tx {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;  
    justify-content: center;
}

/**
Animación
*/
.hero {
    position: relative;
    width: 100%;
    max-width: 835px;
    aspect-ratio: 835 / 696;
    margin: 0 auto;
    overflow: hidden;
}

.download {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 51px;
    height: 51px;
    z-index: 10;
}

.card {
    position: absolute;
    width: 55%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
}

/* izquierda */
.card-left {
    top: 22%;
    left: 0;
    opacity: 0.7;
}

/* derecha (encima) */
.card-right {
    top: 30%;
    left: 45%;
    z-index: 3;
}

.philosopher {
    position: absolute;
    top: 7%;
    right: 10%;
    width: 18%;
    z-index: 2;
    transform: rotate(15deg);
}

.ticket {
    position: absolute;
    bottom: 5%;
    left: 25%;
    width: 15%;
    z-index: 4;
    transform: rotate(8deg);
}

.ticket2 {
    position: absolute;
    bottom: 5%;
    left: 18%;
    width: 18%;
    z-index: 3;
    transform: rotate(-15deg);
}

.link-gold {
    font-family: "Manrope-Regular";
    color: #554D43;
    font-size: 12px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s ease;
}

.link-gold:hover {
    color: #B7963E;
}

.link-gold::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    height: 2px;
    width: 0;
    background-color: #B7963E;
    transition: all 0.3s ease;
}

.link-gold:hover::after {
    width: 100%;
    left: 0;
}

/* Collage de imagenes */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
    position: relative;
}

/* cada item */
.item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* izquierda */
.item.left {
    grid-column: 1;
    left: 90px;
}

/* derecha */
.item.right {
    grid-column: 2;
    margin-top: 300px;
    bottom: -60px;
    right: 90px;
}

.item img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.item p {
    font-size: 14px;
    color: #BBB3A9;
}

/* texto derecha alineado */
.item.right p {
    text-align: right;
}

@media (max-width: 835px) {
    .sorteo-titulo {
        font-size: 40px;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 16px;
    }

    .item {
        grid-column: 1 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin-top: -40px !important;
        align-items: center;
        text-align: center;
    }

    .item img {
        width: 85%;
        max-width: 320px;
    }

    /* Zig-zag visual */
    .item:nth-child(odd) {
        transform: translateX(-35px);
    }

    .item:nth-child(even) {
        transform: translateX(35px);
    }

    /* Texto */
    .item p {
        font-size: 10px;
    }

    .hero {
        height: 550px;
    }

    .card {
        position: absolute;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 20px;
    }

    .card-left {
        top: 22%;
        left: -40%;
    }

    .card-right {
        top: 30%;
        left: 50%;
    }

    .philosopher {
        top: 5%;
        right: -10%;
        width: 35%;
    }

}

.seccion-sorteo {
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    bottom: 0;
    z-index: 50;
}

#ctaSticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

body.bgSorteo {
    background-position: center 33%; 
}

/*
ANIMACIÓN DE FONDO "T"
*/

.video-bg {
    position: absolute;
    width: 1080px;
    height: 1920px;
    top: 1000px;
    left: 50%;
    transform: translateX(-50%);
    filter: brightness(0.1);

    object-fit: cover;
    object-position: center;
    z-index: -2;
    -webkit-mask-image:
    url("/public/t-mask.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    mask-image:
    url("/public/t-mask.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

/* Oculta scrollbar pero mantiene scroll */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;  /* IE y Edge */
    scrollbar-width: none;     /* Firefox */
}




