/* ================================================================
   LIBERTAD 22 — STYLES.CSS
   Light Design: White · Navy Blue · Accent Blue
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap');

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:      #1A5276;
  --accent:       #2E86C1;
  --accent-dark:  #1a6fa0;
  --text:         #1C2833;
  --text-muted:   #5d6d7e;
  --text-light:   #8898aa;
  --bg-white:     #ffffff;
  --bg-alt:       #F4F6F7;
  --border:       #d5dbdb;
  --border-light: #eaecee;
  --footer-bg:    #1C2833;
  --wa-green:     #25D366;
  --wc-blue:      #1e6bff;

  --font-body:    'Roboto', system-ui, sans-serif;

  --nav-h:        72px;
  --section-pad:  clamp(64px, 8vw, 112px);
  --radius:       6px;
  --radius-lg:    10px;
  --shadow-sm:    0 1px 4px rgba(28,40,51,0.08);
  --shadow-md:    0 4px 16px rgba(28,40,51,0.10);
  --shadow-lg:    0 8px 32px rgba(28,40,51,0.12);

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #ffffff;
  color: #1C2833;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

h1, h2, h3, h4 {
  color: #1A5276;
  line-height: 1.25;
}

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.container--narrow {
  width: min(900px, 92vw);
  margin-inline: auto;
}

/* ── Sections ─────────────────────────────────────────────────── */
.section {
  background: #ffffff;
  padding-block: var(--section-pad);
}

.section--alt {
  background: #F4F6F7;
}

/* ── Section headers ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline-white:hover {
  background: #ffffff;
  color: #1A5276;
  transform: translateY(-2px);
}

.btn-hero {
  font-size: 18px;
  padding: 14px 32px;
}

.btn-large {
  padding: 14px 32px;
  font-size: 18px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #ffffff;
  box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease);
}

#navbar.scrolled {
  box-shadow: 0 2px 12px rgba(28,40,51,0.12);
}

.nav-container {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--bg-alt);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  background: var(--primary);
  color: #ffffff !important;
  padding: 0 18px;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: #ffffff !important;
}

/* Nav buttons (WA / WeChat) */
.nav-btn {
  display: inline-flex;
  align-items: center;
  height: 40px;
  gap: 6px;
  padding: 0 13px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nav-btn--wa { background: var(--wa-green); }
.nav-btn--wc { background: var(--wc-blue); }

.nav-btn svg { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease) forwards;
  opacity: 0.7;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,82,118,0.72) 0%,
    rgba(26,40,51,0.55) 60%,
    rgba(26,40,51,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding-top: var(--nav-h);
  animation: fadeUp 1.1s var(--ease) 0.2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: #7ec8e3;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.hero-chinese {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ================================================================
   VALUE PROPOSITION STRIP
   ================================================================ */
.value-prop-strip {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.value-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: var(--radius-lg);
}

.value-card-content {
  position: relative;
  z-index: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.value-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.value-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

/* ================================================================
   TENANT BADGES
   ================================================================ */
.tenant-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 2px 2px 2px 0;
  color: #fff;
}

.tenant-badge--red     { background: #e01e2c; }
.tenant-badge--orange  { background: #e07000; }
.tenant-badge--neutral {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--accent);
}

/* ================================================================
   QUIÉNES SOMOS
   ================================================================ */
.qs-section {
  position: relative;
  overflow: hidden;
}

.qs-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.qs-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.90);
  z-index: 1;
}

.qs-content-wrap {
  position: relative;
  z-index: 2;
}

.qs-body {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qs-para {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 6px;
  text-align: center;
}

.qs-para--zh {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.qs-para--highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  font-style: italic;
}

.qs-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.qs-zh-block {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 0;
}

.qs-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.qs-logo-wrap img {
  display: block;
  max-height: 72px;
  width: auto;
}

/* ================================================================
   LOGO CAROUSEL
   ================================================================ */
.carousel-section {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px 0 24px;
  overflow: hidden;
}

.carousel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 20px;
  padding-inline: 20px;
}

.carousel-label-zh {
  font-size: 0.85em;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: none;
}

