@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
  --text-main: #2d3436;
  --text-muted: #636e72;
}

a {
  color: inherit;
  text-decoration: none;
}
/* --- Layout & Grid System (Vanilla CSS) --- */
.contenedor-principal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}
.rounded {
  border-radius: 0.5rem;
}

.container {
  width: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}


.barra-navegacion-personalizada {
  width: 100%;
}
.barra-navegacion-personalizada nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.fila-layout {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*="columna-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .columna-mediana-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .columna-mediana-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .columna-pequena-6 { flex: 0 0 50%; max-width: 50%; }
}

/* --- Utilities --- */
.flex-contenedor { display: flex; }
.flex-ajustable { flex-wrap: wrap; }
.flex-columna { flex-direction: column; }
.alinear-centro { align-items: center; }
.distribuir-espacio { justify-content: space-between; }

/* --- Unified Navbar Transition --- */
#navbarNav {
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background-color: #fff;
  width: 100%;
  max-height: 0;
}

/* Mobile State */
@media (max-width: 767.98px) {
  nav {
    position: relative;
  }
  #navbarNav {
    display: block; /* Ensure it's not hidden by display: none */
    position: absolute;
    top: 100%; /* Justo debajo del nav */
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 1px solid #dee2e6;
    max-height: 0; /* Reinforce initial state */
  }
  #navbarNav.open {
    padding: 1rem 0;
  }
  #navbarNav ul, 
  #navbarNav li, 
  #navbarNav .btn,
  #navbarNav .nav-link-principal,
  #navbarNav .nav-link-usuario {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
  .nav-item {
    text-align: center;
  }
}

/* Desktop State */
@media (min-width: 768px) {
  #navbarNav {
    display: flex;
    max-height: none;
    width: auto;
    flex-grow: 1;
    overflow: visible;
    background-color: transparent;
    margin-left: 2rem; /* Space from logo */
  }
  .flex-mediano-fila {
    flex-direction: row;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .espaciado-ml-mediano-auto {
    margin-left: auto;
  }
  .espaciado-mt-mediano-0 {
    margin-top: 0;
  }
  .ancho-mediano-auto {
    width: auto;
  }
  /* Remove fixed margin-left if we want it to be pushed by space-between or margin-left: auto */
  .espaciado-ml-mediano-4 {
    margin-left: 1.5rem;
  }
}

#mobile-menu-button {
  display: inline-block;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  #mobile-menu-button {
    margin-left: auto; /* Force to the right in the flex nav */
  }
}

@media (min-width: 768px) {
  #mobile-menu-button {
    display: none; /* Desaparece en escritorio */
  }
}

