@font-face {
  font-family: 'cabrito_contrastbold';
  src: url('../../fonts/cabrito_contrast/cabrito-contrast-bold-webfont.woff2') format('woff2'),
       url('../../fonts/cabrito_contrast/cabrito-contrast-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body,
html{
  width:100%; height: 100vh;
}
body {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size:16px
}

/* Generales
===================================================================================== */

a{
  text-decoration: none;
  color: #e8b02c;
  font-weight: 500;
  transition: color ease 0.3s;
}
a:hover{
  color: #f79620;
}
h1,
h2,
h3,
h4,
h5,
h6{
  font-style: normal;
  font-weight:900;
}
.btn{
  padding:12px 28px;
  text-transform: uppercase;
  border:none;
  border-radius: 2px 30px 2px 30px;
  -moz-border-radius: 2px 30px 2px 30px;
  -webkit-border-radius: 2px 30px 2px 30px;
  color:#555;
  font-weight: 500;
  border:solid 1px #fff;
}
.btn-success{
  background-color: #e6c985;
  border:solid 1px #e6c985;
}
.btn-success:hover{
  background: none;
  color:#fff;
  border:solid 1px #fff;
}
.btn.btn-inverse.btn-success{
  border:solid 1px #e6c985
}
.btn.btn-inverse.btn-success:hover{
  background-color: #333;
  color:#fff;
}

img.shadow{
  box-shadow: 2px 0px 10px rgba(0,0,0,0.5);;
}
img.rounded{
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
.mb-7{
  margin-bottom: 100px;
}
.mt-7{
  margin-top: 100px;
}
.pt-7{
  padding-top: 100px;
}
.pb-7{
  padding-bottom: 100px;
}

header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 999;
  transition: background ease 0.3s, top 1s ease;
}
header::before {
  content: "";
  position: absolute;
  inset: 0;                    /* top:0; right:0; bottom:0; left:0; */
  pointer-events: none;        /* El header sigue siendo clicable */
  background: linear-gradient(
    180deg,                    /* De arriba hacia abajo */
    rgba(0, 0, 0, 0.4) 0%,     /* 40 % de opacidad en el borde superior */
    rgba(0, 0, 0, 0) 100%      /* 0 % de opacidad en el borde inferior */
  );
  /* compatibilidad antigua */
  background: -webkit-linear-gradient(top, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 100%);
  background:    -moz-linear-gradient(top, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 100%);
  background:         linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 100%);
}
header.withBg{
  background-color:#333;
}
header.hide{
  top:-100px;
}
.logoHeader{
  display: inline-block;
  width:100%; max-width: 60px;
  transition: height 0.3s ease, width 0.3s ease;
}
.logoMain{
  display: inline-block;
  width: 100%; max-width: 60px;
}

/* Menú de navegación 
================================================================================== */

.navbar{
  background: none;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
}
.navbar-brand i {
  margin-right: 8px;
}
.navbar-nav a.nav-link{
  font-weight: 500 !important;
  text-transform: uppercase;
  padding:10px 12px !important;
}
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link.active{
  color:#e6c985
}
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; 
  transform: translateY(101%);    /* Oculto hacia abajo */
  transition: transform 0.3s ease;
  z-index: -1;                    /* Detrás del texto */
}
/* --- Hover: fondo sube, texto cambia de color --- */
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:focus-visible::before {
  transform: translateY(0);       /* Sube hacia arriba */
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible {
  color:#182945;
}
.linkFincaSta{
  font-family: 'cabrito_contrastbold';
  color:#fff;
}

/* Estilo base del dropdown */
.dropdown-menu {
  background-color: #182945;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
}

/* Estilo de los enlaces dentro del dropdown */
.dropdown-item {
  color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease;
}

/* Hover en los items del dropdown */
.dropdown-item:hover {
  background-color: #e6c985;
  color: #182945;
}

/* Mantener color del enlace principal cuando el dropdown está abierto o en hover */
.nav-item.dropdown:focus-within > .nav-link,
.nav-item.dropdown.show > .nav-link {
  background-color: #fff;
  color: #182945 !important;
}


/* bxSlider 
================================================================================== */

@keyframes zoomInEffect {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2); /* Ajusta el zoom según tu preferencia */
  }
}

.myHomeSlider .slider{
	position: relative;
	width:100%; height: 100vh;
}
.myHomeSlider .areaImagen{
  position: absolute;
  display: block;
  width:100%; height: 100vh;
}
.myHomeSlider .areaImagen img{
  width:100%; height: 100vh;
  object-fit: cover;
  transform: scale(1); /* Estado inicial */
  transition: transform 6s ease-in-out;
}
.myHomeSlider .areaImagen.darken img{
  filter: brightness(60%);
}

