/* Colores:
    Negro: #252323
    Rojo: #D8001D
    Blanco: #F2F2F2
*/


/*Fuente: Open Sans*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


.seccionPrincipal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease-in-out, transform 0.6s ease; /* Añade un retraso de 1 segundo */
}

.seccionPrincipal.visible {
    opacity: 1;
    transform: translateY(0);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    line-height: 24px;
}

html {
    font-family: 'Open Sans', serif;
}

body {
    overflow-x: hidden;
}

.header {
    display: flex;
    width: 100vw;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    top: 0;
    background-color: #FFFFFF;
    position: fixed;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.2);
    z-index: 2000;
}

.headerMobile {
    display: none;
}

.mobileMenu {
    transform: translateX(-100%);
    transition: all 0.5s ease;
    display: flex;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 2001;
    background-color: #FFFFFF;
    top: 0;
}

.logoHeader img {
    width: 180px;
}

.menu ul li {
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    margin-left: 30px;
    color: #252323;
    font-weight: 500;
    transition: all 0.5s ease;
}

.menu ul li a:hover {
    color: #D8001D;
    transition: all 0.5s ease;
}

.menu ul {
    display: flex;
}

.seccionPrincipal {
    margin: 60px 10% 0 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.seccionPresentacion {
    margin-top: 150px;
}

.textoPresentacion {
    width: 40vw;
}

.textoportada {
    width: 30vw;
}

.textoPresentacion p {
    margin-top: 20px;
}

.textoPresentacion a {
    padding: 20px 30px;
    background-color: #D8001D;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 200px;
}

.textoPresentacion a span {
    color: #F2F2F2;
}

.textoPresentacion a.secundaryButton {
    background-color: #FFFFFF;
    width: auto;
    justify-content: flex-start;
    padding: 0;
}

.textoPresentacion a.secundaryButton span {
    color: #D8001D;
    margin-right: 12px;
}

.textoPresentacion a img {
    height: 16px;
}

.carrusel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.carousel1-image {
    height: 450px;
    display: none;
    cursor: pointer;
}

.carousel2-image,
.carousel3-image,
.carousel4-image,
.carousel5-image,
.carousel6-image {
    height: 400px;
    opacity: 0;
    cursor: pointer;
    transition: opacity 1s ease;
    position: absolute;
    top: 0;
}

.carousel1-image.active,
.carousel2-image.active,
.carousel3-image.active,
.carousel4-image.active,
.carousel5-image.active,
.carousel6-image.active {
    opacity: 1;
    transition: opacity 1s ease;
    position: relative;
    top: 0;
}

.indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #252323;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #D8001D;
}

.cabeceraSeccion {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
}

.seccionSecundaria {
    margin: 60px 5% 0 5%;
    align-items: flex-start;
}

.seccionSecundaria .textoPresentacion p {
    margin-top: -8px;
}

.seccionSB .textoPresentacion p {
    margin-top: 0;
}

.socialBar, .interactiveElements {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.interactiveElements {
    margin-top: 30px;
}

.socialBar {
    margin-left: 40px;
}

.socialBar img {
    margin-left: 10px;
    cursor: pointer;
}

.marginbtn {
    margin-top: 30px;
}

.cabeceraSeccion img {
    width: 210px;
}

#Superboletos img,
#ArenaMonterrey img {
    width: 150px;
}

#ArenaCDMX img,
#ArenaGuadalajara img {
    width: 120px;
}

.portrait {
    width: 700px;
}


.aguaDerecha {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-left: -30px;
}

.aguaDerecha .carrusel img {
    width: 450px;
    height: auto;
}

.aguaDerecha .textoPresentacion {
    width: 35vw;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 10px;
}

.aguaDerecha .textoPresentacion .interactiveElements {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.aguaDerecha .textoPresentacion .interactiveElements .socialBar {
    margin-top: 30px;
    margin-left: 0;
}

.footer {
    width: 100%;
    padding: 40px 300px;
    display: flex;
    align-items: center;
    background-color: #252323;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer span {
    color: #F2F2F2;
}

b {
    margin-left: 5px;
}


/*
------------------------------------------------------------
------------------------------------------------------------
------------------------MOBILE CODE-------------------------
------------------------------------------------------------
------------------------------------------------------------
*/


@media only screen and (max-width: 900px) {

    .header {
        display: none;
    }

    .seccionPrincipal {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .seccionPresentacion {
        margin-top: 150px;
    }
    
    .textoPresentacion {
        width: 80%;
    }
    
    .textoportada {
        width: 85%;
    }

    .portrait {
        width: 90%;
        margin-top: 35px;
    }
    
    .carousel2-image,
    .carousel3-image,
    .carousel4-image,
    .carousel5-image,
    .carousel6-image {
        margin-top: 40px;
        height: auto;
        width: 85%;
    }

    .seccionSecundaria .textoPresentacion p {
        margin-top: 25px;
    }

    .interactiveElements {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 40px;
    }

    .interactiveElements .socialBar {
        margin-top: 20px;
        margin-left: 0;
    }
    
    .aguaDerecha {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-left: 0px;
    }
    
    .aguaDerecha .carrusel img {
        width: 85%;
        height: auto;
    }
    
    .aguaDerecha .textoPresentacion {
        width: 85vw;
        margin-left: 0px;
        margin-right: 0;
        margin-top: 10px;
    }
    
    .aguaDerecha .textoPresentacion .interactiveElements {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .aguaDerecha .textoPresentacion .interactiveElements .socialBar {
        margin-top: 30px;
        margin-left: 0;
    }

    .aguaIzquierda {
        margin-top: 50px;
    }

    @media (max-width: 768px) {
        .footer {
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .footer-left,
        .footer-right {
            text-align: center;
        }
        
        .footer span {
            margin-top: 0;
        }
    }

    .headerMobile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100vw;
        padding: 20px 30px 14px 30px;
        top: 0;
        background-color: #FFFFFF;
        position: fixed;
        box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.2);
        z-index: 2000;
    }

    .mobileMenu.active {
        transform: translateX(0);
        transition: all 0.5s ease;
    }

    .mobileMenu .close img {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
    }

    .mobileMenu ul li {
        list-style: none;
        margin-top: 30px;
    }

    .mobileMenu ul li a {
        text-decoration: none;
        color: #252323;
        font-size: 22px;
        font-weight: 500;
    }

    .mobileMenu ul {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin-top: 80px;
    }

    /* Selector de idioma para móvil */
    .language-mobile {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 30px;
    }

    .language-selector-mobile {
        width: 80%;
        max-width: 250px;
        display: flex;
        justify-content: center;
    }

    .language-selector-mobile select {
        font-family: 'Open Sans', serif;
        padding: 15px 20px;
        border: 2px solid #d8001d;
        border-radius: 8px;
        background-color: #fff;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.2rem;
        color: #333;
        outline: none;
        width: 100%;
        text-align: center;
        appearance: none;
        -webkit-appearance: none; /* Para Safari */
        -moz-appearance: none; /* Para Firefox */
    }

    .language-selector-mobile {
        position: relative;
    }

    .language-selector-mobile::after {
        content: "▼";
        font-size: 0.8rem;
        color: #d8001d;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }
}