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

ol,
ul {
	list-style: none;
}

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

:root {
	--color-negro: rgb(26, 23, 27);
	--color-azul: #008ac9;
	--color-azul-brillante: #1bbbe9;
	--color-azul-claro: #1eb6e5;
	--color-rojo-oscuro: #9c3d3c;
	--color-rojo: #ed3237;
	--color-verde: #a5b882;
	--color-verde-oscuro: #8e9f6e;
	--color-naranja: #e49632;
	--color-naranja-oscuro: #ee7d52;
	--color-beige: #fdf0ea;
	--color-blanco: #fff;
	--color-marron: #b36251;
	--color-marron-claro: #b36251;
	--color-gris-claro: #f5f5f5;
	--color-gris: #52626f;
	--color-gris-oscuro: #3c3c3c;
	--color-variable: #a5b882;

	font-size: 15px;
}

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

/****  Fin Reset ***/
body {
	font-family: 'Gotham', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-weight: 500;
	font-style: normal;
	color: var(--color-gris-oscuro);
}

p {
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 15px;
}

img {
	max-width: 100%;
}

hr {
	height: 1px;
	background-color: var(--color-gris-oscuro);
	border: none;
}


.titleStyle {

	font-weight: bold;
}

.titleStyle span {
	display: block;
	color: var(--color-negro);
	font-weight: 500;
	font-size: 30px;
}

.subtitleStyle {
	font-size: 26px;

}

.texto-resaltado {
	text-align: center;
	font-size: 23px;
	color: var(--color-rojo);
}

.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-pequeño {
	border-radius: 18px;
}

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

.br-redondo {
	border-radius: 50%;
	aspect-ratio: 1/1;
	padding: 0.5rem;
}

.border-azul-brillante {
	border: solid 1px var(--color-azul-brillante);
}

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

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

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

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

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

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

.bg-gris-claro {
	background-color: var(--color-gris-claro);
	transition: background 0.2s, color 0.2s;
}

.bg-gris-oscuro {
	background-color: var(--color-gris-oscuro);
	transition: background 0.2s, color 0.2s;
}

.bg-azul {
	background-color: var(--color-azul);
	border-color: var(--color-azul);
	transition: background 0.2s, color 0.2s;
}

.bg-naranja {
	background-color: var(--color-naranja);
	border-color: var(--color-naranja);
	transition: background 0.2s, color 0.2s;
}

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

.bg-hover-azul-brillante:hover {
	background-color: var(--color-azul-brillante);
	border-color: var(--color-azul-brillante);
}

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


.btnCTA {
	font-weight: bold;
	color: var(--color-rojo-oscuro);
	border-bottom: solid 2px var(--color-rojo-oscuro);
	transition: all ease 0.3s;
	padding-bottom: 5px;

	&:hover {
		color: var(--color-blanco);
		background-color: var(--color-rojo-oscuro);
		padding: 5px;
	}
}

.btnCTA-blanco {
	font-weight: bold;
	color: var(--color-blanco);
	border-bottom: solid 2px var(--color-blanco);
	transition: all ease 0.3s;
	padding-bottom: 5px;

	&:hover {
		color: var(--color-rojo-oscuro);
		background-color: var(--color-blanco);
		padding: 5px;
	}
}

.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-verde);
	font-weight: bold;
	border-radius: 25px;
	padding: 7px 25px;
	text-decoration: none;
	background-color: #FFF;
	border: solid 2px var(--color-verde);
	transition: 0.4s ease all;
	display: inline-block;

	&:hover {
		color: var(--color-blanco);
		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;
	}

}

.ff-Gotham {
	font-family: Gotham, sans-serif, Arial, Helvetica, sans-serif;
}

.ff-Gotham-Rounded {
	font-family: Gotham Rounded, sans-serif, Arial, Helvetica, sans-serif;
}

.ff-Gotham-Book {
	font-family: 'Gotham Book', sans-serif, Arial, Helvetica, sans-serif;
}

.ff-Northwell {
	font-family: Northwell, sans-serif, Arial, Helvetica, sans-serif;
}

.ff-MuseoSans {
	font-family: 'MuseoSans', sans-serif, Arial, Helvetica, sans-serif;
}

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

.f11 {
	font-size: clamp(9px, 0.7vw, 11px);
}

.f12 {
	font-size: clamp(9px, 0.8vw, 12px);
}

.f13 {
	font-size: clamp(9px, 0.8vw, 13px);
}

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

.f15 {
	font-size: clamp(11px, 1.1vw, 17px);
}

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

.f17 {
	font-size: clamp(13px, 1.3vw, 20px);
}

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

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

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

.f24 {
	font-size: clamp(18px, 2vw, 32px);
}

.f26 {
	font-size: clamp(19px, 2.2vw, 36px);
}

.f28 {
	font-size: clamp(20px, 2.4vw, 40px);
}

.f30 {
	font-size: clamp(20px, 2.6vw, 44px);
}

.f32 {
	font-size: clamp(25px, 2.8vw, 48px);
}

.f34 {
	font-size: clamp(27px, 3vw, 52px);
}

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

.f38 {
	font-size: clamp(31px, 3.4vw, 60px);
}

.f40 {
	font-size: clamp(32px, 3.6vw, 64px);
}

.f42 {
	font-size: clamp(34px, 3.8vw, 68px);
}

.f44 {
	font-size: clamp(36px, 4vw, 72px);
}

.f46 {
	font-size: clamp(38px, 4.2vw, 76px);
}

.f48 {
	font-size: clamp(40px, 4.4vw, 80px);
}

.f50 {
	font-size: clamp(36px, 4.6vw, 84px);
}

