:root {
  --color-primary: #9c3f95;
  --color-primary-hover: #83337d;
  --color-text: #1f1f1f;
  --color-text-muted: #6b6b6b;
  --color-border: #e3e3e3;
  --font-main: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: #fff;
}

a {
  color: inherit;
}

/* ---------- BARRA DE HORARIO ---------- */

.hours-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 340px;
  max-height: 640px;
  overflow: hidden;
  background: #d9d9d9;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(20, 10, 20, 0.35), rgba(20, 10, 20, 0.5));
  color: #fff;
  padding: 1.5rem;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 300;
}

/* ---------- SERVICIOS ---------- */

.services-section {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0 3rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-card {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.service-card:hover {
  opacity: 0.9;
}

.service-card--purple {
  background: var(--color-primary);
}

.service-card--dark {
  background: #101010;
}

.service-card-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
}

/* ---------- MAPA ---------- */

.map-section {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.map-section h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.map-embed {
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- FOOTER ---------- */

.landing-footer {
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}

.landing-footer .brand {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.landing-footer p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.landing-footer a {
  text-decoration: underline;
}

.hours-footer {
  margin-top: 0.75rem !important;
}

.staff-link {
  display: inline-block;
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 700px) {
  .hero-overlay h1 {
    font-size: 2.2rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
  .services-section {
    padding: 3rem 1rem 2rem;
  }
  .services-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: 220px;
  }
  .map-section {
    padding: 3rem 1rem 2rem;
  }
  .map-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .map-embed {
    aspect-ratio: 1 / 1;
  }
}
