/** fade-in */
.fade-in {
	-webkit-animation: fade-in 1s ease-in both;
	animation: fade-in 1s ease-in both;
}
@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

h1 {
	margin-top: 1rem;
	font-size: 2.25rem;
	line-height: 2.75rem;
	font-weight: 700;
	@media screen and (max-width: 1040px) {
		font-size: 1.5rem;
		line-height: 1.87rem;
	}
}
h2 {
	font-size: 1.5rem;
	font-weight: 700;
}
h3 {
	font-size: 1.2rem;
	line-height: 1.57rem;
	font-weight: 500;
	@media screen and (max-width: 1040px) {
		font-size: 1.25rem;
		line-height: 1.5rem;
	}
}

/**Estilos generales del BODY y barra NAV lateral en laptop */
body {
	width: 100dvw;
	min-height: 100vh;
	display: grid;
	background-color: var(--secundario);
	grid-template-columns: 1fr 4fr;
	@media screen and (max-width: 1040px) {
		grid-template-columns: 1fr;
		padding-top: 2.6rem;
		padding-bottom: 20dvh;
	}

	/** MENÚ MÓVIL */
	.menu-mobile {
		width: 100%;
		padding: 0.2rem 1rem;
		background-color: var(--secundario);
		color: var(--blanco);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 3;
		display: none;
		@media screen and (max-width: 1040px) {
			display: flex;
			align-items: center;
			justify-content: center;
			justify-content: space-between;
		}
		& h1 {
			color: var(--blanco);
			font-size: 1.1rem;
			font-weight: 400;
			margin: 0;
		}
		& i {
			font-size: 1.8rem;
			font-weight: bold;
			cursor: pointer;
			padding-left: 1rem;
		}
		& i:first-child {
			font-size: 1.5rem;
		}
		.menu-icons {
			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;
		}
	}

	/** Barra NAV en laptop */
	.aside-menu-producto {
		background-color: var(--secundario);
		color: var(--blanco);
		padding: 1rem;
		display: flex;
		flex-direction: column;
		position: sticky;
		top: 0;
		height: 100vh;
		/** Desaparece en móvil */
		@media screen and (max-width: 1040px) {
			position: fixed;
			left: 0;
			z-index: 3;
			width: 80dvw;
			box-shadow: 95px 95px 95px #fff;
			transform: translateX(-100%);
			opacity: 0;
			visibility: hidden;
			transition: var(--transition);
		}

		& nav {
			overflow-y: auto;
			padding: 1rem 0 1rem 0.5rem;
			margin-bottom: 1rem;
			border: 1px solid var(--blanco);
			border-radius: var(--border-radius);
			box-shadow: 5px 5px 5px #fff;
			& p {
				font-size: 1rem;
				font-weight: 500;
				padding: 0.5rem;
				cursor: pointer;
				.bi {
					margin-right: 0.5rem;
					font-size: 1.2rem;
				}
			}
			.clicked {
				background-color: var(--blanco);
				color: var(--secundario);
				border-radius: 10px 0 0 10px;
				transition: all 1s ease;
			}
			.copy {
				font-size: 0.9rem;
				color: lightgrey;
				margin: 2rem 0;
				&:hover {
					color: lightgrey;
					font-size: 0.9rem;
					cursor: default;
				}
			}
		}
	}
	/* * Mostrar el aside cuando se hace click en el menu-mobile */
	.show-aside {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		transition: var(--transition);
	}

	.producto-aside:hover i {
		font-size: 1.1rem;
	}
	hr {
		border: 0.2px solid var(--blanco);
		width: 90%;
		margin: 1rem 0;
	}
	/* Clase active que se añade desde javascript */
	.active {
		background-color: var(--blanco);
		color: var(--primario);
		border-top-left-radius: var(--border-radius);
		border-bottom-left-radius: var(--border-radius);
	}
	.active:hover {
		color: var(--primario);
	}
	/** Fin estilos generales del BODY y barra NAV lateral en laptop*/

	/** PRODUCTOS - Estilos generales y contenedor Header con el ratio de google */
	.article {
		display: flex;
		flex-flow: column wrap;
		/** CONTENEDOR PRinCIPAL / PRODUCTO */
		.main {
			margin: 1rem;
			padding: 1rem;
			background-color: var(--blanco);
			border-radius: 2rem;
			display: flex;
			flex-direction: column;
			@media screen and (max-width: 1040px) {
				width: 95%;
				margin: 0 auto;
				padding: 0 1rem;
			}
			header {
				.originals {
					display: flex;
					gap: 1rem;
					@media screen and (max-width: 1040px) {
						margin-top: 1rem;
					}
					& img {
						height: 1rem;
						width: auto;
					}
					& p {
						font-size: 0.8rem;
						font-weight: bold;
						color: #555555;
					}
				}

				.div-ratio {
					display: flex;
					align-items: center;
					margin-top: 1.5rem;
					@media screen and (max-width: 1040px) {
						margin-top: 0.2rem;
					}
					.stars {
						width: 9rem;
						@media screen and (max-width: 1040px) {
							width: 5rem;
						}
					}
					.ratio {
						margin: 0 1rem;
						font-weight: 500;
					}
					& a {
						text-decoration: underline;
						font-size: 0.8rem;
					}
				}

				/* ************************************** */
				/* * GRID DE IMÁGENES Para pantalla grande*/
				/* ************************************** */
				.grid {
					width: 100%;
					height: 50dvh;
					display: grid;
					grid-template-columns: 2fr 0.7fr 1.3fr;
					gap: 0.5rem;
					margin: 1.5rem 0;
					position: relative;
					@media screen and (max-width: 1040px) {
						display: none;
					}
					& button {
						position: absolute;
						top: 1rem;
						left: 1rem;
						z-index: 2;
						color: var(--blanco);
						background-color: var(--secundario);
						align-items: center;
						border-radius: 4px;
						display: inline-flex;
						font-size: 0.875rem;
						font-weight: 500;
						line-height: 1.125rem;
						padding: 3px 8px;
						cursor: pointer;
						& i {
							margin-right: 0.5rem;
						}
					}
					& div {
						height: 100%;
						width: 100%;
						display: flex;
						justify-content: center;
						align-items: center;
						border-radius: var(--border-radius);
						overflow: hidden;
						box-shadow: var(--sombra);
						& img {
							width: 100%;
							height: 100%;
							max-height: 100%;
							object-fit: cover;
							border-radius: var(--border-radius);
							transition: 0.5s all ease-in-out;
							cursor: pointer;
							&:hover {
								transform: scale(1.3);
								filter: brightness(1.4);
							}
						}
					}
					.horizontal {
						display: flex;
						flex-direction: column;
						gap: 0.5rem;
						& img {
							height: 25dvh;
						}
					}
				}
			}

			/* ******************************************* */
			/** CARROUSEL DE IMAGENES PARA PANTALLA MÓVIL */
			/* ****************************************** */
			.carrousel {
				width: 100%;
				border-radius: var(--border-radius);
				margin: 0;
				overflow: hidden;
				display: none;
				@media screen and (max-width: 1040px) {
					display: block;
				}
				& .grande {
					width: 700%;
					height: 45dvh;
					margin-left: 0;
					display: flex;
					justify-content: center;
					align-items: center;
					transition: all 0.5s ease;
					transform: translateX(0);
					.seccion {
						width: 100%;
						height: 100%;
						& img {
							width: 100%;
							height: 100%;
							border-radius: var(--border-radius);
							object-fit: cover;
						}
					}
				}
				.flechas {
					width: 85%;
					display: flex;
					justify-content: space-between;
					align-items: center;
					margin: 0 auto;
					position: absolute;
					top: 30%;
					left: 50%;
					transform: translate(-50%, -30%);
					z-index: 2;
					& i {
						font-size: 1.6rem;
						cursor: pointer;
						color: var(--blanco);
					}
					.bi-arrow-left-circle {
						margin-left: 0.8rem;
					}
				}
			}

			/** DESCRIPCIONES */
			.subtitulo {
				margin-bottom: 1rem;
				@media screen and (max-width: 1040px) {
					font-size: 1.2rem;
				}
			}
			& div {
				margin-top: 0.5em;
				white-space: pre-line;
				.bi {
					font-size: 1.2rem;
					margin-right: 0.5rem;
					font-weight: 500;
					@media screen and (max-width: 1040px) {
						font-size: 1rem;
					}
				}
				& p {
					padding-left: 1.6rem;
				}
			}
			.experiencia {
				.experiencia-cont {
					display: grid;
					grid-template-columns: 1fr 4fr;
					white-space: pre-line;
					@media screen and (max-width: 1040px) {
						grid-template-columns: 1fr;
					}
					& h3 {
						font-size: 1rem;
						padding: 0;
						padding-right: 1rem;
						@media screen and (max-width: 1040px) {
							padding-top: 0.5rem;
						}
					}
					& ul {
						padding-top: 0.2rem;
						padding-left: 1rem;
						& li {
							list-style-type: disc;
						}
					}
					& p {
						font-size: 1rem;
					}
				}
			}
		}

		/** BANER DE PRECIO */
		.cont-descripcion-precio {
			display: grid;
			grid-template-columns: 3fr 1fr;
			gap: 0.5rem;
			@media screen and (max-width: 1040px) {
				grid-template-columns: 1fr;
			}
			& section {
				padding: 1rem 0.5rem 1rem 0;
				border-radius: var(--border-radius);
				box-shadow: var(--sombra);
				& div {
					padding: 0.5rem;
					@media screen and (max-width: 1040px) {
						padding: 0;
					}
				}
			}
		}
		.precio {
			background-color: var(--blanco);
			border-radius: var(--border-radius);
			box-shadow: var(--sombra);
			color: var(--negro);
			padding: 0.5rem;
			z-index: 999;
			.aside-derecho {
				position: sticky;
				top: 0;
			}
			.cont-precio,
			.cont-mapa,
			.cont-share {
				border: 1px solid lightgrey;
				border-radius: var(--border-radius);
				padding: 0.5rem;
				margin-bottom: 1rem;
				.banderita {
					color: var(--blanco);
					background-color: var(--secundario);
					align-items: center;
					border-radius: 1rem;
					display: inline-flex;
					font-size: 0.875rem;
					font-weight: 500;
					line-height: 1.125rem;
					padding: 3px 8px;
				}
				& h2 {
					font-size: 1.2rem;
				}
				& h3 {
					margin: 1rem 0;
					font-size: 1.5rem;
					font-weight: 700;
				}
				& button {
					width: 100%;
					font-size: 1rem;
					font-weight: 700;
					color: var(--blanco);
					background-color: #0071eb;
					padding: 0.8rem 1.5rem;
					margin: 0.5rem 0;
					border-radius: 5rem;
					cursor: pointer;
					&:hover {
						background-color: #0056b3;
					}
				}
				& div {
					display: flex;
					gap: 1rem;
					margin-bottom: 1rem;
					& p {
						font-size: 0.8rem;
					}
					& a {
						font-size: 0.9rem;
						font-weight: 500;
						text-decoration: underline;
						& i {
							margin-right: 0.9rem;
						}
					}
				}
			}
			.cont-precio {
				@media screen and (max-width: 1040px) {
					display: flex;
					flex-direction: column;
					justify-content: center;
					gap: 0;
					background-color: var(--blanco);
					width: 95dvw;
					box-shadow: var(--sombra2);
					border-radius: var(--border-radius);
					position: fixed;
					bottom: 0.5rem;
					left: 50%;
					transform: translate(-50%, 0);
					margin: 0;
					padding: 0.5rem;
					z-index: 999;
					.banderita {
						display: none;
					}
					.ocultar {
						display: none;
					}
					& h3 {
						text-align: center;
						font-size: 1.2rem;
						margin: 0;
						order: 1;
					}
					& button {
						order: 2;
					}
				}
			}
			.cont-mapa {
				width: 100%;
				padding: 0.5rem;
				& div {
					width: 100%;
					height: auto;
					@media screen and (max-width: 1040px) {
						height: 30dvh;
					}
				}
				.img-mapa {
					width: 100%;
					height: auto;
					object-fit: cover;
					border-radius: var(--border-radius);
				}
				.encuentranos {
					text-decoration: underline;
				}
			}
			.cont-share {
				padding: 1rem;
				& div {
					display: flex;
					justify-content: center;
					margin: 0;
					& i {
						font-size: 2.5rem;
						color: var(--secundario);
					}
				}
				& h2 {
					font-size: 1.2rem;
					text-decoration: underline;
					text-align: center;
					cursor: pointer;
				}
			}
		}
	}
}