.lt-spacing-5 {
	letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

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

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

.woow-borde-corchete {
	border: 5px solid;
	border-image: linear-gradient(90deg, var(--color-azul-brillante) 5%, rgba(0, 136, 197, 0) 5.1%, rgba(0, 136, 197, 0) 94.9%, var(--color-azul-brillante) 95%) 1 / 4px / 10px;
	padding: 5px;
}

.woow-borde-corchete-blanco {
	border: 5px solid;
	border-image: linear-gradient(90deg, var(--color-blanco) 5%, rgba(0, 136, 197, 0) 5.1%, rgba(0, 136, 197, 0) 94.9%, var(--color-blanco) 95%) 1 / 4px / 10px;
	padding: 5px;
}

.woow-borde-corchete-blanco-delgado {
	border: 2px solid;
	border-image: linear-gradient(90deg, var(--color-blanco) 5%, rgba(0, 136, 197, 0) 5.1%, rgba(0, 136, 197, 0) 94.9%, var(--color-blanco) 95%) 1 / 1px / 8px;
	padding: 1px;
}

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

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


/* Línea de Tiempo Styles */
/* Línea de Tiempo Styles */
.linea-tiempo {
	padding: 40px 20px;
	position: relative;
	overflow: hidden;
}

.swiperLineaTiempo {
	padding: 20px 60px;
	position: relative;
}

.swiperLineaTiempo .swiper-wrapper {
	align-items: center;
}

.proyecto-timeline {
	position: relative;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 200px;
}

.proyecto-icono {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.proyecto-icono img {
	width: 45px;
	height: 45px;
}

.proyecto-contenido {
	min-height: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.proyecto-nombre {
	color: var(--color-gris-oscuro);
	margin-bottom: 10px;
	text-align: center;
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.proyecto-ubicacion {
	color: #666;
	text-align: center;
	min-height: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.linea-conectora {
	position: absolute;
	bottom: 11.5%;
	/* Alineado con el centro del icono */
	left: 65%;
	width: 90%;
	height: 2px;
	background-color: var(--color-azul);
	z-index: 1;
}

.swiper-slide:last-child .linea-conectora {
	display: none;
}

.punto-indicador {
	width: 12px;
	height: 12px;
	background-color: var(--color-azul);
	border-radius: 50%;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.swiperLineaTiempo .swiper-button-prev,
.swiperLineaTiempo .swiper-button-next {
	color: var(--azul);
	width: 40px;
	height: 40px;
	background-color: white;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.swiperLineaTiempo .swiper-button-prev {
	left: 10px;
}

.swiperLineaTiempo .swiper-button-next {
	right: 10px;
}

.swiperLineaTiempo .swiper-button-prev:after,
.swiperLineaTiempo .swiper-button-next:after {
	font-size: 18px;
	font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.proyecto-timeline {
		min-height: 180px;
	}

	.linea-conectora {
		top: 75px;
	}

	.proyecto-nombre {
		min-height: 40px;
		font-size: 16px;
	}

	.proyecto-ubicacion {
		min-height: 36px;
		font-size: 13px;
	}
}

/* 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
==============================================
*/


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

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

.navHeader .navbar-nav li {
	padding: 0px 2px;
}


.navHeader .navbar-nav .menu-item a {
	color: var(--color-gris);
	font-weight: 600;
	font-size: 13px;
	padding: 10px 10px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	text-align: center;
	white-space: normal;
	line-height: 1.2;
	transition: background 0.2s, color 0.2s;
	border-radius: 10px;
}



.navHeader .navbar-nav .menu-item.current-menu-item a,
.navHeader .navbar-nav .menu-item a:hover {
	color: var(--color-blanco);
	background-color: var(--color-azul);
	border-radius: 10px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: normal;
	line-height: 1.2;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.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
==============================================
*/

.footer-menu-bar {
	background-image: linear-gradient(90deg, #59b9ea 0%, #0088c5 100%);
	color: #fff;
	font-size: 1.05rem;
	font-weight: 500;
	text-align: center;
	padding: 0.5rem 0 0.4rem 0;
	letter-spacing: 0.5px;
}

.footer-menu-bar a {
	color: #fff;
	text-decoration: none;
	margin: 0 1.2rem;
	font-size: 12px;
	transition: color 0.2s;
	text-transform: uppercase;
	font-family: museo-sans, sans-serif;
}

.footer-menu-bar a:hover {
	color: var(--color-gris-claro);
}

.footer-sep-bar {
	background: #fff;
	height: 20px;
	width: 100%;
}

.footer-main {
	background-image: linear-gradient(90deg, #59b9ea 0%, #0088c5 100%);
	color: #fff;
	padding: 2.2rem 0 1.2rem 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	align-items: center;
	gap: 2.5rem;
	position: relative;
}

.footer-main-col {
	flex: 1 1 0%;
	height: 100%;
	min-width: 220px;
	max-width: 340px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.7rem;
}

.footer-main-col h4 {
	margin-bottom: 0.5rem;
}

.footer-main-col .footer-contacto {
	font-size: 1.05rem;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

.footer-main-col .footer-social {
	display: flex;
	gap: 1.1rem;
	margin-top: 0.5rem;
	justify-content: center;
}

.footer-main-col .footer-social a {
	color: var(--color-azul);
	background-color: #fff;
	transition: color 0.2s;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem;
	font-size: 13px;
}

.footer-main-col .footer-social a:hover {
	background-color: #000;
}

.footer-main-col .footer-logos {
	display: flex;
	gap: 1.2rem;
	align-items: center;
	margin-top: 0.7rem;
}

.footer-main-col .footer-logos img {
	height: 38px;
	padding: 2px 8px;
	object-fit: contain;
}

.footer-main-col .footer-logos span {
	font-size: 1.1rem;
	font-weight: bold;
	color: #fff;
}

.footer-main-col .footer-logos .footer-logo-plus {
	font-family: 'BaskervilleBT', serif;
	font-size: 1.3rem;
	font-weight: bold;
	color: #fff;
}

.footer-main-col .footer-logos .footer-logo-ref {
	font-family: 'Pacifico', cursive;
	font-size: 1.2rem;
	color: #fff;
}

.footer-main-col .footer-logos .footer-logo-part {
	font-size: 1.1rem;
	color: #222;
	background: #fff;
	border-radius: 6px;
	padding: 2px 8px;
}

.footer-bottom-bar {
	font-size: 1rem;
	padding: 0.7rem 0 0.5rem 0;
	background-image: linear-gradient(90deg, #59b9ea 0%, #0088c5 100%);
}

.footer-bottom-bar .footer-terms {
	color: var(--color-blanco);
	font-size: 0.98rem;
	margin-left: 1.2rem;
}

.footer-bottom-bar .footer-flags {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin-right: 1.2rem;
}

.footer-bottom-bar .footer-flags img {
	height: 25px;
	width: 25px;
	border-radius: 50%;
}

.footer-legal-bar {
	text-align: center;
	padding: 1.1rem 0 1.1rem 0;
}

@media (max-width: 991px) {
	.footer-main {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}

	.footer-main-col {
		align-items: center;
		text-align: center;
	}

	.footer-bottom-bar {
		flex-direction: column;
		gap: 0.7rem;
	}
}

/*
==============================================
Home
==============================================
*/

.swiperHome .swiper-button-prev:after,
.swiperHome .swiper-button-next:after {
	color: var(--color-blanco);
}

.swiperHome .swiper-pagination-bullet-active {
	background: var(--color-blanco);
}

.swiperHome .swiper-slide {
	position: relative;
}

.swiperHome .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.woow-slider-talleres {
	position: relative;
}

.woow-slider-talleres .swiper-button-prev {
	top: 50%;
	transform: translateY(-50%);
	left: -15px;
	right: auto;
}

.woow-slider-talleres .swiper-button-next {
	top: 50%;
	transform: translateY(-50%);
	right: -15px;
	left: auto;
}

.woow-talleres .woow-slider-talleres .swiper-button-prev:after,
.woow-talleres .woow-slider-talleres .swiper-button-next:after {
	color: var(--color-rojo-oscuro);
}

.woow-home .woow-slider-talleres .swiper-button-prev:after,
.woow-home .woow-slider-talleres .swiper-button-next:after {
	color: var(--color-blanco);
}

.woow-slider-categoria-blog .swiper-button-prev {
	top: 50%;
	transform: translateY(-50%);
	left: -15px;
	right: auto;
}

.woow-slider-categoria-blog .swiper-button-next {
	top: 50%;
	transform: translateY(-50%);
	right: -15px;
	left: auto;
}

.woow-slider-categoria-blog .swiper-button-prev:after,
.woow-slider-categoria-blog .swiper-button-next:after {
	color: var(--color-rojo-oscuro);
}


.woow-slider-calidad .cont-img-slide-calidad {
	position: relative;
	border-radius: 15px;
	overflow: hidden;

	& img {
		width: 100%;
		object-fit: cover;
		aspect-ratio: 1, 1;
	}
}

.woow-slider-calidad .swiper-slide .cont-img-slide-calidad .cont-img-slide-calidad-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 35px;
	align-items: center;
	justify-content: center
}

.woow-slider-calidad .swiper-slide {
	border-radius: 15px;
	background-color: var(--color-gris);
	padding: 2rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transform: scale(0.75);
	overflow: hidden;

}

.woow-slider-calidad .swiper-slide-active {
	border-radius: 15px;
	background-color: var(--color-gris-claro);
	padding: 1rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transform: scale(0.9);
	overflow: hidden;
	backdrop-filter: blur(10px)
}

.woow-slider-calidad .swiper-slide .woow-slider-titulos {
	display: none;
}

.woow-slider-calidad .swiper-slide-active .woow-slider-titulos {
	display: block;
}

.calidad-pagination {
	bottom: -10% !important;
}



.woow-section-coaching .cont-img-coaching {
	position: relative;
	transition: 1s ease all;

}

.woow-section-coaching .cont-img-coaching .woow-titulo-card-coaching {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 30px;
	line-height: 45px;

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

.woow-section-coaching .cont-img-coaching .woow-btn-card-coaching {
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translate(-50%, 50%);
}

.woow-slider-Libros {
	position: relative;
}

.woow-slider-Libros {
	top: 50%;

	& .swiper-button-prev {
		left: -15px;
		right: auto;
	}

	& .swiper-button-next {
		right: -15px;
		left: auto;
	}
}


.woow-slider-Libros .swiper-button-prev:after,
.woow-slider-Libros .swiper-button-next:after {
	color: var(--color-rojo-oscuro);
}

.woow-slider-Libros .swiper-slide .cont-slide-img-libro img {
	object-fit: contain;
	aspect-ratio: 3/2;
}

.woow-slider-Libros .swiper-slide {

	& h3 {
		font-size: 18px;
		color: var(--color-rojo-oscuro);
	}

	& p {
		font-size: 15px;
	}
}


/*
==============================================
page servicios
==============================================
*/
.woow-banner-servicios {
	position: relative;
}

.woow-banner-servicios .banner-servicios-img img {
	width: 100%;
}

.woow-banner-servicios .banner-servicios-text {
	position: absolute;
	top: 30%;
	width: 35%;
	left: 6%;
	color: #fff;
	font-family: "Times New Roman";

	& p {
		font-size: 20px;
	}

	& .font-weight-bold {
		font-size: 30px;
	}

	& .wow-num-contadores {
		font-size: 120px;
		font-weight: bold;
		margin-left: 50px;
	}

	& .counter {
		position: relative;

		&::before {
			content: "+";
			font-size: 60px;
			position: absolute;
			top: 0;
			left: -40px;
			font-weight: bold;
		}
	}
}

.woow-servicios .swiperWoowSoluciones .cardServicio {
	transform: scale(0.7);
}

.woow-servicios .swiperWoowSoluciones .cardServicio * {
	transition: background-color 0s ease;
	;
}

.woow-servicios .swiperWoowSoluciones .swiper-slide-active .wrap {
	background: none;
	transition: none;
	position: initial;
	border-radius: 180px;
}

.woow-servicios .swiperWoowSoluciones .swiper-slide-active .cardServicio {
	transform: scale(1);

	& img {
		filter: drop-shadow(-2.862px 14.724px 20px rgba(0, 0, 0, 0.25));
	}
}

.woow-servicios .swiperWoowSoluciones .swiper-slide-active .wrap .centerVertical {
	background: none;
	transform: translateY(0);

	& img {
		display: none;
	}

	& .titleWrap {
		font-size: 50px;
		color: #434343;
		font-weight: bold;
		text-align: center;
		width: 1000px;
		margin-left: -315px;
		margin-top: 50px;
	}
}


/*
==============================================
page nuestros proyectos
==============================================
*/

.cont-proyectos {
	& .nav-tabs {
		border: none;

		& .nav-item {

			& .nav-link.active {
				border: none;
				border-radius: 0px;
				color: var(--color-rojo);
				font-size: 18px;
				border-bottom: solid 2px var(--color-rojo);
			}

			& .nav-link {
				color: var(--color-negro);
			}

		}
	}

	& .tab-content .tab-pane {
		& .cardContect {
			border: none;
			border-radius: 0px;
			/* min-height: 810px; */
			background-color: #f0f0f0;
			cursor: pointer;

			&:hover {
				transform: scale(1.03);
				transition: transform 0.3s ease;
				box-shadow: 10px 10px 20px -13px rgba(0, 0, 0, 0.75);
			}

			& img {
				object-fit: cover;
			}

			& .card-header-proyecto {
				color: var(--color-verde);
				text-transform: uppercase;
				font-weight: normal;
				text-wrap: balance;
				min-height: 90px;

				& h4 {
					font-size: 18px;
				}
			}
		}
	}
}

.swiperClientes {
	position: relative;
}

.swiperClientes .swiper-button-prev {
	position: absolute;
	top: 50%;
	left: -35px;
}

.swiperClientes .swiper-button-next {
	position: absolute;
	top: 50%;
	right: -35px;
}

.swiperClientes .swiper-button-prev:after {
	background-image: url(../images/pages/quienes-somos/Flecha.png);
	color: transparent;
	background-size: contain;
}

.swiperClientes .swiper-button-next:after {
	background-image: url(../images/pages/quienes-somos/Flecha.png);
	color: transparent;
	transform: rotate(180deg);
	background-size: contain;

}

.swiperClientes .swiper-slide {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 200px;
	width: 100%;

	& img {
		object-fit: contain;
	}

}

.popup-servicios {

	& .modal-title {
		color: var(--color-verde);
		text-wrap: pretty;
	}

	& .modal-footer {
		border: none;
		background-image: url(../images/pages/servicios/Fondo-texto-descriptivo.jpg);

		& .btn {
			background-color: var(--color-rojo);
			border: none;

			&:hover {
				transform: scale(1.2);
				transition: transform 0.3s ease;
			}
		}
	}

}

/*
==============================================
Pagina Blog
==============================================
*/

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

.pageListBlog .banner_info .banner_info_content {
	background: rgba(0, 0, 0, 0.5);
	padding: 5px 20px;
	border-radius: 5px;
}

.pageListBlog .banner_info .banner_info_content a {
	color: #fff;
}

.pageListBlog .banner_info .banner_info_content:hover {
	background: var(--color-azul-claro);
}

.pageListBlog .banner_info .banner_info_content a img {
	width: 18px;
	vertical-align: sub;
}

.listCat {
	width: 100%;
}

.listCat ul {
	text-align: center;
	padding: 10px 0px 0px;
}

.listCat ul li {
	display: inline-block;
	margin: 0px 5px;
	text-transform: uppercase;
	border-radius: 7px;
	overflow: auto;
}

.listCat ul li:hover a {
	background: var(--color-azul-claro);
	color: #fff;
	text-decoration: none;
}

.listCat ul li a {
	color: var(--color-negro);
	display: block;
	padding: 7px 12px;
	font-size: 15px;
}

.blogBreadcrumb ol {
	display: inline-block;
	box-shadow: 5px 6px 8px -7px #ccc;
	border-radius: 10px;
	padding: 5px 6px;
}

.blogBreadcrumb ol li:after {
	content: '➤';
	color: var(--color-azul-claro);
	font-size: 11px;
}

.blogBreadcrumb ol li a span {
	font-size: 14px;
}

.blogBreadcrumb ol li:last-child a span {
	color: var(--color-azul-claro);
}

.article-post a:hover {
	text-decoration: none;
}

.categoriasList a {
	background: var(--color-azul-claro);
	color: #fff !important;
	text-decoration: none;
	margin-right: 5px;
	padding: 5px 10px;
	border-radius: 5px;
}

.article-post .linkMore {
	color: var(--color-azul-claro);
	display: inline-block;
	font-size: 20px;
}

.article-post .linkWapp {
	display: inline-block;
	float: right;
	padding-top: 13px;
}

.article-post .linkWapp img {
	width: clamp(10px, 40px, 45px);
}

.sidebarList .titleSidebar {
	font-size: 20px;
	font-weight: 600;
}

.sidebarList .widgetBlog img {
	display: block;
	margin: 0px auto;
	max-width: 120px;
}

.sidebarList .widgetBlog .text:before {
	content: '❛❛';
	color: var(--color-azul-claro);
	font-size: 90px;
	text-align: center;
	width: 100%;
	display: block;
	line-height: 40px;
	margin-top: 30px;
}

.sidebarList .widgetBlog .text {
	text-align: justify;
}


.banner {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.banner_info {
	position: absolute;
	bottom: 80px;
	padding-left: 20px;
}

.tagTipo {
	background: var(--color-azul-banner);
	display: inline-block;
	padding: 10px 20px;
	color: #fff;
}

.banner_info_content {
	display: inline-block;
	background: rgba(0, 0, 0, 0.8);
	padding: 30px 20px;
	color: #fff;
}

.banner_info_content h1 {
	/*font-family: 'Gotham-Medium', sans-serif;*/
	font-size: 18px;
	margin-bottom: 10px;
	color: #fff;
	font-weight: 700;
}

.banner_info_content h2 {
	color: #fff;
	font-size: 27px;
}

.banner_info_content h3 {
	color: var(--color-azul-claro);
	margin-top: 10px;
	font-size: 16px;
}

/*
==============================================
Pagina single Blog
==============================================
*/

.singleBlog a {
	color: var(--color-azul-claro);
}

.titleBlogSingle {
	font-size: 40px;
}

.recentPost {
	box-shadow: 1px 2px 6px -3px #a3a3a3;
	border-radius: 10px;
}

.recentPost a {
	text-decoration: none;
}

.recentPost h4 {
	font-size: clamp(13px, 21px, 25px);
	font-family: 'Gotham-Medium', sans-serif;
	font-weight: 600;
}

.recentPost .listCat ul {
	text-align: left;
}

.recentPost .listCat ul li {
	margin: 3px 3px 4px 0px;
}

.recentPost .listCat ul li a {
	background: var(--color-azul-claro);
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	text-transform: capitalize;
	padding: 3px 6px;
}

.sidebarSingle {
	box-shadow: -10px 0px 3px -6px #edebeb;
}

/*
==============================================
	Style elemets
==============================================
*/

.fixedBar {
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 999;
	text-align: center;
}

.fixedBar img {
	/*	width: 600px;*/
	max-width: 100%;
	display: block;
	margin: 0px auto;
}


.noticias {
	& .blog-img-otr-noticias {
		min-height: 350px;
		object-fit: cover;
	}
}



/*
==============================================
page nosotros
==============================================
*/

.tabs-des-taller {
	& .nav-tabs {
		border: none;

		& .nav-item {
			color: var(--color-blanco);
			background: none;

			& .nav-link.active {
				border: none;
				background: none;
				border-radius: 0px;
				font-size: 18px;
				border-bottom: solid 2px var(--color-blanco);
				color: var(--color-blanco)
			}

			& .nav-link {
				color: var(--color-blanco);
				border-radius: 0px;
				font-size: 18px;
				background: none;
			}

		}
	}
}



/* Home: Familias felices y buscador */
.familias-felices-box {
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3) !important;
	border-radius: 18px !important;
	background: #fff;
	min-width: 320px;
	max-width: 700px;
	gap: 1.5rem;
	padding: 1.2rem 2rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	top: 0%;
	display: flex;
	flex-direction: row;
	align-items: center;
	z-index: 10;
}

.familias-felices-box .video-thumb {
	width: 120px;
	height: 80px;
	background: #f3f3f3;
	border-radius: 12px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;

	& img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		border-radius: 12px;
	}
}

.familias-felices-box .play-icon svg {
	display: block;
}

.buscador-actual {
	visibility: hidden;
}

.buscador-actual form {
	background: var(--color-gris-oscuro) !important;
	border-radius: 18px !important;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10) !important;
}

.buscador-actual select,
.buscador-actual input {
	border-radius: 50px !important;
}

.buscador-actual button {
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 50px;
}

.buscador-actual .buscador-title {
	color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
}

@media (max-width: 767px) {
	.familias-felices-box {
		flex-direction: column !important;
		min-width: 220px;
		max-width: 95vw;
		top: 0;
		left: 0;
		position: relative;
		transform: none;
	}

	.buscador-actual form {
		flex-direction: column !important;
	}
}

/* Home: Proyecto destacado */
.proyecto-destacado-box {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
	overflow: hidden;
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.proyecto-destacado-img {
	position: relative;
	width: 100%;
	border-radius: 25px 25px 0px 0px;
	overflow: hidden;
}

.proyecto-destacado-img:hover img {
	transform: scale(1.04);
}

.proyecto-destacado-img img {
	transition: transform 1s ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 25px 25px 0px 0px;
}

.parte-azul-franja-blanca {
	position: relative;
	bottom: 90%;
	left: 0;
	height: 100%;
	background: var(--color-azul);
	color: #fff;
	font-weight: bold;
	padding: 3%;
	z-index: 2;
	border-radius: 0;
}

.badge-ubicacion {
	position: relative;
	bottom: 90%;
	left: 0;
	height: 100%;
	background: #ffaa34;
	color: #fff;
	font-weight: bold;
	padding: 3%;
	z-index: 2;
	border-radius: 0 30px 30px 0;
}

.proyecto-destacado-nombre {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--color-negro);
	color: #fff;
	padding: 8px 0;
	text-align: center;
	letter-spacing: 1px;
}


.proyecto-destacado-info ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

.proyecto-destacado-info li {
	margin-bottom: 1rem;
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
}

.proyecto-destacado-info .icon-check {
	color: var(--color-azul);
	font-size: 1.2rem;
	margin-top: 2px;
}

/* Home: Franja azul */
.franja-actual {
	background: var(--color-azul);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	padding: 1.2rem 0 1.1rem 0;
	letter-spacing: 0.5px;
}

.franja-actual strong {
	font-weight: bold;
	letter-spacing: 1px;
}

/* Home: Cards de proyectos */
.cards-proyectos-row {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 1.5rem;
	margin-bottom: 0;
	justify-content: space-between;
}

.card-proyecto {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
	overflow: hidden;
	flex: 1 1 30%;
	min-width: 270px;
	max-width: 305px;
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
	position: relative;
}

.card-proyecto:hover .img-proyecto {
	transform: scale(1.05);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.card-proyecto-img {
	position: relative;
	width: 100%;
	height: 200px;
	background: #eaeaea;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	overflow: hidden;
}

.card-proyecto-img .img-proyecto {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}

.card-proyecto-img .badge-ubicacion-card {
	position: absolute;
	bottom: 5%;
	left: 5%;
	background: var(--color-naranja);
	color: #fff;
	font-weight: bold;
	border-radius: 50px;
	padding: 5px 18px;
	z-index: 2;
}

.card-proyecto-img .badge-superior-card {
	position: absolute;
	top: 5%;
	left: 0;
	background: var(--color-naranja);
	color: #fff;
	font-weight: bold;
	border-radius: 0 50px 50px 0;
	padding: 5px 18px;
	z-index: 2;
}

.card-proyecto-img .logo-proyecto {
	position: absolute;
	right: 5%;
	bottom: 5%;
	width: 80px;
	height: 80px;
	background: #fff;
	border-radius: 12px;
	display: flex;
	padding: 8px;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.card-proyecto-body {
	padding: 1.2rem 1.2rem 1.5rem 1.2rem;
	display: flex;
	flex-direction: column;
	flex: 1 1 0%;
	background-color: var(--color-gris-claro);
}

.card-proyecto-nombre {
	color: #58595b;
	font-size: 1.1rem;
}

.card-proyecto-hr {
	border: none;
	background-color: #eaeaea;
	margin: 0.5rem 0 1rem 0;
}

.card-proyecto-info {
	color: #58595b;
}

.card-proyecto-icons {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: 0.7rem;
	justify-content: space-around;
}

.card-proyecto-icons .icon {
	color: #2196f3;
	font-size: 1.1rem;
	margin-right: 0.3rem;
}

.card-proyecto-precio {
	color: #009fe3;
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 0.7rem;
	display: flex;
	align-items: start;
	justify-content: space-around
}

.card-proyecto-btn {
	background: #e6f3fa;
	color: #2196f3;
	font-weight: bold;
	border-radius: 50px;
	border: none;
	padding: 0.6rem 1.2rem;
	margin-top: auto;
	transition: background 0.2s, color 0.2s;
}

.card-proyecto-btn:hover {
	background: #2196f3;
	color: #fff;
}

.cards-proyectos-row.degradado {
	position: relative;
	overflow: hidden;
}

.cards-proyectos-row.degradado:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 110px;
	background: linear-gradient(0deg, #fff 80%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
	z-index: 2;
}

.cards-proyectos-vermas {
	text-align: center;
	margin-top: 40px;
	position: relative;
	z-index: 3;
}

.cards-proyectos-vermas .btn {
	background: #009fe3;
	color: #fff;
	font-weight: bold;
	border-radius: 50px;
	padding: 0.7rem 2.2rem;
	font-size: 1.1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	border: none;
}

.cards-proyectos-vermas .btn:hover {
	background: #222;
	color: #fff;
}

/* Home: Beneficios barra logos */
.beneficios-bar {
	display: flex;
	min-height: 170px;
	margin-bottom: 2.5rem;
}

.beneficios-bar-col-izq {
	background: var(--color-gris-oscuro);
	flex: 0 0 40%;
	min-width: 220px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.beneficios-bar-col-der {
	background: var(--color-azul);
	flex: 1 1 60%;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.2rem 2.5rem;
	flex-wrap: wrap;
	justify-content: flex-start;
	overflow: hidden;
}

.beneficio-card {
	min-width: 150px;
	max-width: 170px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0.5rem;
	position: relative;
}

.beneficio-card .contenedor-beneficio {
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	background: var(--color-gris-claro);
	padding: 1.1rem 1rem 1.2rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.beneficio-card .beneficio-icon {
	width: 48px;
	height: 48px;
	background: #f3f3f3;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.7rem;
}

.beneficio-card .beneficio-title {
	font-weight: bold;
	font-size: 1rem;
	margin-bottom: 0.3rem;
	text-align: center;
	min-height: 36px;
	display: flex;
	align-items: center;
}

.beneficio-card .beneficio-desc {
	font-size: 0.95rem;
	color: #444;
	text-align: center;
	margin-bottom: 0.7rem;
}

.beneficio-card .btn-beneficio {
	background: #f6a226;
	color: #fff;
	font-weight: bold;
	border-radius: 50px;
	border: none;
	padding: 0.5rem 1.2rem;
	font-size: 1rem;
	margin-top: 0.2rem;
	transition: background 0.2s, color 0.2s;
}

.beneficio-card .btn-beneficio:hover {
	background: #222;
	color: #fff;
}

@media (max-width: 991px) {
	.beneficios-bar {
		flex-direction: column;
		min-height: unset;
	}

	.beneficios-bar-col-izq,
	.beneficios-bar-col-der {
		flex: 1 1 100%;
		min-width: 0;
		justify-content: center;
		padding: 1.2rem 1rem;
	}

	.beneficios-bar-col-der {
		gap: 1rem;
	}
}

/* Home: Revista, Fundación, Lotes */
.revistas-fundacion-row {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.revista-card,
.fundacion-card {
	flex: 1 1 0%;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	min-height: 170px;
	display: flex;
	align-items: flex-end;
	aspect-ratio: 16/10;
}

.revista-card:hover img,
.fundacion-card:hover img {
	transform: scale(1.05);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.revista-card img,
.fundacion-card img {
	transition: transform 1s ease;
	width: 100%;
	object-fit: cover;
}

.revista-card .revista-info,
.fundacion-card .fundacion-info {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.2rem 1.2rem 1.2rem 1.2rem;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 30%, rgba(0, 0, 0, 0.0) 100%);
}

.revista-card .revista-title,
.fundacion-card .fundacion-title {
	color: #fff;
	margin-bottom: 0.2rem;
}

.revista-card .revista-title strong {
	font-weight: bold;
}

.revista-card .revista-desc,
.fundacion-card .fundacion-desc {
	color: #fff;
	margin-bottom: 0.5rem;
	width: 80%;
}

.revista-card .revista-cta,
.fundacion-card .fundacion-cta {
	position: absolute;
	right: 18px;
	bottom: 18px;
	background: #009fe3;
	color: #fff;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	border: none;
	z-index: 2;
}

.lotes-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	min-height: 170px;
	margin-bottom: 2.5rem;
}

.lotes-card:hover img {
	transform: scale(1.05);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.lotes-card img {
	transition: transform 1s ease;
	width: 100%;
	min-height: 250px;
	object-fit: cover;
	border-radius: 18px;
}

.lotes-card .lotes-info {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.2rem 1.2rem 1.2rem 1.2rem;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 30%, rgba(0, 0, 0, 0.0) 100%);
}

.lotes-card .lotes-title {
	color: #fff;
	font-weight: bold;
	margin-bottom: 0.2rem;
}

.lotes-card .lotes-desc {
	color: #fff;
	margin-bottom: 0.5rem;
}

.lotes-card .lotes-cta {
	position: absolute;
	right: 18px;
	bottom: 18px;
	background: #009fe3;
	color: #fff;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	border: none;
	z-index: 2;

	& img {
		min-height: auto;
	}
}

@media (max-width: 991px) {
	.revistas-fundacion-row {
		flex-direction: column;
		gap: 1rem;
	}
}

/* Home: Blog */
.home-blog-title {
	font-size: 2rem;
	font-weight: bold;
	color: #222;
	text-align: center;
	margin-bottom: 2rem;
}

.home-blog-swiper {
	width: 100%;
	padding-bottom: 2.5rem;
}

.home-blog-swiper .swiper-blog-next,
.home-blog-swiper .swiper-blog-prev {
	color: #4b9fda;
}

.home-blog-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	overflow: hidden;
	min-width: 260px;
	max-width: 320px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.home-blog-card:hover .home-blog-card-img img {
	transform: scale(1.05);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.home-blog-card-img {
	height: 180px;
	overflow: hidden;
}

.home-blog-card-img img {
	transition: transform 1s ease;
	width: 100%;
	height: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.home-blog-card-body {
	padding: 1.1rem 1.1rem 1.3rem 1.1rem;
	display: flex;
	flex-direction: column;
	flex: 1 1 0%;
}

.home-blog-card-title {
	color: #58595b;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-align: center;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 2.5em;
	/* Ajusta según el line-height */
	line-height: 1.25em;
}

.home-blog-card-date {
	color: #888;
	margin-bottom: 0.7rem;
}


.card-beneficios {
	border-radius: 15px;
	position: relative;
	padding: 1.2rem 1.5rem;
}

.card-beneficios .icono-flotante {
	width: 50px;
	height: 50px;
	text-align: center;
	position: absolute;
	bottom: -30%;
	left: 25%;
	transform: translate(-50%, -50%);
	font-size: 1.5rem;
	border-radius: 50%;
	background: var(--color-gris-oscuro);
	padding: 0.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	color: var(--color-blanco);
}


.swiper-img-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	/* Ajusta la opacidad aquí */
	z-index: 2;
	pointer-events: none;
}

.contenedor-texto-historia {
	height: 350px;
	overflow-y: scroll;
	scrollbar-color: var(--color-azul) var(--color-gris-claro);
}

.contenedor-mapamundi-historia {
	height: 350px;
}

.mapamundi {
	aspect-ratio: 1/1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.card-equipo {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.card-equipo-foto {
	width: 100%;
	height: 320px;
	border-radius: 15px 15px 0 0;
	overflow: hidden;
}

.card-equipo-foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.3s ease;
}

.circle-estadistica {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 1.5px solid var(--color-azul-brillante);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px auto;
	background: transparent;
	box-sizing: border-box;
}


#main-lotes-venta .lote-card {
	border-radius: 22px;
	box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.30);
	padding: 2.5rem 2rem 2rem 2rem;
	position: relative;
	margin-top: 6.5rem;
}

#main-lotes-venta .lote-card-header {
	position: absolute;
	top: -2.2rem;
	left: 2rem;
	right: 2rem;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.07);
	overflow: hidden;
	z-index: 2;
	display: flex;
	gap: 1.5rem;
}

#main-lotes-venta .lote-header-title {
	font-weight: bold;
	font-size: 1.1rem;
	line-height: 1.1;
}

#main-lotes-venta .lote-header-sub {
	font-size: 0.95rem;
	font-weight: 500;
	color: #008ac9;
}

#main-lotes-venta .lote-header-metraje .lote-metraje-label {
	background: #f5f5f5;
	color: #008ac9;
	font-size: 0.7rem;
	font-weight: bold;
	border-radius: 8px;
	padding: 2px 10px;
	margin-right: 0.5rem;
	letter-spacing: 1px;
}

#main-lotes-venta .lote-header-icon {
	color: #008ac9;
	font-size: 1.2rem;
}

#main-lotes-venta .lote-header-m2,
#main-lotes-venta .lote-header-precio-text {
	font-size: 1.1rem;
}

#main-lotes-venta .lote-header-tipo-text {
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	text-transform: uppercase;
}

#main-lotes-venta .lote-card-body {
	background: transparent;
	border-radius: 12px;
	margin-top: 2.5rem;
	min-height: 220px;
}

#main-lotes-venta .lote-card-text {
	background: transparent;
	padding: 1.2rem 1.2rem 1.2rem 0;
	font-size: 1.05rem;
	color: #444;
	max-height: 240px;
	min-height: 220px;
	overflow-y: auto;
}

#main-lotes-venta .lote-card-img {
	padding-left: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

#main-lotes-venta .lote-img {
	border-radius: 12px;
	max-height: 240px;
	object-fit: cover;
}

#main-lotes-venta .lote-card-actions {
	margin-top: 1.5rem;
	gap: 0.5rem;
}

#main-lotes-venta .lote-btn-action {
	background: none;
	border: none;
	color: var(--color-gris-oscuro);
	font-weight: bold;
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.2s;
	padding: 0.5rem 1.2rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
}

#main-lotes-venta .lote-btn-action:hover {
	background: #f5f5f5;
	color: #005f8a;
	text-decoration: none;
}

