html {
  scroll-behavior: smooth;
}
  .navbar-nav .nav-link {
       margin-left: 80px;
   }

   .navbar-custom .navbar-nav .nav-link {
       color: rgb(7, 0, 0);
       font-weight: bold;
   }

   .navbar-custom .navbar-nav .nav-link:hover {
       color: #ff0404;
   }

   .navbar-custom {
       background-color: rgba(0, 0, 0, 0.1);
   }


   .datos_telefonicos {
       color: #ff0404;
       padding-left: 30px;
       padding-top: 10px;

   }

  /* Estilos para los botones flotantes */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 10;
}

/* Estilos específicos para el botón de WhatsApp */
.whatsapp-button {
  background-color: #25D366; /* Color de fondo de WhatsApp */
  bottom: 20px; /* Ajusta la posición vertical del botón de WhatsApp */
  right: 100px; /* Ajusta la posición horizontal del botón de WhatsApp */
}

/* Estilos específicos para el botón de Facebook */
.facebook-button {
  background-color: #1877f2; /* Color de fondo de Facebook */
  bottom: 20px; /* Ajusta la posición vertical del botón de Facebook */
    right: 20px; /* Ajusta la posición horizontal del botón de Facebook */
}

/* Cambia el color de fondo al pasar el ratón sobre los botones */
.floating-button:hover {
  background-color: #333; /* Cambia el color de fondo al pasar el ratón sobre los botones */
}
.panel-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px;
  }

  .panel {
    width: 30%;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(184, 127, 127, 0.5);
  }

  .contenedor-card{
    width: 100%;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .lotes{
    width: 100%;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .panel-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .panel-body {
    font-size: 16px;
  }
  .panel img {
    max-width: 100%;
    height: auto;
}
  .area-con-color {
    position: absolute;
    background-color: red;
    opacity: 0.5;
  }

  .gallery-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; /* Espacio entre las galerías */
}

  .gallery {
    width: 50%;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(184, 127, 127, 0.5);

  }

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px; /* Espaciado entre las filas */


}

  .image {
    position: relative;
    width: 50%;
    border: 2px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2; /* Agrega un z-index para el elemento .image */
  }

  .image img {
      width: 100%;
      height: auto;
      transition: transform 0.2s ease;
  }

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

  .image-text {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 3;
  }

  .image:hover .image-text {
    display: block;
  }


.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 4;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}


.carousel-caption {
  bottom: 200px; /* Cambia la posición vertical del texto (ajústalo según tus necesidades) */
  text-align: center; /* Alinea el texto en el centro */
  background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para mejorar la legibilidad del texto */
  padding: 20px; /* Añade espacio alrededor del texto */
}

.form-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 50px;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
}

.form-container .form-group label {
  font-weight: bold;
}

.form-container .form-control {
  border-radius: 5px;
}

.form-container button a {
  width: 100%;
  margin-top: 20px;
}


.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
}
@media (max-width: 768px) {
  .panel {
      width: 45%;
  }
}

@media (max-width: 480px) {
  .panel {
      width: 90%;
  }
}

#logo{
  margin-top:5px;
  margin-left: 20px;
  align-items: center;
}


.gallery-container{
    z-index: -2;

}




.zoom-container {
    overflow: hidden;
    width: 100%; /* Puedes ajustar el ancho según tu diseño */
    max-width: 100%; /* Ajusta el ancho máximo según tu diseño */
}

.zoom-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* Animación de transición suave */
}

.zoom-container img.zoomed {
    transform: scale(2.5); /* Ajusta el nivel de zoom (ejemplo: 1.5) */
    cursor: zoom-out; /* Cambia el cursor al hacer zoom para permitir deshacer el zoom */
}

/* ? ----- Cuenta Regresiva ----- */

.contador {
    position: fixed;
    top: 100px;
    right: 20px; /* Cambiado de left a right */
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

#cuentaRegresiva {
    display: flex;
    justify-content: center;
    align-items: center;
}

#cuentaRegresiva > div {
    margin: 0 10px;
    text-align: center;
}

#cuentaRegresiva div > div {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
}
