/**
 * @copyright Ferromat
 * @author Colectivo 4 Caminos (edoardo@nucliux.mx)
 * @version 1.2.0 (Mayo 2024)
 * @since 1.0.0
 */

/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css";
@import "footer.css?v=1.1.5";
@import "inicio.css?v=1.2.0";
@import "categoria.css?v=1.1.4";
@import "modal.css";

/*Tipografías*/
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

/*Tipografías*/
@font-face{
	src: url("fonts/SairaExpanded-Semibold.ttf");
	font-family: "Saira Expanded";
	font-weight: 600;
}

/*Página*/
html,body{
    background-color: white;
	width: 100%;
	height: 100%;
	color: #747474;
	font-family: 'Saira', sans-serif;
	font-weight: 400;
	font-size: 1.2vw;
	line-height: 1.7vw;
}

h1{
	color: #0A70F2;
	font-family: 'Saira Expanded', sans-serif;
	font-weight: 600;
	font-size: 2vw;
	line-height: 2.5vw;
}

h2{
	color: #464646;
	font-family: 'Saira Expanded', sans-serif;
	font-weight: 600;
	font-size: 1.5vw;
	line-height: 2vw;
}

h3{
	font-weight: 700;
}

.whatsapp img{
	position: fixed;
	bottom: 1vh;
	right: 1vw;
	width: auto;
	height: 8vh;
	object-fit: contain;

	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.whatsapp img:hover{
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
}

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

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

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

	.whatsapp img{
		right: 2vw;
		height: 10vh;
	}
}

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

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

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