/* ********************************* */
/** Baner 3 imágenes */
/* ********************************* */
#grid {
	width: 100%;
	height: 10rem;
	margin: 1rem 0;
	transition: 0.5s ease;
	display: grid;
	grid-template-columns: 1fr 0fr 1fr;
	place-items: center;
	border: 5px solid var(--blanco);
	border-radius: var(--border-radius);
	box-shadow: var(--sombra);
	overflow: hidden;
}
.left,
.right,
.middle {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transform-origin: center;
}
.left {
	background-image: url("/images/productos/jet4.webp");
	border-right: 1px solid var(--blanco);
}
.middle {
	font-size: 0rem;
	background-image: url("/images/productos/off12.webp");
}
.right {
	background-image: url("/images/productos/wave1.webp");
	border-left: 1px solid var(--blanco);
}

#grid:hover {
	grid-template-columns: 0fr 1fr 0fr;
}

/* ********************************* */
/* * REVIEWS */
/* ********************************* */
.reviews {
	margin: 0 1rem 1rem;
	padding: 0.5rem;
	border-radius: var(--border-radius);
	background-color: var(--blanco);
	@media screen and (max-width: 1040px) {
		display: none;
	}
}
.reviews-mobile {
	margin: 0 1rem 1rem;
	padding: 0.5rem;
	border-radius: var(--border-radius);
	background-color: var(--blanco);
	display: none;
	@media screen and (max-width: 1040px) {
		display: block;
		width: 95%;
		margin: 1rem auto;
	}
}

