/* SECCIÓN UBICACIÓN */
.location-section {
  background: radial-gradient(circle at top, #1c2533, #0e1218);
  padding: 100px 0;
  color: #ffffff;
}

.location-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ENCABEZADO */
.location-header {
  text-align: center;
  margin-bottom: 60px;
}

.location-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.location-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.location-header h2 span {
  color: #ffc107;
}

.location-header p {
  color: #cfcfcf;
  max-width: 640px;
  margin: auto;
  font-size: 17px;
}

/* CONTENIDO */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}

/* TARJETA CONTACTO */
.contact-card {
  background: #2a323d;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.contact-card h3 {
  margin-bottom: 6px;
}

.contact-card .subtitle {
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-list {
  list-style: none;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-list li {
  margin-bottom: 14px;
  color: #e0e0e0;
}

/* BOTÓN WHATSAPP */
.btn-whatsapp {
  display: block;
  text-align: center;
  background: #22c55e;
  color: #ffffff;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background: #16a34a;
}

/* MAPA */
.map-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
  }
}

/* Mejorando responsive para ubicación en móviles pequeños */
@media (max-width: 600px) {
  .location-section {
    padding: 60px 0;
  }

  .location-header h2 {
    font-size: 32px;
  }

  .location-header p {
    font-size: 15px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-list {
    font-size: 14px;
  }

  .map-card iframe {
    min-height: 320px;
  }
}
