/* Slideshow fondo para columna izquierda */
.bg-slideshow-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease;
	z-index: 1;
}

.bg-slideshow-img.active {
	opacity: 1;
	z-index: 2;
}

#bg-slideshow-container {
	min-height: 400px;
	overflow: hidden;
}

/**** 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 {
	/* Colores principales */
	--color-primary: #0e2a33;
	/* Azul oscuro / Teal */
	--color-secondary: #9c9378;
	/* Dorado / Beige */
	--color-accent: #cb5f3d;
	/* Dorado claro */

	/* Colores de fondo */
	--bg-dark: #0d2327;
	/* Fondo oscuro */
	--bg-light: #f8f9fa;
	/* Fondo claro */
	--bg-white: #ffffff;
	/* Blanco */

	/* Overlays */
	--overlay-dark: rgba(13, 35, 39, 0.85);
	--overlay-light: rgba(255, 255, 255, 0.95);

	/* Textos */
	--text-dark: #212529;
	--text-light: #ffffff;
	--text-muted: #6c757d;

	/* Espaciado */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 3rem;
	--spacing-xl: 4rem;

	/* Transiciones */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;

	/* Sombras */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

	/* Border radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
}

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

/****  Fin Reset ***/
body {
	font-family: 'Asap', 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(--text-light);
	}
}

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

.texto {
	color: var(--color-texto);
}

.blanco {
	color: var(--text-light) !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;
}

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

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

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

.gris-claro {
	color: var(--color-gris-claro) !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-naranja-clarito {
	background-color: #dccdbf;
}

.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(--text-light) -0%, var(--color-verde) 20%);
}

.bg-beige-gradient-blanco {
	background: var(--color-beige);
	background: linear-gradient(0deg, var(--color-beige) 40%, var(--text-light) 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);
}

.ff_asap {
	font-family: 'Asap';
}

.ff_mont {
	font-family: 'Mont Heavy';
}

.ff_space {
	font-family: 'SpaceMono';
}

.f10 {
	font-size: clamp(8px, 0.8vw, 10px);
}

.f12 {
	font-size: clamp(10px, 1.2vw, 14px);
}

.f14 {
	font-size: clamp(12px, 1.3vw, 16px);
}

.f16 {
	font-size: clamp(14px, 1.4vw, 18px);
}

.f18 {
	font-size: clamp(16px, 1.5vw, 20px);
}

.f20 {
	font-size: clamp(18px, 1.6vw, 22px);
}

.f22 {
	font-size: clamp(20px, 1.7vw, 25px);
}

.f24 {
	font-size: clamp(22px, 1.8vw, 28px);
}

.f25 {
	font-size: clamp(24px, 1.9vw, 30px);
}

.f28 {
	font-size: clamp(26px, 2vw, 34px);
}

.f30 {
	font-size: clamp(28px, 2.1vw, 36px);
}

.f32 {
	font-size: clamp(30px, 2.2vw, 38px);
}

.f34 {
	font-size: clamp(32px, 2.3vw, 42px);
}

.f35 {
	font-size: clamp(33px, 2.4vw, 43px);
}

.f36 {
	font-size: clamp(34px, 2.5vw, 46px);
}

.f38 {
	font-size: clamp(36px, 2.6vw, 48px);
}

.f40 {
	font-size: clamp(38px, 2.7vw, 50px);
}

.f42 {
	font-size: clamp(40px, 2.8vw, 52px);
}

.f44 {
	font-size: clamp(42px, 2.9vw, 54px);
}

.f45 {
	font-size: clamp(46px, 3vw, 58px);
}

.f46 {
	font-size: clamp(46px, 3.1vw, 58px);
}

.f48 {
	font-size: clamp(44px, 3.2vw, 56px);
}

.f50 {
	font-size: clamp(48px, 3.3vw, 60px);
}

.f52 {
	font-size: clamp(46px, 3.4vw, 58px);
}

.f54 {
	font-size: clamp(46px, 3.5vw, 58px);
}


.f55 {
	font-size: clamp(48px, 3.6vw, 60px);
}


.f56 {
	font-size: clamp(50px, 3.7vw, 62px);
}

.f58 {
	font-size: clamp(52px, 3.8vw, 64px);
}

.f60 {
	font-size: clamp(50px, 3.9vw, 62px);
}

.f62 {
	font-size: clamp(52px, 4vw, 64px);
}

.f64 {
	font-size: clamp(54px, 4.1vw, 66px);
}

.f65 {
	font-size: clamp(56px, 4.2vw, 68px);
}

.f75 {
	font-size: clamp(68px, 4.8vw, 72px);
}

.fbold {
	font-weight: bold;
}

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

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

.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(--text-light);
	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(--text-light);
	}
}

