/**** Reset ***/
html {
	scroll-behavior: smooth;
}

body,
html,
div,
blockquote,
img,
label,
p,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
ul,
ol,
li,
dl,
dt,
dd,
form,
a,
fieldset,
input,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
}

/*
==============================================
Variables CSS
==============================================
*/

:root {
	--brand-navy: #0B3350;
	--brand-navy-2: #14243E;
	--brand-gold: #F7B507;
	--brand-olive: #A6844C;
	--brand-alert: #B61A05;
	--muted: #D9D9D9;

	--glass-bg: rgba(255, 255, 255, 0.08);
	--glass-border: rgba(255, 255, 255, 0.12);
	--glass-accent: rgba(255, 255, 255, 0.06);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
}

/****  Fin Reset ***/
body {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-style: normal;
	color: var(--color-texto);
	font-size: 20px;

}

img {
	max-width: 100%;
}


small {
	font-size: 8px;
}

.spinner {
	position: fixed;
	z-index: 99999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 15.7px;
	height: 15.7px;
	display: none;
}

.spinner div {
	animation: spinner-4t3wzl 1.875s infinite backwards;
	background-color: #ecbd39;
	border-radius: 50%;
	height: 100%;
	position: absolute;
	width: 100%;
}

.spinner div:nth-child(1) {
	animation-delay: 0.15s;
	background-color: rgba(236, 189, 57, 0.9);
}

.spinner div:nth-child(2) {
	animation-delay: 0.3s;
	background-color: rgba(236, 189, 57, 0.8);
}

.spinner div:nth-child(3) {
	animation-delay: 0.45s;
	background-color: rgba(236, 189, 57, 0.7);
}

.spinner div:nth-child(4) {
	animation-delay: 0.6s;
	background-color: rgba(236, 189, 57, 0.6);
}

.spinner div:nth-child(5) {
	animation-delay: 0.75s;
	background-color: rgba(236, 189, 57, 0.5);
}

@keyframes spinner-4t3wzl {
	0% {
		transform: rotate(0deg) translateY(-200%);
	}

	60%,
	100% {
		transform: rotate(360deg) translateY(-200%);
	}
}

.titleStyle {
	font-size: 45px;
	font-weight: bold;
	font-family: 'Poppins';

	& span {
		font-weight: 500;
		font-size: 30px;
	}

	& span.woowTitleSpanGrande {
		font-size: 65px;
		letter-spacing: 0px;
		font-weight: 800;
	}

	& span.woowTitleSpanborder {
		-webkit-text-fill-color: transparent;
		-webkit-text-stroke: 3px var(--color-blanco);
	}
}

.subTittleStyle {
	font-size: 25px;
	font-weight: 500;

	& span {
		font-weight: bold;
		font-size: 35px;
	}
}


.texto-resaltado {
	font-size: 23px;
}

.titleStyle-blog {
	color: var(--color-negro);
	text-align: center;
	font-size: 50px;
	font-weight: bold;
	font-family: 'Times New Roman', Times, serif;

	&:hover {
		color: var(--color-rojo);
		text-decoration: none;

	}
}

.linkDecoration {
	text-decoration: none;

	&:hover {
		text-decoration: none;
	}
}

.br-minimo {
	border-radius: 5px;
}

.br-pequeño {
	border-radius: 18px;
}

.br-mediano {
	border-radius: 50px 50px 50px 50px / 50px 50px 50px 50px;
}

.br-lf-mediano {
	border-radius: 0px 50px 50px 0px / 50px 50px 50px 50px;
}

.br-redondo {
	border-radius: 50%;
}

.span-cta {
	font-size: 20px;
	font-weight: bold;
}

.blanco {
	color: var(--color-blanco) !important;
}

.negro {
	color: var(--color-negro) !important;
}

.rojo {
	color: var(--color-rojo) !important;
}

.verde {
	color: var(--color-verde) !important;
}

.verde-oscuro {
	color: var(--color-verde-oscuro) !important;
}

.amarillo {
	color: var(--color-amarillo) !important;
}

.gris {
	color: var(--color-gris) !important;
}

.bg-amarillo {
	background-color: var(--color-amarillo) !important;
}

.bg-gris {
	background-color: var(--color-gris) !important;
}

.bg-gris-claro {
	background-color: var(--color-gris-claro) !important;
}

.rojo-oscuro {
	color: var(--color-rojo-oscuro) !important;
}

.bg-beige {
	background-color: var(--color-beige);
}

.bg-variable {
	background-color: var(--color-variable);
}

.bg-verde {
	background-color: var(--color-verde);
}

.bg-rojo {
	background-color: var(--color-rojo);
}

