@import url('https://fonts.googleapis.com/css2?family=Anton&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


/* Estilo para el botón de Discord con degradado */
.discord-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 90px; /* Separado del botón de WhatsApp */
    background: linear-gradient(135deg, #7289da, #5865F2); /* Degradado Discord */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    color: white;
    font-size: 30px;
}

.discord-button:hover {
    background: linear-gradient(135deg, #5865F2, #7289da); /* Invertir el degradado al hacer hover */
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Estilo para el botón de WhatsApp con degradado */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366, #128c7e); /* Degradado moderno */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    color: white;
    font-size: 30px;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128c7e, #25d366); /* Invertir el degradado al hacer hover */
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

body{
    font-family: "Rubik", sans-serif;
    background: #edf2f7;
    overflow-x: hidden;
}

/* Estilo para el contenedor del preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Estilo para el spinner (animación de carga) */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-top-color: #FF9000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animación del spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/*ajuste*/

.content {
    margin-top: 60px; /* Ajusta el margen según la altura del header para que el contenido no lo tape */
    position: relative;
    z-index: 1
}

/*----------*/

/*nav*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.logo:hover {
    transform: scale(0.95);
}

.linknav:hover {
    color: #FF9000;
}

.categoriesnav {
    border-radius: 25px;
}

.div-insc{
    display: grid;
    padding-left: 50px;
}


.btn-insc-nav {
    padding: 10px;
    background-color: #FF9000;
    border-radius: 25px;
    box-sizing: border-box;
    border: 2px solid transparent;
    color: white;
}

.btn-insc-nav:hover {
    background-color: white;
    border-color: #FF9000;
    color: #FF9000;
}

.divisor-nav{
    padding-left: 50px;
}

.dropdownstyle{
    background-color: #ffffffb6;
}

/*index css*/

/*banner*/ 

.img_cont{
    display: flex;
    width: 100%;
    max-height: 700px;
    position: relative;
}

.img_son{
    position: absolute;
    width: 40%;
    height: 50%;
    top: 120px;
    left: 30%;
}
/*-------------------------------*/

.btn-father{
    margin: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-member{
    background:#FF9000;
    color:#fff;
    border:none;
    position:relative;
    height:60px;
    font-size:1.6em;
    padding:0 2em;
    cursor:pointer;
    transition:800ms ease all;
    outline:none;
  }
  
.btn-member:hover{
    background:#edf2f7;
    color:#FF9000;
  }
.btn-member:before,button:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    background: #FF9000;
    transition:400ms ease all;
  }
.btn-member:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
  }
.btn-member:hover:before,button:hover:after{
    width:100%;
    transition:800ms ease all;
  }

/**/

.bg{
    background-color: #FF9000;
}

.catinput{
    box-shadow: none;
    outline:none;
    border:0;
}
/*-------------------------------*/ 

.h1_main{
    font-family: "Rubik", sans-serif;
    font-size: 50px;
    padding-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h1_mainprod{
    font-family: "Rubik", sans-serif;
    font-size: 50px;
    padding-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* video */

.video {
    width: 80%; /* Ajusta el tamaño al 80% del contenedor principal */
    max-width: 800px; /* Ancho máximo para no expandirse demasiado en pantallas grandes */
    position: relative;
    margin: 20px auto; /* Centrado con margen superior e inferior */
    border-radius: 10px; /* Bordes redondeados */
    overflow: hidden; /* Para asegurar que el video respete los bordes redondeados */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Sombra sutil para dar profundidad */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transiciones suaves al hacer hover */
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px; /* Asegura que el video tenga los mismos bordes redondeados */
}

.video::after {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%; /* Mantiene la proporción 16:9 */
}

.video:hover {
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3); /* Aumenta la sombra al hacer hover */
}


.framevid{
    padding-top: 1rem;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
}

.boton_register{
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
}

.bot_reg{
    font-size: 20px;
    font-weight: lighter;
    background-color: #FF9000;
    color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 10px;
}

.bot_reg:hover{
    background: #c07007;
    letter-spacing: 1px;
    -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
    transition: all 0.4s ease 0s;
        
}

/*productos*/
.container{
    max-width: 1200px;
    margin: 0 auto;
}

.productos{
    padding: 20px 0 0 0;
    display: flex;
    justify-content: space-between;
}

.prod-1{
    display: flex;
    align-items: center;
    flex-basis: calc(33.3% - 15px);
    background-color: #F5F5F5;
    padding: 35px;
}

.prod-img{
    flex-basis: 50%;
    margin-right: 15px;
}

.prod-img img{
    width: 250px;
}

.prod-txt{
    flex-basis: 50%;
    text-align: center;
}

.prod-txt h3{
    color: #111111;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.btn-2{
    display: inline-block;
    padding: 7px 10px;
    background-color: #111111;
    color: #FFFFFF;
    border-radius: 5px;
    font-size: 15px;
}
/*-------------------------------*/

/*responsive navbar*/

@media (min-width: 340px){
    .divisor-nav{
        padding-left: 8px;
    }
    .btn-insc-nav{
        padding: 5px;
        font-size: 8px;
        white-space: nowrap;
    }
    .logo{
        height: 1.1rem;
    }

    /*main*/

    .img_cont{
        height: 250px;
    }

     .img_son{
        width: 45%;
        height: 15%;
        left: 90px;
        top: 100px;
    }

    .h1_main{
        font-size: 25px;
    }
}

@media (min-width: 360px){
    .divisor-nav{
        padding-left: 8px;
    }
    .btn-insc-nav{
        padding: 5px;
        font-size: 11px;
        white-space: nowrap;
    }
    .logo{
        height: 1.1rem;
    }

     /*main*/

    .img_cont{
        height: 300px;
    }

     .img_son{
        width: 60%;
        height: 25%;
        left: 75px;
        top: 100px;
    }

    .h1_main{
        font-size: 25px;
    }

}

@media (min-width: 370px){
    .divisor-nav{
        padding-left: 8px;
    }
    .btn-insc-nav{
        padding: 2px;
        font-size: 9px;
        white-space: nowrap;
    }
    .logo{
        height: 1.1rem;
    }

    /*main*/
    .img_son{
        width: 60%;
        height: 20%;
        left: 75px;
        top: 120px;
    }

    .h1_main{
        font-size: 25px;
    }

}

@media (min-width: 390px){
    /*banner index*/

    .img_cont{
        height: 280px;
    }

    .img_son{
        top: 10px;
    }

    .btn-insc-nav{
        padding: 5px;
    }
}

@media (min-width: 410px){
    .btn-insc-nav{
        padding: 5px;
        font-size: 11px;
    }
    .logo{
        height: 1.25rem;
        padding-right: 40px;
    }

    /*banner index*/

    .img_cont{
        height: 300px;
    }

    .img_son{
        width: 60%;
        height: 20%;
        left: 20%;
        top: 110px;
    }

    .h1_main{
        font-size: 35px;
    }
}

@media (min-width: 540px){
    .btn-insc-nav{
        padding: 5px;
        font-size: 11px;
    }
    .logo{
        height: 1.5rem;
        padding-right: 140px;
    }

    /*main*/

    .img_cont{
        height: 370px;
    }

     .img_son{
        width: 60%;
        height: 30%;
        left: 110px;
        top: 110px;
    }

    /*prods*/

    .productos{
        padding: 5px 0 0 0;
        display: flex;
        justify-content: space-between;
    }
    
    .prod-1{
        display: flex;
        align-items: center;
        flex-basis: calc(33.3% - 15px);
        background-color: #F5F5F5;
        padding: 5px;
    }
    
    .prod-img{
        flex-basis: 50%;
        margin-right: 15px;
    }
    
    .prod-img img{
        width: 250px;
    }
    
    .prod-txt{
        flex-basis: 50%;
        text-align: center;
    }
    
    .prod-txt h3{
        color: #111111;
        font-size: 15px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    
    .btn-2{
        display: inline-block;
        padding: 7px 10px;
        background-color: #111111;
        color: #FFFFFF;
        border-radius: 5px;
        font-size: 10px;
    }
}

@media (min-width: 760px){
    .logo{
        height: 2rem;
        padding-right: 300px;
    }

     /*main*/

    .img_cont{
        height: 480px;
    }

     .img_son{
        width: 60%;
        height: 30%;
        left: 150px;
        top: 120px;
    }

    .h1_main{
        font-size: 50px;
    }

    /*prods*/

    .productos{
        padding: 5px 0 0 0;
        display: flex;
        justify-content: space-between;
    }
    
    .prod-1{
        display: flex;
        align-items: center;
        flex-basis: calc(33.3% - 15px);
        background-color: #F5F5F5;
        padding: 5px;
    }
    
    .prod-img{
        flex-basis: 50%;
        margin-right: 15px;
    }
    
    .prod-img img{
        width: 250px;
    }
    
    .prod-txt{
        flex-basis: 50%;
        text-align: center;
    }
    
    .prod-txt h3{
        color: #111111;
        font-size: 15px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    
    .btn-2{
        display: inline-block;
        padding: 7px 10px;
        background-color: #111111;
        color: #FFFFFF;
        border-radius: 5px;
        font-size: 10px;
    }

}

@media (min-width: 820px){
    .logo{
        height: 1.4rem;
        padding-right: 400px;
    }
    .btn-insc-nav{
        padding: 7px;
        font-size: 15px;
    }

    /*main*/

    .img_cont{
        height: 480px;
    }

     .img_son{
        width: 60%;
        height: 30%;
        left: 150px;
        top: 110px;
    }
}

@media (min-width: 850px){
    .logo{
        height: 2rem;
        padding-right: 450px;
    }
    .btn-insc-nav{
        padding: 7px;
        font-size: 15px;
    }

    /*main*/

    .img_cont{
        height: 520px;
    }

     .img_son{
        width: 70%;
        height: 30%;
        left: 120px;
        top: 120px;
    }

}

@media (min-width: 900px){
    .logo{
        height: 2rem;
        padding-right: 450px;
    }
    .btn-insc-nav{
        padding: 7px;
        font-size: 15px;
    }

    /*main*/

    .img_cont{
        height: 550px;
    }

     .img_son{
        width: 60%;
        height: 30%;
        left: 180px;
        top: 120px;
    }
}

@media (min-width: 1000px){
    .logo{
        height: 2.5rem;
        padding-right: 520px;
    }
    .btn-insc-nav{
        padding: 5px;
        font-size: 12px;
    }

    /*main*/

    .img_cont{
        height: 550px;
    }

     .img_son{
        width: 70%;
        height: 65%;
        left: 170px;
        top: 110px;
    }
}

@media (min-width:1024px) and (min-height:1366px){
    /*main*/

    .img_cont{
        height: 850px;
    }

     .img_son{
        width: 60%;
        height: 40%;
        left: 220px;
        top: 110px;
    }
}

@media (min-width: 1280px){
    .logo{
        height: 2.5rem;
        padding-right: 720px;
    }
    .btn-insc-nav{
        padding: 5px;
        font-size: 12px;
    }

    /*main*/

    .img_cont{
        height: 750px;
    }

     .img_son{
        width: 70%;
        height: 65%;
        left: 200px;
        top: 110px;
    }
}

/* Ocultar el menú hamburguesa en pantallas más grandes */
@media (min-width: 1339px) {
    .logo{
        height: 2.5rem;
        padding-right: 0px;
    }
    .menu-ham{
        display: none;
    }
    .btn-insc-nav{
        padding: 7px;
        font-size: 15px;
        margin-right: 20px;
    }
    .divisor-nav{
        padding-left: 25px;
    }

    .img_cont{
        height: 550px;
    }

    .img_son{
        width: 50%;
        height: 55%;
        left: 400px;
        top: 110px;
    }

}

@media (min-width:1600px){
    /*main*/

    .img_cont{
        height: 950px;
    }

     .img_son{
        width: 50%;
        height: 55%;
        left: 470px;
        top: 110px;
    }
}

/* Mostrar el menú hamburguesa y ocultar los enlaces del navbar cuando se active */
@media (max-width: 1340px) {
    #navbar-links {
        display: none; /* Oculta los enlaces por defecto */
    }
    .navlinks-resp{
        display: none;
    }
}


@media (max-width: 767px){


    .h1_mainprod{
        font-size: 30px;
    }

    .prod-img img{
        height: 100%;
        width: 100%;
    }
    
    .prod-txt h3{
        font-size: 10px;
    }

    .prod-txt a{
        font-size: 10px;
    }
    
    .footer-col img{
        display: flex;
        margin-left: 100px;
    }
}

@media (max-width: 600px){


    .h1_mainprod{
        font-size: 20px;
    }

    .bot_reg{
        font-size: 20px;
    }
}

@media (max-width: 493px){

    .bot_reg{
        font-size: 15px;
    }

    .productos{
        display: none;
    }
    .h1_mainprod{
        display: none;
    }
}

/* Efecto de transición */
.icon-transition {
    transition: transform 0.4s ease, color 0.4s ease;
    transform: rotate(360deg) scale(1.1); /* Gira y hace zoom */
}

/* Personalización del color del icono en cada modo */
.icon-sun {
    color: #FF9000; /* Color del ícono de sol */
}

.icon-moon {
    color: #111111; /* Color del ícono de luna */
}


/*dark mode header*/

.dark-mode header nav{
    background-color: rgb(24, 24, 24);
    transition: background-color 0.8s ease, color 0.8s ease;
}

.dark-mode .btn-insc-nav:hover {
    background-color: rgb(24, 24, 24);
    border-color: #FF9000;
    color: #FF9000;
}

.dark-mode .perfil-font{
    color: #121212;
}

.dark-mode .dark-sape li {
    color: #111111;
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* Modo oscuro */
.dark-mode {
    background-color: #121212; /* Fondo oscuro para toda la página */
    color: #ffffff; /* Texto blanco */
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* Estilo del preloader en modo oscuro */
.dark-mode #preloader {
    background-color: #1c1c1c; /* Fondo oscuro para el preloader */
    transition: background-color 0.8s ease, color 0.8s ease;
}

.dark-mode .spinner {
    border-top-color: #FF9000; /* Mantener el color del spinner visible */
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* Estilos de los banners */


.dark-mode .btn-member {
    background: #FF9000; /* Fondo naranja */
    color: white; /* Texto blanco */
    transition: background-color 0.8s ease, color 0.8s ease;
}

.dark-mode .btn-member:hover {
    background: #121212; /* Fondo oscuro en hover */
    color: #FF9000; /* Texto naranja en hover */
    transition: background-color 0.8s ease, color 0.8s ease;
}

.dark-mode .prod-1 {
    background-color: #2222221f; /* Fondo oscuro en los productos */
    color: #ffffff; /* Texto blanco */
    transition: background-color 0.8s ease, color 0.8s ease;
}

.dark-mode .prod-txt h3 {
    color: #ffffff; /* Texto blanco en los títulos de los productos */
    transition: background-color 0.8s ease, color 0.8s ease;
}

.dark-mode .btn-2 {
    background-color: #111111; /* Fondo muy oscuro */
    color: #ffffff; /* Texto blanco */
    transition: background-color 0.8s ease, color 0.8s ease;
}


.dark-mode .video:hover {
    box-shadow: 0px 6px 18px rgba(255, 255, 255, 0.3); /* Sombra blanca al pasar el ratón */
    transition: background-color 0.8s ease, color 0.8s ease;
}


.dark-mode .productos {
    background-color: #121212; /* Fondo oscuro en la sección de productos */
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* Estilos para texto y enlaces en modo oscuro */
.dark-mode .h1_main,
.dark-mode .h1_mainprod {
    color: #ffffff; /* Texto blanco para los encabezados */
    transition: background-color 0.8s ease, color 0.8s ease;
}

.dark-mode .bot_reg {
    background-color: #FF9000; /* Fondo naranja */
    color: white; /* Texto blanco */
    transition: background-color 0.8s ease, color 0.8s ease;
}

.dark-mode .bot_reg:hover {
    background-color: #c07007; /* Fondo oscuro en hover */
    box-shadow: 0px 5px 40px -10px rgba(255, 255, 255, 0.57); /* Sombra blanca al pasar el ratón */
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* Responsive: ajustamos la separación en pantallas chicas */
@media (max-width: 480px) {
    .discord-button {
        right: 80px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}