.myHomeSlider .slider .areaImagen img.zoom-effect {
  animation: zoomInEffect 6s ease-in-out forwards;
}
.myHomeSlider .areaInfo{
  position: absolute;
  left:0; right:0; top:0; bottom:0;
  display: flex; 
  align-items: flex-end;
  justify-content: flex-start;
  color:#fff;
  bottom:100px; left:100px;
}
.myHomeSlider .areaInfo .info{
  align-self: flex-end;
  font-size: 1.2em; color: #fff;
  max-width: 70%;
}
.myHomeSlider .areaInfo .info img.logoDes{
  display: inline-block;
  width:100%; max-width: 80px;
  margin-bottom: 16px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
.myHomeSlider .areaInfo .info h2{
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2.2em; 
  font-weight: 700;
  margin:0 0 20px 0;
  padding:0;
}
.myHomeSlider .areaInfo .info h3{
  color:#fff; font-size: 1.1em; font-weight: 300;
  margin:0 0 20px 0; 
}
.myHomeSlider .areaInfo .info h2 strong{
  color:#ff6f00;
}
.myHomeSlider .areaInfo .info p{
  text-align: center;
  margin: 10px 0;
}

/* Estilos de Area de Contenidos
================================================================================== */

.titleContainer{
  position: relative;
  padding:160px 0 100px 0;
}
.titleContainer .titleBack{
  position: absolute;
  left:0; top:80px;
  font-size: 7em;
  color:#eee; font-weight:900; 
  z-index: 1;
}
.titleContainer h1{
  position: relative;
  z-index: 100 !important;
  font-size: 3em;
}


/* Area de Entrada
===================================================================================== */
.info-box,
.info-box-reverse {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  margin-right: -100px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.info-box-reverse{
  margin-right: 0; margin-left: -100px;
}
.info-box.nomargins{
  margin-left:0; margin-right: 0;
}
.info-box h2{
  font-size: 1.8em;
}

/* Opcional: asegura que la imagen no se tape accidentalmente */
.img-wrapper {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .info-box {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

section.area{
  padding:100px 0;
}
section h1,
section h2{
  position: relative;
  margin-bottom: 60px;
  font-size: 2.2em;
}
section h2{
  font-size: 1.8em;
}
section h1.decorate::after,
section h2.decorate::after{
  content: "";
  position: absolute;
  transform: translateX(-50%);
  bottom:-10px;
  left:50%;
  width:100px; height:4px;
  background-color: #e6c985;
}
section.bg1{
  background: #f5f5f5;
}
section.bg2{
  background: #e5e5e5;
}


/* Listado de Desarrollos
===================================================================================== */

.areaDesarrollo{
  margin-bottom: 60px;
}
.areaDesarrollo .content-flex{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.areaDesarrollo .content-flex .item{
  align-self: center;
}
.areaDesarrollo .areaLogo{
  display: block; float:left;
  width: 100px;
  margin-right: 14px;
}
.areaDesarrollo .areaLogo a{
  display: block;
}
.areaDesarrollo .areaLogo img{
  display: block;
  width:100%;
}
.areaDesarrollo .areaInfo{
  display: block; overflow: hidden;
}
.areaDesarrollo h2{
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 2px;
  color:#182945;
}
.areaDesarrollo p{
  font-size: 0.7em; text-transform: uppercase;
  position: relative;
}
.areaDesarrollo p::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px; /* separa la línea del texto */
  left:0;
  width: 20px;
  height: 2px;
  background-color: #e6c985; /* cambia a tu color deseado */
}
.portadaDesarrollo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-decoration: none;
  position: relative;
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}
.portadaDesarrollo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2); /* Oscurece el fondo */
  z-index: 1;
}
.portadaDesarrollo:hover {
  transform: scale(1.03);
}
.portadaDesarrollo .areaInfo{
  z-index: 100;
}
.portadaDesarrollo h2 {
  font-size: 1.7rem; 
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 40px;
  text-shadow: -1px 2px 3px rgba(0,0,0,0.6);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  z-index: 2;
}
.portadaDesarrollo .logoDes{
  display: inline-block;
  width:100%; max-width: 150px;
  z-index: 300;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  box-shadow: 1px 2px 19px -9px rgba(0,0,0,0.71);
  -webkit-box-shadow: 1px 2px 19px -9px rgba(0,0,0,0.71);
  -moz-box-shadow: 1px 2px 19px -9px rgba(0,0,0,0.71);
}

.portadaDes .logoDes{
  display: inline-block;
  width:100%; max-width: 140px;
}


/* Area de Newsletter 
=================================================================== */

.areaNewsletter{
  position: relative;
  padding:80px 0;
  color:#fff;
  background: url(../../images/web/bg-mailinig.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.areaNewsletter .areaIcon{
  display: block; float:left;
  width:100px;
  font-size: 2.7em;
  margin-top: -30px;
}
.areaNewsletter h1{
  font-size: 1.4em;
  margin-bottom: 20px;
  color:#e6c985;
}
.areaNewsletter .areaInfo{
  display: block;
  overflow: hidden;
}

/* Area de Contacto
======================================================================== */

#contacto{
  padding:80px 0;
  background-color: #f1f1f1;
  margin-bottom: 100px;
}
#contacto h1{
  margin-bottom: 20px;
  position: relative;
}
#contacto h1::after{
  content:"";
  position: absolute;
  left: 50%;
  bottom: -8px;
  left:0;
  width: 100px;
  height: 4px;
  background-color: #e6c985;
}