.bg-rojo-oscuro {
	background-color: var(--color-rojo-oscuro);
}

.bg-verde-oscuro {
	background-color: var(--color-verde-oscuro);
}

.bg-naranja {
	background-color: var(--color-naranja);
}

.bg-naranja-oscuro {
	background-color: var(--color-naranja-oscuro);
}

.bg-marron {
	background-color: var(--color-marron);
}

.bg-beige-gradient-verde {
	background: var(--color-verde);
	background: linear-gradient(0deg, var(--color-verde) 50%, var(--color-beige) 60%);
}

.bg-verde-gradient-blanco {
	background: var(--color-verde);
	background: linear-gradient(0deg, var(--color-blanco) -0%, var(--color-verde) 20%);
}

.bg-beige-gradient-blanco {
	background: var(--color-beige);
	background: linear-gradient(0deg, var(--color-beige) 40%, var(--color-blanco) 60%);

}

.bg-verde-gradient-transparente {
	background: linear-gradient(180deg, rgba(150, 207, 118, 0) 0%, rgba(150, 207, 118, 0.28) 5%, rgba(251, 251, 251, 1) 20%, rgba(255, 255, 255, 1) 100%);
}

.woow-dropshadow {
	-webkit-box-shadow: 0px 0px 9px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 9px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 9px 3px rgba(0, 0, 0, 0.1);
}

.woowbl-amarillo::after {
	content: '';
	position: absolute;
	top: 48%;
	left: 8%;
	width: 3px;
	height: 47%;
	background: var(--color-amarillo);
}

.f12 {
	font-size: 12px;
}

.f18 {
	font-size: 18px;
}

.f20 {
	font-size: 20px;
}

.f25 {
	font-size: 25px;
}

.f35 {
	font-size: 35px;
}

.f45 {
	font-size: 45px;
}

.f55 {
	font-size: 55px;
}

.f65 {
	font-size: 65px;
}

.f75 {
	font-size: 75px;
}

.fbold {
	font-weight: bold;
}

.fw-800 {
	font-weight: 800;
}

.br-bottom {
	border-radius: 0 0 25px 25px;
}

.br-25 {
	border-radius: 25px;
}

.woow-PAbsolute {
	position: absolute;
}

.woow-bottom-0 {
	bottom: 0;
}

.woow-position-bottom--3 {
	bottom: -3%;
}

.woow-top-0 {
	top: 0;
}

.woow-left-0 {
	left: 0;
}

.woow-position-left-5 {
	left: 5%;
}

.woow-left--25 {
	left: -25%;
}

.woow-right-0 {
	right: 0;
}

.maxw-none {
	max-width: 125%;
}

.btnCTA {
	font-weight: bold;
	color: var(--color-blanco);
	background-color: var(--color-amarillo);
	transition: all ease 0.3s;
	padding: 6px;
	padding-left: 12px;
	padding-right: 12px;

	&:hover {
		transform: scale(1.1);
		color: var(--color-blanco);
	}
}

.btnCTA-secundario {
	font-weight: bold;
	color: var(--color-amarillo);
	background-color: transparent;
	border: solid 2px var(--color-amarillo);
	transition: all ease 0.3s;
	padding: 6px;
	padding-left: 12px;
	padding-right: 12px;
	border-radius: 25px;

	&:hover {
		transform: scale(1.1);
		background-color: var(--color-amarillo);
		color: var(--color-blanco);
	}
}

.btnAction {
	color: var(--color-blanco);
	font-weight: bold;
	border-radius: 7px;
	padding: 7px 20px;
	text-decoration: none;
	background-color: var(--color-naranja);
	transition: 0.4s ease all;
	display: inline-block;

	&:hover {
		color: var(--color-blanco);
		background-color: var(--color-naranja-oscuro);
		padding: 7px 20px;
		text-decoration: none;
	}

}

.btnAction-verde {
	color: var(--color-blanco);
	font-weight: bold;
	border-radius: 15px;
	padding: 7px 25px;
	text-decoration: none;
	background-color: var(--color-verde-oscuro);
	transition: 0.4s ease all;
	display: inline-block;

	&:hover {
		background-color: var(--color-verde);
		text-decoration: none;
	}

}

.btnAction-rojo-oscuro {
	color: var(--color-rojo-oscuro);
	font-weight: bold;
	border-radius: 25px;
	padding: 7px 25px;
	text-decoration: none;
	background-color: #FFF;
	border: solid 2px var(--color-rojo-oscuro);
	transition: 0.4s ease all;
	display: inline-block;

	&:hover {
		color: var(--color-blanco);
		background-color: var(--color-rojo-oscuro);
		text-decoration: none;
	}

}

