@charset "utf-8";
/* CSS Document */

/* =========================
   UBICACION
========================= */
.location-section {
  padding: 80px 0;
  background: #f6f3f2;
  border-top: 1px solid rgba(210, 196, 187, 0.3);
  overflow: hidden;
}

.location-section .container {
  width: 100%;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: center;
  width: 100%;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.location-kicker {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f2a93b;
}

.location-title {
  font-family: "Noto Serif", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
  color: #322214;
}

.location-data {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.location-icon {
  font-size: 28px;
  line-height: 1;
  color: #f2a93b;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: #322214;
  margin-bottom: 4px;
}

.location-item p {
  font-size: 14px;
  color: #625e57;
  line-height: 1.6;
  word-break: break-word;
}

.location-map {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #e9e6e3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  min-width: 0;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* =========================
   DESKTOP ONLY
========================= */
@media (min-width: 769px) {
  .location-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .location-grid {
    gap: 36px;
  }

  .location-title {
    font-size: 44px;
  }

  .location-map {
    height: 380px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .location-section {
    padding: 64px 0;
    min-height: auto;
    display: block;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .location-title {
    font-size: 40px;
    line-height: 1.04;
  }

  .location-data {
    gap: 24px;
  }

  .location-item {
    gap: 16px;
  }

  .location-item h5 {
    font-size: 15px;
  }

  .location-item p {
    font-size: 14px;
    line-height: 1.6;
  }

  .location-map {
    height: 320px;
  }
}