/* === MAPAS Y CONTACTO DREAM GIRLS ATELIER - VERSIÓN MEJORADA === */

/* ----------- Base ----------- */
body.contacto-page {
  background: linear-gradient(135deg, #fff 0%, #fef9f3 30%, #fff8f0 100%);
  color: #232323;
  min-height: 100vh;
}

/* Cabecera */
.contacto-titulo-img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 16px #0002);
}

.contacto-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fff, #543a17, #fff);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.contacto-descripcion {
  max-width: 600px;
  font-size: 1.25rem;
  color: #444;
  font-weight: 500;
  margin: 0 auto;
}

/* Títulos */
.contacto-titulo, .contacto-horarios-titulo, .contacto-subtitulo {
  color: #543a17;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.contacto-titulo {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.contacto-subtitulo {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contacto-horarios-titulo {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Paneles */
.contacto-maps-section {
  margin-bottom: 3rem;
}

.contacto-panel {
  background: #f9f9f9;
  border: 1.5px solid #e0e0e0;
  transition: box-shadow 0.22s, border-color 0.22s;
}

.contacto-panel:hover {
  box-shadow: 0 8px 32px rgba(44, 44, 44, 0.13);
  border-color: #bbb;
}

/* Buscador */
.contacto-buscador {
  border: 2px solid #e0e0e0;
  border-radius: 2rem;
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.contacto-buscador:focus {
  border-color: #bfa76a;
  box-shadow: 0 0 0 0.2rem rgba(191, 167, 106, 0.25);
}

.contacto-buscador-icono {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #bfa76a;
  font-size: 1.2rem;
}

.contacto-sugerencias {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.contacto-sugerencia {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.contacto-sugerencia:hover {
  background: #f8f9fa;
}

.contacto-sugerencia:last-child {
  border-bottom: none;
}

/* Lista de sedes */
.contacto-lista-sedes {
  max-height: 326px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto-sede-item {
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
}

.contacto-sede-item:hover {
  border-color: #bfa76a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.contacto-sede-item.activa {
  border-color: #bfa76a;
  background: #fffdf5;
}

.contacto-sede-nombre {
  font-weight: 600;
  color: #232323;
  margin-bottom: 0.25rem;
}

.contacto-sede-direccion {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contacto-sede-distancia {
  color: #bfa76a;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.contacto-sede-acciones {
  display: flex;
  gap: 0.5rem;
}

/* Mapa interactivo */
.contacto-mapa-container {
  position: relative;
  border: 1.5px solid #e0e0e0;
  background: #f9f9f9;
}

.contacto-mapa {
  height: 500px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.contacto-mapa-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Botones */
.btn-gold, .btn-outline-gold {
  border: 2px solid #bfa76a;
  color: #bfa76a;
  background: #fff;
  font-weight: 600;
  border-radius: 2rem;
  transition: all 0.3s ease;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.btn-gold {
  background: #bfa76a;
  color: #fff;
}

.btn-gold:hover, .btn-outline-gold:hover {
  background: #a58c52;
  color: #fff;
  border-color: #a58c52;
  box-shadow: 0 4px 12px rgba(191, 167, 106, 0.3);
}

/* Botones de contacto - CORREGIDOS COLORES DE TEXTO */
.contacto-btn, .contacto-btn-popup, .contacto-btn-modal {
  color: #ffffff !important; /* Forzar color blanco */
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.contacto-btn:hover, .contacto-btn-popup:hover, .contacto-btn-modal:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Información de contacto */
.contacto-info-global {
  margin-top: 3rem;
}

.contacto-card-destacada {
  background: linear-gradient(135deg, #fff 0%, #fef9f3 100%);
  border: 1px solid #e9ecef;
}

.contacto-metodo {
  padding: 1.5rem 1rem;
}

.contacto-metodo-icono {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contacto-metodo h5 {
  color: #232323;
  margin-bottom: 0.5rem;
}

.contacto-metodo p {
  color: #666;
  margin-bottom: 1rem;
}

/* Horarios */
.contacto-horarios {
  margin-top: 3rem;
}

.contacto-separador {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #fff, #543a17, #fff);
  border-radius: 1px;
}

/* Modal */
.contacto-modal .modal-content {
  border-radius: 1rem;
  overflow: hidden;
}

.contacto-modal .modal-header {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

/* Popups del mapa */
.popup-sede {
  min-width: 200px;
}

.popup-sede-nombre {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #232323;
}

.popup-sede-direccion {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.popup-sede-acciones {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Estados de carga */
.contacto-cargando {
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .contacto-titulo-img {
    max-width: 300px;
  }
  
  .contacto-descripcion {
    font-size: 1.1rem;
  }
  
  .contacto-mapa {
    height: 300px;
  }
  
  .contacto-sede-acciones {
    flex-direction: column;
  }
  
  .contacto-mapa-controls {
    flex-direction: row;
  }
}

/* Scrollbar personalizado */
.contacto-lista-sedes::-webkit-scrollbar {
  width: 6px;
}

.contacto-lista-sedes::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.contacto-lista-sedes::-webkit-scrollbar-thumb {
  background: #bfa76a;
  border-radius: 3px;
}

.contacto-lista-sedes::-webkit-scrollbar-thumb:hover {
  background: #a58c52;
}

/* === CORRECCIÓN: ELIMINAR ESTILO PROBLEMÁTICO === */
/* Se ha eliminado la regla problemática que afectaba el color del texto */