/* ********************************** */
/** SECCIÓN DE GOOGLE REVIEWS */
/* ********************************** */
.main_reviews {
	margin: 0.5rem;
	background-color: white;
	box-shadow: var(--sombra);
	border-radius: var(--border-radius);
	display: grid;
	grid-template-columns: 100%;
	justify-content: center;
}
.logo_gr {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.logo_google {
	width: 15dvw;
	margin: 0.5rem auto;
	@media screen and (max-width: 1040px) {
		width: 30dvw;
	}
}

.boton_google {
	background-color: #3074f1;
	padding: 7px 10px;
	margin: 2rem auto;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 1px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 1.2rem;
	&:hover {
		background-color: #0056b3;
	}
}
.boton_google a {
	color: white;
}
.contenedor_reviews {
	margin: 20px auto;
}
.cont_im_rev {
	display: flex;
	justify-content: center;
}
.img_review {
	width: 500px;
	max-width: 100%;
	padding-top: 1.8rem;
	z-index: 0;
	@media screen and (max-width: 1040px) {
		padding-top: 0;
	}
}

/* The dots/bullets/indicators */
.dot5 {
	display: none;
}
/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}
@-webkit-keyframes fade {
	from {
		opacity: 0.4;
	}
	to {
		opacity: 1;
	}
}
@keyframes fade {
	from {
		opacity: 0.4;
	}
	to {
		opacity: 1;
	}
}
@media only screen and (min-width: 1040px) {
	.main_reviews {
		grid-template-columns: 45% 55%;
	}
	.logo_google {
		margin-top: -50px;
	}
}