#main-lotes-venta .lote-btn-divider {
	width: 1px;
	height: 28px;
	background: #e0e0e0;
	margin: 0 0.5rem;
	display: inline-block;
}

@media (max-width: 767px) {
	#main-lotes-venta .lote-card-header {
		flex-direction: column;
		gap: 0.5rem;
		left: 1rem;
		right: 1rem;
	}

	#main-lotes-venta .lote-card-body {
		flex-direction: column;
	}

	#main-lotes-venta .lote-card-img {
		padding-left: 0;
		margin-top: 1rem;
	}
}

/* Banner Animado */
.ba-banner {
	min-height: 320px;
	background-size: cover !important;
	background-position: center !important;
	border-radius: 0 0 32px 32px;
	position: relative;
}

.ba-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	border-radius: 0 0 32px 32px;
	z-index: 1;
}

.ba-banner-content {
	z-index: 2;
}

.ba-banner-title {
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.ba-box-blue {
	background: var(--color-azul, #008ac9);
}

.ba-title {
	font-size: 2rem;
	font-weight: bold;
}

.ba-text {
	font-size: 1.1rem;
}

.ba-logo-pagos,
.ba-logo-plus,
.ba-logo-referidos {
	max-width: 100%;
}

@media (max-width: 767px) {
	.ba-banner-title {
		font-size: 2rem;
	}

	.ba-title {
		font-size: 1.3rem;
	}

	.ba-box-blue {
		padding: 1.2rem !important;
	}
}

/* Banner */
.sc-banner {
	min-height: 320px;
	background-size: cover !important;
	background-position: center !important;
	position: relative;
}

.sc-banner-content {
	z-index: 2;
}

.sc-banner-title {
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.sc-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

/* Tabs */
.sc-tabs {
	background: var(--color-blanco);
}

.sc-tabs-nav .nav-link {
	font-weight: bold;
	font-size: 1.1rem;
	color: #008ac9;
	background: #fff;
	border-radius: 18px 18px 0 0;
	margin: 0 8px;
	padding: 0.8rem 2.2rem;
	transition: background 0.2s, color 0.2s;
	border: none;
}

.sc-tabs-nav .nav-link.active,
.sc-tabs-nav .nav-link:hover {
	background: #008ac9;
	color: #fff;
}

.sc-tab-instruccion h2 {
	color: #008ac9;
}

.sc-formulario-contacto,
.sc-formulario-postventa {
	background: #f5f5f5;
	border-radius: 18px;
	box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.30);
	padding: 2rem 1.5rem;
}

.sc-formulario-contacto .form-group,
.sc-formulario-postventa .form-group {
	margin-bottom: 1rem;
}

.sc-formulario-contacto label.required:after,
.sc-formulario-postventa label.required:after {
	content: '*';
	color: #ed3237;
	margin-left: 3px;
	font-weight: bold;
}

.sc-formulario-contacto .form-control,
.sc-formulario-postventa .form-control,
.sc-formulario-contacto .custom-select,
.sc-formulario-postventa .custom-select {
	border-radius: 12px;
	border: none;
	font-size: 1rem;
	background: #fff;
	box-shadow: none;
	margin-bottom: 0.5rem;
}

.sc-formulario-contacto .custom-select,
.sc-formulario-postventa .custom-select {
	width: 100%;
}

.sc-formulario-contacto .form-row,
.sc-formulario-postventa .form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 0.7rem;
}

.sc-formulario-contacto .form-row .col-6,
.sc-formulario-postventa .form-row .col-6 {
	flex: 0 0 48%;
	max-width: 48%;
}

.sc-formulario-contacto .form-check,
.sc-formulario-postventa .form-check {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.sc-formulario-contacto .form-check-label,
.sc-formulario-postventa .form-check-label {
	font-size: 0.97rem;
	color: #444;
}

.sc-formulario-contacto .form-check-input,
.sc-formulario-postventa .form-check-input {
	margin-right: 0.5rem;
}

.sc-formulario-contacto .btn-enviar,
.sc-formulario-postventa .btn-enviar {
	background: #444;
	color: #fff;
	font-weight: bold;
	border-radius: 12px;
	padding: 0.7rem 2.2rem;
	font-size: 1.1rem;
	border: none;
	transition: background 0.2s, color 0.2s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.sc-formulario-contacto .btn-enviar:hover,
.sc-formulario-postventa .btn-enviar:hover {
	background: #008ac9;
	color: #fff;
}


/*Formulario hubspot*/
.sc-formulario-contacto {
	padding: 20px 0px 30px;
	overflow: hidden;
}

.sc-formulario-contacto span {
	color: var(--color-negro) !important;
}

.sc-formulario-contacto .hs-error-msg {
	color: #ef5350 !important;
}

.sc-formulario-contacto label {
	font-family: 'Gotham-Medium', sans-serif;
	font-size: 13px;
	display: block;
	margin-bottom: 5px;
	color: var(--color-negro) !important;
}

.sc-formulario-contacto .hs-form-field {
	margin-bottom: 15px;
}

.sc-formulario-contacto .hs-form-field {
	margin-bottom: 15px;
}

.formulario_item input,
.sc-formulario-contacto input[type='text'],
.sc-formulario-contacto input[type='email'],
.sc-formulario-contacto input[type='number'],
.sc-formulario-contacto input[type='tel'] {
	width: 100%;
	height: 35px;
	padding: 0px 0 2px;
	font-size: 15px;
	font-size: 1rem;
	box-shadow: none;
	margin-bottom: 0.5rem;
	border-radius: 12px;
	border-width: initial;
	border-style: none;
	border-color: initial;
	border-image: initial;
	background: rgb(255, 255, 255);
}

.formulario_item select,
.sc-formulario-contacto select {
	width: 100%;
	height: 35px;
	padding: 0px 0 2px;
	font-size: 15px;
	font-size: 1rem;
	box-shadow: none;
	margin-bottom: 0.5rem;
	border-radius: 12px;
	border-width: initial;
	border-style: none;
	border-color: initial;
	border-image: initial;
	background: rgb(255, 255, 255);
}

.formulario_check,
.sc-formulario-contacto checkbox {
	margin-bottom: 20px;
}

.formulario_check label,
.sc-formulario-contacto checkbox label {
	font-size: 13px;
}

.formulario_check a,
.sc-formulario-contacto checkbox a {
	color: var(--color-azul);
}

.formulario_submit button,
.formulario_redes a,
.sc-formulario-contacto .actions input {
	background: #444;
	color: #fff;
	font-weight: bold;
	border-radius: 12px;
	padding: 0.7rem 2.2rem;
	font-size: 1.1rem;
	border: none;
	transition: background 0.2s, color 0.2s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.formulario_submit button:hover,
.formulario_redes a:hover,
.sc-formulario-contacto .actions input:hover {
	background: var(--color-azul);
	color: var(--color-blanco);
}

.sc-formulario-contacto legend {
	font-size: 14px;
}


.sc-tab-logo {
	max-width: 70%;
	margin: 0 auto;
	display: block;
}

/* Botones de tabs personalizados */

.sc-tabs-nav .nav-link {
	font-weight: bold;
	font-size: 1.1rem;
	color: var(--color-gris);
	background: #f5f5f5;
	border-radius: 10px 0 0 10px;
	margin: 0;
	padding: 0.8rem 2.2rem;
	transition: background 0.2s, color 0.2s;
	border: 0px solid var(--color-azul-brillante);
	border-right: none;
	box-shadow: none;
	position: relative;
	z-index: 1;
}

.sc-tabs-nav .nav-item:last-child .nav-link {
	border-radius: 0 10px 10px 0;
	border-right: 1.5px solid var(--color-azul-brillante);
}

.sc-tabs-nav .nav-link.active,
.sc-tabs-nav .nav-link:hover {
	background: var(--color-azul-brillante);
	color: var(--color-blanco);
	border-color: var(--color-azul-brillante);
	z-index: 2;
}

.sc-tabs-nav {
	border-radius: 11px;
	border: 1px solid var(--color-azul-brillante);
	overflow: hidden;
	background: var(--color-blanco);
	display: flex;
	padding: 0;
	margin: 0 auto 2rem auto;
	width: fit-content;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.sc-tabs-nav .nav-link.active,
.sc-tabs-nav .nav-link:hover {
	background: var(--color-azul-brillante);
	color: #fff;
	border-color: var(--color-azul-brillante)
}

/* Preguntas Frecuentes (Vertical Tabs) */
.sc-faq {
	background: #fff;
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
	padding: 2.5rem 1.5rem;
}

.sc-faq-title {
	color: #008ac9;
	font-weight: bold;
	letter-spacing: 1px;
}

.sc-faq-nav .nav-link {
	border-bottom: solid 2px var(--color-azul);
	color: var(--color-gris-oscuro);
	font-weight: 600;
	text-align: left;
	font-size: 1rem;
	padding: 1rem 1.2rem;
	transition: background 0.2s, color 0.2s;
	border-radius: 0;
}

.sc-faq-nav .nav-link.active,
.sc-faq-nav .nav-link:hover {
	border-radius: 18px;
	background: var(--color-azul);
	color: #fff;
	margin: 5px 0;
}

.sc-faq-content {
	padding: 2rem 2rem 1.5rem 2rem;
	min-height: 340px;
}

.sc-faq-content h4 {
	color: var(--color-gris-oscuro);
	font-weight: bold;
}

.sc-faq-content ul {
	margin-left: 1.2rem;
	margin-bottom: 1rem;
}

.sc-faq-content li {
	margin-bottom: 0.5rem;
}

@media (max-width: 991px) {

	.sc-tabs,
	.sc-faq {
		padding: 1.2rem 0.5rem;
	}

	.sc-faq-content {
		padding: 1.2rem 0.7rem;
	}
}

@media (max-width: 767px) {
	.sc-tabs-nav .nav-link {
		padding: 0.7rem 1rem;
		font-size: 1rem;
	}

	.sc-faq-content {
		min-height: 0;
	}
}


/* =====================
   Sección Single Proyecto: Info y Áreas Comunes
====================== */
.single-proyecto-info-row {
	min-height: 480px;
	display: flex;
	align-items: stretch;
}

.single-proyecto-info-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 3rem 2rem 2rem 2rem;
}

.single-proyecto-logo {
	max-width: 180px;
	margin-bottom: 1.5rem;
}

.single-proyecto-desc-scroll {
	max-height: 250px;
	color: #888;
	font-size: 1.1rem;
	margin-bottom: 2.2rem;
	width: 100%;
}

.single-proyecto-brochure {
	margin-top: auto;
}

.btn-brochure {
	border: 2px solid var(--color-azul);
	background: #fff;
	color: var(--color-azul);
	font-weight: bold;
	border-radius: 12px;
	padding: 0.7rem 2.2rem;
	font-size: 1.1rem;
	transition: background 0.2s, color 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}

.btn-brochure:hover {
	background: var(--color-azul);
	color: #fff;
}

.single-proyecto-info-right {
	background: var(--color-azul);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 3rem 2rem;
	min-height: 480px;
}

.single-proyecto-slider-title {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 2.2rem;
}

.single-proyecto-slider {
	width: 100%;
	max-width: 480px;
}

.area-comun-card {
	background: #4fc3f7;
	border-radius: 14px;
	padding: 1.1rem 2rem;
	color: #fff;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: 1.2rem;
	min-width: 220px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

.area-comun-card:last-child {
	margin-bottom: 0;
}

.area-comun-icon {
	font-size: 2.2rem;
	min-width: 40px;
	text-align: center;
}


/* Banner */
.sc-banner-blog {
	min-height: 320px;
	background-size: cover !important;
	background-position: center !important;
	position: relative;
}

.sc-banner-blog-content {
	z-index: 2;
}

.sc-banner-blog-title {
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	margin-bottom: 5%;
	margin-left: 20%;
}

.sc-banner-blog-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	border-radius: 0 0 0 0;
	z-index: 1;
}

.sc-banner-blog-subtitle {
	display: inline-flex;
	vertical-align: top;
	margin-bottom: 10%;
	margin-left: 20%;
}

.franja-blanca {
	background: var(--color-blanco);
	color: var(--color-negro);
	font-weight: 400;
	padding: 1.2rem 0 1.1rem 0;
	letter-spacing: 0.5px;
	overflow: hidden;
}

.overflow-scroll-azul {
	scrollbar-color: var(--color-azul) var(--color-gris-claro);
	overflow-y: scroll;

}

/* Animación pulso para el after del botón TOUR 360° */
@keyframes pulso-apto {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.15);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 0.7;
	}
}

.tour-360-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #00aeff;
	color: #fff;
	font-weight: bold;
	padding: 5%;
	border-radius: 50px;
	font-size: 1.1rem;
	box-shadow: 0 2px 12px rgba(0, 174, 255, 0.15);
	z-index: 1;
}

.swiper-pagination-bullet {
	background: var(--color-blanco);
}

.swiper-pagination-bullet-active {
	background: var(--color-blanco);
	position: relative;

	&::after {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: transparent;
		border: solid 2px var(--color-blanco);
		border-radius: 50%;
		transform: scale(1.2);
		animation: pulso-apto 1.2s infinite;
	}
}

.calidad-pagination .swiper-pagination-bullet {
	background: var(--color-gris-oscuro);
}

.calidad-pagination .swiper-pagination-bullet-active {
	background: var(--color-azul);
	position: relative;

	&::after {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: transparent;
		border: solid 2px var(--color-azul);
		border-radius: 50%;
		transform: scale(1.2);
		animation: pulso-apto 1.2s infinite;
	}
}

.card-info-proyecto {
	border-radius: 22px;
	box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.30);
	background: var(--color-gris-claro);
	padding: 2.5rem 2rem 2rem 2rem;
	position: relative;
	margin-top: 3.5rem;
}

