:root {
  --main-color: #102053;

  --light-color: #aebdd1;
  --second-color: #ebc108;

  --alternative-color: #68a21f;
}

.banner img {
  width: 100%;
}
.banner {
  position: relative;
}
h2 {
  color: var(--main-color);
}

.statics,
.client-d {
  background-color: var(--main-color);
}

/* Estilos para las imágenes responsivas */
.img-responsive {
  width: 100%;
  height: auto; /* Tamaño máximo de las imágenes */
  object-fit: cover; /* Asegura que las imágenes mantengan su aspecto */
}

.owl-carousel .item {
  text-align: center;
  padding: 10px;
}

.owl-carousel img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}
/* Estilos para los puntos de navegación (dots) */
.owl-theme .owl-dots .owl-dot span {
  background: white; /* Color de los puntos no activos */
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(
    --second-color
  ); /* Color hexadecimal personalizado para el punto activo */
}

/* Estilo del lightbox */
.zoomable {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.lightbox img {
  max-width: 100%; /* Antes era 90%, ahora más grande */
  max-height: 90%; /* Antes era 80%, ahora más alto */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

/* Raices */
.statics-r {
  background-color: var(--alternative-color);
}
.statics-w {
  background-color: var(--main-color);
}
.text-custom {
  color: var(--alternative-color);
}
#stat-cards {
  width: 150px;
}
h5 {
  color: var(--alternative-color);
}
.title-lote {
  background-color: var(--alternative-color);
}

/* Estilo específico para el fondo de la tarjeta */
.bg-paper {
  border: 1px solid #dcdcdc; /* Bordes suaves */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle profundidad */
  border-radius: 10px;
}
.bg-paper .card-body {
  color: var(--main-color);
}
.title-pago {
  color: var(--alternative-color);
}
.img-responsive2 {
  aspect-ratio: 235/352;
}
