/* =============================================================================
   NexoVenues Block Theme — Main Stylesheet
   ============================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:         #C0C0C0;
  --gold-60:      #00343D;
  --gold-30:      #00343D;
  --gold-10:      rgba(201,169,98,0.10);
  --dark-navy:    #0A0E1A;
  --darker-navy:  #080B14;
  --darkest:      #050709;
  --near-black:   #080B14;
  --cream:        #FAF8F5;
  --off-white:    #E0DDD8;
  --gray-cc:      #CCCCCC;
  --gray-aa:      #AAAAAA;
  --gray-88:      #888888;
  --gray-66:      #666666;
  --gray-55:      #555555;
  --gray-33:      #333333;
  --border-dark:  #1A1A1A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-navy);
  color: var(--cream);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #01353E;
  height: 80px;
  padding: 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ─── LOGO ─── */
.site-logo .wp-block-site-logo,
.site-logo img {
  display: block;
  max-height: 50px;
  width: auto;
}

.footer-logo .wp-block-site-logo,
.footer-logo img {
  display: block;
  max-height: 44px;
  width: auto;
}

/* ─── WP NAVIGATION BLOCK ─── */
.nav-links.wp-block-navigation {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.nav-links .wp-block-navigation__container {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links .wp-block-navigation-item__content {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1.5px;
  transition: color 0.2s;
  padding: 0;
}

.nav-links .wp-block-navigation-item__content:hover {
  color: var(--gold);
}

/* Submenús */
.nav-links .wp-block-navigation__submenu-container {
  background: var(--dark-navy);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0;
  min-width: 200px;
}

.nav-links .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  padding: 10px 20px;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Hamburger button (móvil) */
.nav-links .wp-block-navigation__responsive-container-open {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nav-links .wp-block-navigation__responsive-container-open svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
}

/* Ocultar SVG del botón cerrar y mostrar X de texto */
.nav-links .wp-block-navigation__responsive-container-close svg {
  display: none !important;
}
.nav-links .wp-block-navigation__responsive-container-close::after {
  content: '✕';
  font-size: 22px;
  color: #0d0d0d;
  line-height: 1;
  font-style: normal;
}

/* Botón cerrar (X) del canvas móvil */
.nav-links .wp-block-navigation__responsive-container-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 10;
}

/* Overlay móvil */
.nav-links .wp-block-navigation__responsive-container.is-menu-open {
  background: var(--dark-navy);
  padding: 40px 32px 40px 30px;
  z-index: 200;
  position: fixed;
}

.nav-links .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.nav-links .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  font-size: 18px;
}

/* Forzar menú horizontal por encima de 900px */
@media (min-width: 901px) {
  .nav-links .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: flex !important;
    visibility: visible !important;
    clip: unset !important;
    position: relative !important;
    z-index: auto !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    background: transparent !important;
    flex-direction: row !important;
    padding: 0 !important;
  }
  .nav-links .wp-block-navigation__responsive-container-open {
    display: none !important;
  }
}

/* ─── NAV CTA ─── */
.nav-cta-wrap { flex-shrink: 0; }

.nav-cta .wp-block-button__link,
.nav-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--dark-navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 !important;
  transition: opacity 0.2s;
}
.nav-cta .wp-block-button__link:hover { opacity: 0.85; }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; background: var(--gold); color: var(--dark-navy);
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.85; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; background: transparent; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border: 1px solid #00343d; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); }

.btn-gold-sm {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; background: var(--gold); color: var(--dark-navy);
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  align-self: flex-start; cursor: pointer; border: none; transition: opacity 0.2s;
}
.btn-gold-sm:hover { opacity: 0.85; }

.btn-gold-lg {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 48px; background: var(--gold); color: var(--dark-navy);
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; transition: opacity 0.2s;
}
.btn-gold-lg:hover { opacity: 0.85; }

.btn-outline-lg {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 48px; background: transparent; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border: 1px solid #00343d; cursor: pointer;
  transition: border-color 0.2s;
}
.btn-outline-lg:hover { border-color: rgba(255,255,255,0.55); }