.textura {
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.woow-h-200 {
	height: 280px;
}

/* add this to your :root variables */
.checkbox {
	--duration: 0.3s;
	--ease: ease-in-out;
}

/* hide checkbox */
.checkbox input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}

.checkbox label {
	align-items: center;
	cursor: pointer;
	display: flex;
}

.checkbox label span {
	margin-left: 8px;
}

.checkbox svg {
	height: 20px;
	width: 20px;
}

/* svg rectangle property */
.checkbox svg>rect {
	fill: var(--color-blanco);
	stroke: var(--color-verde-oscuro);
	/* responsive values */
	stroke-dasharray: 400%;
	stroke-dashoffset: 400%;
	transition: var(--duration) stroke-dashoffset var(--ease);
}

/* svg check property */
.checkbox svg path {
	stroke: var(--color-verde-oscuro);
	/* responsive values */
	stroke-dasharray: 100%;
	stroke-dashoffset: 100%;
	transition: var(--duration) stroke-dashoffset var(--ease);
}

.checkbox input[type="checkbox"]:checked+label svg>rect,
.checkbox input[type="checkbox"]:checked+label svg path {
	stroke-dashoffset: 0;
}


/*Alertas Ajax*/
#alertLoad {
	position: fixed;
	bottom: 8px;
	right: 6px;
	background: #27ae60;
	border: 2px solid #27ae60;
	z-index: 9999;
	padding: 2px 8px;
	border-radius: 3px;
	border: 2px solid #209143;
	display: none;
}

#alertLoad span {
	color: #FFF;
	font-size: 21px;
	display: inline-block;
	float: left;
	margin-top: 13px;
}

#alertLoad img {
	width: 48px;
}

.alertFail,
.alertOk {
	display: none;
	position: fixed;
	bottom: 15px;
	width: 80%;
	left: 0px;
	right: 0px;
	margin: auto;
	background: #c0392b;
	z-index: 99999999;
	padding: 2px 8px;
	border-radius: 3px;
	padding: 11px;
	border: 1px solid rgb(119, 0, 0);
}

.alertFail {
	visibility: visible;
}

.alertOk {
	background: #27AE60;
	border: 1px solid #3B694F;
}

.alertFail span,
.alertOk span {
	color: #FFF;
	font-size: 21px;
	display: block;
	text-align: center;
}

.woowRequireFail {
	border: 1px solid #D60000 !important;
	box-shadow: inset 0px 0px 9px -3px #FF0303 !important;
	-webkit-box-shadow: inset 0px 0px 9px -3px #FF0303 !important;
	-moz-box-shadow: inset 0px 0px 9px -3px #FF0303 !important;
	-ms-box-shadow: inset 0px 0px 9px -3px #FF0303 !important;
	-o-box-shadow: inset 0px 0px 9px -3px #FF0303 !important;
}

.woowNavBreadcrumb {
	overflow: auto;
	margin: 0px;
	margin-bottom: 15px;
	padding: 2px 0px;
}

.woowNavBreadcrumb ol li {
	float: left;
	list-style: none;
}

.woowNavBreadcrumb ol li:after {
	content: '❯';
	padding: 0px 8px;
	color: var(--color-rojo);
	font-weight: 600;
}

.bl-blanco {
	border-left: solid 2px var(--color-blanco);
}

.woowNavBreadcrumb ol li:last-child:after {
	content: '';
	display: none;
}

.woowNavBreadcrumb ol li a span {
	font-size: 14px;
	color: var(--color-negro);
}

.woowNavBreadcrumb ol li a span:hover {
	color: var(--color-rojo);
	text-decoration: none;
	transform: scale(1.1);
}

.woowNavBreadcrumb ol li b {
	opacity: 0;
	position: absolute;
}


.woow-bg-textura-verde {
	background: url(../images/landings/fuerte-ventura/bg-banner.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

.woow-bg-tex-top {
	background-position: top center;
}

.woow-bg-tex-bottom {
	background-position: bottom center;
}


.woow-img-patron-verde {

	width: 14%;
	height: 21%;
	position: absolute;
	top: -1%;
	right: 10%;
	z-index: -1;
}

/* ANIMACIONES */
.bounce {
	animation: bounce 2s ease infinite;
}

@keyframes bounce {
	70% {
		transform: translateY(0%);
	}

	80% {
		transform: translateY(-15%);
	}

	90% {
		transform: translateY(0%);
	}

	95% {
		transform: translateY(-7%);
	}

	97% {
		transform: translateY(0%);
	}

	99% {
		transform: translateY(-3%);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes border-transform {

	0%,
	100% {
		border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
	}

	14% {
		border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
	}

	28% {
		border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
	}

	42% {
		border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
	}

	56% {
		border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
	}

	70% {
		border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
	}

	84% {
		border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
	}
}

/* BASE STYLES */
.hero {
	position: relative;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: bottom center;
	z-index: -1;
}


.body-section__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: top center;
	z-index: -1;
}

.hero__overlay,
.body-section__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--overlay);
	z-index: 0;
}

.hero__inner,
.body-section__inner {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 100px;
}

/* TYPOGRAPHY */
.hero__pretitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	letter-spacing: 0.2em;
	font-size: 1.4rem;
	color: white;
	text-transform: uppercase;
	margin-bottom: 10rem;
}

