/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
:root {
    --screen-width: 100vw; /* Valor inicial */
    --screen-height: 100vh; /* Valor inicial */
}

.main{
    z-index:1;
    position:relative;
    top: 100vh;
    margin-bottom: 100vh;
    padding-top: 3rem;
}

.hero {
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index:0;
    color: #f5f5f7;
    transition: width 0.5s ease, height 0.5s ease; /* Transiciones suaves */
}

.hero .hero-content {
    text-align: center;
    position: absolute;
}

.hero .overlay-intro {
    background-color: rgba(0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.hero .hero-title {
    color: #f5f5f7;
    font-weight: 600;
    font-size: 3rem;
}

@media (min-width: 768px) {
    .hero .hero-title {
        font-size: 4.5rem;
    }
}

.hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero .hero-subtitle {
        font-size: 2.5rem;
    }
}

.hero .text-slider-items {
    display: none;
}

.hero .logo {
    position: relative;
    top: 10vh;
}

@media (min-width: 840px) {
    .hero .logo {
        max-width: 50%;
    }
}
@media (max-width: 840px) {
    .hero .logo {
        max-width: 45%;
    }
}
@media (max-width: 575px) {
    .hero .logo {
        max-width: 75%;
    }
}

/*--------------------------------------------------------------
# NEWS
--------------------------------------------------------------*/
section #tickets{
    padding-bottom: 0;
}

#news a{
     color: #f29b30;
}

#news .fa{
    display: inline;
    font-size: 4rem;
}

#news .btn{
    padding: 20px 27px;
    border: 5px solid transparent;
    border-color: #ffcd83;
    color: #ffcd83;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    transition: all ease-in-out .3s;
}

#news .btn:hover{
    background: #ff0000;
    border-color: white;
    color: white;
}

.btn-blur{
    filter: blur(15px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 45px!important;
}

/*--------------------------------------------------------------
# NEWS PREVIEW
--------------------------------------------------------------*/
#news .preview .news-info{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#news .preview .show-info{
    text-align: center;
}

@media  (max-width: 400px){
    #news .title-a {
        font-size: 2.5rem;
    }
}

#news .preview .show-info h1{
    font-size: 7rem;
    font-weight: 1000;
    color: white;
}

#news .preview .name-dir{
    margin-bottom: 20px;
}

#news .preview .name-dir p{
    font-size: 12px;
}

#news .preview .postercont{
    width: 33%;
}

#news .preview .fecha{
    background: conic-gradient(
            #bf101a 10%,
            #fe2729 10%,
            #fe2729 20%,
            #593666 20%,
            #593666 40%,
            #906ae5 40%,
            #906ae5 60%,
            #f5f5f7 60%,
            #f5f5f7 80%,
            #bf101a 80%);

    /* Set thee background size and repeat properties. */
    background-size: 40%;
    background-repeat: repeat;

    /* Use the text as a mask for the background. */
    /* This will show the gradient as a text color rather than element bg. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Animate the text when loading the element. */
    /* This animates it on page load and when hovering out. */
    animation: rainbow-text-animation 0.5s ease forwards;
}



#news .preview .fecha-scrolled{
    animation: rainbow-text-animation-rev 2s ease forwards;
}

@keyframes rainbow-text-animation {
    0% {
        background-size: 40%;
        background-position: 0 0;
    }
    20% {
        background-size: 40%;
        background-position: 0 1em;
    }
    100% {
        background-size: 300%;
        background-position: -9em 1em;
    }
}

/* Move the background and make it smaller. */
/* Animation shown when entering the page and after the hover animation. */
@keyframes rainbow-text-animation-rev {
    0% {
        background-size: 300%;
        background-position: -9em 1em;
    }
    20% {
        background-size: 40%;
        background-position: 0 1em;
    }
    100% {
        background-size: 40%;
        background-position: 0 0;
    }
}

/*-------------------------------------------------------------
# NEWS cast
--------------------------------------------------------------*/
#news .reparto{
    margin-top: 40px;
}

#news .reparto p{
    font-size: 12px;
}

#news .name-dir{
    margin-bottom: 20px;
}

#news .name{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    margin-bottom: 10px;
}

#news h6{
    font-weight: 800;
    font-size: 1rem;
}

#news h10{
    font-weight: 800;
}

#news .group h8{
    align-items: center;
}

#news .group{
    margin-bottom: 10px;
}

#news .grupo{
    display: flex;
    justify-content: center;
}

#news .grupo p{
    margin-bottom: 4px;
}

/*--------------------------------------------------------------
# NEWS TICKETS
--------------------------------------------------------------*/
.tickets .news-info div:first-child{
    margin: auto;
}

.info p{
    margin-bottom: 0rem;
}

.sinopsis{
    margin-bottom:2rem;
}

.tickets h2{
    font-weight: 900;
}

.tickets h3{
    font-weight: 700;
}

.news-info .title-info p:first-child{
    color: rgba(255, 255, 255, 0.6);
}

.title-info h3{
    display: flex;
    margin-top: 2rem;
}

.news-info .sinopsis{
    margin-bottom: 50px;
}

.news-info .info{
    margin-bottom: 10px;
    border-bottom: rgba(255, 255, 255, 0.3) solid 0.5px;
}

.news-info .info div:first-child{
    display: flex;

}

