/* Import required fonts from Google */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,400&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}


/* Hide and stylize scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
  /* width: 5px; */
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
body::-webkit-scrollbar-thumb {
  background: darkcyan;
  border-radius: 100px;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  background: #161d25;
  transition: padding-right 0s !important;
}

span{
  color: #7E510B;
}


/* ------------------------------------------------------------------------------------------------------------*/

/* 2. EL CONTENEDOR DEL MODAL */
#myModal {
    display: none; /* Se activa con el .fadeIn() de jQuery */
    position: fixed; /* Fijo a la pantalla, no al documento */
    z-index: 99999; /* Valor máximo para estar sobre el header y otros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Fondo negro con 90% de opacidad */
    
    /* Centrado perfecto de la imagen */
    display: none; /* Cambia a flex vía JS */
    justify-content: center;
    align-items: center;
}

/* 3. LA IMAGEN AMPLIADA */
#modal-img {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    cursor: default; /* El cursor de mano solo debe estar en el fondo, no en la imagen */
    user-select: none; /* Evita que el usuario seleccione la imagen por error */
    -webkit-user-drag: none; /* Evita que arrastren la imagen */
}

/* 4. BOTÓN DE CERRAR (LA X) */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 100001;
    cursor: pointer;
    line-height: 1; /* Evita que el cuadro de la X sea más alto de lo normal */
}

/*-------------------------------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------- LOGO FARO FLOTANTE ---------------------------------------------------*/

#floating-button-container {
    position: fixed;
    bottom: 43px; 
    left: 20px; /* Posición Izquierda */
    z-index: 1000;
}

#floating-link {
    /* Define un tamaño fijo para el botón (puedes ajustarlo) */
    width: 60px; 
    height: 60px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Color de fondo */
    text-decoration: none;
    
    /* Hace que el botón sea un círculo perfecto */
    border-radius: 50%; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: all 0.3s ease;
}

#floating-logo {
    /* El logo debe ser un poco más pequeño que el botón */
    width: 55px; /* Tamaño de la imagen dentro del botón */
    height: 55px;
    object-fit: contain; /* Asegura que la imagen se ajuste sin distorsionarse */
}

#floating-link:hover {
    background-color: #ffffffee; 
    transform: scale(1.1); /* Lo hace crecer un poco al pasar el ratón */
}


 /*--------------------------------------- 5. Estilo para el Globo de Texto (Callout) ----------------------------- */
#chat-callout {
    /* Posicionamiento: Permite moverlo con respecto a su contenedor (#floating-button-container) */
    position: absolute; 
    
    /* Diseño del globo */
    background-color: white; /* Fondo blanco */
    color: #333333; /* Texto oscuro */
    padding: 12px 20px; /* Espaciado interno */
    border-radius: 20px; /* Bordes muy redondeados */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Sombra para que flote */
    font-weight: normal;
    font-size: 16px;
    white-space: nowrap; /* Evita que el texto se rompa en varias líneas */
    opacity: 0;
    /* Posicionamiento exacto: Colocarlo a la derecha del botón */
    right: -200px; /* Ajusta la distancia desde la derecha del contenedor */
    bottom: 65px; /* Ajusta la altura para que se alinee con el botón */
    
    /* Opcional: Transición para hacerlo aparecer/desaparecer si quieres animación */
}
#floating-button-container.show-callout #chat-callout {
    opacity: 1; /* Se muestra */
    transform: translateX(0); /* Vuelve a su posición normal */
}
/*-----------------------------MEDIA QUERY BOTON LOGO FARO-------------------------------------------------------------------*/
@media screen and (max-width: 600px) {
    #floating-button-container {
    bottom: 10px; 
    left: 20px; /* Posición Izquierda */
  }
}

/*---------------------------------------------------Animacion de svg LOGO----------------------------------------------------------*/
/*Estilos de animacion svg LOGO*/
#diseno_principal path {
    fill: none; /* Asegura que el logo esté hueco al inicio y evita el flicker en el navegador*/
      
}