/* ─── HERO ─── */
.hero {
  position: relative; width: 100%; height: 780px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,14,26,0.94) 0%, rgba(10,14,26,0.6) 45%, rgba(10,14,26,0.2) 100%);
}
.hero-content {
  position: absolute; left: 100px; top: 140px; width: 720px;
  display: flex; flex-direction: column; gap: 28px;
}
.hero-breadcrumb {
  font-family: 'Inter', sans-serif; font-size: 12px; color: var(--gray-66);
  letter-spacing: 0.5px;
}
.hero-breadcrumb a { color: var(--gray-66); text-decoration: none; transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--gold); }
.hero-breadcrumb span { color: var(--gold); }
.hero-tag { display: flex; align-items: center; gap: 10px; }
.hero-tag-line { width: 40px; height: 1px; background: var(--gold-60); }
.hero-tag-text {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.hero-h1 { display: flex; flex-direction: column; gap: 0; }
.hero-h1 h1 { display: flex; flex-direction: column; gap: 0; }
.hero-h1 span {
  font-family: 'Cormorant Garamond', serif; font-size: 88px;
  line-height: 0.92; letter-spacing: -2px; display: block;
}
.hero-h1 .line-italic { font-weight: 700; font-style: italic; color: #fff; }
.hero-h1 .line-gold { font-weight: 300; color: var(--gold); }
.hero-sub {
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 300;
  color: var(--off-white); line-height: 1.7; letter-spacing: 0.3px; max-width: 540px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; }
.hero-badges { display: flex; gap: 24px; margin-top: 8px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border: 1px solid rgba(0,52,61,0.5);
  background: rgba(255,255,255,0.03);
}
.hero-badge-num {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.hero-badge-text {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 400;
  color: var(--gray-88); letter-spacing: 1px; text-transform: uppercase;
  line-height: 1.3;
}

/* ─── TAGLINE ─── */
.tagline-section {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; background:#01353E; padding: 80px 100px; text-align: center;
}
.tagline-inner { display: flex; align-items: center; gap: 32px; }
.tagline-rule { width: 120px; height: 1px; background: var(--gold-60); flex-shrink: 0; }
.tagline-text {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 400; font-style: italic; color: var(--cream); max-width: 700px;
}
.tagline-sub {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--gray-88); line-height: 1.7; max-width: 620px;
}

/* ─── SPACES SECTION ─── */
.spaces-section {
  background: #080B14; padding: 80px 100px;
  position: relative;
  display: flex; flex-direction: column; gap: 60px;
}
.spaces-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0.12;
}
.spaces-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, #080B14 0%, rgba(8,11,20,0.55) 40%, rgba(8,11,20,0.55) 60%, #080B14 100%);
  pointer-events: none;
}
.spaces-header, .venues-grid { position: relative; z-index: 1; }
.spaces-header {
  display: flex; align-items: flex-end; justify-content: space-between;
}
.spaces-title-group { display: flex; flex-direction: column; gap: 12px; }
.section-tag {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 700;
  font-style: italic; color: #fff; line-height: 0.95; letter-spacing: -1px;
}
.view-all {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--gold); font-family: 'Inter', sans-serif; font-size: 13px;
  letter-spacing: 1px; transition: gap 0.2s;
}
.view-all:hover { gap: 14px; }
.view-all-line { width: 24px; height: 1px; background: var(--gold); }

/* ─── VENUES GRID ─── */
.venues-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
}
.venue-card {
  position: relative; overflow: hidden; cursor: pointer;
  text-decoration: none; display: block;
}
.venue-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.venue-card:hover img { transform: scale(1.05); }
.venue-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 60%);
  pointer-events: none; transition: background 0.4s;
}
.venue-card:hover .venue-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.05) 70%);
}
.venue-card-content {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.venue-city {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
}
.venue-name {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 700; color: #fff; line-height: 1;
}
.venue-meta {
  font-family: 'Inter', sans-serif; font-weight: 300;
  color: var(--gray-aa); letter-spacing: 0.5px;
}
.venue-energy {
  font-family: 'Inter', sans-serif; font-weight: 300;
  color: var(--gray-66); letter-spacing: 0.5px;
}
.venue-placeholder {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d1120 0%, #131829 50%, #0a0e1a 100%);
}
.venue-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(201,169,98,0.02) 20px, rgba(201,169,98,0.02) 21px
  );
}