/* ******************************** */
/** FOOTER */
/* ******************************** */
.footer-activities {
	margin: 0rem 1rem 2rem;
	padding: 0.5rem;
	border-radius: var(--border-radius);
	background-color: var(--blanco);
	@media screen and (max-width: 1040px) {
		width: 95%;
		margin: 0.5rem auto;
	}
}
.footer-cont {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 1rem;
	border-radius: var(--border-radius);
	background-color: var(--blanco);
	box-shadow: var(--sombra);
	@media screen and (max-width: 1040px) {
		width: 95%;
		margin: 0.2rem auto;
	}
	& img {
		width: 5rem;
		margin-bottom: 1rem;
		@media screen and (max-width: 1040px) {
			display: none;
			z-index: 0;
		}
	}
	& h2 {
		font-size: 1.2rem;
		color: var(--primario);
		font-weight: bold;
		margin: 1rem;
		@media screen and (max-width: 1040px) {
			font-size: 1rem;
			margin: 0.3rem;
		}
	}
	.redes {
		display: flex;
		gap: 1rem;
		& i {
			font-size: 1.5rem;
			color: var(--secundario);
			cursor: pointer;
			@media screen and (max-width: 1040px) {
				display: none;
			}
		}
		& img {
			width: 2rem;
			cursor: pointer;
		}
	}
	& p {
		font-size: 0.8rem;
		text-align: center;
		.anio,
		.anio2 {
			font-size: 0.8rem;
		}
		& i {
			color: red;
		}
		& a {
			color: var(--secundario);
			font-size: 0.8rem;
			font-weight: 600;
		}
	}
}