#main-content {
    /* Usamos 'visibility: hidden' y 'opacity: 0' para ocultarlo al cargar */
    visibility: hidden;
    opacity: 0;
}
/* Opcional: Define un tamaño máximo para el SVG dentro del preloader */
#preloader svg {
    max-width: 600px; 
    height: auto;
}
/* 1. Estilos para el Preloader (Centrado y en primer plano) */
#preloader {
    /* Posiciona el contenedor cubriendo TODA la ventana */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    /* Centrado del SVG usando Flexbox */
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
    
    /* El color de fondo que quieres (similar al de tu imagen) */
    background-color: #161d25; 
    /* Asegura que esté por encima de todo */
    z-index: 9999;
}
/*-----------------------------------------------------------------------------------------------------------------------------------*/

.boxed {
  width: calc(1088 / 1366 * 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5%;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.intro {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.img_back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgb(0, 0, 0),
    rgba(0, 0, 0, 0.603)
  );
  z-index: 2;
}

.intro img {
  position: relative;
  width: 100%;
}

nav.navbar {
  position: absolute;
  top: 0;
  width: 80%;
  margin-left: 10%;
  margin-top: 53px;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  z-index: 2;
}

nav.navbar .navbar-brand {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 38px;
}

nav.navbar ul.navbar-nav {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}

nav.navbar .navbar-nav .nav-link {
  transition-duration: 300ms;
}

nav.navbar ul.navbar-nav li:last-child {
  margin-left: 30px;
}

nav.navbar ul.navbar-nav li.nav-item:last-child a.nav-link {
  padding-right: 0;
}

.navbar-nav .nav-link,
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 1) !important;
}

.intro-content {
  margin-top: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.intro-content div.sub-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
}

.hero-title {
  font-family: "Raleway", sans-serif;
  font-size: 64px;
  line-height: 75px;
  margin-top: 23.5px;
  text-shadow: 0 0 45px #000000;
}

a.contact-button {
  display: inline-block;
  width: 250px;
  height: 60px;
  border: 2px solid #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 56px;
  color: #fff;
  margin-top: 40.5px;
  letter-spacing: 1px;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(255, 255, 255, 1);
  position: relative;
  background: transparent;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

a.contact-button:hover {
  text-decoration: none;
}

/* Button hover effect start */

@-webkit-keyframes hero-button {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@keyframes hero-button {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

.contact-button:after {
  content: "";
  position: absolute;
  border: white solid 2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.contact-button:hover:after,
.contact-button:focus:after,
.contact-button:active:after {
  -webkit-animation-name: hero-button;
  animation-name: hero-button;
}

.contact-button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.contact-button:hover:before,
.contact-button:focus:before,
.contact-button:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Button hover effect end */

/* Intro section responsiveness */
@media only screen and (max-width: 1080px) {
  .intro .img_back {
    height: 75vh;
    object-fit: cover;
  }

  nav.navbar {
    margin-top: -20px;
  }
  .navbar-expand {
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .navbar-brand {
    margin: 0 auto;
  }

  .nav-item {
    margin-top: -10px;
  }

  nav.navbar ul.navbar-nav {
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 300;
  }

  nav.navbar ul.navbar-nav li.nav-item:last-child a.nav-link {
    padding-right: 0.5rem;
  }

  .intro-content {
    transform: translate(-50%, -40%);
  }
  .intro-content div.sub-title {
    font-size: 16px;
  }
  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }
  a.contact-button {
    width: 170px;
    height: 40px;
    font-size: 16px;
    line-height: 36px;
  }
}


@media only screen and (max-width: 1080px) {
  .img-fluid{
    margin-top: 5%;
  }
}


/* CARROUSEL  ------------------------------------------------------------------*/
#solarCarousel {
    border-radius: 25px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.3s; /* Tiempo que tarda en desvanecerse */
    transition-property: opacity;
}

.carousel button{
  background: none;
  border: none;
}

.carousel-caption{
  border-radius: 16px;
  font-family: "Noto Serif", serif;
  font-weight: bold;
}

.carousel-item img {
    height: 500px; /* Puedes ajustar la altura según tu diseño */
    object-fit: cover; /* Evita que la imagen se deforme */
    border-radius: 25px; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #c79549;
    border-radius: 50%;
    background-size: 60%;
    padding: 20px;
}
/* title plano ------------------------------------------------------------------*/
.plano{
  background: #161d25;
  padding-bottom: 9rem !important;
}

/* --------------------------------Plano photo section --------------------------------------------------------------- */
.custom-image-container {
  /* Define que el contenedor de la imagen tenga el 80% de la altura de la vista (viewport) */
  min-height: 100vh;

  /* Permite que la imagen se centre y cubra el área si se usa como fondo (opcional) */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Agrega un poco de margen horizontal para simular el margen lateral */
  margin-left: 5%;
  margin-right: 5%;

  /* Un color de fondo para que se note el contenedor */
  background-color: transparent; /* Color Bootstrap "light" */
}
/*---------------------------------------------------------------------------------------*/
/* Opcional: Para evitar que la imagen se estire */
.img-fluid {
  object-fit: contain;
  max-height: 110vh;
}

/* Featured home section */
.plano_etiqueta {
  margin-top: 10%;
}

.section-subtitle {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 21px;
  color: #f8f9fa;
  line-height: 55px;
  letter-spacing: 1px;
}

#lotes{
  margin-top: px;
}

#lotes1{
  margin-top: 170px;
}

.section-title {
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  color: rgba(199, 149, 73);
  line-height: 55px;
  position: relative;
  margin-bottom: 50px;
}

.section-title::after {
  content: "";
  width: 76px;
  border: 3px solid rgba(199, 149, 73);
  display: block;
  position: absolute;
  bottom: -34.5px;
  left: 50%;
  transform: translateX(-50%);
}

#contacto{
  margin-bottom: 10%;
}