/* ─── FEATURED SPACE ─── */
.featured-section {
  position: relative; width: 100%; height: 620px; overflow: hidden;
}
.featured-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,14,26,1) 0%, rgba(10,14,26,0.55) 50%, rgba(0,0,0,0.1) 100%);
}
.featured-content {
  position: absolute; left: 100px; top: 100px; width: 580px;
  display: flex; flex-direction: column; gap: 20px;
}
.feat-label { display: flex; align-items: center; gap: 8px; }
.feat-label-line { width: 32px; height: 1px; background: var(--gold); }
.feat-label-text {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.feat-title {
  font-family: 'Cormorant Garamond', serif; font-size: 80px; font-weight: 700;
  font-style: italic; color: #fff; line-height: 0.9; letter-spacing: -2px;
}
.feat-desc {
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 300;
  color: var(--gray-cc); line-height: 1.7; max-width: 500px;
}
.feat-capacity { display: flex; align-items: center; gap: 32px; }
.feat-cap-item { display: flex; flex-direction: column; gap: 4px; }
.feat-cap-num {
  font-family: 'Cormorant Garamond', serif; font-size: 40px;
  font-weight: 300; color: var(--gold); line-height: 1;
}
.feat-cap-type {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-style: italic; color: #fff; line-height: 1;
}
.feat-cap-lbl {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--gray-66); letter-spacing: 2px; text-transform: uppercase;
}
.feat-cap-divider { width: 1px; height: 48px; background: #333; }

/* ─── VENUE TYPES SECTION ─── */
.types-section {
  background: var(--dark-navy); padding: 100px;
  display: flex; flex-direction: column; gap: 60px;
}
.types-header {
  display: flex; flex-direction: column; gap: 12px; text-align: center; align-items: center;
}
.types-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: #1A1E2A;
}
.type-card {
  background: var(--dark-navy); padding: 48px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.3s;
}
.type-card:hover { background: #0d1120; }
.type-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-30);
}
.type-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.type-title {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 700; font-style: italic; color: #fff;
}
.type-desc {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300;
  color: var(--gray-66); line-height: 1.7;
}

/* ─── WHY SECTION ─── */
.why-section {
  background: var(--dark-navy); padding: 100px;
  display: flex; flex-direction: column; gap: 70px;
}
.why-header {
  display: flex; align-items: center; justify-content: space-between;
}
.why-title-group { display: flex; flex-direction: column; gap: 12px; }
.why-title {
  font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700;
  font-style: italic; color: #fff; line-height: 1.1; letter-spacing: -1px;
  white-space: pre-line;
}
.why-desc {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--gray-88); line-height: 1.7; max-width: 420px;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: #1A1E2A;
}
.why-feat {
  background: var(--dark-navy); padding: 48px 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.why-feat-icon { color: var(--gold); width: 28px; height: 28px; }
.why-feat-icon svg { width: 28px; height: 28px; }
.why-feat-title {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-weight: 700; font-style: italic; color: #fff;
}
.why-feat-desc {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--gray-66); line-height: 1.7; max-width: 260px;
}

/* ─── STATS ─── */
.stats-section {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gold); padding: 60px 100px;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 64px;
  font-weight: 700; color: var(--dark-navy); line-height: 0.9;
}
.stat-num.light { font-weight: 300; }
.stat-lbl {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: rgba(10,14,26,0.6); letter-spacing: 3px; text-transform: uppercase;
}
.stat-divider { width: 1px; height: 80px; background: rgba(10,14,26,0.19); }

/* ─── FAQ SECTION ─── */
.faq-section {
  background: #080B14; padding: 100px;
  display: flex; flex-direction: column; gap: 60px;
}
.faq-header { display: flex; flex-direction: column; gap: 12px; text-align: center; align-items: center; }
.faq-list {
  max-width: 800px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 28px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; text-align: left;
}
.faq-question h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 600; font-style: italic; color: #fff;
}
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-30); transition: transform 0.3s;
}
.faq-toggle svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--gray-88); line-height: 1.8; padding-bottom: 28px;
}

/* ─── FINAL CTA ─── */
.cta-section {
  position: relative; width: 100%; height: 520px; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,11,20,0.94) 0%, rgba(8,11,20,0.67) 50%, rgba(8,11,20,0.94) 100%);
}
.cta-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  padding: 0 40px; text-align: center;
}
.cta-tag { display: flex; align-items: center; gap: 10px; }
.cta-tag-line { width: 40px; height: 1px; background: var(--gold-60); }
.cta-tag-text {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif; font-size: 68px; font-weight: 700;
  font-style: italic; color: #fff; line-height: 0.95; letter-spacing: -1px;
  max-width: 900px;
}
.cta-subtitle {
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 300;
  color: var(--gray-aa); line-height: 1.6; max-width: 580px;
}
.cta-buttons { display: flex; align-items: center; gap: 16px; }