.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(--text-light);
	}
}

.btnAction {
	color: var(--text-light);
	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(--text-light);
		background-color: var(--color-naranja-oscuro);
		padding: 7px 20px;
		text-decoration: none;
	}

}

.btnAction-verde {
	color: var(--text-light);
	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(--text-light);
		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(--text-light);
	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(--text-light);
}

.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
==============================================
*/
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 1.5rem 0;
	background: transparent;
}

.header-content {
	position: relative;
}

.header-nav {
	flex: 1;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.nav-link {
	color: var(--text-light);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	transition: var(--transition-fast);
	position: relative;
}

.nav-link:hover {
	color: var(--color-secondary);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-secondary);
	transition: var(--transition-normal);
}

.nav-link:hover::after {
	width: 100%;
}

.header-logo .logo-img {
	max-height: 45px;
	width: auto;
	transition: var(--transition-normal);
}

.header-logo .logo-img:hover {
	transform: scale(1.05);
}

/* Header con fondo para páginas sin hero */
.site-header.header-solid {
	position: relative;
	background: var(--color-primary);
	box-shadow: var(--shadow-sm);
}

/* Responsive */
@media (max-width: 768px) {
	.site-header {
		padding: 1rem 0;
		background-color: var(--color-primary);
		/* Ensure visibility if transparent */
	}

	.header-content {
		flex-direction: column-reverse;
		/* Logo (Last) goes to Top */
		gap: 1.5rem;
	}

	.nav-menu {
		gap: 1.5rem;
		justify-content: center;
		flex-wrap: wrap;
	}

	.nav-link {
		font-size: 0.9rem;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	.header-logo .logo-img {
		max-height: 50px;
		/* Slightly larger for mobile presence */
	}
}

@media (max-width: 576px) {
	.nav-menu {
		flex-direction: row;
		/* Keep them in a row if they fit, or wrap */
		gap: 1rem;
	}

	.nav-link {
		font-size: 0.85rem;
		/* Smaller font for small screens */
	}
}

/*
==============================================
Footer
==============================================
*/
.site-footer {
	background: var(--color-primary);
	color: var(--text-light);
	margin-top: auto;
	font-family: 'Montserrat', sans-serif;
}

.footer-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 1.25rem;
	color: var(--text-light);
	letter-spacing: 0.5px;
	font-family: 'Montserrat', sans-serif;
}

.footer-content {
	font-size: 0.9rem;
	line-height: 1.7;
	font-family: 'Montserrat', sans-serif;
}

.footer-content p {
	font-size: 15px;
	font-weight: 100;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.85);
	font-family: 'Montserrat', sans-serif;
}

.footer-link {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: var(--transition-fast);
	font-family: 'Montserrat', sans-serif;
}

.footer-link:hover {
	color: var(--color-secondary);
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #9f9474;
	font-size: 30px;
	text-decoration: none;
	transition: var(--transition-normal);
}

.social-link:hover {
	background: var(--color-secondary);
	color: var(--color-primary);
	transform: translateY(-3px);
}

.copyright {
	font-size: 12px;
	font-weight: 200;
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
	.footer-title {
		font-size: 0.95rem;
		margin-bottom: 1rem;
	}

	.footer-content {
		font-size: 0.85rem;
	}
}


/* ----------------------- LOGIN ----------------------- */