.news-info .info i{
    font-size: 40px;
    font-weight: lighter;
    color: rgba(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.img-container{
    width: 100%;
    max-width: 30rem;
    display: flex;
    align-items: center;
    margin: auto;
}

.tickets img{
    position: absolute;
    width: 61%;
    top: 13rem;
    right: .5rem;
    z-index: 0;
    mask-image: linear-gradient(to top,  rgba(255,255,255,0) 0%,rgba(0,0,0,1) 80%)
}
.calendar {
    margin-top: 25px;
}
.half {
    width: 50%;
    margin-bottom: 0!important;
}

@media (min-width: 734px) {
    .tickets img{
        position: absolute;
        width: 50%;
        top: 4rem;
        right: 0px;
    }
}

@media (min-width: 1000px) {
    .tickets img{
        position: absolute;
        width: 50%;
        top: 11rem;
        right: 30px;
    }
}

@media(min-width: 1500px){
    .tickets img{
        position: absolute;
        width: 36%;
        top: 1rem;
        right: 241px;
    }
}

.calendar {
    margin-top: 65px;
}

.calendar h2{
    margin-bottom: 15px;
    font-weight: bolder;
    font-size: 40px;
}
.calendar h3{
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 26px;
    margin-top:32px;
}

.dias{
    display: flex;
}


.mes{
    display: flex;
}

.dias{
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
    text-align: center;
}

.mes{
    display: grid;
    width: 40vw;
}

.mes a, .mes button{
    background: rgba(255, 255, 255, 0.12);
    color: whitesmoke;
    min-height: 5.5rem;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 0.5rem;
    transition: all .5s ease-in-out;
    font-size: 1.25rem;
    border: 0;
}
.mes div{
    background: rgb(0, 0, 0, 0.5);
    align-items: center;
    padding: 0.3rem;
    min-height: 6.75rem;
    outline: rgb(13, 13, 13) solid 0.0625rem;
    display: grid;
}
.dia-cuadrado{
    padding-right: 50px;
}



@media (max-width: 750px){
    .dias{
        grid-template-columns: 1fr 1fr;
    }
    .mes{
        width: 100%;
    }
}

.location{
    color: whitesmoke;
    transition: border-bottom-width 5ms;
    border-bottom: 1px solid whitesmoke;
}

.location:hover{
    border-bottom: 2px solid whitesmoke;
}

/*--------------------------------------------------------------
# MERCHINDISING ANTONIO
--------------------------------------------------------------*/

.merch{
    margin-top: 5rem!important;
    margin: auto;
}

.tshirt{
    font-family: cinzel;
}

.swiper{
    width: 92%;
}

.merch-info{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.merch h2{
    font-size: 1.9rem;
    text-transform: uppercase;
}

.tshirt .button{
    background: rgba(255, 255, 255, 0.12);
    height: 3.5rem;
    width: 14.5rem;
    display: flex;
    border-radius: .5rem;
    color: whitesmoke;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -13rem;
}

.carousel-fotos-title{
     margin: auto;
     justify-content: center;
 }

.picture-title h1{
    font-size: 1.65rem;
    font-weight: 800;
    text-align: center;
}

.merch .mobile{
    display: none;
}

@media (max-width: 900px){
    .merch .button{
        top: 0;
    }
    .merch .mobile{
        display: unset;
    }
    .merch .widescreen{
        display: none;
    }
}

.swiper-slide img{
    width: 100%;
}

.picture-img {
    display: block;
    overflow: hidden;
}

.img_picture-box {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/*--------------------------------------------------------------
DOSSIER
--------------------------------------------------------------*/
.dossier{
    justify-content: center;
}

.monoton{
    font-family: "Monoton";
    color: #ff0000;
}

.arrows span{
    font-size: 66px;
    color: #fff8cd;
}

/*--------------------------------------------------------------
# Shows
--------------------------------------------------------------*/
#shows .content {
    position: relative;
    top: -6rem;
}

.search-container .lupa{
    color: #f5f5f7;
    transform: rotateY(180deg);
    padding-top: 3px;
    padding-left: 10px;
    display: flex;
}

.search-container input {
    width: 100%;
    background-color: transparent;
    font-size: 14px;
    color: #f5f5f7;
    border: none;
    outline: none;
    display: flex;
}

.shows-mf form:hover .lupa{
    visibility: hidden;
}

.shows-mf form:hover input{
    position: absolute;
}

.shows-mf form {
    width: 100%;
    padding: 12px 24px;
    background-color: transparent;
    font-size: 14px;
    line-height: 18px;
    color: #f5f5f7;
    border-radius: 50px;
    border: 1px solid #575756;
    transition: all 250ms ease-in-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    margin-bottom: 1rem;
    display: flex;
    overflow: hidden;
}

.shows-mf form #search_btn{
    display: none;
}

.shows-mf input::placeholder {
    color: #f5f5f7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.shows-mf form:hover{
    padding: 12px 0;
    outline: 0;
    border: 1px solid transparent;
    border-bottom: 1px solid #575756;
    border-radius: 0;
    background-position: 100% center;
}


.shows-search {
    margin-top: 70px;
}

.obras {
    justify-content: center;
}

.show-start{
    flex-wrap: nowrap;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
}

.hscroll{
    display: flex;
    align-items: center;
    gap: 15px;
}

.row.show-start::before {
    content: "";
    position: absolute;
    width: 100%;
    z-index: 4;
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(255, 255, 255, 0) 25%);
    pointer-events: none;
}

.next, .prev{
    cursor: pointer;
    transition: all ease-in-out .5s;
}

.prev{
    opacity: 0;
}

.show-item-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.marquee-poster, .marquee-title{
    width: 100%;
}

.show-item-wrapper .marquee-title{
    margin-top: 1rem;
}

.lights{
    position: absolute;
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    left: 0;
}

.poster-lights{
    top: 0;
}

.title-lights{
    bottom: 0;
}

.openshow img{
    transition: all ease-in-out.5s;
}

.border-btn {
    padding: 8px 27px;
    color: #FECD1A;
    border: 2px solid #FECD1A;
    border-radius: 10px;
}

.border-btn:hover {
    background-color: #FECD1A;
    color: white;
    border-color: white;
}

