/* ========================================
   SELECTOR DE CIUDAD - MODAL INICIAL MEJORADO
   Diseño moderno, responsive y sin scroll
   ======================================== */


   :root {
    /* Colores principales */
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8555;
    --success: #22c55e;
    --success-dark: #16a34a;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* Fondos */
    --bg-dark: #2c3e50;
    --bg-card: #34495e;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    
    /* Textos */
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --text-light: #ecf0f1;
    --text-white: #ffffff;
    
    /* Bordes y sombras */
    --border: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Espaciado */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    
    /* Bordes redondeados */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    
    /* Transiciones */
    --transition: 0.3s ease;
  }
/* Overlay del modal */
.modal-ciudad-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.5s ease;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.modal-ciudad-overlay.oculto {
  opacity: 0;
  pointer-events: none;
}

/* Contenedor principal del modal */
.modal-ciudad-container {
  background: white;
  border-radius: 24px;
  padding: 35px 30px 30px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s ease;
  animation: modalEntrada 0.5s ease;
  margin: auto;
}

/* Layout horizontal para desktop */
@media screen and (min-width: 768px) {
  .modal-ciudad-container {
    max-width: 800px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 35px;
    padding: 35px;
    text-align: left;
  }
  
  .modal-ciudad-izquierda {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-right: 2px solid #f0f0f0;
    padding-right: 35px;
  }
  
  .modal-ciudad-derecha {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0; /* Importante para que no se salga */
  }
  
  .ciudades-grid {
    width: 100%;
    max-width: 100%;
  }
  
  .ciudad-card {
    min-height: 100px;
    max-height: 100px;
    padding: 12px 8px;
  }
  
  .ciudad-card-icono {
    font-size: 28px;
  }
  
  .ciudad-card-nombre {
    font-size: 13px;
  }
  
  .ciudad-card-departamento {
    font-size: 10px;
  }
}