.login-page {
	min-height: calc(100vh - 100px);
	position: relative;
	background-image: url(../images/elements/Hero.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #0e2a3350, #0e2a3310);
	z-index: 1;
}

.login-content {
	position: relative;
	z-index: 2;
}

.login-box {
	animation: fadeInUp 0.6s ease;
}

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


.form-control {
	border: none;
	outline: none;
	border-bottom: 2px solid var(--color-secondary);
	padding: 0.75rem 1rem;
	border-radius: 0px;
	color: var(--text-light);
	background: transparent;
	transition: var(--transition-fast);
}

.form-control::placeholder {
	color: var(--text-light);
}

.form-control:focus {
	border-color: var(--color-accent);
	color: var(--text-primary);
	background-color: #ffffffd0;
	box-shadow: 0 0 0 0.2rem rgba(26, 77, 82, 0.1);
}

.btn-login {
	background: var(--color-secondary);
	border: none;
	padding: 0.875rem 2rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: var(--radius-sm);
	transition: var(--transition-normal);
}

.btn-login:hover {
	background: var(--color-accent);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.forgot-password {
	color: var(--text-light);
	text-decoration: none;
	font-size: 0.9rem;
	transition: var(--transition-fast);
}

.forgot-password:hover {
	color: var(--color-secondary);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 576px) {
	.login-box {
		padding: var(--spacing-md);
	}
}


.btn-floating-help {
	position: fixed;
	bottom: 20vh;
	right: 30px;
	background: #9f9474;
	color: #0e2a33;
	padding: 12px 24px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 2px solid #9f9474;
	font-size: 15px;
}

.btn-floating-help:hover {
	background: #d86744;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
	text-decoration: none;
}

.btn-floating-help i {
	font-size: 1.2em;
}

@media (max-width: 768px) {
	.btn-floating-help {
		bottom: 20px;
		right: 20px;
		font-size: 0.9rem;
		padding: 10px 20px;
	}
}

.dashboard-page {
	min-height: 100vh;
	background: var(--bg-light);
	padding-top: 100px;
}

.dashboard-hero {
	min-height: 105px;
	position: relative;
	background-image: linear-gradient(to right, #0e2a33, #0e2a33);
	background-size: cover;
	background-position: top center;
	display: flex;
	margin-top: -110px;
}

.dashboard-greeting {
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin: 0;
	animation: fadeInDown 0.6s ease;
}

.user-info-card {
	background: var(--bg-white);
	padding: var(--spacing-md);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.info-item label {
	font-size: 0.75rem;
	font-weight: bold;
	color: var(--text-dark);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.25rem;
	display: block;
}

.info-value {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-dark);
	margin: 0;
}

.btn-update-data {
	background: var(--color-secondary);
	color: var(--text-light);
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.875rem;
	transition: var(--transition-normal);
}

.btn-update-data:hover {
	background: var(--color-accent);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	text-transform: uppercase;
	letter-spacing: 1px;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.dashboard-page {
		padding-top: 80px;
	}

	.dashboard-greeting {
		font-size: 2rem;
	}

	.user-info-card {
		padding: var(--spacing-sm);
	}

	.info-item {
		margin-bottom: var(--spacing-sm);
	}

	.btn-update-data {
		width: 100%;
		margin-top: var(--spacing-sm);
	}
}


/* ----------------------- PROYECTO CARDS ----------------------- */

.proyecto-card {
	background: var(--bg-white);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition-normal);
	height: 230px;
	/* Altura fija para todas las cards */
}

.proyecto-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.proyecto-info-col {
	background: var(--color-primary);
	display: flex;
	align-items: stretch;
	/* Cambio para permitir que el contenido se estire */
	justify-content: flex-start;
	/* Alineación desde arriba */
}

.proyecto-info-content {
	padding: 0;
	/* Removemos padding general */
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: center;
	/* Centrar horizontalmente */
	width: 100%;
	justify-content: space-between;
	/* Distribuir badge arriba, contenido al centro */
}

.proyecto-badge {
	width: 100%;
	/* Ancho completo */
	padding: 0.75rem 1.25rem;
	border-radius: 0;
	/* Sin border radius para que sea rectangulo completo */
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	text-align: center;
	/* Texto centrado */
}

.badge-obra {
	background: var(--color-secondary);
	color: var(--text-light);
}

.badge-venta {
	background: var(--color-secondary);
	color: var(--text-light);
}

.proyecto-nombre {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-light);
	margin: 0;
	padding: 1rem 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	/* Texto centrado */
	flex: 1;
	/* Ocupa el espacio disponible */
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
}

.btn-ver-proyecto {
	background: var(--bg-white);
	color: var(--text-dark);
	border: none;
	padding: 0.75rem 2rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	transition: var(--transition-normal);
	margin-bottom: 1.5rem;
	/* Espacio desde abajo */
}

.btn-ver-proyecto:hover {
	background: var(--color-secondary);
	color: var(--text-dark);
	transform: scale(1.05);
}

.proyecto-image-col {
	height: 100%;
	overflow: hidden;
}

.proyecto-image {
	height: 100%;
	overflow: hidden;
}

.proyecto-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
}

.proyecto-card:hover .proyecto-image img {
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.proyecto-card {
		height: auto;
		min-height: 400px;
		/* Altura mínima en mobile */
	}

	.proyecto-info-col {
		min-height: 100px;
	}

	.proyecto-nombre {
		font-size: 1.5rem;
	}
}


/* ----------------------- APARTAMENTO ----------------------- */

.apartamento-page {
	min-height: 100vh;
	background: var(--bg-light);
}

.apartamento-hero {
	position: relative;
	height: 400px;
	overflow: hidden;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.proyecto-logo-badge {
	position: absolute;
	bottom: 2rem;
	left: 3rem;
	box-shadow: var(--shadow-lg);
}

.proyecto-logo-badge img {
	max-width: 120px;
	height: auto;
}

.tabs-section {
	position: sticky;
	top: 0;
	z-index: 100;

}

.apartamento-tabs {
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border-bottom: none;
	display: flex;
	justify-content: center;
	width: 100%;
}

.apartamento-tabs .nav-link {
	border: none;
	color: var(--text-muted);
	padding: 1.25rem 2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.85rem;
	transition: var(--transition-fast);
	position: relative;
}

.apartamento-tabs .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--color-primary);
	transition: var(--transition-normal);
}