#mapa-osm {
    height: 500px; /* Dale una altura visible */
    width: 80%;
    margin: 30px auto;
    border-radius: 16px;
}

.img_plano{
  border-radius: 16px;
}

/*---------------------------------------------------PAN & ZOOM---------------------------------------------------------------------*/
/* Esto obliga a que el visor ignore cualquier restricción de ancho en móvil */
.visor-lotes {
  width: 93% !important; /* Ocupa todo el ancho disponible */
  max-width: 100vw !important; /* Asegura que no sea más ancho que la pantalla */
  height: 60vh !important; /* Le damos el 70% de la altura de la pantalla móvil */
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
  cursor: grab;
  touch-action: none; /* Evita interferencias con el scroll del celular */
  border-radius: 16px;
}
/* Solo para pantallas grandes (PC) reducimos el tamaño */
@media (min-width: 992px) {
  .visor-lotes {
    width: 85% !important;
    margin: 0 auto !important;
    height: 600px !important;
    border-radius: 12px;
  }
}

#plano-interactivo {
  width: 100%; /* Empieza ocupando el ancho del visor */
  height: auto; /* Mantiene la proporción original */
  display: block; /* Evita espacios extraños debajo de la imagen */
  touch-action: pan-y;
  /* Asegura que los gestos de pinza (zoom) sean captados por la librería */
  user-select: none;
  -webkit-user-drag: none;
}

#plano-interactivo2 {
  width: 100%; /* Empieza ocupando el ancho del visor */
  height: auto; /* Mantiene la proporción original */
  display: block; /* Evita espacios extraños debajo de la imagen */
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
}

