/* ===== UBICACIÓN - ESTILOS ESPECÍFICOS ===== */
.location-page {
  padding: 100px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.location-header {
  text-align: center;
  margin-bottom: 60px;
}

.location-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.location-header p {
  font-size: 20px;
  color: #666;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.location-info {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.info-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.map-container {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cobertura (Reservado) */
.coverage-section { background: white; padding: 60px 40px; border-radius: 16px; text-align: center; margin-bottom: 60px; }
.coverage-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 30px; }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.coverage-card { background: #f0f0f0; padding: 30px; border-radius: 12px; transition: transform 0.3s ease; }
.coverage-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.coverage-card .icon { font-size: 48px; margin-bottom: 15px; }
.coverage-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #000; }
.coverage-card p { font-size: 14px; color: #666; }

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-header h1 {
    font-size: 32px;
  }
  .map-container {
    height: 350px;
  }
}