/* =====================
   Tabs tipo pills personalizados Elige tu Apto
====================== */
.apto-tabs-pills {
	display: flex;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #d1d5db;
	background: #f8f9fa;
	padding: 0;
}

.apto-tabs-pills .nav-item {
	flex: 1 1 0;
	margin: 0;
}

.apto-tabs-pills .nav-link {
	border: none;
	border-right: 1px solid #d1d5db;
	background: transparent;
	color: #222;
	font-weight: bold;
	font-size: 1.05rem;
	text-align: center;
	padding: 16px 0;
	transition: background 0.2s, color 0.2s;
	border-radius: 0;
	letter-spacing: 1px;
	width: 100%;
}

.apto-tabs-pills .nav-link:last-child {
	border-right: none;
}

.apto-tabs-pills .nav-link.active {
	background: var(--color-azul-brillante);
	color: #fff;
}

.apto-tabs-pills .nav-link:focus {
	outline: none;
	box-shadow: none;
}

@media (max-width: 767px) {
	.apto-tabs-pills .nav-link {
		font-size: 0.95rem;
		padding: 12px 0;
	}
}

/* =====================
   Tabs tipo pills personalizados Elige tu Apto
====================== */
.apto-tabs-pills-avance {
	display: flex;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--color-azul-brillante);
	padding: 0;
}

