/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Special Gothic Expanded One", sans-serif;
    text-transform: uppercase;
}

body {
    background-color: #020001;
    height: 100%;
    position: relative;
}

/*=====================================================================================================================*/



.wrapper {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.cursor {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    position: absolute;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    pointer-events: none;
}

.cursoreffect {
    content: "";
    width: 40px;
    height: 40px;
    border: 1px solid #ff0000;
    box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 80px #ff0000;

    border-radius: 50%;
    position: absolute;
    -webkit-animation: cursorPulse 1s;
}

@-webkit-keyframes cursorPulse {
    0% {
        -webkit-transform: scale(1.0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(3.0);
        opacity: 0;
    }
}

/* ====================================================================================================================== */


/* Animación Fade-Up */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Cuando el elemento es visible, se muestra */
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}




/* ====================================================================================================================== */



.rojo {
    color: #ff2b2b;
}

.azul {
    color: #1b81fc;
}

/* CONTENEDOR PRINCIPAL DEL NAVBAR */
.navbar {
    width: 100%;
    background-color: rgba(10, 10, 10, 0.508);
    backdrop-filter: blur(3px);
    position: fixed;
    top: 0;
    z-index: 10;
    border: none;
}

/* CONTENIDO CENTRADO DEL NAVBAR */
.navbar-content {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* LOGO */
.navbar-logo {
    width: 150px;
}

/* LISTA DE ENLACES */
.navbar-text {
    display: flex;
    gap: 20px;
    list-style: none;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
}

.navbar-text li a {
    text-decoration: none;
    color: rgb(209, 209, 209);
    font-size: 14px;
    font-weight: 400;
    transition: .3s;
}

.navbar-text li a:hover {
    color: rgb(255, 255, 255);

}


/* --------------*/
.image-container {
    position: relative;
    display: inline-block;
  }
  
  .main-img {
    display: block;
    width: 300px;
    height: auto;
    cursor: pointer;
  }
  
  .spark {
    position: absolute;
    width: 150px;
    height: auto;
    left: 50%; 
    top: 0;     
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s;
  }
  

  /*-----------*/ 
  .hidden {
    display: none;
  }
  
  

.btn-main {
    background-color: rgb(255, 0, 0);
    padding: 8px 40px;
    border-radius: 10px;
    color: #fff;
    transition: .5s;
    font-weight: 500;
    border: none;
    text-transform: uppercase;
}

.btn-main:hover {
    transform: scale(1.05);
    cursor: pointer;
    color: #fff;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
    display: none;
    /* Oculto por defecto */
}

.hero-banner01 {
    width: 100%;
    height: 60vh;
    /* 80% del viewport */
    background-image: url('../img/cocteles-banner-main.png');
    /* Cambia la ruta a tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content01 {
    color: white;
    padding: 20px;
    border-radius: 10px;
}
.hero-content01 h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    z-index: 2;
}

.hero-content01 p {
    font-size: 1.2rem;
    letter-spacing: 10px;
}


.hero-banner {
    width: 100%;
    height: 100vh;
    /* 80% del viewport */
    background-image: url('../img/banner05.jpg');
    /* Cambia la ruta a tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;

}

.hero-content {
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    z-index: 2;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 10px;
}

.contenedor-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch; /* <- cambia esto */
    width: 75%;
    margin: auto;
}


.contenedor01 {
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.cont01-text {
    width: 70%;
}

.contenedor01 img {
    height: 500px;
    padding: 0px 50px;

}

.contenedor01 h3 {
    font-size: 60px;
}


.contenedor02 {
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.cont02-text {
    width: 50%;
}

.contenedor02 img {
    width: 700px;
    padding: 0px 50px;

}

.contenedor02 h3 {
    font-size: 60px;
}


.contenedor03 {
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 30px 0 30px;
}

.cont03-text {
    width: 50%;
}

.contenedor03 img {
    width: 500px;
    padding: 0px 50px;

}

.contenedor03 h3 {
    font-size: 60px;
}
.cont03-text li{
    font-size: 14px;
    margin-left: 10px;
}

.info{
    font-size: 15px;
    margin-left: 10px;
}

.buttons{
    margin: auto;
}


.banner {
    background-image: url("../img/BANNER003.png");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 450px;
    /* o el alto que necesites */
    display: flex;
    justify-content: center;
    /* alinea el contenido a la derecha */
    align-items: center;
    padding: 0 60px;
    position: relative;
    color: white;
    margin: 30px 0px;
}

.banner01 {
    background-image: url("../img/alex-banner.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 450px;
    /* o el alto que necesites */
    display: flex;
    justify-content: center;
    /* alinea el contenido a la derecha */
    align-items: center;
    padding: 0 60px;
    position: relative;
    color: white;
    margin: 30px 0px;
    box-sizing: border-box;
}

.banner-text {
    max-width: 400px;
    text-align: center;
    width: 90%;
}

.banner-text h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 1.1em;
    width: 100%;
}

.subtitulo {
    color: #fff;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    font-size: 40px;
}

.ruleta {
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}




/*-------------------------------------*/

button {
    margin-right: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contenido {
    display: none;
    padding: 20px;
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contenido img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
}

#azul {
    background-color: #00101e;
    backdrop-filter: blur(3px);
}

#rojo {
    background-color: #160000;
    backdrop-filter: blur(3px);
}

#morado {
    background-color: #10001a;
}

.combinado{
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(342deg, rgba(255, 0, 0, 1) 0%, rgba(144, 0, 255, 1) 51%, rgba(0, 149, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}










/* Form */

.form-container {
    width: 80%;
    background: transparent;
    padding: 32px 24px;
    font-size: 14px;
    font-family: inherit;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 16px;
    margin: auto;
}

.form-container button:active {
    scale: 0.95;
}

.form-container .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-container .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 400;
    font-size: 15px;
}

.form-container .form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    color: #e4e4e4;
    font-family: inherit;
    background-color: transparent;
    border: 1px solid #cdcdcd;
}

.form-container .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    resize: none;
    color: #cfcfcf;
    height: 96px;
    border: 1px solid #dcdcdc;
    background-color: transparent;
    font-family: inherit;
}

.form-container .form-group input::placeholder {
    opacity: 0.5;
}

.form-container .form-group input:focus {
    outline: none;
    border-color: #ff2e35;
}

.form-container .form-group textarea:focus {
    outline: none;
    border-color: #ff1c1c;
}

.form-container .form-submit-btn {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
    font-family: inherit;
    color: #ffffff;
    font-weight: 600;
    width: 40%;
    background: transparent;
    border: 1px solid #ff1c1c;
    padding: 12px 16px;
    font-size: inherit;
    gap: 8px;
    margin-top: 8px;
    cursor: pointer;
    border-radius: 20px;
    transition: .4s;
}

.form-container .form-submit-btn:hover {
    background-color: #ff1c1c;
    color: #fff;
    border-color: #fff;
}





footer {
    background-color: #101010;
    /* Cambia a cualquier color de fondo que desees */
    width: 100%;
    padding: 50px 0;
    margin-top: 30px;
    /* Espaciado superior e inferior */
}

.footer-cont {
    display: flex;
    justify-content: space-between;
    /* Distribuye los elementos de manera equitativa */
    align-items: center;
    /* Centra verticalmente el contenido */
    width: 70%;
    margin: 0 auto;
    /* Centra el contenedor en el centro de la pantalla */
}

.footer-cont div {
    display: flex;
    align-items: center;
}

.footer-cont .logo-footer {
    height: 50px;
    /* Ajusta según el tamaño que desees para el logo */
}

.footer-term {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0px 30px
}

.footer-term h6 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-top: 5px;

}

