:root {
  --main-color: #102053;

  --light-color: #aebdd1;
  --second-color: #ebc108;

  --alternative-color: #68a21f;
}

.banner img {
  width: 100%;
}
.banner {
  position: relative;
}
h2 {
  color: var(--alternative-color);
}

.statics,
.client-d {
  background-color: var(--alternative-color);
}

/* Estilos para las imágenes responsivas */
.img-responsive {
  width: 100%;
  height: auto; /* 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: 85%;
  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(--main-color);
}
.statics-w {
  background-color: var(--alternative-color);
}
.text-custom {
  color: var(--main-color);
}
#stat-cards {
  width: 150px;
}
h5 {
  color: var(--main-color);
}
.title-lote {
  background-color: var(--main-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(--alternative-color);
}
.title-pago {
  color: var(--main-color);
}
.img-responsive2 {
  aspect-ratio: 235/352;
}

.title-mv {
  color: white;
}

/* Estilos Form */
#cotizacion-form {
  border-radius: 20px;
  margin: auto;
  border-right: 5px solid #001a60;
  background-color: whitesmoke;
  box-shadow: 20px 0px 15px rgba(0, 0, 0, 0.1);
}
.input {
  background-color: white;
}
.input-group {
  margin-bottom: 17px;
}
.form-control {
  border-radius: 5px !important;
}
.input-container {
  position: relative;
  margin-top: 1.5rem;
}

.floating-label {
  position: absolute;
  top: 10px;
  font-weight: bold;
  left: 12px;
  padding: 0 5px;
  font-size: 14px;
  color: rgb(129, 129, 129);
  transition: all 0.1s;
  pointer-events: none;
  z-index: 999;
}

.custom-input:focus + .floating-label,
.custom-input:not(:placeholder-shown) + .floating-label {
  top: -10px;
  left: 10px;
  background-color: white;
  font-size: 12px;
  color: #001a60;
}

.btn-form:hover {
  background-color: var(--main-color);
}
.btn-form {
  width: 100%;
}