/* ─── FOOTER ─── */
.site-footer {
  background: #01353E;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex; justify-content: space-between; padding: 70px 100px; gap: 60px;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 24px; width: 300px; flex-shrink: 0;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300;
  font-style: italic; color: var(--gray-55); line-height: 1.5;
}
.footer-links { display: flex; gap: 80px; }
.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-col-title {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.footer-col a,
.footer-col span,
.footer-col p {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300;
  color: var(--gray-66); text-decoration: none; transition: color 0.2s;
  margin: 0;
}
.footer-col a:hover { color: var(--gray-aa); }

/* Footer nav (wp:navigation en footer) */
.footer-nav-Salas .wp-block-navigation__container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  list-style: none;
}
.footer-nav-Salas .wp-block-navigation-item__content {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300;
  color: var(--gray-66); text-decoration: none; transition: color 0.2s;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
}
.footer-nav-Salas .wp-block-navigation-item__content:hover { color: var(--gray-aa); }
.footer-nav-Salas .wp-block-navigation__responsive-container-open { display: none; }

.footer-nav-empresa { list-style: none; display: flex; flex-direction: column; gap: 20px; padding: 0; }
.footer-nav-empresa li a {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300;
  color: var(--gray-66); text-decoration: none; transition: color 0.2s;
}
.footer-nav-empresa li a:hover { color: var(--gray-aa); }

.footer-divider { width: 100%; height: 1px; background: var(--border-dark); margin: 0; border: none; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; padding: 24px 100px;
}
.footer-copyright {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 300; color: var(--gray-66);
}
.footer-legal { display: flex; gap: 32px; }
.footer-legal a,
.footer-legal p a {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 300;
  color: var(--gray-66); text-decoration: none; transition: color 0.2s;
}
.footer-legal p { margin: 0; }
.footer-legal a:hover { color: var(--gray-66); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ─── WP BLOCK OVERRIDES ─── */
.wp-block-group.site-header { margin: 0; padding: 0; }
.wp-block-group.site-footer { margin: 0; padding: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .navbar { padding: 0 32px; }
  .hero-content { left: 32px; width: 90%; }
  .hero-h1 span { font-size: 68px; }
  .spaces-section, .why-section, .types-section, .faq-section { padding: 60px 32px; }
  .tagline-section { padding: 60px 32px; }
  .stats-section { padding: 48px 32px; }
  .footer-top { padding: 60px 32px; }
  .footer-bottom { padding: 24px 32px; }
  .featured-content { left: 32px; width: calc(100% - 64px); }
  .feat-title { font-size: 60px; }
  .types-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .venues-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .tagline-inner { flex-direction: column; gap: 16px; }
  .tagline-rule { display: none; }
  .why-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .spaces-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .stats-section { flex-direction: column; gap: 32px; padding: 48px 24px; text-align: center; }
  .stat-divider { width: 80px; height: 1px; }
  .footer-top { flex-direction: column; padding: 48px 24px; }
  .footer-links { flex-wrap: wrap; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; padding: 24px; text-align: center; }
  .footer-brand { width: 100%; }
  .hero { height: 680px; }
  .hero-content { top: 100px; }
  .hero-h1 span { font-size: 48px; }
  .hero-badges { flex-wrap: wrap; }
  .section-title { font-size: 40px; }
  .cta-title { font-size: 44px; }
  .cta-buttons { flex-direction: column; }
  .feat-title { font-size: 48px; }
  .featured-section { height: 500px; }
  .featured-content { top: 60px; }
  .faq-question h3 { font-size: 18px; }
  .nav-cta-wrap { display: none !important; }
}

@media (max-width: 600px) {
  .hero-h1 span { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
  .feat-title { font-size: 36px; }
  .featured-section { height: 450px; }
  .feat-capacity { flex-wrap: wrap; gap: 20px; }
  .feat-cap-divider { display: none; }

  /* Hero: flexible height so buttons aren't clipped by overflow:hidden */
  .hero { height: auto; min-height: 560px; overflow: visible; }
  .hero-content { position: relative; left: auto; top: auto; width: 100%; padding: 100px 24px 72px; z-index: 2; }

  /* CTA section: flexible height so buttons aren't pushed below fold */
  .cta-section { height: auto; min-height: 400px; overflow: visible; }
  .cta-content { position: relative; inset: auto; padding: 80px 24px; }
}

/* ─── MOBILE NAV: submenu shown inline in overlay ─── */
.nav-links .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
  position: static !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 8px 0 8px 20px !important;
  min-width: 0 !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-left: 1px solid rgba(192,192,192,0.2) !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: none !important;
  margin-top: 8px !important;
  transform: none !important;
}
.nav-links .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  font-size: 14px !important;
  padding: 4px 0 !important;
  color: var(--gray-aa) !important;
  white-space: normal !important;
}
.nav-links .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item.has-child {
  flex-direction: column !important;
  align-items: flex-start !important;
}
.nav-links .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle {
  display: none !important;
}