@keyframes modalEntrada {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Logo y título */
.modal-ciudad-logo {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.modal-ciudad-titulo {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.modal-ciudad-subtitulo {
  font-size: 15px;
  color: #666;
  margin: 0 0 20px 0;
}



/* Pregunta */
.modal-ciudad-pregunta {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

/* Grid de ciudades - 2 columnas en todas las pantallas */
.ciudades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
}

/* Card de cada ciudad */
.ciudad-card {
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
  border: 2px solid #e9ecef;
  border-radius: 14px;
  padding: 15px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  min-height: 105px;
  max-height: 105px;
  justify-content: center;
  overflow: hidden;
}

.ciudad-card:hover:not(.proximamente) {
  border-color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.ciudad-card.seleccionada {
  border-color: #ff6b35;
  background: linear-gradient(145deg, #fff5f0, #ffffff);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.ciudad-card-icono {
  font-size: 30px;
  line-height: 1;
}

.ciudad-card-nombre {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.ciudad-card-departamento {
  font-size: 11px;
  color: #888;
  line-height: 1.2;
}

/* Indicador de selección */
.ciudad-card .check-icon {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: #ff6b35;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
}

.ciudad-card.seleccionada .check-icon {
  display: block;
  animation: checkPop 0.3s ease;
}

@keyframes checkPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Botón de continuar */
.btn-continuar-ciudad {
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-continuar-ciudad:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-continuar-ciudad:active:not(:disabled) {
  transform: translateY(0);
}

.btn-continuar-ciudad:disabled {
  background: linear-gradient(135deg, #ccc 0%, #bbb 100%);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

.btn-continuar-ciudad:disabled:hover {
  transform: none;
}

/* Texto inferior */
.modal-ciudad-footer {
  margin-top: 16px;
  font-size: 13px;
  color: #999;
  line-height: 1.4;
}

.modal-ciudad-footer a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.modal-ciudad-footer a:hover {
  color: #f7931e;
  text-decoration: underline;
}

/* Badge de próximamente */
.ciudad-card.proximamente {
  opacity: 0.5;
  cursor: not-allowed;
}

.ciudad-card.proximamente::after {
  content: 'Próximamente';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  background: #666;
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 500;
}

.ciudad-card.proximamente:hover {
  transform: none;
  border-color: #e9ecef;
  box-shadow: none;
}

/* Badge de ciudad junto al buscador - NUEVO DISEÑO COMPACTO */
.ciudad-seleccionada-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
  height: 40px;
  line-height: 1;
}

.ciudad-seleccionada-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
  background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.ciudad-seleccionada-badge:active {
  transform: translateY(0);
}

.ciudad-seleccionada-badge .cambiar-ciudad {
  font-size: 10px;
  opacity: 0.9;
  margin-left: 2px;
}

/* Animación de carga después de seleccionar */
.loading-ciudad {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.loading-ciudad.activo {
  display: flex;
}

.loading-ciudad .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ff6b35;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-ciudad p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Desktop grande (1200px+) */
@media screen and (min-width: 1200px) {
  .modal-ciudad-container {
    max-width: 850px;
    padding: 40px;
    gap: 40px;
  }
  
  .modal-ciudad-izquierda {
    flex: 0 0 300px;
    padding-right: 40px;
  }
  
  .modal-ciudad-logo {
    width: 75px;
    height: 75px;
  }
  
  .modal-ciudad-titulo {
    font-size: 28px;
  }
  
  .ciudades-grid {
    gap: 12px;
  }
  
  .ciudad-card {
    min-height: 110px;
    max-height: 110px;
    padding: 15px 10px;
  }
  
  .ciudad-card-icono {
    font-size: 32px;
  }
  
  .ciudad-card-nombre {
    font-size: 14px;
  }
  
  .ciudad-card-departamento {
    font-size: 11px;
  }
}

/* Tablets (768px - 1199px) */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .modal-ciudad-container {
    max-width: 750px;
  }
  
  .modal-ciudad-izquierda {
    flex: 0 0 260px;
    padding-right: 30px;
  }
  
  .ciudades-grid {
    gap: 10px;
  }
  
  .ciudad-card {
    min-height: 95px;
    max-height: 95px;
  }
}

/* Móviles (hasta 767px) */
@media screen and (max-width: 767px) {
  .modal-ciudad-overlay {
    padding: 15px;
  }
  
  .modal-ciudad-container {
    padding: 30px 20px 25px;
    border-radius: 20px;
    max-width: 450px;
  }

  .modal-ciudad-logo {
    width: 65px;
    height: 65px;
    margin-bottom: 10px;
  }

  .modal-ciudad-titulo {
    font-size: 24px;
  }

  .modal-ciudad-subtitulo {
    font-size: 14px;
    margin-bottom: 18px;
  }



  .modal-ciudad-pregunta {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .ciudades-grid {
    gap: 10px;
    margin-bottom: 18px;
  }

  .ciudad-card {
    padding: 16px 10px;
    min-height: 110px;
  }

  .ciudad-card-icono {
    font-size: 32px;
  }

  .ciudad-card-nombre {
    font-size: 14px;
  }

  .ciudad-card-departamento {
    font-size: 11px;
  }

  .btn-continuar-ciudad {
    padding: 14px 25px;
    font-size: 15px;
  }

  .modal-ciudad-footer {
    margin-top: 14px;
    font-size: 12px;
  }
}

/* Móviles pequeños (hasta 375px) */
@media screen and (max-width: 375px) {
  .modal-ciudad-container {
    padding: 25px 18px 22px;
  }

  .modal-ciudad-logo {
    width: 60px;
    height: 60px;
  }

  .modal-ciudad-titulo {
    font-size: 22px;
  }

  .modal-ciudad-subtitulo {
    font-size: 13px;
  }

  .ciudad-card {
    padding: 14px 8px;
    min-height: 105px;
  }

  .ciudad-card-icono {
    font-size: 30px;
  }

  .ciudad-card-nombre {
    font-size: 13px;
  }

  .ciudad-card-departamento {
    font-size: 10px;
  }
}

/* ========================================
   MEJORAS DE ACCESIBILIDAD
   ======================================== */

.ciudad-card:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

.btn-continuar-ciudad:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Animaciones suaves */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ========================================
   ESTILOS ADICIONALES PARA LAYOUT HORIZONTAL
   ======================================== */

   @media screen and (min-width: 768px) {
    .modal-ciudad-logo {
      margin-bottom: 15px;
    }
    
    .modal-ciudad-titulo {
      text-align: left;
      margin-bottom: 5px;
    }
    
    .modal-ciudad-subtitulo {
      text-align: left;
      margin-bottom: 25px;
    }
    
    
    .modal-ciudad-pregunta {
      text-align: left;
      margin-bottom: 0;
    }
    
    .modal-ciudad-footer {
      margin-top: auto;
      padding-top: 20px;
      text-align: left;
      font-size: 12px;
    }
    
    /* Asegurar que el botón no se salga */
    .btn-continuar-ciudad {
      width: 100%;
      max-width: 100%;
    }
  }


  .modal-ciudad-footer{
    margin-bottom: 10px;
  }