/* Formularios 
========================================================================== */

form label{
  text-transform: uppercase;
  font-size: 0.7em; letter-spacing: 2px;
  margin-bottom: 4px;
}
form .form-control{
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  padding:10px 20px;
}
form input.error,
form textarea.error{
  border:solid 3px #f00 !important;
}
form label.error{
  color:#f00;
  font-size: 0.6em;
}

#areaMap{
  display: block;
  width:100%; height: 450px;
}
#areaMap iframe{
  display: block;
  width:inherit; height: inherit;
}

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

footer{
  padding:60px 0 0 0;
  color:#aaa;
  font-size: 0.9em;
}
footer.bgFooter{
  background: url(../../images/web/bg-footer1.jpg) no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
footer .areaLogoFooter span{
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-left: 15px;
}
footer .logoFooter{
  display: inline-block;
  width:100%; max-width: 200px;
}
footer h2{
  color:#fff;
  font-size: 1.2em; text-transform: uppercase; color:#e6c985;
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
footer h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px; /* separa la línea del texto */
  left:0;
  width: 20px;
  height: 2px;
  background-color: #ccc; /* cambia a tu color deseado */
}
footer a{
  color:#fff; text-decoration: underline;
}
footer a:hover{
  text-decoration: none;
  color:#fff !important;
}
.socialIcons a i{
  font-size: 1.5em; color:#fff;
  margin-right:20px;
  transition: all ease 0.2s;
}
.socialIcons a:hover{
  color:#93371e;
}
.lineBottom{
  background-color: #111;
  padding:20px 0;
  color:#eee; font-size: 0.8em;
}

/* -------- Enlace con subrayado animado -------- */
.link-anim{
  position: relative;      /* Necesario para posicionar el ::after */
  display: inline-block;   /* Mantiene el ancho justo del texto */
  color: #eee;           /* Ajusta el color que prefieras */
  text-decoration: none;   /* Quitamos el subrayado nativo */
}

.link-anim::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;            /* Sitúalo encima (0) o ligeramente debajo (-2px) */
  width: 100%;
  height: 2px;             /* Grosor de la línea */
  background: currentColor;/* Mismo color que el texto */
  transform-origin: left center;
  transform: scaleX(0);    /* Línea “encogida” al inicio */
  transition: transform .3s ease;
}

/* Al pasar el mouse o al recibir foco mediante teclado */
.link-anim:hover::after,
.link-anim:focus-visible::after{
  transform: scaleX(1);    /* Se expande de izquierda a derecha */
}


/* Secciones
=========================================================================== */

.areaEncab,
.areaEncab2{
  position: relative;
  width:auto; height: auto;
  padding-top: 230px;
  color:#fff;
  z-index: 1;
}
.areaEncab2{
  height: 80%;
}
.areaEncab2 .areaInfo{
  position: absolute;
  bottom:0; left:0; right:0;
}
.areaEncab .fondoImagen,
.areaEncab2 .fondoImagen{
  position: absolute;
  left:0; right:0; top:0; bottom:0;
  filter:brightness(50%);
}
.areaEncab h1,
.areaEncab2 h1{
  font-weight: 900; text-transform: uppercase;
}
.areaEncab2 h2{
  line-height: 16px;
}
.areaEncab2 h1 small{
  display: block; clear:both;
  font-weight: 300; font-size: 0.5em;
  letter-spacing: 4px;
}
img.logoContent{
  display: block;
  width:auto; max-width: 200px;
  margin-bottom: 50px;
}
img.coverProyecto{
  position: relative;
  display: block;
  max-width: 100%;
  margin-top: -200px;
  z-index: 100;
}

/* Galeria de Desarrollo 
==================================================================== */

.imgGaleria{
  display: block; 
  width:100%; height:150px; 
  overflow:hidden;
  position: relative;
}
.imgGaleria img{
  width: 100%;
  height: 100%;
  object-fit: cover;       /* recorta sin deformar */
  object-position: center; /* centra horizontal y vertical */
  display: block;
}
.pieFoto{
  text-align: center;
  line-height: 14px;
  padding:8px 0;
}