.body-section__title {
	font-family: 'Patung', cursive;
	font-size: clamp(8rem, 25vw, 25rem);
	color: white;
	line-height: 0.9;
	position: absolute;
	top: -30%;
	left: 0;
	letter-spacing: 1px;
	font-weight: 400;
}

.body-section__subtitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	letter-spacing: 4px;
	font-size: clamp(1.5rem, 3vw, 80px);
	color: white;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.body-section__desc,
.body-section__additional {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(1rem, 1.5rem, 20px);
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 1px;
	line-height: 1;
}

.body-section__additional {
	font-size: clamp(1rem, 1.5rem, 22px);

}

/* CTA SECTION */
.body-section__cta-wrap {
	display: flex;
	align-items: center;
}

.body-section__scroll-indicator {
	margin-right: 1.5rem;
	color: white;
	animation: bounce 2s infinite;
	font-size: 60px;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-15px);
	}

	60% {
		transform: translateY(-7px);
	}
}

/* Reset pequeño para el template */
#formularioContacto {
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding: 6rem 0;
	box-sizing: border-box;
	background: radial-gradient(1200px 600px at 10% 20%, rgba(20, 36, 62, 0.18), transparent 5%),
		radial-gradient(800px 400px at 90% 80%, rgba(6, 24, 45, 0.14), transparent 10%),
		linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
	color: #fff;
}

/* Centrado del contenido */
#formularioContacto .container {
	max-width: 860px;
	margin: 0 auto;
}

/* Logo centrado */
.landing-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.landing-logo img {
	width: 60%;
	height: auto;
	filter: drop-shadow(0 6px 18px rgba(10, 20, 40, 0.45));
}

/* Título */
#formularioContacto .f20 {
	font-family: 'League Spartan', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	font-weight: 700;
	letter-spacing: -0.5px;
	color: rgba(255, 255, 255, 0.95);
}

/* Card de vidrio */
.form-glass {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid var(--glass-border);
	border-radius: 18px;
	padding: 28px;
	backdrop-filter: blur(10px) saturate(1.05);
	-webkit-backdrop-filter: blur(10px) saturate(1.05);
	box-shadow: 0 8px 30px rgba(3, 10, 25, 0.45);
}

/* Form controls */
.form-control {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	padding: 14px 16px;
	border-radius: 12px;
	box-shadow: inset 0 -6px 18px rgba(2, 6, 12, 0.12);
	transition: all .18s ease;
	width: 100%;
	box-sizing: border-box;
	outline: none;
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(6, 20, 40, 0.45), inset 0 -6px 18px rgba(2, 6, 12, 0.12);
	border-color: rgba(247, 181, 7, 0.95);
}

/* Checkbox line */
.form-check-input {
	width: 18px;
	height: 18px;
	margin-right: 10px;
	accent-color: var(--brand-gold);
}

/* Botón descargar */
.btn-enviar-form {
	--btn-h: 50px;
	height: var(--btn-h);
	min-width: 240px;
	padding: 0 22px;
	border-radius: 14px;
	font-weight: 700;
	letter-spacing: 0.6px;
	background: linear-gradient(90deg, rgba(247, 181, 7, 0.95), rgba(166, 132, 76, 0.95));
	border: none;
	color: #062033;
	box-shadow: 0 10px 30px rgba(6, 20, 40, 0.4);
	transition: transform .12s ease, opacity .12s ease;
	cursor: pointer;
}

.btn-enviar-form:active {
	transform: translateY(1px) scale(.995);
}

/* Disabled state */
.btn-enviar-form[disabled] {
	opacity: 0.45;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

/* Layout responsive */
@media (max-width: 768px) {
	.landing-logo img {
		max-width: 180px;
	}

	#formularioContacto {
		padding: 3.5rem 0;
	}

	.btn-enviar-form {
		min-width: 100%;
	}
}
