/*
=================================================================
    CUSTOM ADDITIONS
=================================================================

    Additional custom styles that don't fit into other categories.
    Keep this minimal and organize into proper files when possible.
*/

/* ===== CUSTOM STYLES ===== */
/* Add your custom CSS here */

/* ==========================================================================
   Header Buttons - Inscripción y Pagos en línea
   ========================================================================== */

/* Contenedor de los botones */
.contact .flex {
  display: flex;
  align-items: center;
}

/* Estilos para ambos botones */
.contact .login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  min-width: 150px;

  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
  vertical-align: middle;
}

/* Asegurar que el icono también esté centrado */
.contact .login .icon-pay-icon {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Asegurar que ambos botones tengan el mismo ancho */
.contact .flex a.login {
  flex: 1;
  max-width: 180px;
  padding: 10px;
}

/* Responsive - Mobile (2 filas) */
@media (max-width: 768px) {
  .contact .flex {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .contact .flex a.login {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
}

/* Desktop (2 columnas) */
@media (min-width: 769px) {
  .contact .flex {
    flex-direction: row;
    gap: 12px;
  }

  .contact .flex a.login {
    flex: 1 1 auto;
  }
}

/* ==========================================================================
   Navigation Menu - Wider Container
   ========================================================================== */

/* Aumentar el ancho del container del menú en desktop */
@media (min-width: 1200px) {
  nav.navbar .container {
    width: 1400px;
    max-width: 95%;
  }
}

/* Ajuste para pantallas extra grandes */
@media (min-width: 1400px) {
  nav.navbar .container {
    width: 1600px;
    max-width: 95%;
  }
}
