:root {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 1.5rem;
  --radius-sm: 1rem;

  --card-bg: #ffffff;
  --text-muted: #475569;
  --primary: #ffd700;
  --wa: #25d366;
}

* {
  box-sizing: border-box;
}

/* BACKGROUND */
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a1a1a 0%, #000 70%);
  color: #0f172a;
  position: relative;
  overflow-x: hidden;
}

.background-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25), transparent 70%);
  filter: blur(80px);
  z-index: -1;
}

/* PAGE WRAPPER */
.page-wrapper {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  padding: 2rem 1.5rem;
}

.location-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: -0.5rem;
}

.location-link {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #475569;
  background: rgba(255, 255, 255, 0.6);
  transition: 0.2s ease;
}

.location-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.location-link--active {
  background: var(--primary);
  color: #0b0b0f;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* CARD */
.card {
  width: 100%;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
}

.card-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* MAP */
.map-card iframe {
  width: 100%;
  height: 280px;
  border: none;
}

/* TEXT */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: #0f172a;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 2.8vw, 2.4rem);
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* CONTACT */
.contact-info {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
}

/* BUTTONS */
.btn {
  margin-top: 0.3rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: 0.18s ease;
}

.btn.primary {
  background: var(--primary);
  color: #000;
}

.btn.whatsapp {
  background: var(--wa);
  color: #262626;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  filter: brightness(1.05);
}

/* FAQ */
.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
  border-bottom: none;
}

/* FOOTER */
footer {
  text-align: center;
}

footer .lead {
  font-size: 0.95rem;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 480px) {
  .card {
    border-radius: var(--radius-sm);
  }

  .card-content {
    padding: 1.25rem;
  }

  .map-card iframe {
    height: 200px;
  }

  .lead {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .btn-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .btn-container .btn {
    width: 100%;
  }
}