/* --- Utilities --- */
.texto-centrado { text-align: center; }
.texto-derecha { text-align: right; }
.espaciado-mt-3 { margin-top: 1rem; }
.espaciado-mb-0 { margin-bottom: 0; }
.espaciado-mb-1 { margin-bottom: 0.25rem; }
.espaciado-mb-2 { margin-bottom: 0.5rem; }
.espaciado-mb-4 { margin-bottom: 1.5rem; }
.espaciado-ml-2 { margin-left: 0.5rem; }
.espaciado-ml-4 { margin-left: 1.5rem; }
.espaciado-ml-auto { margin-left: auto; }
.espaciado-mr-auto { margin-right: auto; }
.flex-crecer { flex-grow: 1; }
.espaciado-p-3 { padding: 1rem; }
.espaciado-p-6 { padding: 1.5rem; }
.fondo-claro { background-color: #f8f9fa; }
.fondo-blanco { background-color: #fff; }
.sombra-suave { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075); }
.borde-redondeado { border-radius: 0.25rem; }
.borde-redondeado-grande { border-radius: 0.5rem; }
.oculto { display: none; }
.bloque { display: block; }
.alinear-final { justify-content: flex-end; }
.espacio-hueco-2 { gap: 0.5rem; }
.espacio-hueco-3 { gap: 1rem; }
.lista-sin-estilo { list-style: none; padding-left: 0; }
.ancho-total { width: 100%; }
.card {
  width: 350px;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  font-family: 'Segoe UI', system-ui, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.card-content {
  padding: 24px;
}
.card-title {
  margin: 0 0 12px 0;
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.2;
}
.card-text {
  margin: 0 0 24px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* --- Header Menus --- */
.menu-principal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .menu-principal {
    flex-direction: row;
    width: auto;
  }
}

.menu-usuarios {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 0;
  margin-top: 1rem;
  padding: 0;
}

@media (min-width: 768px) {
  .menu-usuarios {
    flex-direction: row;
    margin-left: auto;
    margin-top: 0;
    width: auto;
  }
}

.nav-link-principal {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  /*border-radius: 0.25rem;*/
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
  color: #6c757d;
}

.nav-link-usuario {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  /*border-radius: 0.25rem;*/
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
  color: #6c757d;
  border: 1px solid #6c757d;
}

.nav-link-usuario:hover {
  background-color: #6c757d;
  color: #fff;
}

@media (max-width: 767px) {
  .flex-mediano { display: none; }
}

@media (min-width: 768px) {
  .oculto-mediano { display: none; }
  .flex-mediano { display: flex; }
}


.conctacto-columnas, .login-columnas, .registro-columnas {
  display: block;
}

@media (min-width: 768px) {
  .contacto-columnas, .login-columnas, .registro-columnas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}



/* --- Clase Base (Recordatorio) --- */
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

/* --- Variación: Success (Verde) --- */
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* --- Variación: Light (Gris muy tenue / Blanco sucio) --- */
.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

/* --- Variación: Danger (Rojo - Error) --- */
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* --- Variación: Warning (Amarillo/Naranja - Advertencia) --- */
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
/* --- Components --- */
.bloque-alerta {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alerta-informacion {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.bloque-tarjeta {
  border: 1px solid rgba(0,0,0,.125);
  background-color: #fff;
}
.cuerpo-tarjeta { padding: 1.25rem; }
/*
.boton-accion {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
}
.boton-contorno-secundario {
  color: #6c757d;
  border-color: #6c757d;
}
.boton-contorno-secundario:hover {
  background-color: #6c757d;
  color: #fff;
}
*/

/* --- Existing Custom Styles (Merged) --- */
.font-titulo {
  font-family: "Open Sans", sans-serif;
}
.font-texto {
  font-family: "Roboto", sans-serif;
}
body {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.hidden {
  display: none;
}
.show {
  display: block;
}
section.contenidos {
  padding: 56px 0;
  flex-grow: 1;
}
.slider-cartelera .item {
  margin: 1rem 0;
  position: relative;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
}
.slider-cartelera img {
  display: block;
  width: 100%;
  height: auto;
}
.slider-cartelera .centered-text {
  display: inline-block;
  border-radius: 7px;
  position: absolute;
  bottom: 2em;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: normal;
  background-color: black;
  opacity: 0.75;
  padding: 1rem;
}
@media (max-width: 768) {
  .slider-cartelera .centered-text {
    font-size: 16px;
  }
}
.home-titulo-proximas {
  color: #d4003b;
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  font-weight: 500;
}
.home-afiche-proximas {
  background-color: #d4003b;
  border-radius: 11px;
  overflow: hidden;
  width: 14rem;
  margin: 1rem;
}
.home-afiche-proximas img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: black;
}
.home-afiche-proximas .body {
  padding: 0.75em 1em;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}
.home-afiche-proximas h4 {
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  height: 1em;
}
.home-afiche-proximas h5 {
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  height: 7em;
}
.home-afiche-proximas p {
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.home-afiche-proximas a {
  text-decoration: none;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.home-afiche-proximas .footer {
  border-top: 1px solid white;
  padding: 1rem;
}
.home-afiche-anteriores {
  background-color: #f1f1f1;
  border-radius: 11px;
  overflow: hidden;
  width: 14rem;
  margin: 1rem;
}
.home-afiche-anteriores img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: black;
}
.home-afiche-anteriores .body {
  padding: 0.75em 1em;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}
.home-afiche-anteriores h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  height: 1em;
}
.home-afiche-anteriores h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  height: 7em;
}
.home-afiche-anteriores p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.home-afiche-anteriores a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.home-afiche-anteriores .footer {
  border-top: 1px solid black;
  padding: 1rem;
}
.lnk-clave-olvidada {
  color: #88002d;
  padding: 0 0 2px 0;
}
.lnk-clave-olvidada:hover {
  text-decoration: none;
  color: #88002d;
}
.lote-imagen {
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #333;
  object-fit: contain;
  border-top: 5px solid #d4003b;
}
.lote-sin-imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4 / 3;
  width: 100%;
  color: white;
  background: #333;
  border-top: 5px solid #d4003b;
}
@media (min-width: 992px) {
  .form-contacto {
    margin: 0 50px;
  }
  #formLogin .sin-cuenta {
    margin: 30px 90px;
  }
}
@media (max-width: 991px) {
  .form-contacto {
    margin: 0;
  }
  #formLogin .sin-cuenta {
    margin: 30px 10px;
  }
}
.home-cartelera-proximos {
  padding: 74px 15px;
}
.texto-contacto {
  margin-top: 60px;
}
.texto-contacto h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
}
.texto-contacto p {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
}
.home-como-participar .titulo,
.encabezado-seccion .titulo {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.home-como-participar .sub-titulo,
.encabezado-seccion .sub-titulo {
  font-family: 'Open Sans', sans-serif;
  font-size: 19px;
  font-weight: 400;
}
.home-como-participar .pasos {
  margin-top: 30px;
}
@media ( min-width: 768px ) {
  .home-como-participar .pasos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
}
.home-como-participar .titulo-pasos {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #d4003b;
  margin: 1em 0;
}
.pasos .card {
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: white;
}
/* Ajusta el espaciado para dispositivos más pequeños */
@media (max-width: 768px) {
  .pasos .card {
    margin-bottom: 10px;
  }
}

/*
 * Contenedor de cada elemento (simula Bootstrap .form-group)
 * Pure.css usaría .pure-control-group
 */
.form-group {
    margin-bottom: 1rem; /* Espacio entre campos */
}

/*
 * Estilo para la mayoría de los campos de entrada (simula Bootstrap .form-control)
 * Aplica a inputs de texto, email, number, password, textarea y select
 */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    display: block; /* Ocupa el 100% del ancho */
    width: 100%;
    padding: 0.375rem 0.75rem; /* Padding interno */
    font-size: 1rem;
    line-height: 1.5;
    color: #495057; /* Texto oscuro */
    background-color: #fff; /* Fondo blanco */
    background-clip: padding-box;
    border: 1px solid #ced4da; /* Borde gris claro */
    border-radius: 0.25rem; /* Bordes ligeramente redondeados */
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box; /* Importante para que el padding no afecte el ancho total */
}

