/**** 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 {
	--color-gris: #525252;
	--color-rojo-oscuro: #9c3d3c;
	--color-rojo: #ed3237;
	--color-verde: #76A750;
	--color-verde-oscuro: #364F15;
	--color-naranja: #f6a226;
	--color-naranja-oscuro: #ee7d52;
	--color-beige: #f4ede8;
	--color-blanco: #fff;
	--color-marron: #b36251;
	--color-marron-claro: #b36251;
	--color-gris-claro: #EBEDEF;
	--color-variable: #a5b882;
	--color-amarillo: #ecbd39;
	--color-texto: #525252;
	--primary: #1a3861;
	--accent: #c9a75c;
	--light: #f8f9fa;
	--dark: #212529;
	--overlay: linear-gradient(180deg, rgba(26, 56, 97, 0.6) 0%, rgba(26, 56, 97, 0.3) 100%);
	--header-height: 120px;
	--header-height-sticky: 70px;
	--logo-scale: 1.1;
	--logo-scale-sticky: 0.6;
	--transition-base: all 0.35s ease;
	--brown-overlay: #492c048f;
}

.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%;
	}
}

/*
==============================================
Header
==============================================
*/
.navNuevo {
	position: absolute;
	z-index: 999;
	width: 100%;
	min-height: 150px;
	background-image: linear-gradient(0deg, #b367500b 0%, #b3675091 15%, #b36750cc 60%);
}

.navNuevo .navbar-toggler {
	border-color: #fff;
	background-color: var(--color-marron);
}

.navNuevo .navbar-nav {
	text-align: center;
	padding: 0px 20px;
}

.navNuevo .navbar-nav li {
	padding: 0px 12px;
	border-right: solid 1px var(--color-blanco);

	&:last-child {
		border-right: none;
	}
}

.navNuevo .navbar-nav .menu-item a {
	color: var(--color-blanco);
	font-weight: 500;
	font-size: 15px;
	text-transform: uppercase;
}


.navNuevo .navbar-nav .menu-item.current-menu-item a,
.navNuevo .navbar-nav .menu-item a:hover {
	color: var(--color-blanco);
	border-bottom: solid 2px var(--color-blanco);
}

.navbar-collapse.show {
	transition: background-color 0.3s ease-in;
	background: rgb(0, 0, 0);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.639093137254902) 11%, rgba(0, 0, 0, 0.7875525210084033) 26%, rgba(0, 0, 0, 0.4318102240896359) 62%, rgba(0, 0, 0, 0.014443277310924318) 97%);


}

/*
==============================================
Footer
==============================================
*/

.footerMenu ul {
	list-style: none;
}

.footerMenu ul li {
	display: inline-block;
	text-transform: uppercase;
}

.footerMenu ul li.current_page_item a {
	color: var(--color-verde);
}

.footerMenu ul li a {
	color: var(--color-negro);
	padding: 0px 10px;
	font-size: 13px;
	font-weight: 500;
}

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

.footerDatos {
	color: var(--color-negro);
	font-weight: bold;
}

.footerDatos article {
	font-size: 13px;
}

.footerDatos article strong {
	font-size: 16px;
	font-weight: 600;
	display: block;
	padding-bottom: 5px;
}

.footerDatos article .listSimple {
	list-style: none;
}

.footerDatos article .listSimple li {
	display: block;
	padding: 0px 10px 8px;
}

.footerDatos article .listSimple li a {
	color: var(--color-dorado);
	font-size: 15px;
}

.footerDatos article .listSimple li span {
	font-weight: 600;
}

.woow-social-footer {
	& a {
		font-size: 25px;
	}
}

.footerLanding {
	background-image: url(../images/landings/fuerte-ventura/arboles-footer.png);
	background-size: cover;
	background-repeat: repeat-x;
	background-position: bottom center;
}



/* HEADER STYLES */
.site-header {
	height: var(--header-height);
	padding: 1rem 0;
	transition: var(--transition-base);
	z-index: 1000;
	position: absolute;
	/* Posición absoluta sobre el hero */
	top: 0;
	left: 0;
	right: 0;
	background: transparent !important;
	/* Fondo transparente inicial */
}

.site-header.sticky-active {
	position: fixed;
	/* Cambia a fixed al hacer scroll */
	height: var(--header-height-sticky);
	background: rgba(255, 255, 255, 0.06) !important;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-wrap {
	transition: var(--transition-base);
	text-align: center;
	/* Centrar logo */
}

.logo-wrap img {
	transition: transform 0.5s ease;
	transform: scale(var(--logo-scale));
	max-height: 35vh;
}

.sticky-active .logo-wrap img {
	transform: scale(var(--logo-scale-sticky));
}

/* Botón de menú hamburguesa */
.menu-toggler {
	background: transparent;
	border: none;
	padding: 0.5rem;
}

.menu-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	width: 1.5em;
	height: 1.5em;
}

/* Offcanvas menu */
.offcanvas {
	background: rgba(26, 56, 97, 0.95);
	color: white;
}

.offcanvas-header .btn-close {
	filter: invert(1);
}

.offcanvas-body .nav-link {
	color: white;
	font-size: 1.2rem;
	padding: 0.75rem 0;
}


