
/* TODO:----------------------------------------------------------------------------------HOME---------------------------------------------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  font-family: Poppin, sans-serif;
  touch-action: pan-x pan-y;
  overscroll-behavior: none;
  background-image: url("Fondo_Prologitec.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-color: #000;
  color: white;
}

/* LA MAGIA DE LA TRANSICIÓN: Un telón negro sobre toda la página */
body::after {
  content: "";
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw; 
  height: 100vh;
  background-color: #000; /* Telón negro perla */
  z-index: 999999;
  pointer-events: none; /* Deja hacer click a lo de abajo cuando es invisible */
  opacity: 1; /* OPACO POR DEFECTO para que tape todo al cargar HTML */
  transition: opacity 0.15s ease-out; /* ACELERADO a 0.15s (antes 0.25s) */
  will-change: opacity;
}

/* Cuando ya cargó, el telón se vuelve transparente y deja ver la app */
body.loaded::after {
  opacity: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overscroll-behavior-y: none; /* ← Esto bloquea “pull to scroll” */
}



.contenedor {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* cambia esto */
  align-items: center;
  min-height: 100vh;
  padding: 30px 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}


.logo img {
  max-width: 400px;
  height: auto;
  margin-top: 40px;
}

.bienvenida {
  font-size: 21px;
  margin-top: 50px;
  margin-bottom: 40px;
  font-weight: 600; /* Poppins con grosor medio */
  color: #f0b804;
  text-shadow: 1px 1px 2px #000000;
}

.botones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 0;
}

.boton {
  width: 170px;
  height: 170px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  margin-bottom: 0;
  text-shadow: 0px 0px 0px black;
  font-size: 14px;
  /* 👉 Animación para las letras */
  animation: pintarTexto 2.8s ease-in-out infinite;
  animation-fill-mode: backwards;
  color: #ffffff;
}


.boton:hover {
  transform: scale(1.05);
}

.boton img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  object-fit: contain;
}


.footer {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 30px;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px black;
  text-align: center;
}


.fondo-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);  /* Puedes subir a 0.5 o 0.6 si quieres más oscuridad */
  z-index: 0;
}

.contenedor {
  position: relative;
  z-index: 1;
}

.icono-blanco {
  width: 80px;
  height: 100px;
  fill: white; /* ← cambia las líneas a blanco */
  animation: pintarIcono 2.8s ease-in-out infinite;
  animation-fill-mode: backwards;
  color: #ffffff;
  transition: none;
}