/*
 * Estilo de enfoque (Focus state)
 * Se activa al hacer clic o tabular sobre el campo
 */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff; /* Borde azul suave */
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* Sombra azul suave */
}

/* Estilo para áreas de texto */
textarea {
    min-height: 80px; /* Altura mínima para el textarea */
}

/* Estilo para el label (opcional) */
label {
    display: inline-block;
    margin-bottom: 0.5rem; /* Espacio debajo del label */
    font-weight: 500; /* Ligeramente más negrita */
}

/* Checkboxes y Radios */
input[type="checkbox"],
input[type="radio"] {
    /* Resetea los estilos de ancho/display que aplicamos arriba */
    display: inline-block;
    width: auto;
    margin-right: 0.5rem;
}



.home-como-participar p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.home-contactos {
  background-color: #e5fffd;
  padding: 2rem;
}
.home-contactos .titulo {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.home-contactos p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.home-ventajas .titulo {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.home-ventajas .sub-titulo {
  font-family: 'Open Sans', sans-serif;
  font-size: 19px;
  font-weight: 400;
}
.home-ventajas .lista-ventajas {
  margin-top: 30px;
  margin-bottom: 30px;
}
.home-ventajas .lista-ventajas>li {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 14px 0;
}
.home-ventajas .lista-ventajas>li>i {
  color: #d4003b;
  font-size: 18px;
  font-weight: 700;
}
.home-ventajas .img-ventajas {
  border-top: 4px solid #d4003b;
}
.mapas-titulo {
  font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #d4003b;
}
#formLogin .titulo {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
}
#formLogin .sin-cuenta {
  padding: 30px 0;
  background-color: #f1f1f1;
}
#formLogin .sin-cuenta h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 19px;
}
#formLogin input.form-control {
  height: 30px;
  font-size: 16px;
  color: #d4003b;
}
#formLogin input.form-control::placeholder {
  font-size: 16px;
  color: #d4003b;
}
#formContacto input.form-control {
  height: 30px;
  font-size: 16px;
}
.msg {
  text-align: center;
}
.msg h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
}
.msg p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}
.lote-tabla .ficha {
  background-color: #d4003b;
  border-radius: 11px;
  overflow: hidden;
  width: 16rem;
  margin: 0.5rem;
}
.imagen-superior-tarjeta {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #333;
}
.lote-tabla .cuerpo {
  padding: 0.5rem 0.25rem;
}
.lote-tabla .titulo {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.lote-tabla .detalle {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  min-height: 3rem;
  text-overflow: ellipsis;
}
.lote-tabla .footer {
  text-align: center;
  border-top: 1px solid white;
  padding: 0.5rem;
}
.faq-titulo {
  font-family: 'Open Sans', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: white;
}
.faq-pregunta {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #88002d;
}
.faq-respuesta {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
}
footer {
  padding: 50px 0 30px 0;
  background-color: #0f0f0e;
}
footer i, footer svg {
  color: #88002d;
}
footer .titulo {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
}
footer .sub-titulo {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 19px;
  font-weight: 400;
}
footer .texto {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
}
/* Botón base */
.btn {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: #fff;
  color: #066051;
  transition: all 0.3s ease;
}

/* Tamaño pequeño */
.btn.btn-sm {
  font-size: 0.75rem;
  padding: 6px 10px;
}

/* Contenedor para centrar botones */
.btn-container {
  display: flex;
  justify-content: center;
}

/* Elimina estilos nativos de los botones */
.btn,
.btn:focus,
.btn:active {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/* Hover genérico */
.btn:hover {
  opacity: 0.9;
  background-color: inherit;
  color: inherit;
  transform: translateY(-2px);
}


.btn-ver-catalogo,
.btn-ventajas-registro,
.btn-ampliar,
.btn-bordeaux {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background-color: #d4003b;
  border: 1px solid #d4003b;
  padding-right: 23px;
  padding-left: 23px;
  padding-top: 5px;
  padding-bottom: 5px;
  /*border-radius: 0.25rem;*/
}
/*
.btn-ver-catalogo:hover,
.btn-ventajas-registro:hover,
.btn-ampliar:hover,
.btn-bordeaux:hover {
  background-color: #660022;
  color: white;
}
*/
.btn-blue {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background-color: #0056d4;
  border: 1px solid #0056d4;
  padding-right: 23px;
  padding-left: 23px;
  /*border-radius: 0.25rem;*/
}
.btn-ver-catalogo:hover,
.btn-ventajas-registro:hover,
.btn-blue:hover {
  background-color: #0066ff;
  color: white;
}
.btn-registro {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background-color: #4c0019;
  border: 1px solid #4c0019;
  padding-right: 23px;
  padding-left: 23px;
  /*border-radius: 0.25rem;*/
}
.btn-registro:hover {
  background-color: #80002a;
  color: white;
}

/* --- Estilo Base de Outline Secondary --- */
.btn-outline-secondary {
  color: #6c757d;               /* Gris característico de Bootstrap */
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

/* --- Estado: Hover (Pasar el mouse) --- */
.btn-outline-secondary:hover {
  color: #fff;                  /* El texto pasa a blanco */
  background-color: #6c757d;    /* El fondo se rellena con el gris */
  border-color: #6c757d;
}

/* --- Estado: Active (Al hacer clic) --- */
.btn-outline-secondary:active, 
.btn-outline-secondary.active {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* --- Estado: Focus (Accesibilidad con teclado) --- */
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); /* Sombra suave gris */
  outline: none;
}

/* --- Estado: Disabled (Deshabilitado) --- */
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
  opacity: 0.65;
}

.datos-lote {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}
.datos-lote .h4 {
  padding-left: 7px;
  padding-right: 5px;
}
.datos-lote>div {
  background: #eee;
}

.lote-columnas {
  display: block;
}

@media (min-width: 768px) {
  .lote-columnas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}

.lote-dato-detalle {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0.25rem;
}
/*---------- General -------------*/
/* Inicialmente el navbar está oculto en la parte superior */
.navbar-custom {
  position: relative;
  background-color: #f4f6f7;
  /* Fondo gris claro */
  border-bottom: 2px solid #d1d2d3;
  /* Borde inferior gris oscuro */
  width: 100%;
  z-index: 1030;
}
.navbar-hidden {
  display: none;
}
/* Al hacer scroll, el navbar se pone fijo en la parte superior */
.navbar-fixed {
  display: none;
}
.btn-login {
  color: white;
  background-color: #3827d6;
  border: 1px solid #3827d6;
}
.btn-login:hover {
  color: white;
  background-color: #6153df;
  border: 1px solid #6153df;
}

.carousel {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  /* Esconde las fotos que no están activas */
  border-radius: 10px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* La magia del movimiento */
}

.carousel-item {
  min-width: 100%;
  /* Cada slide ocupa el 100% del contenedor */
}

.carousel-item img {
  width: 100%;
  display: block;
}

/* Botones de navegación */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  /* Hazlos círculos */
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: white;
  transform: scale(1.2);
  /* Un toque de feedback visual */
}

.carousel-prev:hover,
carousel-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.pie-celdas {
	display: block;
}

@media (min-width: 768px) {
  .pie-celdas {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
  }
}
.pie-celdas > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1rem;
}
.pie-celdas > div svg {
  min-width: 24px;
  height: 24px;
  flex-shrink: 0;
}