.apartamento-tabs .nav-link:hover {
	color: var(--color-primary);
}

.apartamento-tabs .nav-link.active {
	color: var(--color-primary);
	background: transparent;
}

.apartamento-tabs .nav-link.active::after {
	width: 100%;
}

.tab-content {
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {

	.apartamento-hero {
		height: 300px;
	}

	.proyecto-logo-badge {
		bottom: 1rem;
		left: 1rem;
		padding: 1rem;
	}

	.proyecto-logo-badge img {
		max-width: 80px;
	}

	.apartamento-tabs {
		flex-wrap: wrap;
		overflow-x: auto;
		width: 100%;
	}

	.apartamento-tabs .nav-link {
		padding: 1rem 1.25rem;
		font-size: 0.85rem;
		white-space: nowrap;
	}
}

/* ----------------------- APARTAMENTO INFO ----------------------- */

/* -- tab-apartamento.php -- */
.tab-apartamento-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.proyecto-title {
	font-size: 3rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.5rem;
	color: #a89968;
}

.apartamento-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	color: #a89968;
	margin-bottom: 3rem;
}

.apartamento-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.info-card {
	padding: 2rem 1.5rem;
	border-radius: var(--radius-md);
	text-align: center;
	transition: var(--transition-normal);
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.info-card-primary {
	background: var(--color-primary);
	color: var(--text-light);
}

.info-card-dark {
	background: #2a3d41;
	color: var(--text-light);
}

.info-card label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.75rem;
	opacity: 0.9;
}

.info-card .value {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
	color: var(--color-secondary);
}


@media (max-width: 768px) {
	.proyecto-title {
		font-size: 2rem;
	}

	.apartamento-subtitle {
		font-size: 1.25rem;
		margin-bottom: 2rem;
	}

	.apartamento-info-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.info-card {
		padding: 1.5rem 1rem;
	}

	.info-card .value {
		font-size: 1.5rem;
	}
}


/* -- tab-avances -- */

.tab-avances-content {
	max-width: 1200px;
	margin: 0 auto;
}

.videos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.video-item {
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition-normal);
}

.video-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	background: #000;
}

.video-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.video-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-normal);
}

.video-item:hover .video-thumbnail img {
	transform: scale(1.05);
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: var(--color-secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-normal);
}

.play-button i {
	font-size: 2rem;
	color: var(--text-light);
	margin-left: 5px;
	/* Centrar visualmente el triángulo */
}

.video-item:hover .play-button {
	background: var(--color-secondary);
	transform: translate(-50%, -50%) scale(1.1);
}

.video-item:hover .play-button i {
	color: var(--color-primary);
}

.video-embed-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-embed-container iframe {
	width: 100%;
	height: 100%;
}

.video-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.video-date {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-muted);
	margin: 0;
}

@media (max-width: 768px) {
	.videos-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.play-button {
		width: 60px;
		height: 60px;
	}

	.play-button i {
		font-size: 1.5rem;
	}
}

/* --- tab comunicados ----*/

.tab-comunicados-content {
	max-width: 1200px;
	margin: 0 auto;
}

.documentos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.documento-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: var(--transition-normal);
}

.documento-item:hover {
	transform: translateY(-8px);
}

.documento-icon {
	width: 100%;
	max-width: 150px;
	margin-bottom: 1rem;
	transition: var(--transition-normal);
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.documento-item:hover .documento-icon {
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
	transform: scale(1.05);
}

.documento-info {
	text-align: center;
	position: relative;
}

.download-icon {
	font-size: 1.25rem;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	transition: var(--transition-fast);
}

.documento-item:hover .download-icon {
	color: var(--color-secondary);
	transform: translateY(-2px);
}

.documento-nombre {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.documento-fecha {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin: 0.25rem 0 0;
}

.no-content-message {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--text-secondary);
}

.no-content-message h3 {
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
	.documentos-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.documentos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 576px) {
	.documentos-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.documento-icon {
		max-width: 120px;
	}
}

/* ----------------------- LOGIN ERROR MESSAGE ----------------------- */

.login-error {
	background: rgba(231, 76, 60, 0.95);
	color: var(--text-light);
	padding: 1.25rem;
	border-radius: var(--radius-md);
	margin-bottom: 1.5rem;
	text-align: center;
	animation: shake 0.5s, fadeIn 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.login-error i {
	font-size: 1.25rem;
}

.login-error p {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 500;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-8px);
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(8px);
	}
}