/**
 * @copyright Levana Bonilla
 * @author Nucliux Solutions (edoardo@nucliux.mx)
 * @version 1.0.0 (Noviembre 2024)
 * @since 1.0.0
 */
 
/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css";
@import "footer.css";
@import "inicio.css";
@import "nosotros.css";
@import "categorias.css";
@import "banner.css";
@import "contacto.css";
@import "tienda.css";

@import "fontawesome/css/all.min.css";

/*Tipografías*/
@font-face{
    font-family: "Bebas Neue";
    font-weight: 400;
    src: url("fonts/BebasNeue-Regular.otf");
}

@font-face{
    font-family: "Bebas Neue";
    font-weight: 700;
    src: url("fonts/BebasNeue-Bold.otf");
}

@font-face{
    font-family: "Monserrat";
    font-weight: 300;
    src: url("fonts/Montserrat-Light.ttf");
}

@font-face{
    font-family: "Monserrat";
    font-weight: 400;
    src: url("fonts/Montserrat-Regular.ttf");
}

/*Página*/
html,body{
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    color: #1A1522;
    font-family: 'Monserrat', sans-serif;
    font-weight: 400;
    font-size: 1vw;
    line-height: 1.5vw;
}

h1{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 700;
    font-size: 2vw;
    line-height: 2.5vw;
    letter-spacing: 0.2vw;
}

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
    html,body{
        font-size: 2vw;
        line-height: 2.5vw;
    }

    h1{
        font-size: 3vw;
        line-height: 3.5vw;
    } 
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9){
    html,body{
        font-size: 3.5vw;
        line-height: 4vw;
    }

    h1{
        font-size: 4.5vw;
        line-height: 5vw;
    } 
}