.apto-tabs-pills-avance .nav-item {
	flex: 1 1 0;
	margin: 0;
}

.apto-tabs-pills-avance .nav-link {
	border: none;
	border-right: 1px solid var(--color-azul-brillante);
	background: transparent;
	color: var(--color-blanco);
	font-weight: bold;
	font-size: 1.05rem;
	text-align: center;
	padding: 16px 0;
	transition: background 0.2s, color 0.2s;
	border-radius: 0;
	letter-spacing: 1px;
	width: 100%;
	height: 100%;
}

.apto-tabs-pills-avance .nav-link:last-child {
	border-right: none;
}

.apto-tabs-pills-avance .nav-link.active {
	background: var(--color-azul-brillante);
	color: #fff;
}

.apto-tabs-pills-avance .nav-link:focus {
	outline: none;
	box-shadow: none;
}

@media (max-width: 767px) {
	.apto-tabs-pills-avance .nav-link {
		font-size: 0.95rem;
		padding: 12px 0;
	}
}

.swiperAsesorVertical .swiper-pagination-bullet-active {
	background: #000;
	position: relative;
}

.swiperAsesorVertical .swiper-pagination-bullet {
	background: #000;
}

.swiperMasProyectosPagination .swiper-pagination-bullet-active {
	background: var(--color-azul);
	position: relative;
}