/* 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);
	}
}

.body-section__cta-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	letter-spacing: 0.1em;
	font-size: 1.2rem;
	color: white;
	text-transform: uppercase;
	margin: 0;
}

.body-section__cta-text span {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	display: block;
	margin-top: 0.5rem;
}


/* FEATURES SECTION */
.features-section {
	background-color: var(--brown-overlay);
}

.feature-item {
	text-align: center;
	padding: 1.5rem;
}

.feature-icon {
	color: #fff;

}

.feature-value {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: white;
}

.feature-label {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	color: white;
	text-transform: uppercase;
}

/* GALLERY SECTION */
.gallery-section {
	padding: 5rem 0;
}

.gallery-main img {
	height: 600px;
	width: 100%;
	object-fit: cover;
}

.gallery-secondary img {
	height: 285px;
	width: 100%;
	object-fit: cover;
}

/* GALLERY SECTION */
.gallery-section-2 {
	padding: 5rem 0;
}

.gallery-main-2 img {
	height: 600px;
	width: 100%;
	object-fit: cover;
}

.gallery-secondary-2 img {
	height: 285px;
	width: 100%;
	object-fit: cover;
}

/* FINAL SECTION */
.final-section {
	padding: 5rem 0;
	background-color: #f5f5f5;
	text-align: center;
}

.final-arrow {
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.final-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1.2;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991.98px) {
	.body-section__title {
		font-size: 8rem;
	}

	.hero__inner,
	.body-section__inner {
		padding-bottom: 80px;
	}

	.gallery-main img {
		height: 500px;
	}

	.gallery-secondary img {
		height: 240px;
	}
}

@media (max-width: 767.98px) {
	.body-section__title {
		font-size: 5rem;
		margin-top: 2rem;
		margin-bottom: 2rem;
	}

	.body-section__inner {
		padding-bottom: 60px;
	}

	.body-section__cta-wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.body-section__scroll-indicator {
		margin-right: 0;
		margin-bottom: 1.5rem;
	}

	.gallery-main img {
		height: 400px;
		margin-bottom: 1rem;
	}

	.gallery-secondary img {
		height: 200px;
	}

	.feature-value {
		font-size: 1.8rem;
	}
}

@media (max-width: 575.98px) {
	.body-section__title {
		font-size: 4rem;
	}

	.hero__pretitle {
		font-size: 1rem;
	}

	.body-section__subtitle {
		font-size: 1rem;
	}

	.body-section__desc,
	.body-section__additional {
		font-size: 0.95rem;
	}

	.feature-item {
		padding: 1rem;
	}

	.feature-value {
		font-size: 1.5rem;
	}

	.feature-label {
		font-size: 0.9rem;
	}
}


.casa-section {
	background-color: #393a2c;
	color: var(--casa-light, #fff);
	padding: 4rem 0;
}

.casa-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 2rem;
	text-align: center;
	font-size: 2rem;
	transition: all 0.3s ease;
}

.slide-local-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 1.8rem;
	color: var(--casa-light);
}

.casa-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.casa-desc {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 2rem;
	font-size: 1rem;
}

.info-items {
	margin-bottom: 2rem;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 1.1rem;
}

/* Side tabs */

.side-tab {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	text-align: left;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	will-change: transform;
	position: relative;
	z-index: 1;
}

.side-tab:hover,
.side-tab:focus {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
	outline: none;
	color: #fff;

}

.side-tab.active {
	background: #fff;
	color: #393a2c;
}

/* Tab content */
.tab-content {
	margin-top: 1rem;
}

.tab-pane {
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
}

.tab-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Swiper navigation */
.swiper-casa-next,
.swiper-casa-prev {
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: background 0.3s ease;
}

.swiper-casa-next:hover,
.swiper-casa-prev:hover {
	background: rgba(0, 0, 0, 0.5);
}

.galeriaCasa-next,
.galeriaCasa-prev {
	color: #fff;
}

.swiper-amenities-next,
.swiper-amenities-prev {
	color: #000;
}

/* Responsive: mobile first */
@media (max-width: 767.98px) {
	.side-tabs {
		flex-direction: row;
		flex-wrap: wrap;
		margin-bottom: 1rem;
	}

	.side-tab {
		flex: 1 0 calc(50% - 0.5rem);
		font-size: 0.8rem;
		padding: 0.5rem;
		text-align: center;
	}

	.casa-title {
		font-size: 1.5rem;
	}

	.slide-local-title {
		font-size: 1.3rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.side-tab,
	.swiper-button-next,
	.swiper-button-prev,
	.casa-title {
		transition: none !important;
		transform: none !important;
	}
}


.gallery-zonas-comunes {
	background: #393A2C;
	background: linear-gradient(180deg, rgba(57, 58, 44, 1) 50%, #f4ede8 50%);
}

.btn-enviar-form {
	background-color: #393a2c;
	color: #fff;
	border: solid 2px #fff;
	transition: all ease 0.3s;
	padding: 6px 25px;
}

.btn-enviar-form:hover {
	transform: scale(1.1);
	background-color: #fff;
	color: #393a2c;
	border: solid 2px #fff;

}