/* Area de contenidos 
====================================================================== */

.areaContenido h1{
  font-weight: 900;
  margin:30px 0;
}
.areaContenido h2{
  margin-bottom: 30px;
}
.areaContenido p{
  font-size: 1.3em; font-weight:300;
  line-height: 34px;
  text-align: justify;
  margin-bottom: 28px;
}
.areaContenido ul li{
  font-size: 0.9em; font-weight:300;
  line-height: 28px;
  text-align: justify;
}
.areaContenido img{
  width:auto; max-width: 100%;
  height: auto;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
strong{
  color:#000; font-weight: 700;
}

.cleanFormato{
  font-size: 1em;
}
.cleanFormato h1,
.cleanFormato h2,
.cleanFormato h3,
.cleanFormato h4,
.cleanFormato h5,
.cleanFormato h6{
  margin:30px 0;
}


/* Productos 
============================================================================ */

a.prodThumb{
  display: block;
  width:auto; height: auto; overflow: auto;
  background-color: #000;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  padding-bottom:10px;
  margin-bottom: 30px;
  text-align: center; color:#fff; text-transform: uppercase;
}
a.prodThumb img{
  width:100%; height:auto;
}
a.prodThumb h3{
  margin:0; 
  padding:0 14px;
  font-size: 0.9em; font-weight:300;
}

.areaBtnsShare{
  margin-bottom: 30px;
}
.areaBtnsShare a{
  font-size: 2em; color:#333;
  margin-right: 20px;
  transition: all ease 0.2s;
}
.areaBtnsShare a:hover{
  color:#93371e;
}

.areaLogos{
  padding-left:20px; padding-right:20px;
}
.areaLogos .logo{
  display: block;
  width:100%; max-width: 180px;
  margin:0 auto;
}


img.logoCredito{
  display: inline-block;
  max-width: 150px;
  max-height: 100px;
  width: auto;
  height: auto;
}

.areaIcons{
  display: flex;
  justify-content: start;
  align-items: center;
}
.areaIcons .item{
  padding:6px;
}
.areaIcons .icon{
  width:50px;
}

.btnPhone{
  display: inline-block;
  background-color: #93371e;
  color:#fff;
  padding:10px 25px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  width:auto; max-width: 300px;
  margin:0 auto;
}
.btnPhone i{
  font-size: 1.5em;
  vertical-align: middle;
  margin-right: 10px;
}
.btnPhone span{
  font-weight: 500;
  font-size: 1.6em;
  vertical-align: middle;
}

.areaFincaSanta{
  display: flex;
  margin:0; padding:0;
}
.areaFincaSanta .areaBg,
.areaFincaSanta .areaInfo{
  box-sizing: border-box;
  width:50%;
}
.areaFincaSanta .areaBg{
  height: auto;
}
.areaFincaSanta .areaInfo{
  height: auto;
  background-color: #eae8e9;
  text-align: center;
  padding:20px 0;
}


/* Desarrollo
============================================================================== */

.desarrollo{
  display: block;
  margin-bottom: 80px;
}
.desarrollo img.imgCover{
  margin-bottom: 20px;
}
.desarrollo .areaContenido h2{
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.6em;
  color:#182945;
  margin-bottom: 0 !important;
}
.desarrollo .modelo{
  font-size: 0.7em; text-transform: uppercase;
  position: relative;
}
.desarrollo p.modelo::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px; /* separa la línea del texto */
  left:0;
  width: 20px;
  height: 2px;
  background-color: #e6c985; /* cambia a tu color deseado */
}
.desarrollo p{
  font-size: 0.9em;
}
ul.modCaract{
  list-style: none;
  margin:0;
  padding:0;
}
.iconoMod{
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  max-width: 26px; max-height: 26px;
}
.iconoDesc{
  display: inline-block;
  vertical-align: middle;
}

#areaEntrada h1,
#areaEntrada h2,
#areaEntrada h3{
  margin-bottom: 12px;
}

.videoModelo{
  display: block;
  width:100%; max-width: 600px; height: 400px;
  margin:0 auto 50px auto;
}

#panorama {
  display: block;
  width: 100%;
  height: 500px;
}

#vistas360{
  border:none !important;
}
.tabsVistas button{
  font-size: 1.4em;
  font-style: normal;
  font-weight:900;
  text-transform: uppercase;
  color:#666;
}
.tabsVistas button:hover{
  color: #e6c985;
}

/* Creditos
========================================================================= */

.areaLogosCreditos{
  text-align: center;
}
.areaLogosCreditos img{
  display: inline-block;
  margin:10px 30px;
}

/* Amenidades
========================================== */

.listAmenidades img{
  float:left;
}
.listAmenidades span{
  display: block; overflow:hidden;
}
