/**
 * @copyright Jabones brisas del golfo
 * @author Cool Kids OC (edoardo@nucliux.mx)
 * @version 1.0.1 (Febrero 2021)
 * @since 1.0.0
 */

/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css";
@import "inicio.css";
@import "nosotros.css";
@import "productos.css";
@import "contacto.css?v=1.0.1";
@import "footer.css";

@import "lightbox.min.css";
@import "animate.min.css";

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

@font-face{
	font-family: "Monotype Corsiva";
	font-weight: normal;
	src: url("fonts/MonotypeCorsiva-Regular.ttf");
}

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

.whatsapp img{
	position: fixed;
	bottom: 1vh;
	left: 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: 2.5vw;
		line-height: 3vw;
	}

	.whatsapp img{
		left: 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: 4vw;
		line-height: 4.5vw;
	}
}
