/* ==========================================================================
   ALTGELT — Estilos compartidos del rediseño 2026
   Usado por todas las páginas *.php (maquetas, sin base de datos).
   Las rutas de imágenes/fuentes son relativas a esta carpeta (css/),
   por eso llevan el prefijo ../
   ========================================================================== */

/* =========================
   FUENTES
==========================*/

@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900&display=swap');

@font-face {
	font-family: 'Avenir Light';
	src: url('../fonts/avenir-light.ttf') format('truetype'),
			 url('../fonts/avenir-light-webfont.woff2') format('woff2'),
			 url('../fonts/avenir-light-webfont.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

:root{
	--azul:#072c63;
	--amarillo:#d8b347;
	--gris:#f5f5f5;
	--texto:#222;
}

body{
	font-family: 'Avenir Light', sans-serif;
	color: var(--texto);
}

a{
	text-decoration:none;
}

/* =========================
   NAVBAR
==========================*/

.navbar{
	background:#fff;
	padding:20px 0;
	border-bottom:1px solid #eee;
}

.navbar-brand{
	font-size:38px;
	font-weight:800;
	color:var(--azul);
	line-height:1;
}

.navbar-brand span{
	display:block;
	font-size:12px;
	letter-spacing:3px;
	color:#777;
	font-weight:600;
}

.navbar-nav .nav-link{
	color:#222;
	font-size:13px;
	font-weight:600;
	margin:0 10px;
	text-transform:uppercase;
	white-space:nowrap;
}

.navbar-nav .nav-link.active{
	color:var(--azul);
	border-bottom:2px solid var(--amarillo);
}

.navbar-nav .dropdown-menu{
	border:none;
	border-radius:2px;
	border-top:3px solid var(--amarillo);
	box-shadow:0 10px 30px rgba(0,0,0,.12);
	padding:8px 0;
	margin-top:0;
}

.navbar-nav .dropdown-item{
	font-size:13px;
	font-weight:600;
	text-transform:uppercase;
	color:#222;
	padding:10px 20px;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus{
	background:var(--amarillo);
	color:#000;
}

.navbar-nav .dropdown-toggle::after{
	vertical-align:2px;
}

.lang-switch{
	display:flex;
	align-items:center;
	gap:8px;
}

.lang-switch a{
	display:inline-block;
	line-height:0;
	opacity:.45;
	transition:opacity .2s ease, box-shadow .2s ease;
	border-radius:2px;
}

.lang-switch a.active,
.lang-switch a:hover{
	opacity:1;
}

.lang-switch a.active{
	box-shadow:0 0 0 2px var(--azul);
}

.lang-flag{
	width:24px;
	height:16px;
	border-radius:2px;
	box-shadow:0 0 0 1px rgba(0,0,0,.1);
	display:block;
}

/* =========================
   BOTONES
==========================*/

.btn-gold{
	background:var(--amarillo);
	color:#000;
	border:none;
	font-size:13px;
	font-weight:700;
	padding:14px 24px;
	text-transform:uppercase;
	letter-spacing:1px;
}

.btn-gold:hover{
	background:#c6a33d;
}

.btn-blue{
	background:var(--azul);
	color:#fff;
	border:none;
	font-size:13px;
	font-weight:700;
	padding:14px 24px;
	text-transform:uppercase;
	letter-spacing:1px;
}

.btn-blue:hover{
	background:#051f47;
	color:#fff;
}

.btn-outline-gold{
	background:transparent;
	color:#fff;
	border:1px solid #fff;
	font-size:13px;
	font-weight:700;
	padding:14px 24px;
	text-transform:uppercase;
	letter-spacing:1px;
}

.btn-outline-gold:hover{
	background:#fff;
	color:#000;
}

.btn-whatsapp{
	background:#1d751d; /* 25D366 */
	color:#fff;
	border:none;
	font-size:13px;
	font-weight:700;
	padding:14px 24px;
	text-transform:uppercase;
	letter-spacing:1px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	width:fit-content;
	align-self:flex-start;
}

.btn-whatsapp i{
	font-size:16px;
}

.btn-whatsapp:hover{
	background:#1ebc59;
	color:#fff;
}

/* =========================
   HERO (portada, index)
==========================*/

.hero{
	background:url('../images/living.jpg') center center/cover no-repeat;
	min-height:720px;
	position:relative;
	display:flex;
	align-items:center;
}

.hero-overlay{
	position:absolute;
	inset:0;
	background:rgba(255,255,255,.25);
}

.hero-content{
	position:relative;
	z-index:2;
	background:rgba(255,255,255,.92);
	padding:60px;
	max-width:520px;
}

.hero h1{
	font-size:62px;
	font-weight:800;
	line-height:1.05;
	color:var(--azul);
	margin-bottom:30px;
}

.hero-subtitle{
	color:var(--azul);
	font-size:18px;
	font-weight:700;
	letter-spacing:3px;
	text-transform:uppercase;
	margin-bottom:25px;
}

.hero p{
	color:#555;
	line-height:1.9;
	font-size:15px;
}

.hero-buttons{
	margin-top:35px;
	display:flex;
	gap:15px;
	flex-wrap:wrap;
}

/* =========================
   PAGE HEADER (equipo, tasaciones, contacto, emprendimientos)
==========================*/

.page-header{
	background:var(--azul);
	color:#fff;
	padding:90px 0 70px;
	text-align:center;
}

.page-header .section-mini{
	color:var(--amarillo);
}

.page-header h1{
	font-size:52px;
	font-weight:800;
	margin-bottom:20px;
}

.page-header p{
	color:#dfe4ee;
	max-width:760px;
	margin:0 auto;
	line-height:1.9;
	font-size:16px;
}

/* =========================
   SECTION MINI (etiqueta pequeña sobre títulos)
==========================*/

.section-mini{
	color:var(--amarillo);
	text-transform:uppercase;
	font-size:13px;
	font-weight:700;
	letter-spacing:3px;
	margin-bottom:20px;
}

/* =========================
   INTRO (equipo, tasaciones)
==========================*/

.intro{
	padding:80px 0 40px;
}

.intro h2{
	font-size:40px;
	color:var(--azul);
	font-weight:700;
	margin-bottom:25px;
}

.intro p{
	color:#555;
	line-height:1.9;
	font-size:16px;
}

.intro img{
	width:100%;
	border-radius:4px;
}

/* Ajustes propios de la página Tasaciones */
.page-tasaciones .intro{
	padding:90px 0;
}

.page-tasaciones .intro h2{
	font-size:42px;
}

.page-tasaciones .intro p{
	color:#666;
}

/* =========================
   FEATURES (franja azul de íconos)
==========================*/

.features{
	background:var(--azul);
	color:#fff;
	padding:60px 0;
}

.feature-box{
	text-align:center;
	padding:20px;
	border-right:1px solid rgba(255,255,255,.15);
}

.feature-box:last-child{
	border-right:none;
}

.feature-icon{
	font-size:78px;
	margin-bottom:20px;
	color:var(--amarillo);
}

.feature-box h4{
	font-size:16px;
	font-weight:700;
	text-transform:uppercase;
	margin-bottom:15px;
	letter-spacing:1px;
}

.feature-box p{
	font-size:14px;
	color:#ddd;
	line-height:1.8;
}

/* Ajustes propios de Equipo y Tasaciones */
.page-equipo .feature-icon{
	font-size:60px;
}

.page-tasaciones .features{
	padding:70px 0;
}

.page-tasaciones .feature-icon{
	font-size:56px;
}

.page-tasaciones .feature-box h4{
	font-size:15px;
}

.page-equipo .feature-box p,
.page-tasaciones .feature-box p{
	margin-bottom:0;
}

/* Ícono horizontal (características de la propiedad en ficha) */
.feature{
	display:flex;
	align-items:center;
	gap:15px;
	padding:18px;
	background:#fafafa;
	border-radius:12px;
}

.feature i{
	font-size:30px;
	color:#0b3b70;
}

/* =========================
   ABOUT
==========================*/

.about{
	padding:100px 0;
}

.about img{
	width:100%;
	border-radius:4px;
}

.about h2{
	font-size:48px;
	color:var(--azul);
	font-weight:700;
	margin-bottom:25px;
}

.about p{
	color:#666;
	line-height:1.9;
}

.about-list{
	padding-left:0;
	list-style:none;
	margin-top:30px;
}

.about-list li{
	margin-bottom:20px;
	color:#444;
	font-weight:500;
}

.strategy-list{
	list-style:none;
	padding:0;
}

.strategy-list li{
	margin-bottom:25px;
	display:flex;
	gap:15px;
}

.strategy-list i{
	font-size:2rem;
	color:var(--azul);
}

/* =========================
   PROPERTIES (propiedades destacadas)
==========================*/

.properties{
	padding:90px 0;
	background:#fafafa;
}

.property-card{
	background:#fff;
	overflow:hidden;
	transition:.3s;
	height:100%;
}

.property-card:hover{
	transform:translateY(-5px);
	box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.property-card img{
	width:100%;
	height:230px;
	object-fit:cover;
}

.property-content{
	padding:25px;
}

.property-location{
	color:#777;
	font-size:12px;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
}

.property-title{
	color:var(--azul);
	font-size:24px;
	font-weight:700;
	margin:10px 0 20px;
}

.property-info{
	font-size:13px;
	color:#777;
	margin-bottom:20px;
}

.property-link{
	color:var(--amarillo);
	font-weight:700;
	text-transform:uppercase;
	font-size:13px;
	letter-spacing:1px;
}

/* Tarjeta de propiedad tipo grilla (tarjetas, newsletter, ficha) */

.property-grid-card{
	background:#fff;
	border:none;
	overflow:hidden;
	transition:.35s;
	height:100%;
}

.property-grid-card:hover{
	transform:translateY(-6px);
	box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.property-grid-card img{
	width:100%;
	height:240px;
	object-fit:cover;
}

.property-body{
	padding:22px;
}

.property-tag{
	display:inline-block;
	background:var(--azul);
	color:#fff;
	font-size:11px;
	font-weight:700;
	letter-spacing:1px;
	padding:6px 12px;
	margin-bottom:15px;
}

.property-price{
	font-size:30px;
	color:var(--azul);
	font-weight:700;
	margin-bottom:10px;
}

.property-address{
	font-size:22px;
	color:var(--azul);
	font-weight:700;
	margin-bottom:4px;
}

.property-neighborhood{
	color:#777;
	margin-bottom:18px;
}

.property-icons{
	display:flex;
	gap:20px;
	margin-bottom:18px;
	color:#555;
	font-size:14px;
}

.property-icons i{
	color:var(--amarillo);
}

.property-description{
	color:#666;
	font-size:14px;
	line-height:1.7;
	min-height:72px;
}

.property-summary{
	background:#f7f7f7;
	border-radius:14px;
	padding:25px 0;
	margin-bottom:40px;
}

.property-summary .number{
	font-size:30px;
	font-weight:700;
	color:#0b3b70;
}

/* Galería de fotos (newsletter) */
.imagen-galeria{
	overflow: hidden;
	border-radius: 12px;
	height: 100%;
}

.imagen-galeria img{
	display: block;
	height: 100%;
	object-fit: cover;
}

/* =========================
   TASACIONES — proceso en pasos
==========================*/

.proceso{
	padding:90px 0;
	background:#fafafa;
}

.paso-card{
	background:#fff;
	height:100%;
	padding:35px 30px;
	border-radius:4px;
	transition:.3s;
	border-top:4px solid var(--amarillo);
}

.paso-card:nth-child(even){
	border-top-color:var(--azul);
}

.paso-card:hover{
	transform:translateY(-5px);
	box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.paso-numero{
	font-size:46px;
	font-weight:800;
	color:var(--amarillo);
	line-height:1;
	margin-bottom:15px;
}

.paso-card h4{
	color:var(--azul);
	font-size:17px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:.5px;
	margin-bottom:15px;
}

.paso-card p{
	color:#666;
	font-size:14px;
	line-height:1.8;
	margin-bottom:0;
}

.galeria{
	padding:0;
}

.galeria img{
	width:100%;
	height:260px;
	object-fit:cover;
	display:block;
}

/* =========================
   TASACIONES / CONTACTO — formularios
==========================*/

.contacto{
	padding:90px 0;
}

.form-tasacion,
.form-contacto{
	background:#fafafa;
	border-radius:4px;
	padding:45px;
}

.form-contacto{
	height:100%;
}

.form-tasacion label,
.form-contacto label{
	font-size:13px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:.5px;
	color:var(--azul);
	margin-bottom:8px;
	display:block;
}

.form-tasacion .form-control,
.form-tasacion .form-select,
.form-contacto .form-control{
	border:1px solid #ddd;
	border-radius:3px;
	padding:12px 15px;
	font-size:14px;
	margin-bottom:22px;
}

.form-tasacion .form-control:focus,
.form-tasacion .form-select:focus,
.form-contacto .form-control:focus{
	border-color:var(--azul);
	box-shadow:none;
}

.form-tasacion .btn-blue,
.form-contacto .btn-blue{
	width:100%;
	padding:16px;
	font-size:14px;
}

#form-ok{
	display:none;
	background:#e7f6ec;
	border:1px solid #b7e2c4;
	color:#1e6b3a;
	padding:18px 20px;
	border-radius:4px;
	font-size:14px;
	margin-bottom:22px;
}

.whatsapp-box{
	background:var(--azul);
	color:#fff;
	border-radius:4px;
	padding:45px;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

/* En Tasaciones el bloque acompaña al formulario en la misma fila y debe igualar su altura */
.page-tasaciones .whatsapp-box{
	height:100%;
}

.whatsapp-box i{
	font-size:52px;
	color:#fff;
	margin-bottom:20px;
}

.whatsapp-box h3{
	font-size:26px;
	font-weight:700;
	margin-bottom:15px;
}

.whatsapp-box p{
	color:#dfe4ee;
	line-height:1.8;
	font-size:15px;
	margin-bottom:25px;
}

/* =========================
   CONTACTO — banner, info y mapa
==========================*/

.contact-banner{
	background:#e7f6ec;
	border-bottom:1px solid #cdecd6;
	padding:18px 0;
	text-align:center;
}

.contact-banner p{
	margin:0;
	font-size:15px;
	color:#1e6b3a;
}

.contact-banner a{
	color:#1e6b3a;
	font-weight:700;
	text-decoration:underline;
}

.contact-banner i{
	color:#25D366;
	margin-right:6px;
}

.info-box{
	background:var(--azul);
	color:#fff;
	border-radius:4px;
	padding:45px;
	height:100%;
}

.info-box h3{
	font-size:24px;
	font-weight:700;
	margin-bottom:25px;
}

.info-item{
	display:flex;
	gap:18px;
	margin-bottom:24px;
}

.info-item i{
	font-size:22px;
	color:var(--amarillo);
	flex-shrink:0;
	margin-top:3px;
}

.info-item strong{
	display:block;
	font-size:13px;
	text-transform:uppercase;
	letter-spacing:.5px;
	color:var(--amarillo);
	margin-bottom:4px;
}

.info-item span, .info-item a{
	color:#dfe4ee;
	font-size:15px;
	line-height:1.6;
}

.info-item a{
	text-decoration:none;
}

.info-item a:hover{
	text-decoration:underline;
}

.redes{
	display:flex;
	gap:12px;
	margin-top:30px;
	padding-top:30px;
	border-top:1px solid rgba(255,255,255,.15);
}

.redes a{
	width:42px;
	height:42px;
	border-radius:50%;
	background:rgba(255,255,255,.1);
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
	font-size:18px;
	transition:.3s;
}

.redes a:hover{
	background:var(--amarillo);
	color:#000;
}

.mapa-seccion{
	position:relative;
}

.mapa-seccion iframe{
	width:100%;
	height:480px;
	display:block;
	border:0;
	filter:grayscale(15%);
}

.mapa-info-wrap{
	position:relative;
}

.mapa-info{
	background:#fff;
	padding:35px 40px;
	max-width:340px;
	box-shadow:0 15px 40px rgba(0,0,0,.12);
	border-top:4px solid var(--amarillo);
}

@media(min-width:992px){
	.mapa-info{
		position:absolute;
		top:40px;
		left:40px;
	}
}

.mapa-info h4{
	color:var(--azul);
	font-size:18px;
	font-weight:700;
	margin-bottom:15px;
}

.mapa-info p{
	color:#555;
	font-size:14px;
	line-height:1.8;
	margin-bottom:0;
}

/* =========================
   EMPRENDIMIENTOS
==========================*/

.proyectos{
	padding:90px 0;
	background:#fafafa;
}

.proyecto-card{
	background:#fff;
	overflow:hidden;
	transition:.3s;
	height:100%;
	position:relative;
	border-radius:4px;
}

.proyecto-card:hover{
	transform:translateY(-5px);
	box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.proyecto-card img{
	width:100%;
	height:230px;
	object-fit:cover;
}

.proyecto-badge{
	position:absolute;
	top:15px;
	left:15px;
	background:var(--amarillo);
	color:#000;
	font-size:11px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:1px;
	padding:6px 14px;
	border-radius:2px;
}

.proyecto-content{
	padding:25px;
}

.proyecto-location{
	color:#777;
	font-size:12px;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
}

.proyecto-title{
	color:var(--azul);
	font-size:22px;
	font-weight:700;
	margin:10px 0 12px;
}

.proyecto-info{
	font-size:13px;
	color:#777;
	margin-bottom:20px;
	line-height:1.7;
}

.proyecto-link{
	color:var(--amarillo);
	font-weight:700;
	text-transform:uppercase;
	font-size:13px;
	letter-spacing:1px;
}

.realizados{
	padding:90px 0;
}

.historia-card{
	background:#fff;
	height:100%;
	border-radius:4px;
	overflow:hidden;
	box-shadow:0 2px 15px rgba(0,0,0,.06);
	transition:.3s;
}

.historia-card:hover{
	transform:translateY(-5px);
	box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.historia-card img{
	width:100%;
	height:190px;
	object-fit:cover;
}

.historia-content{
	padding:22px;
}

.historia-content h4{
	color:var(--azul);
	font-size:17px;
	font-weight:700;
	margin-bottom:10px;
	text-transform:uppercase;
}

.historia-content ul{
	list-style:none;
	padding:0;
	margin:0 0 12px;
	font-size:13px;
	color:#666;
}

.historia-content ul li{
	margin-bottom:5px;
}

.historia-content ul li strong{
	color:var(--azul);
}

.historia-content p{
	font-size:13px;
	color:#777;
	line-height:1.7;
	margin-bottom:0;
}

/* =========================
   EQUIPO
==========================*/

.team{
	padding:90px 0;
	background:#fafafa;
}

.team-card{
	background:#fff;
	overflow:hidden;
	transition:.3s;
	height:100%;
	text-align:center;
	border-radius:4px;
}

.team-card:hover{
	transform:translateY(-5px);
	box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.team-card img{
	width:100%;
	height:280px;
	object-fit:contain;
	background:#f0f0f0;
}

.team-card .team-content{
	padding:25px;
}

.team-card .team-name{
	color:var(--azul);
	font-size:19px;
	font-weight:700;
	margin-bottom:6px;
}

.team-card .team-role{
	color:#777;
	font-size:12px;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
	margin-bottom:20px;
}

.team-photo-group{
	padding:0 0 90px;
	background:#fafafa;
}

.team-photo-group img{
	width:100%;
	border-radius:4px;
}

.selectia{
	padding:90px 0;
}

.selectia p{
	color:#666;
	line-height:1.9;
	font-size:15px;
}

/* =========================
   FICHA DE PROPIEDAD
==========================*/

.hero-image{
	height:520px;
	object-fit:cover;
}

.thumb-image{
	height:250px;
	width:100%;
	object-fit:cover;
}

.gallery-more{
	position:absolute;
	inset:0;
	background:rgba(0,0,0,.45);
	color:#fff;
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:26px;
	font-weight:600;
	border-radius:.5rem;
}

.price-card{
	background:#fff;
	border-radius:16px;
	padding:30px;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
	top:100px;
}

.price{
	font-size:42px;
	font-weight:700;
	color:#0b3b70;
}

.section-title{
	font-size:34px;
	margin-bottom:30px;
	font-weight:700;
}

.share-buttons{
	display:flex;
	align-items:center;
	gap:10px;
}

.share-label{
	color:#777;
	margin-right:4px;
}

.share-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:36px;
	height:36px;
	border-radius:50%;
	background:#f0f2f5;
	color:var(--azul);
	font-size:16px;
	transition:.2s;
}

.share-btn:hover{
	color:#fff;
	transform:translateY(-2px);
}

.share-btn.share-fb:hover{ background:#1877F2; }
.share-btn.share-x:hover{ background:#000; }
.share-btn.share-wa:hover{ background:#25D366; }

/* =========================
   BUSCADOR (index, series)
==========================*/

@media (min-width: 992px) {
	.input-overlay {
		position: relative;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 2;
		width: 100%;
		max-width: 500px;
		text-align: center;
	}
}

@media (max-width: 992px) {
	.input-overlay {
		position: relative;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 2;
		width: 100%;
		max-width: 500px;
		text-align: center;
	}
}

.grupo-busqueda {
  display: flex;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 5px;
  overflow: hidden;
}

.input-busqueda {
  flex: 1;
  font-size: 18px;
  padding: 12px 15px;
  border: none;
  outline: none;
  border-radius: 5px 0 0 5px;
}

.boton-lupa {
  background-color: white;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
}

.boton-lupa:hover {
  background-color: #f0f0f0;
}

.icono-lupa {
  width: 24px;
  height: 24px;
  display: block;
}

#resultado-gpt {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10;
  text-align: left;
  display: none;
  font-size: 16px;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#resultado-gpt ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#resultado-gpt p {
  margin: 0;
  padding: 10px 15px;
}

#resultado-gpt li {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
	list-style: none;
}

#resultado-gpt li:hover {
  background-color: #f0f0f0;
}

.resultado-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
}

.resultado-img {
  width: 80px;
  height: 60px;
  max-width: 80px;
  max-height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.resultado-info {
  flex: 1;
  min-width: 0;
}

.resultado-dir {
  font-weight: bold;
  color: #002e5d;
  overflow-wrap: anywhere;
}

.resultado-tipo {
  font-size: 13px;
  color: #888;
}

.resultado-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
  overflow-wrap: anywhere;
}

.resultado-precio {
  font-size: 14px;
  color: #006400;
}

#resultado-gpt li.seleccionado {
    background-color: #dbeafe;
    cursor: pointer;
}

/* =========================
   CTA
==========================*/

.cta{
	background:var(--azul);
	color:#fff;
}

.cta .row{
	min-height:260px;
}

.cta-content{
	padding:60px;
}

.cta h3{
	font-size:42px;
	font-weight:700;
	margin-bottom:20px;
}

.cta p{
	color:#ddd;
	line-height:1.8;
	margin-bottom:30px;
}

.cta-image{
	background:url('../images/tasacion-pareja.jpg') center center/cover no-repeat;
	min-height:260px;
}

/* =========================
   FOOTER
==========================*/

.footer-altgelt{
	background:#f5f5f5;
}

.footer-menu{
	padding:40px 0 30px;
}

.footer-menu h5{
	font-size:16px;
	color:#666;
	margin-bottom:12px;
	font-weight:400;
	text-transform:uppercase;
}

.footer-menu ul{
	margin:0;
	padding:0;
	list-style:none;
}

.footer-menu li{
	margin-bottom:6px;
}

.footer-menu a{
	color:#7a7a7a;
	text-decoration:none;
	font-size:14px;
	transition:.2s;
}

.footer-menu a:hover{
	color:#072c63;
}

.footer-logos{
	padding:40px 0;
}

.footer-logo{
	height:70px;
	margin:0 8px;
	width:auto;
}

.footer-brand{
	height:75px;
	width:auto;
}

.footer-contacto{
	color:#666;
	font-size:16px;
	line-height:1.45;
}

.footer-copy{
	background:#e0e0e0;
	color:#777;
	font-size:14px;
	padding:14px 0;
}

.whatsapp span {
	font-size: 40px !important;
}

.whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	border-radius: 50%;
	height: 60px;
	width: 60px;
	line-height: 80px;
	text-align: center;
	background-color: forestgreen;
	z-index: 100;
}

/* =========================
   RESPONSIVE GENERAL
==========================*/

@media(max-width:992px){

	.hero{
		min-height:auto;
		padding:80px 0;
	}

	.hero-content{
		padding:40px;
	}

	.hero h1{
		font-size:42px;
	}

	.page-header{
		padding:60px 0 50px;
	}

	.page-header h1{
		font-size:36px;
	}

	.about h2,
	.cta h3{
		font-size:34px;
	}

	.intro h2{
		font-size:30px;
	}

	.feature-box{
		border-right:none;
		border-bottom:1px solid rgba(255,255,255,.15);
	}

	.feature-box:last-child{
		border-bottom:none;
	}

	.whatsapp-box{
		margin-top:25px;
	}

	.info-box{
		margin-top:25px;
	}

	.mapa-info{
		max-width:none;
		margin:20px;
	}

}

/* =========================
   PREGUNTAS FRECUENTES
==========================*/

.faq-pills .nav-link{
	color:var(--azul);
	font-weight:700;
	text-transform:uppercase;
	font-size:13px;
	letter-spacing:1px;
	padding:12px 28px;
	border-radius:2px;
	margin:0 6px;
}

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

.faq-sidebar{
	background:#fafafa;
	border-radius:4px;
	padding:35px 30px;
}

.faq-sidebar h4{
	color:var(--azul);
	font-size:15px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:.5px;
	margin-bottom:20px;
}

.accordion-item{
	border:none;
	border-bottom:1px solid #eee;
	background:transparent;
}

.accordion-button{
	font-weight:700;
	color:var(--azul);
	background:#fff;
	padding:20px 5px;
	box-shadow:none;
}

.accordion-button:not(.collapsed){
	color:var(--azul);
	background:#fafafa;
	box-shadow:none;
}

.accordion-button:focus{
	box-shadow:none;
	border-color:transparent;
}

.accordion-body{
	color:#666;
	line-height:1.9;
	font-size:15px;
	padding:0 5px 25px;
}

.download-card{
	display:flex;
	align-items:center;
	gap:15px;
	background:#fff;
	border-radius:4px;
	padding:18px 20px;
	margin-bottom:15px;
	transition:.3s;
}

.download-card:hover{
	background:var(--azul);
}

.download-card:hover .download-title,
.download-card:hover .download-sub{
	color:#fff;
}

.download-card i{
	font-size:26px;
	color:var(--amarillo);
}

.download-title{
	color:var(--azul);
	font-weight:700;
	font-size:14px;
	margin-bottom:2px;
	transition:.3s;
}

.download-sub{
	color:#999;
	font-size:12px;
	transition:.3s;
}