/* ******************************** */
/** TOOLTIPS */
/* ******************************** */
[data-tooltip] {
	position: relative;
}

[data-tooltip]::after {
	content: attr(data-tooltip);
	font-size: 0.7rem;
	font-weight: 600;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--blanco);
	color: var(--negro);
	padding: 0.1rem 0.2rem;
	margin-top: 0.2rem;
	border: 1px solid var(--negro);
	border-radius: 0.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	white-space: nowrap; /* Asegura que el texto del tooltip no se rompa en varias líneas */
	visibility: hidden; /* Oculta el tooltip inicialmente */
}

[data-tooltip]:hover::after {
	opacity: 1;
	visibility: visible; /* Muestra el tooltip al hacer hover */
}

/* **************************************** */
/** LIGHTBOX IMÁGENES */
/* **************************************** */
.light-imagenes {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	z-index: 5;
	visibility: hidden;
	opacity: 0; /* Añadir opacity */
	transition: opacity 0.5s ease; /* Añadir transition */
	.cerrar {
		position: absolute;
		top: 1rem;
		right: 1rem;
		background-color: transparent;
		cursor: pointer;
		z-index: 2;
		&:hover {
			transform: scale(1.1);
		}
		& i {
			font-size: 1.6rem;
			color: var(--blanco);
		}
	}
}
.lightbox-activo {
	visibility: visible;
	opacity: 1; /* Cambiar opacity a 1 */
}

/* *Estilos del Slider */
.item {
	width: 200px;
	height: 250px;
	list-style-type: none;
	position: absolute;
	top: 80%;
	transform: translateY(-80%);
	z-index: 1;
	background-position: center;
	background-size: cover;
	border-radius: 20px;
	box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
	transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
	filter: brightness(1.2);
	opacity: 0; /* Añadir opacity inicial */

	&:nth-child(1),
	&:nth-child(2) {
		left: 5rem;
		top: 5rem;
		width: calc(100% - 10rem);
		height: calc(100% - 10rem);
		transform: none;
		box-shadow: none;
		opacity: 1;
		box-shadow: var(--sombra);
		filter: brightness(1.2);
	}

	&:nth-child(3) {
		left: 50%;
		opacity: 1; /* Cambiar opacity a 1 */
	}

	&:nth-child(4) {
		left: calc(50% + 220px);
		opacity: 1; /* Cambiar opacity a 1 */
	}

	&:nth-child(5) {
		left: calc(50% + 440px);
		opacity: 1; /* Cambiar opacity a 1 */
	}

	&:nth-child(6) {
		left: calc(50% + 660px);
		opacity: 0;
	}
}

.item:nth-of-type(2) .content {
	display: block;
	animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
	0% {
		filter: blur(5px);
		transform: translateY(calc(-50% + 75px));
	}

	100% {
		opacity: 1;
		filter: blur(0);
	}
}

.nav {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	user-select: none;

	.btn {
		font-size: 2.5rem;
		color: var(--blanco);
		margin: 0 0.5rem;
		cursor: pointer;
		border-radius: 60%;
	}
}

@media (width < 650px) {
	.item {
		width: 130px;
		height: 220px;

		&:nth-child(3) {
			left: 50%;
			opacity: 1; /* Cambiar opacity a 1 */
		}

		&:nth-child(4) {
			left: calc(50% + 140px);
			opacity: 1; /* Cambiar opacity a 1 */
		}

		&:nth-child(5) {
			left: calc(50% + 280px);
			opacity: 1; /* Cambiar opacity a 1 */
		}

		&:nth-child(6) {
			left: calc(50% + 420px);
			opacity: 0;
		}
	}
}

