.location-container {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fafafa, #ffffff);
}

/* =========================
   HEADER
========================= */
.location-header {
  text-align: center;
  margin-bottom: 70px;
}

.location-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;

  position: relative;
  padding-bottom: 18px;
}

.location-header h2::after {
  content: "";

  width: 100px;
  height: 5px;

  background: linear-gradient(90deg, #cc0000, #990000);

  position: absolute;
  left: 50%;
  bottom: 0;

  transform: translateX(-50%);
}

.location-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 15px;
}

/* =========================
   CONTENEDOR
========================= */
.location-content {
  max-width: 1350px;
  margin: auto;

  background: white;

  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}

/* =========================
   MAPA
========================= */
.location-map {
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 750px;
  border: none;
}

/* =========================
   INFO
========================= */
.location-info {
  padding: 45px;

  display: flex;
  flex-direction: column;
  gap: 25px;

  background: #fff;
}

/* =========================
   CARDS
========================= */
.location-card {
  background: #fff;

  border-radius: 18px;

  padding: 30px;

  border: 1px solid #f0f0f0;

  transition: all 0.3s ease;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.location-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 14px 35px rgba(204, 0, 0, 0.12);

  border-color: #cc0000;
}

/* =========================
   HEADER CARD
========================= */
.location-card-header {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 18px;
}

.location-card-header h3,
.location-card-header h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

/* =========================
   ICONOS
========================= */
.location-icon {
  width: 58px;
  height: 58px;

  min-width: 58px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #cc0000, #990000);

  transition: all 0.3s ease;
}

.location-icon img {
  width: 28px;
  height: 28px;

  filter: brightness(0) invert(1);
}

.location-card:hover .location-icon {
  transform: scale(1.08);
}

/* =========================
   DIRECCIÓN
========================= */
.location-address {
  font-size: 1rem;
  line-height: 1.8;

  color: #555;

  margin-bottom: 22px;
}

/* =========================
   BOTÓN
========================= */
.btn-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #cc0000, #990000);

  color: #fff;

  padding: 14px 24px;

  border-radius: 12px;

  text-decoration: none;
  font-weight: 700;

  transition: all 0.3s ease;
}

.btn-location:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(204, 0, 0, 0.25);

  color: #fff;
}

/* =========================
   GRID INFO
========================= */
.location-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* =========================
   LINKS
========================= */
.location-card a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.location-card a:hover {
  color: #cc0000;
}

/* =========================
   HORARIOS
========================= */
.location-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 0;

  border-bottom: 1px solid #eee;

  color: #555;
}

.location-hour-item:last-child {
  border-bottom: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  .location-header h2 {
    font-size: 2rem;
  }

  .location-info {
    padding: 25px;
  }

  .location-cards-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 25px;
  }

  .location-card-header {
    flex-direction: column;
    text-align: center;
  }

  .location-hour-item {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}
