@charset "utf-8";
/* CSS Document */
html{
	
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
	
}

body{
background-color:#FFE2EE;
	width: 80%;
	margin:auto;
	padding: 30px;
}

h1{
  background-color:#FFD9E7;
  margin: auto;
  width: 95%;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 5rem;
  font-style: normal;
  color:#FFFFFF;
}

h2{
  margin: auto;
  width: 90%;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 4rem;
  font-style: normal;
  color:#FFFFFF;
}

h3{
  margin: auto;
  width: 95%;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 3rem;
  font-style: normal;
  color:#990013
	  
}
h4{
	color:#E1F9FF;;
	font-weight: 600;
	
}

header{
background-color:#FFFEE5;
	width: 90%;
	margin:auto;
	padding: 30px;
	display: flex;
}

.logo{
	width: 20%;
}
.menu{
	width: 80%;
}

nav{
	height: 60px;
	text-align:center;
}

nav ul{
	list-style:none;
	display:inline-block;
	margin: 0;
	padding: 0;
}

nav ul li{
	
	float:left;
	margin: 16px;
	border-radius: 10px;
}
	
nav ul li a{

	display: block;
	padding:  18px;
	background-color:#E1F9FF;
	color: #FF9CCE;
	font-weight: bold;
	text-decoration: none;
	border-radius: 10px;
}


nav ul li a:hover{
	background-color:#FFF3F9;
	color: #ff9cce;
}

.s1{
	height: 40vh;	
}

.img-header{
	background:url("imagenes/baner.jpeg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-color:#FFFFFF;
	background-blend-mode: multiply;
	width: 90%;
	height: 100vh;
	
}

.s2{
	width:auto;
	margin: 50px;
	display: flex;
	
}

.contenido_cat{
	background-color:#CDE8FF;
	width: 30%;
	margin:10px;
	padding: 20px;
	border-radius: 10px 0px 30px 0px;
	font-size: 40px;
	font-weight: 300;
	color:#FFF6F6;
	text-align: center;
}

.galeria{
	width: 100%;
}

.contenidogaleria{
	width: 100%;
	margin: 30px auto;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-template-rows: repeat(3,220px);
	grid-gap: 10px;
}
 
.contenidogaleria .img-gal img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	border-radius: 10px;
}

.modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.7);
	z-index: 999999;
	cursor: pointer;
	display: none;
	
}

.modal #imgmodal{
	width: 75%;
	margin: 50px auto;
	height: 75%;
	display: block;
	object-fit: cover;
	cursor: auto;
	
}

.modal #caption{
	text-align: center;
	color: #ff9cce;
	font-size: 25px;
	font-weight: normal;
	cursor: auto;
	text-transform: uppercase;

}

.modal #cerrarmodal{
	position: absolute;
	right: 30px;
	top: 10;
	color: #fff;
	font-size: 30px;
	transition: 200ms;
	
}

.formulario{
	
	width: 60%;
	display:block;
	margin: auto;
	background: #FFFEE5;
	padding: 40px;
	
}

Input{
	
	width: 100%;
	margin:10px;
}
.jejeje{
background-color: #1B2D00;
border-radius:15px;	
 max-width: 100%;
    height: 40%;
    box-shadow: 0 8px 8px rgba(0.2,0.2,0.2,0.2);
	width: 60%;	
	margin: auto;
	 }
.producto{ background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(255, 105, 180, 0.2); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;}

.producto:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 16px rgba(255, 105, 180, 0.3);
	
}


	