#contenedor-panzoom, #contenedor-panzoom2 {
    display: flex !important;
}
/*----------------------------------------------------------- Botones de Zoom -----------------------------------------------------*/
.controles-zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.controles-zoom button {
  width: 45px;
  height: 45px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.controles-zoom button:hover {
  background: #ffffff;
  transform: scale(1.1);
}
/*---------------------------------------------------------------------------------------------------------------------------------*/

.ft-home-block {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(199, 149, 73);
  background-color: white;
  flex-basis: calc(100% / 3);
  margin-right: 16px;
  transition-duration: 0.3s;
}

.ft-home-block {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.ft-home-block:hover,
.ft-home-block:focus,
.ft-home-block:active {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.ft-home-block > img {
  display: block;
  width: 100%;
}

.ft-homes{
  border-radius: 10px;
}

.ft-homes-details {
  padding: 20px 20px 22px;
  background: #fff;
}

.ft-homes-address {
  font-family: Roboto Condensed, Sans Serif;
  font-size: 18px;
  line-height: 24px;
  color: black;
}

.ft-homes-price {
  font-family: Roboto Condensed, Sans Serif;
  font-weight: bold;
  font-size: 28px;
  line-height: 45px;
  color: black;
}

.ft-homes-spec {
  font-family: Roboto Condensed, Sans Serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  color: black;
}

.ft-homes-spec img {
  margin-left: 20px;
  margin-right: 10px;
}

.ft-homes-link {
  margin-top: 20px;
}

.ft-homes-link a {
  font-family: Raleway, Sans Serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  color: #7E510B;
  text-decoration: underline;
  padding: 10px 15px;
  border-radius: 5px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.ft-homes-link a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7E510B;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.ft-home-block:hover .ft-homes-link a,
.ft-home-block:focus .ft-homes-link a,
.ft-home-block:active .ft-homes-link a {
  color: white;
  text-decoration: none;
}
.ft-home-block:hover .ft-homes-link a:before,
.ft-home-block:focus .ft-homes-link a:before,
.ft-home-block:active .ft-homes-link a:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Featured homes section responsiveness */
@media only screen and (max-width: 767px) {
  .custom-image-container {
    min-height: 60vh; /* Se usa menos altura en móviles */
    margin-left: 2%;
    margin-right: 2%;
  }
  .section-subtitle {
    line-height: 32px;
    font-size: 18px;
  }
  .section-title {
    font-size: 32px;
    line-height: 40px;
    margin-top: 20px;
  }
  .section-title b {
    display: block;
  }
  .ft-homes {
    flex-direction: column;
  }
  .ft-home-block {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .ft-homes-address {
    font-size: 15px;
  }
  .ft-homes-spec {
    font-size: 18px;
  }
  .ft-homes-spec img {
    margin-right: 5px;
    width: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ft-homes-spec {
    font-size: 18px;
  }
  .ft-homes-spec img:last-child {
    margin-left: 0px;
  }
  .contact-media #correo_label {
  margin-left: 0px;
  font-size: 90%;
}
}

/* Profile section */

section.profile {
  position: relative;
  margin-top: 95px;
}
section.bg-light{
  background: #161d25;
}

.profile__content {
  display: flex;
}

.profile__content:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 62px);
  background-color: #023061;
  z-index: -1;
  top: 62px;
  left: 0;
}

.profile__right {
  padding-top: 150px;
  padding-bottom: calc(150px - 62px);
  padding-left: 64px;
  color: white;
}

.profile__title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 48px;
  letter-spacing: 3px;
}

.profile__subtitle {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 21px;
  position: relative;
  letter-spacing: 1px;
}

.profile__subtitle::after {
  position: absolute;
  bottom: -40px;
  left: 0;
  content: "";
  width: 76px;
  border-top: 6px solid white;
}

.profile__desc {
  margin-top: 80px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 1px;
}

.profile__button a {
  letter-spacing: 2px;
}

/* Profile section responsiveness */

@media only screen and (max-width: 991px) {
  section.profile {
    margin-top: 60px;
    height: auto;
  }
  .profile__boxed {
    position: relative;
    width: calc(1088 / 1366 * 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .profile__content {
    flex-direction: column;
    width: 100%;
  }
  .profile__img > img {
    width: 100%;
  }
  .profile__right {
    padding-left: 0px;
    padding-top: 40.5px;
    padding-bottom: 50px;
    text-align: center;
  }
  .profile__title {
    font-size: 30px;
  }
  .profile__subtitle {
    font-size: 16px;
  }
  .profile__subtitle::after {
    bottom: -32px;
    border-top-width: 4px;
    left: 50%;
    transform: translateX(-50%);
  }
  .profile__desc {
    font-size: 16px;
    margin-top: 60px;
  }
}


/*@media only screen and (max-width: 991px) {
  .img-fluid{
    margin-top: 10%;
  }
}*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.profile {
    margin-top: 100px;
  }

  .navbar-brand {
    width: 250px;
    height: auto;
  }

  .hero-title {
    font-size: 30px;
    margin: 5px;
    margin-top: -50px;
  }
}

/* Testimonial section */

section.testimonial {
  margin-top: 20px;
  margin-bottom: 100px;
}

.slick-prev,
.slick-next {
  color: white;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}

.slick-prev:before,
.slick-next:before {
  color: white !important;
  font-size: 30px;
}

.slick-prev:before {
  font-family: "Flaticon";
  content: "\f100";
  position: absolute;
  top: 0;
  left: 0;
}
.slick-next:before {
  font-family: "Flaticon";
  content: "\f101";
  position: absolute;
  top: 0;
  right: 0;
}

.slick-slide {
  padding: 0 61px;
}

.slick-prev,
.slick-next {
    z-index: 10;
}
/*---------------------------------------------------------Puntos del Slider-------------------------------------------------*/
.slick-dots {
    position: absolute; 
    bottom: -50px; 
    width: 100%;
    

    list-style: none;
    display: flex; 
    justify-content: center;
    margin: 0;
    padding: 0;
}

.slick-dots li {
    margin: 0 5px; 
    cursor: pointer;
    border-color: white;
}

.slick-dots button {
    font-size: 0 !important; 
    line-height: 0 !important;
    color: transparent !important;
    
    display: block;
    padding: 0; 
    
    /* Limpieza y reset */
    outline: none;
    cursor: pointer;
}

.slick-dots .slick-active button {
    background: rgba(199, 149, 73); /* El rombo seleccionado es BLANCO */
    border-color: rgba(199, 149, 73); /* Aseguramos que el borde también sea blanco */
    border-radius: 50%;
    width: 1px !important;  /* <- FORZAMOS TAMAÑO PEQUEÑO */
    height: 1px !important;
}

.slick-dots li:not(.slick-active) button {
    border-radius: 50%;
    background: white; 
    transform: none; 
    width: 1px !important;  /* <- FORZAMOS TAMAÑO PEQUEÑO */
    height: 1px !important; /* <- FORZAMOS TAMAÑO PEQUEÑO */
}

.slick-dots li button:before,
.slick-dots li button:after {
    content: none !important; /* Esto borra el ícono o punto si se generó con CSS */
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
.testimonial-slider .star {
  margin-bottom: 27px;
  display: flex;
  justify-content: center;
}

.testimonial-slider .review {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: white;
}

.testimonial-slider .name {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 24px;
  
  color: rgba(199, 149, 73);
  margin-top: 20px;
}

/* Testimonial Responsive */

@media only screen and (max-width: 575px) {
  section.testimonial {
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .slick-slide {
    padding: 0 20px;
  }
  .slick-prev {
    left: -25px;
  }
  .slick-next {
    right: -25px;
  }
  .img-fluid{
    margin-top: 10%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .slick-slide {
    padding: 0 25px;
  }
  .slick-prev {
    left: -25px;
  }
  .slick-next {
    right: -25px;
  }
  .img-fluid {
  object-fit: contain;
  max-height: 100vh;
}

}

/* Bottom Grid Section */
.acerca_de_nosotros{
  background: #161d25;
}

.bottom-grid .img-container {
  overflow: hidden;
  background: #161d25;
}

.bottom-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-content {
  padding: 50px 85px;
  background-color: rgba(199, 149, 73);
}

.grid-content:nth-child(3) {
  padding-left: 140px;
}

.grid-content .title {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  line-height: 45px;
}

.grid-content .title::after {
  position: absolute;
  bottom: -27px;
  content: "";
  display: block;
  width: 76px;
  border-top: 6px solid #161d25;
}

.grid-content .desc {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 19px;
  color: #000000;
  line-height: 24px;
  margin-top: 68.5px;
  margin-bottom: 41px;
}

.grid-content .button {
  display: inline-block;
  padding: 15px 45px;
  border: 2px solid black;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 3px;
  color: #000000;
  text-align: center;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.grid-content .button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(163, 124, 64);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.grid-content .button:hover,
.grid-content .button:focus,
.grid-content .button:active {
  color: #fff;
  text-decoration: none;
  border-color: rgb(163, 124, 64);
}

.grid-content .button:hover:before,
.grid-content .button:focus:before,
.grid-content .button:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.grid-content .button2 {
  padding-left: 26px;
  padding-right: 26px;
}

@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.grid-content .button:after {
  content: "";
  position: absolute;
  border: #000000 solid 2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.grid-content .button:hover:after,
.grid-content .button:focus:after,
.grid-content .button:active:after {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
  border-color: rgb(163, 124, 64);
}

/* Bottom Grid Responsive */

@media only screen and (max-width: 767px) {
  .grid-content {
    padding: 50px;
  }
  .grid-content:nth-child(3) {
    padding-left: 50px;
  }
  .grid-content .title {
    font-size: 30px;
    line-height: 35px;
  }
  .grid-content .desc {
    font-size: 16px;
  }
  .grid-content .button {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bottom-grid img {
    height: 100%;
  }
  .grid-content {
    padding: 50px;
  }
  .grid-content:nth-child(3) {
    padding-left: 50px;
  }
}

/* Contact Form */

.contact-sec {
  margin-top: 70px;
  background: #161d25;
}

.contact-media {
  background-image: url(../images/contact-bg.png);
  padding-left: calc((100% - (1088 / 1366 * 100%)) / 2);
  padding-right: calc((100% - (1088 / 1366 * 100%)) / 2);
}

.contact-media .icon {
  margin-bottom: 25px;
}

@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}
.media-1:hover .hvr-buzz-out,
.media-1:focus .hvr-buzz-out,
.media-1:active .hvr-buzz-out {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.media-2:hover .hvr-grow-rotate,
.media-2:focus .hvr-grow-rotate .media-2:active .hvr-grow-rotate {
  -webkit-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}

@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.media-3:hover .hvr-bob,
.media-3:focus .hvr-bob,
.media-3:active .hvr-bob {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

.contact-media .label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 21px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.548);
}

.contact-media #correo_label {
  margin-left: -50px;
  font-size: 90%;
}

.contact-media .oficina_label {
  color: inherit;
  text-decoration: none;
}

.contact-media .label .email_label {
  color: inherit;
  text-decoration: none;
}

.contact-media .content {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 21px;
  line-height: 57px;
  color: #fff;
}

.contact-media .althara_label {
  color: inherit;
  text-decoration: none;
}

.section-subtitle-2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.548);
  line-height: 55px;
  letter-spacing: 1px;
}

.section-title-2 {
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  color: rgba(199, 149, 73);
  line-height: 55px;
  position: relative;
  margin-bottom: 55px;
}

.contact-form {
  margin-top: 70px;
  margin-bottom: 115px;
}

.contact-form .form-body {
  width: 568px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form .field-group {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-form .field-group:last-of-type {
  margin-bottom: 45px;
}

.contact-form input {
  width: 268px;
  height: 50px;
  line-height: 50px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 21px;
  padding: 0px 30px;
  color: #c79549;
  border: 1px solid white;
  transition: all 0.1s;
  background-color: transparent;
}

.contact-form input:first-child {
  margin-right: 32px;
}
.contact-form input:focus {
  border-radius: 6px;
  outline: none;
  box-shadow: none;
  border: 2px solid rgba(199, 149, 73);
  padding: 0px 29px;
  color: rgba(199, 149, 73) !important;
}

.contact-form textarea {
  width: 568px;
  height: 197px;
  resize: none;
  padding: 12px 30px;
  color: white;
  border: 1px solid white;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 21px;
  background-color: transparent;
}
.contact-form textarea:focus {
  border-radius: 6px;
  outline: none;
  box-shadow: none;
  border: 2px solid rgba(199, 149, 73);
  padding: 11px 29px;
  color: rgba(199, 149, 73) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #fff;
  transition: all 0.2s;
}
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: silver;
}

.contact-form .btn-submit {
  width: 220px;
  height: 60px;
  line-height: 60px;
  border: 2px solid rgba(199, 149, 73);
  background-color: rgba(199, 149, 73);
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.contact-form .btn-submit:hover {
  background-color: rgb(163, 124, 64);
  border-radius: 6px;
}

/* Contact Form Responsive */

@media only screen and (max-width: 767px) {
  .contact-media .label {
    font-size: 18px;
  }
  .contact-media .content {
    line-height: 40px;
  }
  .section-subtitle-2 {
    line-height: 32px;
    font-size: 18px;
  }
  .section-title-2 {
    font-size: 32px;
    line-height: 40px;
    margin-top: 20px;
  }
  .contact-form {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .col.contact-form:before {
    content: "";
    position: absolute;
    top: -40px;
    width: 90%;
    border-top: 1px solid rgba(199, 149, 73) ;
    border-top-style: dashed;
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-form .form-body {
    width: 100%;
  }
  .contact-form .field-group {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .contact-form input {
    width: 100%;
    margin-bottom: 16px;
    padding: 0px 15px;
  }
  .contact-form input:first-child {
    margin-right: 0;
  }
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
  }
}

/* Footer */

footer {
  background: #161d25;
}

footer .img-gallery div {
  flex-basis: 20%;
}
footer .img-gallery img {
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
}
footer .img-gallery img:hover {
  opacity: 0.7;
}


.srcImg{
  border: 4px solid rgba(199, 149, 73) ;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content (Image) */
.modal-content {
  display: block;
  height: 50vh;
  width: auto;
  max-width: 700px;
  transform: scale(0);
  width: 100%;
  height: 95%;
}

/* Add Animation - Zoom in the Modal */
.modal-content {
  animation-name: zoom;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive Image Width on Smaller Screens */
@media only screen and (orientation: portrait) {
  .modal-content {
    width: 90%;
    height: auto;
  }
}

footer .boxed {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 55px;
  width: calc(1088 / 1366 * 100%);
  margin-left: auto;
  margin-right: auto;
}

.footer__brand--logo {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer__brand--logo:hover {
  text-decoration: none;
  color: whitesmoke;
}

.footer__brand--social a {
  margin-right: 10px;
}

.footer__brand--social a:last-child {
  margin-right: 0px;
}

.footer__brand--social a img {
  vertical-align: -webkit-baseline-middle;
}

.footer__links {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
}

.footer__links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer__links ul li a {
  color: #fff;
  line-height: 14px;
}

.footer__links ul li a:hover {
  color: whitesmoke;
  transition-duration: 0.4s;
}

.footer__brand__links:hover {
  text-decoration: none;
  color: whitesmoke;
  transition-duration: 0.4s;
}

.footer__brand .social img {
  margin-right: 15px;
}

.footer__address--map {
  width: 181px;
  height: 116px;
  overflow: hidden;
  margin-left: 24px;
}

.footer__address--map img {
  position: relative;
  transform: scale(0.6) translate(-320px, -280px);
}

.footer__address--details .title {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 25px;
  margin-bottom: 21px;
}

.footer__address--details div {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.footer__address--details div a {
  color: #fff;
  text-decoration: underline;
}

.footer__underline {
  width: calc(1088 / 1366 * 100%);
  height: 1px;
  background: rgba(199, 149, 73);
  margin-top: 32px;
}

.footer__copyright {
  padding: 36px 0 51px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 21px;
}


.facebook_icon{
  font-size: 2rem; 
  color: #ffffff;    
  transition: 0.3s;   
}

.instagram_icon{
  font-size: 2rem; 
  color: #ffffff;    
  transition: 0.3s;   
}

.whatsapp_icon{
  font-size: 2rem; 
  color: #ffffff;    
  transition: 0.3s;
}



/* FOOTER RESPONSIVE */

@media only screen and (max-width: 575px) {
  footer .img-gallery div {
    flex-basis: 50%;
  }
  footer .boxed {
    flex-direction: column;
  }
  .footer__brand--social {
    text-align: center;
  }
  .footer__links ul {
    padding: 0;
    margin-top: 25px;
  }
  .footer__links ul li {
    text-align: center;
  }
  .footer__address {
    flex-direction: column;
    margin-top: 25px;
  }
  .footer__address--details {
    order: 2;
    margin-top: 20px;
    font-size: 16px;
  }
  .footer__address--details .title {
    margin-bottom: 5px;
  }
  .footer__address--details div {
    font-size: 16px;
  }
  .footer__address--map {
    margin-left: 0;
    width: initial;
    height: initial;
    overflow: visible;
  }
  .footer__address--map img {
    width: 100%;
    transform: none;
  }
  .footer__copyright {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__address--details .title {
    font-size: 18px;
  }
  .footer__address--details div {
    font-size: 16px;
  }
  .footer__address--map {
    margin-left: 20px;
  }
  .footer__underline {
    margin-top: 0;
  }
  .d-md-block.footer__links ul {
    justify-content: space-between;
  }
  .d-md-block.footer__links ul {
    padding: 1rem 0;
  }
  .footer__copyright {
    font-size: 14px;
  }
}

/* Sliding effect during scrolling */

.slideanim1 {
  visibility: hidden;
}
.slideanim2 {
  visibility: hidden;
}
.slideanim3 {
  visibility: hidden;
}
.slideanim4 {
  visibility: hidden;
}
.slideanim5 {
  visibility: hidden;
}
.slide {
  /* The name of the animation */
  animation-name: slide;
  -webkit-animation-name: slide;
  /* The duration of the animation */
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  /* Make the element visible */
  visibility: visible;
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

/*------------------------------------------------------- Login Style -------------------------------------------------------*/
.card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.05)
  ) !important;

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.2) !important;

  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  border-radius: 20px;
  color: white;
}

.body_login {
  /* Degradado moderno para que no sea un color plano aburrido */
  background: #161d25;
  background-size: cover;
  height: 100vh;      /* Altura fija al 100% de la pantalla */
  width: 100%;       /* Ancho total */
  overflow: hidden;   /* BLOQUEA EL SCROLL: oculta lo que sobrepase el alto */
  margin: 0;
  padding: 0;
  position: fixed;
}

.btn_login {
  background: #7e510b;
  border-radius: 8px;
  font-weight: bold;
}

.form-control:focus {
  box-shadow: none;
  border-color: #0b69f5 !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2) !important;
  outline: 0;
}

/*----------------------------------------------------------------------MATERIAL PHP style ---------------------------------------------------------------------------*/
/* Centrar el título principal */
.availability-content h1 {
  font-family: "Raleway", sans-serif;
  padding-top: 3em;
  text-align: center;
  width: 100%;
  margin-bottom: 2em;
  color: white; /* Ajusta según tu fondo */
}

/* Configurar la cuadrícula de 3 en 3 */
.availability-content .countries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  row-gap: 5em;
  max-width: 800px;
  margin: 0 auto;
  /* ESTA ES LA LÍNEA CLAVE: */
  justify-items: center;
}

/* Alinear icono arriba y texto abajo */
.country-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  /* Opcional: añade un ancho fijo si quieres que todos midan lo mismo */
  width: fit-content;
}

.country-item a p {
  font-family: "Raleway", sans-serif;
  color: #f0f0f0;
}

/* El recuadro del icono */
.icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}
.country-item .icon-box .fa-solid {
  font-size: 1.5em;
  color: #c79549;
}
.country-item .icon-box .fa-regular {
  font-size: 1.3em;
  color: #c79549;
}

/* El efecto gris al pasar el mouse */
.country-item .icon-box {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.05)
  );

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  border-radius: 20px;
  color: white;
}
/* Esta es la regla que te falta */
.country-item .icon-box:hover {
  /* Cambiamos el fondo a uno un poco más claro */
  background: #161d25;

  /* Hacemos el borde más visible */
  border: 1px solid #161d25;
  /* Opcional: un brillo extra en la sombra */
  box-shadow: #161d25;

  /* Importante para que el cambio no sea brusco */
  cursor: pointer;
  transition: all 0.3s ease;
}

/*----------------------------------------------------------LIBRERIA LUCKYSHEET PARA TABLAS DE EXCEL--------------------------------------------------------------------*/
#luckysheet {
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%; 
  left: 0;
  top: 0;
  bottom: 0;     
  overflow: hidden; 
}


/*----------------------------------------------------------------BOTON DE CAPTURA DE PANTALLA-------------------------------------------------------------------------*/
/* Contenedor que agrupa el botón y la tabla */
#contenedor-tabla {
  position: relative;
  width: 100%;
  height: 100vh;
  border: 1px solid #ccc;
}

/* El botón flotante */
.boton-captura {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1000;
  padding: 10px 20px;
  background-color: #217346;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.boton-captura:hover {
  background-color: #1a5a37;
  transform: translateY(-1px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.boton-captura:active {
  transform: translateY(0);
}
/*------------------------------------------------------------------------BOTONES DE ZOOM-------------------------------------------------------------------------------*/
/* Contenedor flotante */
.zoom-controls {
  position: fixed;
  top: 80px; /* Ajusta esto según tu encabezado */
  right: 20px;
  display: flex;
  flex-direction: column; /* Botones uno sobre otro */
  gap: 10px;
  z-index: 9999; /* Asegura que esté por encima de Luckysheet */
}

/* Estilo base para los botones */
.zoom-controls button {
  width: 45px;
  height: 45px;
  border-radius: 50%; /* Botones circulares */
  border: none;
  background-color: #ffffff;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Efecto al pasar el mouse */
.zoom-controls button:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
}