.carousel-track-wrap {
  overflow: hidden;
  width: 100%;
  background: transparent;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: carouselScroll 28s linear infinite;
  background: transparent;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-item {
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  min-width: 160px;
  box-shadow: none;
  border: none;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.carousel-item:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 4px;
  box-sizing: border-box;
  mix-blend-mode: multiply;
}

/* ================================================================
   CARD CAROUSEL (Hotel HW / Shu Xiang)
   ================================================================ */
.card-carousel {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.card-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.card-slide.active {
  opacity: 1;
}

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

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0;
}

.card-carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover {
  background: #ffffff;
}

.carousel-arrow--prev { left: 10px; }
.carousel-arrow--next { right: 10px; }

.card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.card-title-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ================================================================
   ESPACIOS GRID
   ================================================================ */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.space-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}

.space-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.space-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px 28px 28px;
}

.card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,134,193,0.08);
  border: 1px solid rgba(46,134,193,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.card-meta-link {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}
.card-meta-link:hover { color: var(--accent-dark); text-decoration: underline; }

.card-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.card-hours {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.card-hours-list {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-hours-list li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}

.card-tenants {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: color 0.2s, letter-spacing 0.2s;
}

.card-link:hover {
  color: var(--accent-dark);
  letter-spacing: 0.08em;
}

/* Card number badge — disabled */
.space-card::before {
  display: none;
}

/* ================================================================
   EVENTOS
   ================================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.event-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.event-date {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,134,193,0.08);
  border: 1px solid rgba(46,134,193,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.event-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.event-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.events-cta-wrap {
  text-align: center;
}

.events-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.event-card--img {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border: none;
  box-shadow: none;
}

.event-card--img:hover {
  transform: none;
  box-shadow: none;
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.event-card-content {
  position: relative;
  z-index: 1;
  padding: 24px 28px;
  text-align: center;
}

.event-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.event-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  text-align: center;
}

/* ================================================================
   UBICACIÓN
   ================================================================ */
.ubicacion-bg {
  position: relative;
}

.ubicacion-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/renderheader1.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.ubicacion-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: 1;
}

.ubicacion-content {
  position: relative;
  z-index: 2;
}

.location-map {
  margin-top: 8px;
}

.location-map-cta {
  text-align: center;
  margin-top: 14px;
}

.location-layout {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin-inline: auto;
}

.location-img-wrap {
  flex: 0 0 45%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.location-details {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 40px;
}

.location-address {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.address-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1A5276;
  margin-bottom: 4px;
}

.address-line {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1.4;
}

.address-chinese {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 6px;
}

.pois-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.pois-list { display: flex; flex-direction: column; gap: 8px; }

.pois-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.poi-icon { color: var(--accent); flex-shrink: 0; }
.pois-list strong { color: var(--text); font-weight: 700; }

/* ================================================================
   HORARIOS
   ================================================================ */
.horarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.horario-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.horario-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0.4;
}

.horario-card--24::before {
  background: var(--primary);
  opacity: 0.8;
}

.horario-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.horario-icon-wrap { display: flex; align-items: center; }
.horario-icon { font-size: 1.2rem; color: var(--accent); }

.horario-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.horario-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.horario-time {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.horario-card--multi .horario-time { display: none; }

.horario-days {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.horario-schedule {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.horario-schedule li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
}

.hs-days {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
}

.hs-time {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ================================================================
   CONTACTO
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: span 2; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,134,193,0.12);
}

.form-group select option { background: #fff; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-group--lang label:first-child { margin-bottom: 8px; }

.lang-toggle-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-toggle {
  flex: 1;
  padding: 8px 20px;
  border: 2px solid #1A5276;
  border-radius: 6px;
  background: #ffffff;
  color: #1A5276;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.lang-toggle:hover {
  background: rgba(26,82,118,0.08);
}

.lang-toggle--active {
  background: #1A5276;
  color: #ffffff;
}

.radio-label input[type="radio"] {
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.form-note {
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
  transition: color 0.3s;
}

.form-note.success { color: #1a8a4a; }
.form-note.error   { color: #c0392b; }

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 24px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info-block h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.contact-info-block p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #1C2833;
  color: #ffffff;
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(180deg);
}

.footer-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-top: 10px;
}

.footer-tagline-zh {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #ffffff; }

.footer-horarios {
  margin-bottom: 24px;
}

.footer-horarios-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-horarios-cols {
  display: flex;
  gap: 0;
}

.fh-col {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-left: 20px;
}

.fh-col:first-child {
  padding-left: 0;
}

.fh-col:last-child {
  border-right: none;
}

.fh-name {
  font-size: 0.88rem;
  margin-bottom: 4px;
  line-height: 1.4;
}

.fh-link {
  color: #AED6F1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.fh-link:hover {
  color: #ffffff;
}

.fh-link--plain {
  color: #AED6F1;
  font-weight: 600;
}

.fh-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888888;
}

.fh-hours {
  font-size: 0.82rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.fh-days {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal { color: rgba(255,255,255,0.3); }

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.8); }

.footer-dot { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .spaces-grid { grid-template-columns: 1fr 1fr; }
  .location-layout { flex-direction: column; }
  .location-img-wrap { flex: none; width: 100%; height: 280px; }
  .location-details { flex: none; padding-left: 0; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .events-grid--2x2 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(300px, 82vw);
    background: #ffffff;
    box-shadow: -4px 0 24px rgba(28,40,51,0.15);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    padding: 40px 28px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 1rem;
    padding: 10px 12px;
    width: 100%;
  }

  .nav-btn { font-size: 0.9rem; padding: 10px 14px; width: 100%; }

  .spaces-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .events-grid--2x2 { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-nav { gap: 14px; }

  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-info { padding: 20px 16px; }
  .horarios-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Custom Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Selection ───────────────────────────────────────────────── */
::selection { background: rgba(46,134,193,0.2); color: var(--text); }

/* ================================================================
   LANGUAGE TOGGLE — BODY DATA-LANG
   ================================================================ */
body[data-lang="es"] .lang-zh { display: none !important; }
body[data-lang="zh"] .lang-es { display: none !important; }
body[data-lang="zh"] .lang-zh { display: inline !important; }

/* Nav language toggle button */
.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 13px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.nav-lang-toggle:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ================================================================
   CAROUSEL ITEM AS ANCHOR (logo carousel)
   ================================================================ */
a.carousel-item {
  flex-shrink: 0;
  background: transparent;
  border-radius: 16px;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 100px;
  overflow: hidden;
  box-shadow: none;
  text-decoration: none;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

a.carousel-item:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

/* ================================================================
   AMENITIES
   ================================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.amenity-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.amenity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  color: #1a3c6e;
}

.amenity-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a3c6e;
  margin-bottom: 6px;
  line-height: 1.3;
}

.amenity-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Image-style amenity cards */
.amenity-card--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.amenity-card--image .amenity-card__overlay {
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.25) 100%);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.amenity-card--image .amenity-title {
  color: #ffffff;
}

.amenity-card--image .amenity-desc {
  color: rgba(255,255,255,0.85);
}

a.amenity-card--image {
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
  border: 2px solid transparent;
}

a.amenity-card--image:hover {
  border-color: #1A5276;
  box-shadow: 0 6px 24px rgba(26,60,110,0.25);
  transform: translateY(-4px);
}

/* ================================================================
   SPACES GRID VARIANTS
   ================================================================ */
.spaces-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.spaces-grid--2col-centered {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-inline: auto;
}

/* Academia card logo image */
.card-img-logo-wrap {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.card-logo-img {
  width: auto;
  max-width: 70%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}

/* ================================================================
   ARRIENDOS SECTION
   ================================================================ */
.arriendos-section {
  position: relative;
  background: #f5f5f5;
}

.arriendos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/edificiofachadarender3.png') center/cover no-repeat;
  z-index: 0;
}

.arriendos-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
  z-index: 0;
}

.arriendos-section > .container {
  position: relative;
  z-index: 1;
}

.arriendos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.arriendo-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.arriendo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.arriendo-img {
  height: 160px;
  width: 100%;
}

.arriendo-card .card-carousel {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.arriendo-card .card-slides {
  width: 100%;
  height: 100%;
}

.arriendo-card .card-slide {
  width: 100%;
  height: 100%;
}

.arriendo-card .card-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.arriendo-body {
  padding: 20px 24px 24px;
}

.arriendo-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.arriendo-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.arriendo-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.arriendo-meta strong { color: var(--primary); }

.arriendo-toggle-btn {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}

.arriendo-toggle-btn:hover {
  background: var(--accent);
  color: #ffffff;
}

.arriendo-detail {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  border: 1px solid var(--border-light);
}

.arriendo-detail.open {
  display: block;
}

/* ================================================================
   UBICACIÓN — new layout
   ================================================================ */
/* Two-column info row (address + POIs) */
.location-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.location-info-col .address-heading {
  font-size: 18px;
}

/* Image + Map layout */
.location-layout-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 32px;
}

.location-layout-new .location-img-wrap {
  height: 320px;
}

.location-layout-new .location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.location-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-map-link {
  display: block;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.location-map-link iframe {
  width: 100%;
  height: 100%;
}

.location-map-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.location-map-label:hover {
  color: var(--accent);
}

/* ================================================================
   FLOATING WHATSAPP BUTTON
   ================================================================ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--wa-green);
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

/* ================================================================
   VALUE STRIP
   ================================================================ */
.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-strip-card {
  min-height: 220px;
  border-radius: var(--radius-lg);
  border: none !important;
  box-shadow: none !important;
}

.value-strip-card:hover {
  border: none !important;
  box-shadow: none !important;
}

/* ================================================================
   EVENTS 3x2 GRID
   ================================================================ */
.events-grid--3x2 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* ================================================================
   ARRIENDO LISTINGS
   ================================================================ */
.arriendo-listings-label {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 8px;
  margin-top: 4px;
}

.arriendo-listings {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.listing-link {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
  display: inline;
}

.listing-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.listing-meta {
  font-weight: 400;
  color: var(--text-muted);
}

.arriendo-event-spaces {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.5;
}

a.arriendo-img {
  display: flex;
  text-decoration: none;
  cursor: pointer;
}

/* ================================================================
   LISTING PAGE STYLES
   ================================================================ */
.listing-page {
  padding-top: var(--nav-h);
}

.listing-layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 4vw;
}

.listing-left h1 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 24px;
}

/* Carousel */
.listing-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  background: #f0f0f0;
}

.listing-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.listing-carousel img.active {
  opacity: 1;
}

.listing-carousel .lc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-carousel .lc-arrow--prev { left: 12px; }
.listing-carousel .lc-arrow--next { right: 12px; }

.listing-thumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.listing-thumbs img {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.listing-thumbs img.active {
  opacity: 1;
  border-color: var(--accent);
}

/* Characteristics */
.listing-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  margin-top: 24px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 8px;
}

.char-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.char-grid .char-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.char-item .char-label {
  font-weight: 700;
  color: var(--text);
}

.char-item .char-value {
  color: var(--text-muted);
}

.amenities-list {
  column-count: 2;
  column-gap: 24px;
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.amenities-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  list-style: disc;
}

.listing-description {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
}

/* Right sidebar */
.listing-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  align-self: start;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.sidebar-card h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.sidebar-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.sidebar-price-clp {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sidebar-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sidebar-info-row img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sidebar-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 16px 0;
}

.sidebar-map {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}

.sidebar-address {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sidebar-form .form-group {
  margin-bottom: 12px;
}

.sidebar-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.sidebar-form input,
.sidebar-form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.sidebar-form textarea {
  resize: vertical;
  min-height: 60px;
}

.sidebar-lang-btns {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.sidebar-lang-btn {
  flex: 1;
  padding: 6px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}

.sidebar-lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.sidebar-submit {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.sidebar-submit:hover {
  background: var(--accent-dark);
}

.sidebar-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: var(--wa-green);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.sidebar-wa:hover {
  opacity: 0.9;
}

/* ================================================================
   RESPONSIVE UPDATES
   ================================================================ */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .spaces-grid--3col { grid-template-columns: repeat(2, 1fr); }
  .location-info-row { grid-template-columns: 1fr; }
  .location-layout-new { grid-template-columns: 1fr; }
  .events-grid--3x2 { grid-template-columns: repeat(2, 1fr); }
  .value-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .listing-layout { grid-template-columns: 1fr; }
  .listing-sidebar { position: static; }
}

@media (max-width: 768px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .spaces-grid--3col { grid-template-columns: 1fr; }
  .spaces-grid--2col-centered { grid-template-columns: 1fr; max-width: 100%; }
  .arriendos-grid { grid-template-columns: 1fr; }
  .events-grid--3x2 { grid-template-columns: 1fr; }
  .value-strip-grid { grid-template-columns: 1fr; }
  .nav-lang-toggle { font-size: 0.9rem; padding: 10px 14px; width: 100%; justify-content: center; }
  .footer-horarios-cols { flex-direction: column; gap: 16px; }
  .fh-col { padding-left: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
  .fh-col:last-child { border-bottom: none; }
  .char-grid { grid-template-columns: 1fr; }
  .amenities-list { column-count: 1; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