.footer-term p {
    font-size: 14px;
    color: #ccc;
    /* Cambia el color del texto */
    margin-top: 0px;
}

footer i {
    font-size: 24px;
    margin-left: 15px;
    color: #fff;
    /* Cambia al color de los íconos que prefieras */
    cursor: pointer;
}

footer i:hover {
    color: #ff5733;
    /* Cambia a otro color cuando el icono sea hover (opcional) */
}

.cont-marcas{
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: space-between;
    margin: auto;
    align-items: center;
    margin-top: 30px;
    border-top: solid 1px #3e3e3e;
}


.marcas-desarrollo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    
}
.marcas-desarrollo p{
    color: #3e3e3e;
    font-size: 12px;
    font-weight: 600;
}

.marcas-desarrollo img{
    height: 40px;
    opacity: .4;
    transition: .3s;
}

.marcas-desarrollo img:hover{
    opacity: 1;
}


/* ==================== RESPONSIVE ==================== */

/* TABLETS */
@media (max-width: 768px) {
    .subtitulo{
        text-align: center;
        font-size: 40px;
    }

    .banner {
        padding: 0;
    }
    .form-container{
        padding: 0;
    }
    .image-container a img{
        width: 100%;
    }

    .buttons{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .hero-content01 {
        color: white;
        padding: 20px;
        border-radius: 10px;
    }
    .hero-content01 h1 {
        font-size: 3rem;
        margin-bottom: 10px;
        text-transform: uppercase;
        z-index: 2;
    }
    
    .hero-content01 p {
        font-size: 1.2rem;
        letter-spacing: 10px;
    }
    .navbar {
        width: 100%;
        background-color: rgba(10, 10, 10, 0.831);
        backdrop-filter: blur(3px);
        position: fixed;
        top: 0;
        z-index: 10;
        border: none;
    }
    .navbar-content {
        flex-direction: row;
        align-items: flex-start;
        position: relative;
    }

    .navbar-text {
        top: 69px;
        background-color: rgba(10, 10, 10, 0.831);
        backdrop-filter: blur(5px);
        position: absolute;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 0px;
        padding: 20px;
        border-radius: 0px 0px 20px 20px;
    }

    .navbar-text li a {
        padding: 8px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }


    .contenedor01 {
        padding: 20px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 0px 0px 30px;
        border-bottom: solid 1px #fff;
    }
    
    .cont01-text {
        width: 95%;
        text-align: center;
    }
    
    .contenedor01 img {
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        padding: 0;
    
    }
    
    .contenedor01 h3 {
        font-size: 40px;
        text-align: center;
    }

/**/
    .contenedor02 {
        padding: 20px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 0px 0px 30px;
        border-bottom: solid 1px #fff;
    }

    .cont02-text {
        width: 95%;
        text-align: center;
        margin-top: 20px;
    }

    .contenedor02 img {
        width: 100%;
        padding: 0;
        margin-top: 20px;

    }

    .contenedor02 h3 {
        font-size: 40px;
        text-align: center;
    }
        



    .contenedor03 {
        padding: 20px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        margin: 30px 0 30px;
        padding: 0px 0px 30px;
        border-bottom: solid 1px #fff;
    }
    
    .cont03-text {
        width: 95%;
        text-align: center;
    }
    .cont03-text li {
        text-align: left;
    }
    
    .contenedor03 img {
        width: 500px;
       
    
    }
    
    .contenedor03 h3 {
        font-size: 35px;
        text-align: center;
    }
    .cont03-text li{
        font-size: 14px;
        margin-left: 10px;
    }
    
    .info{
        text-align: left;
    }
    
    footer {
        background-color: #101010;
        /* Cambia a cualquier color de fondo que desees */
        width: 100%;
        padding: 50px 0;
        /* Espaciado superior e inferior */
    }
    
    .footer-cont {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Distribuye los elementos de manera equitativa */
        align-items: center;
        /* Centra verticalmente el contenido */
        width: 90%;
        margin: 0 auto;
        /* Centra el contenedor en el centro de la pantalla */
    }
    
    .footer-cont div {
        display: flex;
        align-items: center;
    }
    
    .footer-cont .logo-footer {
        height: 50px;
        /* Ajusta según el tamaño que desees para el logo */
    }
    
    .footer-term {
        display: flex;
        flex-direction: column;
        text-align: left;
        padding: 0px 30px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .footer-term h6 {
        margin: 0;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        margin-top: 5px;
    
    }
    
    .footer-term p {
        font-size: 14px;
        color: #ccc;
        /* Cambia el color del texto */
        margin-top: 0px;
    }
    
    footer i {
        font-size: 24px;
        margin-left: 15px;
        margin-top: 20px;
        color: #fff;
        /* Cambia al color de los íconos que prefieras */
        cursor: pointer;
    }
    
    footer i:hover {
        color: #ff5733;
        /* Cambia a otro color cuando el icono sea hover (opcional) */
    }

    .cont-marcas{
        flex-direction: column;
    }
    .marcas-desarrollo img{
        max-width: 160px;
    }

}

/* MÓVILES */
@media (max-width: 550px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
        color: white;
        font-size: 24px;
    }

    .navbar-text {
        display: none;

        /* Ocultamos por defecto */
    }

    .navbar.open .navbar-text {
        display: flex;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    
    .contenedor-main {
        display: flex;
        flex-direction: column  ;
        justify-content: center;
        align-items: stretch; /* <- cambia esto */
        width: 90%;
        margin: auto;
    }

}

/* ====================== Pantalla de verificación ====================== */
.verificacion {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff0000;
background: linear-gradient(342deg, rgba(255, 0, 0, 1) 0%, rgba(0, 8, 71, 1) 51%, rgba(0, 149, 255, 1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.verificacion img {
  width: 450px;
  margin-bottom: 50px;
}

.verificacion h1 {
  color: #1b81fc;
  font-size: 2.1rem;
  margin-bottom: 20px;
}

.verificacion .msg-texto {
  margin-bottom: 15px;
  font-size: 15px;
  color: #fff;
  text-align: center;
}

.input-mes {
  padding: 10px;
  margin: 10px;
  width: 70px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-align: center;
  outline: none;
}

.input-año {
  padding: 10px;
  margin: 10px;
  width: 90px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-align: center;
  outline: none;
}

.button-confirmar {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #1b81fc;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  margin-top: 30px;
}

button:hover {
  background-color: #1a6ed4;
}

.btn {
  width: 140px;
  height: 50px;
  background: linear-gradient(to top, #ef1f1f, #B71D1D, #711212);
  color: #fff;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.btn span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: top 0.5s;
}

.btn-text-one {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  font-size: 16px;
  font-weight: bold;
  transform: translateY(-50%);
}

.btn-text-two {
  position: absolute;
  width: 100%;
  top: 150%;
  left: 0;
  transform: translateY(-50%);
}

.btn:hover .btn-text-one {
  top: -100%;
}

.btn:hover .btn-text-two {
  top: 50%;
}

/* Mensaje de error */
#error-message {
  color: rgb(255, 255, 255);
  font-size: 1.3rem;
  margin-top: 20px;
  display: none;
}

@media (max-width: 768px) {
  .verificacion {
    padding: 20px;
  }

  .verificacion img {
    width: 300px;
    margin-bottom: 50px;
  }

  .verificacion h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .verificacion .msg-texto {
    font-size: 1rem;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .input-mes,
  .input-año {
    width: 60px;
    padding: 8px;
    font-size: 0.9rem;
    margin: 5px;
  }

  .button-confirmar {
    padding: 8px 15px;
    font-size: 0.9rem;
    margin-top: 20px;
  }

  #error-message {
    font-size: 1.2rem;
    text-align: center;
  }
}