/* Animación: va de blanco → amarillo dorado → blanco en bucle */
@keyframes pintarIcono {
  0%   { color: #ffffff; }
  50%  { color: #f0b804; }               /* amarillo dorado para animación */
  100% { color: #ffffff; }
}

/* Animación de las letras */
@keyframes pintarTexto {
  0%   { color: #ffffff; }
  50%  { color: #f0b804; }   /* amarillo dorado para animación */
  100% { color: #ffffff; }
}

/* (Opcional) escalonar por botón para efecto “olas” */
.botones a:nth-child(1) .icono-blanco { animation-delay: 0s; }
.botones a:nth-child(1) { animation-delay: 0s; }

.botones a:nth-child(2) .icono-blanco { animation-delay: .3s; }
.botones a:nth-child(2) { animation-delay: .3s; }

.botones a:nth-child(3) .icono-blanco { animation-delay: .6s; }
.botones a:nth-child(3) { animation-delay: .6s; }

.botones a:nth-child(4) .icono-blanco { animation-delay: .9s; }
.botones a:nth-child(4) { animation-delay: .9s; }

.botones a:nth-child(5) .icono-blanco { animation-delay: 1.2s; }
.botones a:nth-child(5) { animation-delay: 1.2s; }
/* Respeto a usuarios que desactivan animaciones */
@media (prefers-reduced-motion: reduce) {
  .icono-blanco { animation: none; }
}
.icono-blanco path { fill: currentColor; }

/* TODO:----------------------------------------------------------------REGISTRO---------------------------------------------------------------------------- */

.contenedor-registro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ← Este es el cambio clave */
  min-height: 100vh;
  padding: 30px 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: 20px; /* ← Esto agrega espacio más limpio y controlado */
}


.logo-registro img {
  max-width: 500px;
  height: auto;
  margin-top: 10px;  /* ↓ antes era 40px */
  filter: drop-shadow(0px 0px 5px black);
}


.formulario-registro {
  margin-top: 0px;  /* ← Antes estaba en 30px innecesarios */
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

.formulario-registro h2 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px black;
}

.formulario-registro form {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 15px;
}

.formulario-registro input,
.formulario-registro select {
  padding: 10px;
  border-radius: 5px;
  border: none;
  width: 250px;
  max-width: 70%;
  font-size: 14px;
  outline: none;
}

.formulario-registro button {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #f0b804;
  border: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.formulario-registro button:hover {
  background-color: #f0b804;
}

.boton-volver {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #f0b804;
  text-decoration: none;
  font-weight: 600;
}

.boton-volver:hover {
  text-decoration: underline;
}

.bloque-opciones-registro {
  grid-column: span 2;
  width: 100%;
  max-width: none; /* ✅ Deja que herede del grid */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}


.mensajes-registro {
  color: lightgreen;
  font-size: 14px;
  margin-bottom: 15px;
  list-style: none;
  padding: 0;
}

.footer-registro {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px black;
}

.boton-registro-contenedor {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-registrar {
  padding: 10px 25px;
  border-radius: 5px;
  background-color: #f0b804;
  border: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-registrar:hover {
  background-color: #f0b804;
}

.boton-volver-contenedor {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.btn-volver {
  padding: 10px 25px;
  border-radius: 5px;
  background-color: #1e1e1e;
  border: none;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-volver:hover {
  background-color: #333333;
}

/* TODO:---------------------------------------------------------------RESPONSIVE-HOME---------------------------------------------------------------------------- */
@media screen and (max-width: 1366px) {
  .logo img {
    max-width: 400px;
    margin-top: 20px !important;
  }

  .bienvenida {
    font-size: 18px;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .boton {
    width: 160px;
    height: 160px;
    font-size: 13px;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .boton img {
    width: 70px;
    height: 70px;
  }

  .contenedor {
    padding: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .logo img {
    max-width: 600px;
    margin-top: 40px;
  }

  .bienvenida {
    font-size: 21px;
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .boton {
    width: 200px;
    height: 200px;
    font-size: 15px;
    margin-top: 100px;
    margin-bottom: 40px;
  }

  .boton img {
    width: 100px;
    height: 100px;
  }

  .contenedor {
    padding: 30px 20px;
  }
}

/* todo==========================================================RESPONSIVE========================================================================= */



/* 🖥️ Pantallas grandes (≥ 1440px) */
@media screen and (min-width: 1440px) {
  .logo-registro img {
    max-width: 600px;
    margin-top: 40px;
  }

  .formulario-registro {
    max-width: 600px;
  }

  .formulario-registro input,
  .formulario-registro select {
    width: 250px;
    font-size: 15px;
  }

  .bloque-opciones-registro {
    max-width: 525px;
  }

  .btn-registrar,
  .btn-volver {
    font-size: 15px;
    padding: 10px 25px;
  }

  .footer-registro {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .formulario-registro form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .bloque-opciones-registro {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* ✅ Esto es lo que corrige el descuadre */
    text-align: center;
  }

  .bloque-opciones-registro label {
    width: 100%;
    margin-bottom: 5px;
  }

  .bloque-opciones-registro select {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
/* todo========================================================== CONSULTA =========================================================================== */
/* Estilo exclusivo para el formulario de Consulta */
.formulario-consulta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}

.modal-overlay.visible {
  display: flex;
}

.modal-contenido {
  background-color: #121212;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  color: white;
}

.modal-contenido h3 {
  margin-bottom: 20px;
  color: #f0b804;
}

.modal-contenido p {
  margin: 5px 0;
}

.modal-contenido .qr-img {
  margin-top: 20px;
  width: 150px;
  height: 150px;
}

.modal-contenido .btn-registrar {
  margin-top: 20px;
}

.modal-cerrar {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-cerrar:hover {
  color: #f0b804;
}

.btn-consulta {
  padding: 12px 30px;
  border-radius: 5px;
  background-color: #3a3a3a;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.btn-consulta:hover {
  background-color: #5c5c5c;
}

/* TODO: ============================== LISTA USUARIOS CONSULTA ============================== */

.modal-lista-usuarios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  max-height: 400px;
  overflow-y: auto;
}

.usuario-item {
  background: rgba(240, 184, 4, 0.1);
  border: 1px solid rgba(240, 184, 4, 0.3);
  border-radius: 6px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.usuario-item:hover {
  background: rgba(240, 184, 4, 0.2);
  border-color: #f0b804;
  box-shadow: 0 0 8px rgba(240, 184, 4, 0.4);
  transform: translateX(5px);
}

.usuario-info {
  flex: 1;
  color: #f0f0f0;
}

.usuario-info strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.usuario-info small {
  display: block;
  font-size: 0.85rem;
  color: #bbb;
  line-height: 1.4;
}

.modal-subtexto {
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 8px;
  margin-bottom: 15px;
}

/* Scrollbar personalizado para la lista */
.modal-lista-usuarios::-webkit-scrollbar {
  width: 8px;
}

.modal-lista-usuarios::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.modal-lista-usuarios::-webkit-scrollbar-thumb {
  background: rgba(240, 184, 4, 0.4);
  border-radius: 4px;
}

.modal-lista-usuarios::-webkit-scrollbar-thumb:hover {
  background: rgba(240, 184, 4, 0.6);
}

/* TODO: ============================== TOGGLE QR ============================== */

.toggle-qr-bloque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(240, 184, 4, 0.35);
  border-radius: 8px;
  padding: 10px 16px;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 4px;
}

.toggle-qr-bloque--consulta {
  margin-bottom: 0;
  margin-top: 10px;
}

.toggle-qr-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f0f0f0;
  letter-spacing: 0.5px;
  user-select: none;
}

.toggle-qr-switch {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  flex-shrink: 0;
}

.toggle-qr-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-qr-track {
  display: flex;
  align-items: center;
  width: 48px;
  height: 26px;
  border-radius: 50px;
  background: #3a3a3a;
  border: 1.5px solid #555;
  transition: background 0.25s ease, border-color 0.25s ease;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.4);
}

.toggle-qr-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #888;
  margin-left: 3px;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Estado activo */
.toggle-qr-switch input:checked + .toggle-qr-track {
  background: rgba(240, 184, 4, 0.2);
  border-color: #f0b804;
}

.toggle-qr-switch input:checked + .toggle-qr-track .toggle-qr-thumb {
  transform: translateX(22px);
  background: #f0b804;
  box-shadow: 0 0 8px rgba(240, 184, 4, 0.7);
}

/* todo================================= ASISTENCIA ================================= */

.formulario-asistencia {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.formulario-asistencia input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  width: 250px;
  font-size: 14px;
  max-width: 100%;
  outline: none;
  text-align: center;
}

.btn-registrar {
  padding: 10px 25px;
  border-radius: 5px;
  background-color: #f0b804;
  border: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-registrar:hover {
  background-color: #f0b804;
}

.btn-volver {
  padding: 10px 25px;
  border-radius: 5px;
  background-color: #1e1e1e;
  border: none;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-volver:hover {
  background-color: #333333;
}



/* todo================================= ASIGNAR POPUP (Mesa/Silla) ================================= */

.popup-asignar {
  background-color: #121212;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  color: white;
  margin: 50px auto;
}

.popup-asignar h2 {
  margin-bottom: 20px;
  color: #f0b804;
}

.popup-asignar input[type="text"] {
  padding: 10px;
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  outline: none;
}

.popup-asignar .btn-registrar {
  padding: 10px 25px;
  background-color: #f0b804;
  border: none;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-asignar .btn-registrar:hover {
  background-color: #f0b804;
}

/* ==================== MÓDULO IMPORTAR EXCEL ==================== */

.contenedor-importar {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 30px 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.logo-importar {
  margin-top: 20px;
  margin-bottom: 40px;
}

.logo-importar img {
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0px 0px 5px black);
}

.seccion-importar {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.titulo-importar {
  font-size: 28px;
  font-weight: 600;
  color: #f0b804;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  margin: 0;
  text-align: center;
}

.alerta-importar {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  font-weight: 600;
  text-align: center;
  border-left: 4px solid #f0b804;
  font-size: 14px;
  line-height: 1.5;
}

/* TARJETAS */
.tarjeta-importar {
  width: 100%;
  background: linear-gradient(135deg, rgba(31, 78, 120, 0.8) 0%, rgba(30, 78, 120, 0.6) 100%);
  border: 1px solid rgba(240, 184, 4, 0.3);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.tarjeta-importar:hover {
  border-color: rgba(240, 184, 4, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240, 184, 4, 0.1);
}

.numero-paso {
  position: absolute;
  top: -15px;
  left: 30px;
  background: #f0b804;
  color: #1F4E78;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(240, 184, 4, 0.4);
}

.titulo-tarjeta {
  font-size: 20px;
  font-weight: 600;
  color: #f0b804;
  margin: 15px 0 0 0;
  text-align: center;
}

.descripcion-tarjeta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.descripcion-tarjeta code {
  background: rgba(255, 255, 255, 0.1);
  color: #f0b804;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}

/* INPUTS Y BOTONES */
.input-file-wrapper {
  width: 100%;
  position: relative;
}

#archivo-excel {
  display: none;
}

.label-file {
  display: block;
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed #f0b804;
  border-radius: 8px;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.label-file:hover {
  background: rgba(240, 184, 4, 0.1);
  border-color: #FFF;
}

.btn-primario {
  padding: 12px 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0b804 0%, #f0b804 100%);
  border: none;
  color: #1F4E78;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(240, 184, 4, 0.3);
  text-align: center;
  min-width: 250px;
}

.btn-primario:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 184, 4, 0.5);
  background: linear-gradient(135deg, #f0b804 0%, #f0b804 100%);
}

.btn-primario:active {
  transform: translateY(0);
}

.btn-secundario {
  padding: 12px 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  border: none;
  color: #FFF;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
  min-width: 250px;
}

.btn-secundario:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
  background: linear-gradient(135deg, #EC7063 0%, #E74C3C 100%);
}

.btn-secundario:active {
  transform: translateY(0);
}

/* BOTÓN VOLVER */
.contenedor-volver {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-volver-importar {
  padding: 10px 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(240, 184, 4, 0.5);
  color: #FFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-volver-importar:hover {
  background: rgba(240, 184, 4, 0.2);
  border-color: #f0b804;
  color: #f0b804;
}

/* Botón para volver en detalle de consulta */
.btn-volver-detalle {
  display: block;
  margin-bottom: 20px;
  padding: 8px 16px;
  background-color: rgba(240, 184, 4, 0.1);
  border: 1px solid rgba(240, 184, 4, 0.4);
  color: #f0b804;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-volver-detalle:hover {
  background-color: rgba(240, 184, 4, 0.2);
  border-color: #f0b804;
  box-shadow: 0 0 8px rgba(240, 184, 4, 0.3);
  transform: translateX(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .titulo-importar {
    font-size: 22px;
  }

  .tarjeta-importar {
    padding: 30px 20px;
    gap: 15px;
  }

  .btn-primario,
  .btn-secundario {
    min-width: auto;
    width: 100%;
  }

  .numero-paso {
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .seccion-importar {
    max-width: 100%;
  }
}