.swiperMasProyectosPagination .swiper-pagination-bullet {
	background: #000;
}

.swiperMasProyectos .swiper-slide .card-proyecto-sujerido {
	background: #f3f3f3;
	border-radius: 25px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
	overflow: hidden;
}

.swiperMasProyectos .swiper-slide .col-img {
	& .imagen-proyecto-sujerido {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: top;
		border-radius: 25px;
		min-height: 200px;
	}

	& .badge-warning {
		top: 15px;
		left: 0px;
		font-size: 14px;
		padding: 6px 18px;
		border-radius: 0 12px 12px 0;
		color: #fff;
	}
}

#ciudadesTab .nav-link {
	color: var(--color-azul);
	background-color: transparent;
	border-radius: 10px;
	border: solid 1px var(--color-azul);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: normal;
	line-height: 1.2;
	font-weight: 600;
	font-size: 13px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
	transition: background 0.2s, color 0.2s;
}

#ciudadesTab .nav-link:hover {
	background-color: #0089c93b;
	transform: scale(1.02);
}

#ciudadesTab .nav-link.active {
	color: var(--color-blanco);
	background-color: var(--color-azul);
}


/*
==============================================
Landing Exterior
==============================================
*/

.mainLandingExterior h2 {
	font-size: 1.5rem;
	text-align: center;
	font-weight: 700;
	color: var(--color-negro);
	letter-spacing: 1.5px;
}

