/* ============================================
   WHERE WE ARE - MAP SECTION
   Estilos exclusivos para la sección del mapa.
   Para retirar esta sección, elimina este archivo
   y el bloque <section class="donde-estamos"> en index.html.
   ============================================ */

.donde-estamos {
  width: 80%;
  padding: 4rem 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.donde-estamos-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.donde-estamos-header .subtitulo {
  color: var(--color-titulo);
}

.donde-estamos-header .parrafo {
  max-width: 700px;
  color: var(--color-parrafo);
}

.donde-estamos-map {
  width: 100%;
  height: 70vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  z-index: 0;
}

/* Marcador - ícono logo personalizado
   Tamaño controlado desde map.js: iconSize
   Aquí se pueden agregar sombras o efectos visuales al pin */
.heart-marker-icon {
  background: none !important;
  border: none !important;
}

.heart-marker-icon svg {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
}

.heart-marker-icon:hover svg {
  transform: scale(1.2);
}

/* Popup personalizado */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif;
}

.leaflet-popup {
  max-width: 260px;
}

.leaflet-popup-content {
  margin: 12px 14px;
  word-break: break-word;
}

@media (max-width: 600px) {
  .leaflet-popup {
    max-width: 240px;
  }

  .leaflet-popup-content {
    margin: 10px 12px;
  }
}

.mapa-popup-titulo {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-titulo);
  margin: 0 0 4px 0;
}

.mapa-popup-img {
  width: 100%;
  margin-top: 8px;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}

.mapa-popup-descripcion {
  font-size: 0.8rem;
  color: var(--color-parrafo);
  margin: 0;
  line-height: 1.4;
}
