/* ///// GLOBALS ///// */
.home-main-sections{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0;
}

.home-section-cover{
    max-width: 1024px;
    width: 90vw;
    margin: 30px auto;
}
.home-section-cover img{
    border-radius: 20px;
    box-shadow: 0px 8px 16px #000000;
}

/* ///// REEL ///// */
.home-reel-wrapper{
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
}
.home-reel-texts{
    width: 40%;
    font-size: 24px;
    font-weight: 500;
    text-align: right;
}
.home-reel-texts li:first-child{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-primary);
}
.home-reel-video{
    width: 40%;
    height: auto;
    display: block;
    
}
.home-reel-video li video{
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 30px;
    border: 10px solid var(--border-black);
    box-shadow: var(--shadow-black) 0px 4px 8px;
}

@media (max-width: 768px) {
    .home-reel-wrapper{
        flex-direction: column-reverse;
        gap: 40px;
    }
    .home-reel-video{
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .home-reel-video li {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .home-reel-video li video{
        width: 80vw;
        max-width: 80vw;
        margin: 0 auto;
    }
    .home-reel-texts{
        width: 80vw;
        max-width: 100%;
        margin: 0 auto;
        text-align: left;
    }
}

/* ///// COUNTDOWN ///// */
.home-countdown-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    background-color: var(--surface-reel);
}
.home-countdown-number{
    color: var(--accent-primary);
    font-size: 36px;
    font-weight: 800;
    margin-left: 20px;
}
.home-countdown-label{
    font-size: 24px;
    font-weight: 500;
}

/* ///// HERO CARDS ///// */
.home-hero-cards-wrapper{
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.home-hero-cards-columns{
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 30px;
}
.home-hero-cards-flickity {
    padding: 20px 0;
    border-left: 2px solid var(--accent-muted);
    border-right: 2px solid var(--accent-muted);
    border-top: none;
    border-bottom: none;
    box-shadow: 
        inset 10px 0 8px -8px var(--overlay-shadow),
        inset -10px 0 8px -8px var(--overlay-shadow);
}

.home-hero-cards-flickity img{
    width: 200px;
    margin: 0 10px;
    border-radius: 10px;
}

.home-hero-cards-flickity .home-carousel-cover {
    position: relative;
    display: block;
    width: 200px;
    aspect-ratio: 550 / 700;
    margin: 0 10px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-black) 1px 4px 7px;
}

.home-carousel-cover-image,
.home-carousel-cover-watermark {
    position: absolute;
    inset: 0;
}

.home-carousel-cover-image {
    z-index: 1;
}

.home-carousel-cover-watermark {
    z-index: 2;
    pointer-events: none;
}

.home-hero-cards-flickity .flickity-boleteria .home-carousel-cover img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}

.home-carousel-cover-info {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 1rem;
    display: block;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    pointer-events: none;
}

.home-carousel-cover-title,
.home-carousel-cover-type {
    display: block;
    color: var(--text-on-dark-strong);
    font-weight: 600;
    text-shadow: var(--shadow-deep) 1px 4px 11px;
}

.home-carousel-cover-title {
    font-size: 14px;
    line-height: 1rem;
}

.home-carousel-cover-type {
    font-size: 12px;
    line-height: 1.6rem;
    font-style: italic;
}
.home-content-status{
    width: 100%;
    color: var(--text-on-dark);
    font-size: 16px;
    padding: 20px;
    text-align: center;
}



@media (max-width: 768px) {
    .home-hero-cards-wrapper{
        margin: 100px auto;
        padding: 0 20px;
    }
    .home-hero-cards-columns{
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    .home-hero-cards-column-a{
        padding: 0;
        margin: 30px 0;
    }
    .home-hero-cards-flickity {
        padding: 0;
        border: none;
        box-shadow: none;
    }

    .home-hero-cards-flickity .flickity-boleteria a {
        display: block;
        width: 65vw;
        margin: 0 8px;
    }

    .home-hero-cards-flickity .flickity-boleteria a img {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .home-hero-cards-flickity .flickity-boleteria .home-carousel-cover {
        width: 65vw;
        margin: 0 8px;
    }

    .home-hero-cards-flickity .flickity-boleteria .home-carousel-cover img {
        height: 100%;
    }

    .home-carousel-cover-title {
        font-size: 0.8rem;
        line-height: 0.9rem;
    }

    .home-carousel-cover-type {
        font-size: 0.6rem;
        line-height: 0.8rem;
    }
}

/* ///// ADS ///// */
.home-ads-wrapper{
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}
.home-ads-box{
    border: 2px solid var(--border-light);
    border-radius: 25px;
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    gap: 20px;
    padding: 30px;
}

.home-ads-box li img{
    width: 90px;
}
.home-ads-texts{
border-left: 2px solid var(--accent-primary);
padding-left: 20px;
}
.home-ads-title{
    font-size: 18px;
    font-weight: 600;
}
.home-ads-info{
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .home-ads-box{
        grid-template-columns: 1fr 3fr;
    }
}

/* ///// HERO ///// */
.home-hero-wrapper{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.home-hero-wrapper > ul{
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 0px;
    align-items: end;
}
.home-hero-image img{
    width: 250px;
    border-radius: 20px;
    margin: 0 auto;
}

.home-tags-hero-wrapper{
    padding-left: 20px;
}
.home-hero-datos{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.home-hero-datos ul{
    border-left: 0;
    padding-left: 0;
}
.home-hero-datos ul li:first-child{
    color: var(--accent-primary);
    font-size: 30px;
    font-weight: 700;
    margin-right: 10px;
}
.home-hero-datos ul li:last-child{
    font-size: 12px;
    font-weight: 700;
}
.home-hero-datos ul{
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    min-width: 0;
}
@media (max-width: 768px) {
    .home-hero-wrapper > ul{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .home-tags-hero-wrapper{
        padding-left: 0;
    }
    .home-hero-datos ul {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 4px;
        text-align: center;
    }
    .home-hero-datos{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .home-hero-datos ul li:first-child{
        margin-right: 0;
    }
    .home-hero-datos ul li:last-child{
        hyphens: none;
        overflow-wrap: normal;
    }
}

/* ///// GALERIA ///// */
.home-galeria-wrapper{
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.home-galeria-tags-wrapper{
    max-width: 900px;
    margin: 30px auto;
}
.home-strip-wrapper{
    display: grid;
    grid-template-rows: 1fr;
    margin-top: 10px;
}
.home-strip-wrapper .home-strip-cell{
    display: block;
    width: 225px;
    height: 150px;
    border-radius: 10%;
    margin-right: 10px;
    box-shadow: 0px 4px 8px var(--shadow-black);
    overflow: hidden;
}
.home-strip-wrapper .home-strip-cell img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .home-strip-wrapper .home-strip-cell{
        width: 180px;
        height: 120px;  
    }
}
