@charset "utf-8";
html, body {
	width: 100%;
	overflow-x: hidden;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

nav{
	height: 100vh;
	width: 15vw;
	position: fixed;
	top: 0;
	left: 6%;
	padding-top:2%;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 5%;
}
nav a{
	text-decoration: none;
	color: black;
	font-family: 'Montserrat',serif;
	margin-left:33%;
}
nav a.active {
  color: black;
  padding-left: 25px;
  position: relative;
}
nav a.active::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 16px;
	border-top-right-radius:50%;
	border-bottom-right-radius:50%;
  background: black;
}

.seccion {
	width: 100%;
	height: 100vh;
	display:grid;
	grid-template-columns: 25fr 54fr 9fr 5fr 7fr;
	grid-template-rows: 18% 57% 25%;
}
.margen_i{
	grid-row: 1/4;
	grid-column: 1/2;
}
.margen_d{
	grid-row: 1/4;
	grid-column: 5/6;
}
.titulo{
	display: flex;
	flex-direction: column;
	font-size: 7vh;
	font-family: 'Cormorant Infant',serif;
	font-weight: 400;
	grid-column:2/3;
	grid-row:1/2;
	justify-content: flex-end;
}
#formulario{
	margin-top:2vh;
}
form {
	grid-column:2/3;
	grid-row:2/3;
	width: 100%;
	margin:auto;
	padding: 1vw;
	border-radius: 2vw;
}
label {
	display: block;
	margin-top: 15px;
	font-weight: 800;
	font-size: 1.3rem;
	font-family: 'Cormorant Infant', sans-serif;
}
input, textarea, select {
	font-family: 'Cormorant Infant', sans-serif;
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	margin-top: 5px;
	font-size: 1.3rem;
}
textarea {
	height: 20vh;
}
button {
	margin-top: 20px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	background: black;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
}
button:hover {
  background-color: dimgray;
}