.mainLandingExterior h2 span {
	color: var(--color-azul-banner);
	font-weight: 700;
	padding-bottom: 6px;
	letter-spacing: 1.5px;
}

.mainLandingExterior .descripcion {
	max-width: 70% !important;
	margin: auto;
	text-align: center;
	margin-bottom: 7px;
}

/** Slider Landing **/

.swiperLandingExterior {
	padding: 0;
	object-fit: cover;
}

.florSlider {
	width: 20vw;
	position: absolute;
	top: 30%;
	right: 42vw;
	z-index: 1;
}

.swiperLandingExterior .swiper-pagination {
	width: 18px;
	height: 5px;
	border-radius: 11px;
	--swiper-pagination-color: var(--color-azul-claro);
}

.swiperLandingExterior .swiper-button-next,
.swiperLandingExterior .swiper-button-prev {
	background: var(--color-azul-claro);
	color: #fff;
	font-weight: 900;
	padding: 19px;
	border-radius: 50%;
	top: var(--swiper-navigation-top-offset, 48%);
	--swiper-navigation-size: 20px;
}

/** popup landing **/
.mainLandingExterior .popup {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	padding-top: 60px;
}

.mainLandingExterior .popup-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
}

.mainLandingExterior .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.mainLandingExterior .close:hover,
.mainLandingExterior .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

/** Submenu **/
.cont-submenu .menu_secondary_list {
	margin: 8px auto;
}

.cont-submenu .menu_secondary_list span {
	color: #fff
}

/** Section principal **/
.cont-principal h1 {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	padding-bottom: 5px;
}

.cont-principal .descrip {
	font-size: 1.5rem;
	text-align: center;
	font-weight: 700;
	color: var(--color-negro);
	letter-spacing: 1.5px;
}

.cont-principal .descrip span {
	color: var(--color-azul-banner);
	font-weight: 700;
	padding-bottom: 5px;
	letter-spacing: 1.5px;
}

.contenedor-slider {
	max-width: 920px;
	margin: auto;
}

.contenedor-slider .swiperPasosExterior {
	padding-left: 2.5%;
	padding-right: 2.5%;
}

.contenedor-slider .contSlider {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	text-align: center;
	margin-left: 10%;
	margin-right: 10%;
	padding-top: 10%;
	margin-bottom: 10%;
}

.contenedor-slider .contSlider img {
	width: 100%;
	margin: auto;
}

.contenedor-slider .contSlider p {
	font-size: 13px;
}

.contenedor-slider .swiper-button-next,
.contenedor-slider .swiper-button-prev {
	background: #cdcdcd;
	color: #fff;
	font-weight: 900;
	padding: 19px;
	border-radius: 50%;
	--swiper-navigation-size: 20px;
	--swiper-navigation-top-offset: 30%;
}

.contenedor-slider .swiper-button-next:after {
	font-size: 32px;
}

.contenedor-slider .swiper-button-prev:after {
	font-size: 32px;
}

.mainLandingExterior hr {
	max-width: 850px;
	margin: 60px auto;
	background-color: #e5e1de;
	height: 0.4px;
}

/** section testimonios **/
.section-testimonios .cont-testimonios {
	display: flex;
	flex-direction: row;
	max-width: 85%;
	margin: auto;
	justify-content: space-evenly;
}

.section-testimonios .cont-testimonios .card-testimonio {
	width: 30%;
	background-color: var(--bg-color-grey);
	border-radius: 0px 0px 10px 10px;
	margin-bottom: 8px;
	overflow: hidden;
}

.section-testimonios .cont-testimonios .card-testimonio img {
	width: 100%;
}

.section-testimonios .cont-testimonios .card-testimonio .info-card {
	padding: 5%;
	padding-left: 10%;
}

