.cabecera{
	background: #ce7cad url(./img/flores_coleccion.jpg) no-repeat center bottom;
	border-bottom: 10px solid #c5deed;
	-webkit-box-shadow: -1px 7px 5px 0px rgba(0,0,0,0.12);
	-moz-box-shadow: -1px 7px 5px 0px rgba(0,0,0,0.12);
	box-shadow: -1px 7px 5px 0px rgba(0,0,0,0.12);
	width: 100%;
	position: absolute;
	height: 260px;
}

body{
	font-family: 'Quicksand', sans-serif;
	background: url(./img/fondo_2025.png) center;
	background-size: contain;
	font-size: 25px;
	color: #068bbf;
}

.newsletter{
	width: 100%;
	margin: auto;
	max-width: 966px;
	border: 3px solid #007CBA;
	border-radius: 200px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-size: 17px;
	background: #B0DBEF;
	align-items: center;
}

.sobre{
	margin: -3px;
}

.botonnews{
	border: none;
	border-radius: 40px;
	padding: 10px 20px;
	background: #007CBA;
	color: white;
	margin-right: 30px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

.botonnews:hover{
	opacity: .6;
}

.modalnews{
	position: fixed;
	z-index: 200000000;
	background: color(srgb 0 0 0 / 0.6);
	width: 100vw;
	height: 100vh;
	top: 0;
	display: none;
}

.containermodal{
	width: 70vw;
	height: 70vh;
	position: absolute;
	background: #CE7CAD;
	border-radius: 30px;
	padding: 0 40px;
	top: 15vh;
	left: 15vw;
	display: flex;
	gap: 20px;
}

.flex-0{
	flex: 0 1 0%;
	display: flex;
	align-items: end;
}

.flex-0b{
	flex: 0 1 0%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
}

.close{
	cursor: pointer;
	opacity: 1;
	transition: all .3s ease-in-out;
}

.close:hover{
	opacity: .6;
}

.flex-1{
	flex: 1 1 0%;
	color: white;
	font-size: 17px;
}

.formcontent{
	overflow: auto;
}

.text-center{
	text-align: center;
}

.form{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 30px;
	margin: 30px 0;
}

input{
	border-radius: 30px;
	border: 2px solid white;
	width: 100%;
	margin-bottom: 20px;
	padding: 5px 15px;
	transition: all .3s ease-in-out;
	color:  #007CBA;
}

input:focus{
	border: 2px solid #007CBA;
}

input::placeholder { color: #CE7CAD; }

.consent{
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 0 20px;
	
}

.consent input{
	flex: 0 1 0%;
}

.consent span{
	flex: 1 1 0%;
}

.chk-quick{
  width: 22px;
  height: 22px;
  accent-color: #CE7CAD;
}
	
.sending{
	display: none;
}

.enviado{
	display: none;
}

a {
  color: white;
  text-decoration: none;
}

@media (max-width:640px){
	.cabecera{
		height: auto;
	}
	.sobre{
		display: none;
	}
	
	.newsletter{
		flex-direction: column;
		padding: 20px;
		align-items: center;
		text-align: center;
	}
	
	.botonnews{
		margin-right: 0;
	}
	
	.flores{
		display: none;
	}
	
	.containermodal{
		width: 90vw;
		height: 90vh;
		position: absolute;
		background: #CE7CAD;
		border-radius: 10px;
		padding: 0 20px;
		top: 5vh;
		left: 5vw;
		display: flex;
		gap: 20px;
		flex-direction: column-reverse;
	}
	
	.form{
		grid-template-columns: repeat(1, 1fr);
		column-gap: 30px;
	}
	
	.flex-0b{
		align-items: end;
	}
}