/* *************** LLÁMENOS */
.light-politicas {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	z-index: 5;
	display: none;
	white-space: pre-line;
	animation: fadeIn 2s;
	.cerrar {
		position: absolute;
		top: 1rem;
		right: 1rem;
		background-color: transparent;
		cursor: pointer;
		transition: var(--transition);
		animation: fadeIn 3s;
		&:hover {
			transform: scale(1.1);
		}
		& i {
			font-size: 1.6rem;
			color: var(--blanco);
		}
	}
	.llamenos {
		color: var(--blanco);
		width: 80vw;
		max-width: 30rem;
		height: 60vh;
		margin: 10dvh auto 0;
		overflow-y: scroll;
		padding: 2rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		border-radius: var(--border-radius);
		box-shadow: 0 0 4rem rgba(0, 0, 0, 1);
		box-shadow: 1rem 1rem 3rem #111111, -1rem -1rem 3rem #e9e9e9;
		& h2 {
			color: var(--blanco);
		}
		.whatsapp {
			display: inline-block;
			width: 1.3rem;
			height: 1.3rem;
			margin-top: -2rem;
			margin-right: 0.5rem;
		}
		& a {
			padding: 0.5rem;
		}
	}
}
.lightbox-activo {
	display: block;
	--transition: all 0.3s ease-in-out;
}

/* ************************ */
/* * FORMULARIO DE CONTACTO */
/* ************************ */
#light-form {
	z-index: 4;
}
.container {
	color: var(--blanco);
	background-color: transparent;
	width: 60vw;
	height: 80vh;
	margin: 3rem auto;
	overflow-y: scroll;
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: 0 0 4rem rgba(0, 0, 0, 1);
	box-shadow: 1rem 1rem 3rem #111111, -1rem -1rem 3rem #e9e9e9;
	@media screen and (max-width: 875px) {
		width: 95%;
	}
}
.sec_reservas {
	width: 100%;
	flex-basis: 180%;
	margin-right: 30px;
}
.formulario {
	margin-top: 20px;
}
#requerimientos {
	resize: none;
}
input[type="text"],
textarea {
	width: 100%;
	min-width: 100%;
	padding: 6px;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 6px;
	resize: vertical;
}
input[type="email"] {
	width: 100%;
	margin-top: 6px;
	margin-bottom: 6px;
	padding: 6px;
}
input[type="tel"] {
	margin-top: 6px;
	margin-bottom: 6px;
	padding: 6px;
}
input[type="date"],
select {
	margin-top: 6px;
	margin-bottom: 6px;
	padding: 3px;
	color: #555555;
}
.cont_captcha {
	margin: -2rem auto;
}
.submit_button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 0.5rem;
	color: var(--blanco);
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: bold;
	background-color: var(--secundario);
	border: 1px solid white;
	border-radius: var(--border-radius);
}
.submit_button:hover {
	color: var(--secundario);
	background-color: var(--blanco);
	transition: 0.5s;
	border: 1px solid var(--secundario);
}
#legal_form {
	font-size: 8px;
	text-align: left;
	padding: 0;
}
.naranja {
	color: var(--secundario);
}
.naranja2 {
	color: var(--secundario);
	font-size: 8px;
}

/* ******************************* */
/** BOTÓN FLOTANTE WHATSAPP (SOLO MÓVIL) */
/* ******************************* */
.whatsapp-float {
	display: none;

	@media screen and (max-width: 800px) {
		display: flex;
		position: fixed;
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		background-color: #25d366;
		color: white;
		border-radius: 50%;
		justify-content: center;
		align-items: center;
		font-size: 1.6rem;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
		z-index: 1000;
		transition: all 0.3s ease;
		text-decoration: none;

		&:hover {
			background-color: #20ba5a;
			transform: scale(1.1);
			box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
		}

		&:active {
			transform: scale(0.95);
		}

		& i {
			display: flex;
			align-items: center;
			justify-content: center;
		}
	}
}

	.whatsapp-float i {
		font-size: 1.8rem;
	}