/** Section Proyectos **/
.section-proyectos .cambio-moneda {
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.section-proyectos .cambio-moneda span {
	margin: auto;
	font-weight: 700;
	font-size: 1.1rem;
}

.section-proyectos .cambio-moneda .cont-botones {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.section-proyectos .cambio-moneda .cont-botones button {
	padding: 3px 15px 3px 15px;
	border-radius: 5px;
	background-color: #a3a3a3;
	color: #fff;
	border: none;
	font-weight: 700;
	font-size: 1.1rem;
}

.section-proyectos .cambio-moneda .cont-botones button.active {
	background-color: var(--color-azul);
}

.section-proyectos .cont-proyectos {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 85%;
	margin: auto;
	justify-content: space-around;
	row-gap: 50px;
	margin-bottom: 8px;
}

.section-proyectos .cont-proyectos .card-proyecto {
	width: 30%;
	border-radius: 20px;
	background-color: var(--color-gris-claros);
	overflow: hidden;
}

.section-proyectos .cont-proyectos .card-proyecto img {
	width: 110%;
	max-width: 110%;
	margin: -5px;
}

.section-proyectos .cont-proyectos .card-proyecto h3 {
	margin: 5%;
	font-weight: 700;
	font-size: 1rem;
}

.section-proyectos .cont-proyectos .card-proyecto hr {
	height: 0.1px;
	width: 90%;
	margin: auto;
	color: #ededed;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto {
	margin: 5%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto .item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	margin-top: 10px;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto .item span {
	font-size: 15px;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto .separador2 {
	margin-right: 5px;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto img {
	width: 12%;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-precio {
	margin: 5%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-precio .info-precio {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-precio .info-precio p {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-azul);
	margin-top: 5px;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-precio .info-precio .precio,
.section-proyectos .cont-proyectos .card-proyecto .info-card-precio .info-precio .precioSalario {
	font-size: 1.6rem;
	font-weight: 700;
}

.section-proyectos .cont-proyectos .card-proyecto a {
	margin: auto !important;
	font-size: 1rem;
	font-weight: 700;
	background-color: var(--color-azul);
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 5px 20px 5px 20px;
	margin: 3%;
}

/** Section FAQS **/
.section-faqs .container .accordion>.card {
	border: none;
	max-width: 85%;
	margin: auto;
}

.section-faqs .container .accordion>.card>.card-header {
	border: none;
	margin-top: 20px;
	border-radius: 5px;
	background-color: var(--color-gris-claro);
}

.section-faqs .container .accordion>.card>.card-header>.card-title {
	text-decoration: none;
	color: var(--color-negro);
	font-size: 1rem;
	font-weight: 700;
}

.section-faqs .accordion .card-header:after {
	font-family: 'Font Awesome 5 Pro';
	content: "\f068";
	float: left;
	border: solid 1px var(--color-azul);
	border-radius: 50%;
	padding: 2px 5px 1px 4px;
	font-size: 11px;
	color: var(--color-azul);
	font-weight: 900;
	margin-right: 3%;
}

.section-faqs .accordion .card-header.collapsed:after {
	font-family: 'Font Awesome 5 Pro';
	content: "\f067";
	padding: 2px 5px 1px 4px;
	color: var(--color-azul);
	font-weight: 900;
	font-size: 11px;
	margin-right: 3%;
}

.section-faqs .CTA {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
}

.section-faqs .CTA a {
	font-size: 1.2rem;
	font-weight: 700;
	background-color: var(--color-azul);
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 5px 20px 5px 20px;
	margin: 3%;
}

.section-faqs .CTA span {
	font-size: 1.2rem;
	font-weight: 700;
}

/* section blog */

.section-blog {
	margin-bottom: 15px;
}

.contenedor-slider-blog {
	width: 85%;
	margin: auto;
}

.contenedor-slider-blog .swiperBlogExterior {
	padding-left: 5%;
	padding-right: 10%;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide {
	-webkit-box-shadow: 2px 2px 2px 0px rgba(176, 176, 176, 0.61);
	-moz-box-shadow: 2px 2px 2px 0px rgba(176, 176, 176, 0.61);
	box-shadow: 2px 2px 2px 0px rgba(176, 176, 176, 0.61);
	border: solid 1px rgba(176, 176, 176, 0.61);
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	padding-bottom: 1.5%;
	padding-top: 2%;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog {
	width: 45%;
	display: flex;
	flex-direction: column;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog h3 {
	font-size: 1.5rem;
	font-weight: 700;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog span {
	margin-top: 3px;
	margin-bottom: 3px;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog span a {
	color: #fff;
	background-color: var(--color-azul-claro);
	border: none;
	border-radius: 5px;
	padding: 3px 10px 3px 10px;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog span a:hover {
	text-decoration: none;
	color: #fff;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog a {
	color: var(--color-azul-claro);
	margin-top: 3px;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-img-blog {
	width: 45%;
}

.contenedor-slider-blog .swiper-button-next,
.contenedor-slider-blog .swiper-button-prev {
	background: #cdcdcd;
	color: #fff;
	font-weight: 900;
	padding: 19px;
	border-radius: 50%;
	--swiper-navigation-size: 25px;
}

.section-formulario .hbspt-form {
	text-align: center;
}

.section-formulario .hs-form {
	display: inline-block;
	margin: 0px auto;
}

.menu_secondary {
	position: initial;
}

.menu_secondary .container,
.menu_secondary_list ul,
.menu_secondary_tools {
	flex-wrap: wrap;
}

.section_1_grid,
.section_1_item_2 {
	grid-template-columns: repeat(2, 48.8%);
}

.section_1_item_2 {
	grid-column-start: 1;
	grid-column-end: 3;
}

.breadcump_img,
.breadcump_item,
.info_section_2,
.section_2_cuotas_item {
	flex-wrap: wrap;
	justify-content: center;
}

.menu_secondary_list li {
	width: 50%;
}


.menu_secondary {
	background: #000;
	padding: 5px 0;
	position: sticky;
	top: 54px;
	z-index: 10;
}

.menu_secondary .container,
.menu_secondary_list ul,
.menu_secondary_tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu_secondary_list a {
	font-size: 12px;
	padding: 5px 20px;
	color: #fff;
	border-right: 1px solid #fff;
}

.menu_secondary_list li:last-child>a {
	border: none;
}

.menu_secondary_tools_img img {
	width: 30px;
}

.menu_secondary_tools_img {
	margin: 0 10px;
}

.menu_secondary_tools {
	padding-right: 10px;
}

.menu_secondary_tools_button a {
	background: #f7931e;
	color: #fff;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 4px;
	line-height: 1;
}

#newSingle .menu_secondary {
	padding: 0px;
}

#newSingle .menu_secondary_list li a:hover,
#newSingle .menu_secondary_list li a:hover span:before {
	/*color: var(--color-azul-banner);
	text-decoration: none;*/
}

#newSingle .menu_secondary_list li a.active,
#newSingle .menu_secondary_list li a.active span:before {
	color: var(--color-azul) !important;
	text-decoration: none;
}

#newSingle .menu_secondary_list li span {
	padding-right: 4px;
}

#newSingle .menu_secondary_tools_img a {
	display: block;
}

#newSingle .menu_secondary_tools_img img {
	line-height: 0px;
	padding: 5px 0px 0px;
}

/** Submenu **/
.cont-submenu .menu_secondary_list {
	margin: 8px auto;
}

.cont-submenu .menu_secondary_list span {
	color: #fff
}


/*Formulario hubspot*/
.form_hubspot {
	padding: 20px 0px 30px;
	overflow: hidden;
}

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

.form_hubspot .hs-error-msg {
	color: #ef5350 !important;
}

.formulario_item {
	margin-bottom: 20px;
}

.formulario_item label,
.form_hubspot label {
	font-family: 'Gotham-Medium', sans-serif;
	font-size: 13px;
	display: block;
	margin-bottom: 5px;
	color: var(--color-negro) !important;
}

.form_hubspot .hs-form-field {
	margin-bottom: 15px;
}

.form_hubspot .hs-form-field {
	margin-bottom: 15px;
}

.formulario_item input,
.form_hubspot input[type='text'],
.form_hubspot input[type='email'],
.form_hubspot input[type='number'],
.form_hubspot input[type='tel'] {
	width: 100%;
	height: 35px;
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 0px 0 2px;
	font-size: 15px;
}

.formulario_item select,
.form_hubspot select {
	width: 100%;
	height: 35px;
	border: none;
	border-bottom: 1px solid #cccccc;
	padding: 0px 0 2px;
}

.formulario_check,
.form_hubspot checkbox {
	margin-bottom: 20px;
}

.formulario_check label,
.form_hubspot checkbox label {
	font-size: 13px;
}

.formulario_check a,
.form_hubspot checkbox a {
	color: var(--color-azul);
}

.formulario_submit button,
.formulario_redes a,
.form_hubspot .actions input {
	background: var(--color-azul);
	width: 100%;
	padding: 20px;
	border: 2px solid var(--color-azul);
	color: #fff;
	border-bottom: 2px solid var(--color-azul-claro);
	font-size: 14px;
	cursor: pointer;
	transition: all 0.5s ease;
	font-family: 'Gotham-Medium', sans-serif;
}

.formulario_submit button:hover,
.formulario_redes a:hover,
.form_hubspot .actions input:hover {
	background: #fff;
	color: var(--color-azul);
}

.form_hubspot legend {
	font-size: 14px;
}


.formulario_redes {
	display: flex;
	align-items: center;
}

.formulario_redes a {
	width: 100%;
	display: block;
	text-align: center;
	line-height: 1;
}

.formulario_redes a:nth-child(1) {
	border-right: 2px solid var(--color-azul-claro);
}

#main-single-proyecto .btnContacto {
	position: fixed;
	bottom: 10%;
	right: 2%;
	z-index: 99;
}

#main-single-proyecto .btnContacto a {
	display: block;
	background: #25D366;
	color: #fff;
	border-radius: 20px;
	font-size: 20px;
}

#main-single-proyecto .btnContacto a span {
	color: #fff;
}

#main-single-proyecto .btnContacto img {
	display: none;
	margin-bottom: -7px;
	width: 40px;
	margin-left: auto;
	margin-right: 0px;
}

.swiperPaginationLineaTiempo .swiper-pagination-bullet {
	background-color: #000;
}

.swiperPaginationLineaTiempo .swiper-pagination-bullet-active {
	background: var(--color-azul);
	color: #fff;
}

.swiperPaginationLineaTiempo .swiper-pagination-bullet-active {
	&::after {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: transparent;
		border: solid 2px var(--color-azul);
		border-radius: 50%;
		transform: scale(1.2);
		animation: pulso-apto 1.2s infinite;
	}
}

.swiperProyectos .swiper-button-prev:after,
.swiperProyectos .swiper-button-next:after {
	color: var(--color-blanco);
}

.swiperMasProyectosPagination .swiper-pagination-bullet-active {
	background: var(--color-azul);
	color: #fff;
}

.swiperMasProyectosPagination .swiper-pagination-bullet-active {
	&::after {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: transparent;
		border: solid 2px var(--color-azul);
		border-radius: 50%;
		transform: scale(1.2);
		animation: pulso-apto 1.2s infinite;
	}
}

.p-sin-margin {
	& p {
		margin-bottom: 0;
	}
}