/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Archivo_Expanded', Arial, Helvetica, sans-serif;
}

@font-face {
    font-family: 'Archivo_Expanded';
    src: url('../fonts/Archivo_Expanded-Light.woff2') format('woff'),
    url('../fonts/Archivo_Expanded-Light.ttf') format('truetype'),
    url('../fonts/Archivo_Expanded-Light.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Archivo_Expanded_Bold';
    src: url('../fonts/Archivo_Expanded-Bold.woff') format('woff'),
    url('../fonts/Archivo_Expanded-Bold.ttf') format('truetype'),
    url('../fonts/Archivo_Expanded-Bold.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Archivo_Expanded_Black';
    src: url('../fonts/Archivo_Expanded-Black.woff') format('woff'),
    url('../fonts/Archivo_Expanded-Black.ttf') format('truetype'),
    url('../fonts/Archivo_Expanded-Black.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Archivo_Expanded_ExtraBold';
    src: url('../fonts/Archivo_Expanded-ExtraBold.woff') format('woff'),
    url('../fonts/Archivo_Expanded-ExtraBold.ttf') format('truetype'),
    url('../fonts/Archivo_Expanded-ExtraBold.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

/* Video de fondo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.fondo_img{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

.seccion{
    position: relative;
    float: left;
    width: 100%;
    height: auto;
}
.home {
    width: 100%;
    height: 100vh; /* Ocupa el 100% de la altura de la ventana */
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    height: auto; /* Ocupa el 100% de la altura de la ventana */
    display: flex;
    justify-content: center;
    align-items: center;
}

header{
    position: relative;
    float: left;
    width: 100%;
    top: 0;
}

/* Menú horizontal */
nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    background: #000000; /* Fondo transparente */
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #fff;
    z-index: 1000;
}
nav .logo{
    width: 150px;
    text-align: center;
}
nav .logo img{
    position: absolute;
    top: 12px;
    height: 60px;
}
nav ul {
    display: flex;
    list-style-type: none;
    margin: 0 20px;
}

nav ul li {
    margin: 10px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s;
    font-family: 'Archivo_Expanded', Arial, Helvetica, sans-serif;
}

nav ul li a:hover {
    color: #ffd700; /* Cambia el color al hacer hover */
}

.mobile-menu {  display: none;      }

.div_title{
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    padding: 30px;
    margin-bottom: 100px;
}
.div_title img {
    width: 100%;
    max-width: 400px;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {

    .nav{
        display: none;
    }

    .mobile-menu-button {
        display: none;
        background: none;
        border: none;
        color: #fff;
        font-size: 40px;
        cursor: pointer;
        background-color: #000000;
    }
    .menu-icon {
        display: none;
        width: 30px;
        height: 30px;
    }
    .menu-icon div {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        margin: 5px 0;
    }
    .menu-icon, .close-icon {
        display: inline-block;
        cursor: pointer;
    }
    .close-icon {
        display: none;
    }
    .mobile-menu-button.open .menu-icon {
        display: none;
    }
    .mobile-menu-button.open .close-icon {
        display: inline-block;
    }
    .logo-mobile{
        display: block !important;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    .logo-mobile img{
        width: 80px;
    }
    .mobile-menu-button {
        display: block;
        position: fixed;
        width: 50px;
        height: 42px;
        top: 40px;
        right: 20px;
        border: 1px solid #fff;
        z-index: 100;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9); /* Color y opacidad */
        display: none; /* Oculto inicialmente */
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 1000;
    }
    .logo-mobile{
        text-align: center;
    }
    .close-icon{
        display: block;
        position: absolute;
        right: 25px;
        top: 12px;
    }

    .mobile-menu ul{
        margin-top: 30%;
        text-align: center;
    }
    .mobile-menu ul li{
        height: 70px;
    }
    .mobile-menu ul li a {
        font-size: 30px;
        color: #ffffff;
        text-decoration: none;
        font-family: PTMono-Regular;
        cursor: pointer;
    }

}


/* Logo centrado en la primera pantalla */
.logo-container {
    width: 350px;
    height: 350px;
    /*-webkit-mask-image: radial-gradient(circle, white 70%, transparent 51%);*/
    /*mask-image: radial-gradient(circle, white 70%, transparent 51%);*/
}

.logo-container img {
    max-width: 350px;
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
}
.ticket{
    position: relative;
    width: 380px;
    margin: auto;
}
.ticket img{
    width: 100%;
    margin-left: 4px;
}
.ticket-info{
    position: relative;
    width: 100%;
    top: -220px;
}
.ticket-nombre{
    width: 100%;
    font-size: 30px;
    color: #ffffff;
    font-family: 'Archivo_Expanded_Black', Arial, Helvetica, sans-serif;
    text-align: center;
}
.ticket-data{
    position: relative;
    float: left;
    width: 100%;
    padding: 0 30px;
    height: 30px;
    line-height: 30px;
}
.ticket-fecha{
    position: relative;
    float: left;
    width: 35%;
    font-size: 13px;
    color: #ffffff;
    font-family: 'Archivo_Expanded', Arial, Helvetica, sans-serif;
    text-align: left;
}
.ticket-lugar{
    position: relative;
    float: left;
    width: 65%;
    font-size: 13px;
    color: #ffffff;
    font-family: 'Archivo_Expanded', Arial, Helvetica, sans-serif;
    text-align: right;
}
.ticket-btn {
    position: relative;
    float: left;
    width: 100%;
    padding: 0 30px;
    top: 35px;
}
.ticket-btn .btn {
    width: 140px;
    padding: 10px;
    background-color: #eaeaea;
    color: #520a78;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    font-family: 'Archivo_Expanded_ExtraBold', Arial, Helvetica, sans-serif;
}
.ticket-btn .btn:hover {
    background-color: #e2c9ff;
}
.f-carousel {
    --f-carousel-slide-width: 100% !important;
}
.redes{
    width: 150px;
    text-align: center;
}
.soial-icons{
    position: relative;
    float: left;
    width: 33%;
    vertical-align: middle;
}
@media (min-width: 768px) {
    .f-carousel {
        --f-carousel-slide-width: calc(100% / 3) !important;
    }
}
/* Estilos responsivos */
@media (max-width: 768px) {
    .ticket-btn .btn {
        font-size: 14px;
    }
    nav ul li {
        margin-right: 10px;
    }
    nav ul li a {
        font-size: 16px;
    }
    .ticket{
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px;
    }
    nav ul li {
        margin-right: 5px;
    }
    .logo-container img {
        max-width: 100%;
        padding: 0;
    }
}



.link {
    text-decoration: none;
    cursor: pointer;
    color: #ffffff;
}
.boton {
    background-image: url("../images/boton.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
}
.boton:hover{
    color: #9250d2;
}
.boton div {
    height: 100px;
    line-height: 100px;
}
.boton_enviar {
    background-image: url("../images/boton2.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 70px;
    line-height: 70px;
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    text-decoration: none;
}
.boton_enviar:hover{
    opacity: 0.8;
}

/* ----- AUDICIONA ------- */

.audiciones{
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: auto;
}
.audiciones .logo {
    position: relative;
    margin: 50px auto;
    top: 0px;
}
.audiciones .logo a {
    text-align: center;
}
.audiciona{
    margin-top: 30px;
}
.desktop-audiciona{
    display: block;
}
.mobile-audiciona{
    display: none;
}
.audiciona-text{
    font-size: 14px;
    color: #ffffff;
    font-family: 'Archivo_Expanded', Helvetica, Arial, sans-serif ;
}
.audiciona-subtitle{
    font-size: 18px;
    color: #ffffff;
    font-family: 'Archivo_Expanded', Helvetica, Arial, sans-serif ;
    margin: 20px 0;
}
.cuadro{
    margin: 100px 0;
}
.cuadro img{
    height: 100%;
    max-height: 500px;
}

@media screen and (max-width: 600px) {
    .desktop-audiciona {
        display: none;
    }
    .mobile-audiciona {
        display: block;
    }
    .cuadro{
        margin: 50px 0;
        padding: 20px;
    }

    .cuadro img{
        width: 100%;
        height: auto;
        max-height: initial;
    }
}

.volver{
    position: absolute;
    width: 100px;
    height: 100px;
    top: 150px;
    left: 100px;
    z-index: 10000;
}

/* -----------------------------------*/
/* ----- ARTE ------------------------*/
/* -----------------------------------*/
#arte{
    background-color: #000000;
}
#arte .container{
    height: auto;
    max-width: 1280px;
    margin: 0 auto;
}
.fondo_arte{
    background-image: url("../images/fondo_mi_galaxia.jpg?v3");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    margin: 0;
}

.espiral_arte{
    position: absolute;
    background-image: url("../images/espiral_arte.gif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 600px;
    height: 370px;
    margin-top: 100px;
    left: 50%;
    transform: translateX(-300px);
    opacity: ;
}
.espiral_arte::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(227, 110, 249);
    mix-blend-mode: color;
}
.filtro {
    position: relative;
    display: inline-block;
}
.fondo_arte .div_title {
    margin-top: 200px;
}
.arte_texto{
    position: relative;
    float: left;
    width: 100%;
    max-width: 800px;
    left: 50%;
    transform: translateX(-400px);
}
.texto_light{
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    line-height: 25px;
    font-family: 'Archivo_Expanded', Helvetica, Arial, sans-serif ;
}
.texto_bold{
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    line-height: 25px;
    font-family: 'Archivo_Expanded_Bold', Helvetica, Arial, sans-serif ;
}
.arte_texto_box{
    margin-top: 20px;
    padding: 10px;
    font-weight: 800;
    background-color: rgba(255 255 255 / 80%);
    color: #9250d2;
}
.arte_images{
    margin: 150px 0;
    text-align: center;
    padding: 0 40px;
}
.arte_images img {
    text-align: center;
}
@media screen and (max-width: 600px) {
    .espiral_arte{
        width: 100%;
        left: 0;
        transform: translateX(0px);
        margin-top: 20px;
    }
    .arte_texto{
        left: 0;
        transform: translateX(0);
        padding: 0 20px;
    }
    .texto_light{
        font-size: 15px;
    }
    .texto_bold{
        font-size: 14px;
    }
    .arte_texto_box{
        font-size: 12px;
    }
    .hide_desktop{
        display: none;
    }

    .fondo_arte .div_title {
        margin-top: 120px;
    }
}

/* -----------------------------------*/
/* ----- GALAXIA ------------------------*/
/* -----------------------------------*/
#galaxia{
    background-color: #000000;
}
#galaxia .container{
    height: auto;
    max-width: 1280px;
    margin: 0 auto;
}
.fondo_galaxia{
    background-image: url("../images/fondo_mi_galaxia.jpg?v3");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    margin: 0;
}
.fondo_galaxia .div_title {
    margin-top: 120px;
}
.galaxia_texto{
    position: relative;
    float: left;
    width: 100%;
    max-width: 800px;
    left: 50%;
    transform: translateX(-400px);
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 25px;
}
.galaxia_texto_box{
    margin-top: 20px;
    padding: 10px;
    font-weight: 800;
    background-color: rgba(255 255 255 / 80%);
    color: #9250d2;
}
@media screen and (max-width: 600px) {
    .galaxia_texto{
        left: 0;
        transform: translateX(0);
        padding: 0 20px;
        margin-top: 0px;
    }
    .div_title{
        margin-bottom: 120px;
    }
    .galaxia_texto_box{
        font-size: 12px;
    }
}
/* -------------------------------------*/
/* ----- SLIDER GALAXIA ----------------*/
/* -------------------------------------*/
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 50px 0;
}
.slider_marco {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 30px;
    top: 0;
    left: 0;
    z-index: 10;
}
.slider_marco img {
    width: 100%;
    height: 100%;
}
.slides {
    display: flex;
    transition: transform 0.5s ease;

}
.slide {
    position: relative;
    float: left;
    min-width: 100%;
    transition: opacity 1s ease;
}
.slide-text-1 {
    position: absolute;
    width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slide-text-2 {
    position: absolute;
    width: 400px;
    bottom: 60px;
    left: 130px;
}
.slide img {
    width: 100%;
    display: block;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 40px;
    z-index: 100;
}
.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media screen and (max-width: 600px) {
    .slide img {
        width: 150%;
    }
    .slide-text-1 {
        position: absolute;
        width: 50%;
        top: 50%;
        left: 37%;
        transform: translate(-50%, -50%);
    }
    .slide-text-2 {
        position: absolute;
        width: 50%;
        top: 50%;
        left: 37%;
        bottom: 0;
        transform: translate(-50%, -50%);
    }
}

.subir{
    position: absolute;
    width: 60px;
    height: 60px;
    padding: 10px;
    bottom: 20px;
    right: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.subir:hover{
    background-color: #6E109A70;
}

/* -------------------------------------*/
/* ----- FOOTER ------------------------*/
/* -------------------------------------*/

footer{
    position: relative;
    float: left;
    width: 100%;
    height: 100px;
    background-color: #6E109A;
    color: #ffffff;
}
.footer-logo{
    position: relative;
    float: left;
    width: 120px;
}
.footer-logo img{
    width: 70px;
    margin-top: 16px;
    margin-left: 20px;
}
.footer-text{
    position: relative;
    float: right;
    width: 200px;
    text-align: right;
    font-size: 12px;
    line-height: 18px;
    margin-top: 25px;
    margin-right: 20px;
}
.footer-redes{
    line-height: 100px;
    text-align: center;
}
.footer a{
    color: #ffffff;
}
.footer a:hover{
    color: #d2d2d2;
}

.footer-audiciona{
    color: #ffffff;
    text-align: center;
    margin: 40px auto;
}
.footer-audiciona a{
    color: #ffffff;
}
.footer-audiciona a:hover{
    color: #d2d2d2;
}

.footer-reserva{
    position: absolute;
    bottom: 50px;
    color: #ffffff;
}
.footer-reserva a{
    color: #ffffff;
}
.footer-reserva a:hover{
    color: #d2d2d2;
}

@media screen and (max-width: 600px) {
    .footer-reserva{
        bottom: 10px;
        padding: 0 20px;
        text-align: center;
    }
    .footer{
        padding: 0 20px;
    }
}

/* ======================================= */
/* ======================================= */
/* ===== RESERVAS 2 ====================== */
/* ======================================= */
/* ======================================= */
.reservas {
    position: relative;
    float: left;
    width: 100%;
    max-width: 600px;
}
.reservas .logo {
    position: relative;
    margin: 0 auto 50px auto;
}
.reservas .logo a {
    text-align: center;
}
.reserva{
    margin-top: 30px;
}
.reserva input, .reserva textarea {
    text-align: center !important;
    margin-bottom: 10px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    background-color: #F0FCFF;
    box-shadow: 0px 0px 8px #fff;
    color: #000000;
}
.reserva input:-internal-autofill-selected,
.reserva select:-internal-autofill-selected {
    background-color: transparent !important;
    box-shadow: 0px 0px 8px #fff !important;
    color: #ffffff !important;
}
.reservas .text {
    font-size: 14px;
    color: #ffffff;
}
.reservas .f20 {
    font-size: 20px;
    color: #ffffff;
}
@media screen and (max-width: 600px) and (min-width: 0px) {
    .reservas .f20 {
        font-size: 14px;
    }
}
.reservas input::placeholder,
.reservas select::placeholder {
    color: #626161;
}

.reservas .horarios {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.reservas .horarios .hora {
    position: relative;
    float: left;
    margin: 3px;
    width: 70px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    font-size: 18px;
    color: #ffffff;
    background-color: #8b48b7;
    cursor: pointer;

}
.mensaje_max {
    padding: 10px 20px;
    color: #ffffff;
    background-color: #8b48b7;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}
.mensaje_max:hover {
    background-color: #ffffff;
    color: #8b48b7;
    text-decoration: none;
}
.reservas .horarios .hora:hover {
    color: #ffffff;
    background-color: #8b48b7;
}
.reservas .horarios .hora.active {
    color: #8b48b7;
    background-color: #ffffff;
}

.reservas .mesa {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.reservas .mesa .cantidad {
    position: relative;
    float: left;
    margin: 5px;
    width: 60px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    font-size: 22px;
    color: #ffffff;
    background-color: #8b48b7;
    cursor: pointer;
}
.reservas .mesa .cantidad:hover {
    color: #8b48b7;
    background-color: #ffffff;
}
.reservas .mesa .cantidad.active {
    color: #8b48b7;
    background-color: #ffffff;
}

.reservas .reservar {
    position: relative;
    float: left;
    margin-right: 5px;
    width: 200px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    color: #ffffff;
    background-color: #8b48b7;
    cursor: pointer;
}
.reservas .reservar:hover {
    color: #8b48b7;
    background-color: #ffffff;
}
.reservas .error {
    border: 2px solid red;
}

/* ----- RESERVADO ------------------------*/
.reservado .titulo {
    color: #ffffff;
    line-height: 80px;
    font-size: 25px;
}
.reservado .subtitulo {
    color: #ffffff;
    height: 80px;
    font-size: 18px;
}
.reservado .texto {
    color: #ffffff;
    font-size: 16px;
    margin: 20px 0;
}
.reservado .reservado_email{
    color: red;
}

.reservado .reenviar {
    position: relative;
    float: left;
    margin-right: 5px;
    width: 200px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    color: #000000;
    background-color: #ffffff;
    cursor: pointer;
}
.reservado .reenviar:hover {
    color: #ffffff;
    background-color: red;
}

/* ----- FOOTER ------------------------*/
.footer{
    position: absolute;
    bottom: 20px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    text-shadow: 1px 1px 1px #000000;
}
.footer a{
    color: #ffffff;
}
.footer a:hover{
    color: #d2d2d2;
}

.footer-audiciona{
    color: #ffffff;
    text-align: center;
    margin: 40px auto;
    height: 50px;
}
.footer-audiciona a{
    color: #ffffff;
}
.footer-audiciona a:hover{
    color: #d2d2d2;
}

.footer-reserva{
    position: absolute;
    bottom: 50px;
    color: #ffffff;
}
.footer-reserva a{
    color: #ffffff;
}
.footer-reserva a:hover{
    color: #d2d2d2;
}

@media screen and (max-width: 600px) {
    .footer-reserva{
        bottom: 10px;
        padding: 0 20px;
        text-align: center;
    }
    .footer{
        padding: 0 20px;
    }
}