/* ============================================
   Conector Sur Departamentos — Styles
   ============================================ */

:root {
  --orange: #E67E22;
  --orange-deep: #E65100;
  --orange-burnt: #BF360C;
  --orange-light: #F39C4D;
  --gray-dark: #4D4D4D;
  --gray-medium: #6B6B6B;
  --gray-charcoal: #1A1A1A;
  --gray-darker: #2C2C2C;
  --terracotta: #A0402C;
  --green: #2D5A3D;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --header-height: 88px;
  --img-brand-filter: saturate(1.2) contrast(1.1) brightness(1.03);
  --img-brand-filter-hover: saturate(1.32) contrast(1.14) brightness(1.07);
  --img-warm-overlay: linear-gradient(
    160deg,
    rgba(230, 126, 34, 0.32) 0%,
    rgba(191, 54, 12, 0.14) 42%,
    rgba(26, 26, 26, 0.38) 100%
  );
  --img-warm-glow: 0 12px 36px rgba(230, 126, 34, 0.22);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--orange-deep);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-tag--light { color: var(--orange-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title--light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

.section-desc--light { color: rgba(255, 255, 255, 0.75); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.text-orange { color: var(--orange); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn--secondary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--gray-charcoal);
}

.btn--lg { padding: 16px 36px; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* ---- Sections ---- */
section {
  padding: 96px 0;
}

.section--dark {
  background: var(--gray-charcoal);
  color: rgba(255, 255, 255, 0.85);
}

.section--cream { background: var(--cream); }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 72px;
  width: auto;
}

.nav {
  min-width: 0;
}

.nav__list {
  display: flex;
  gap: 6px;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 10px 14px;
  border-radius: 999px;
  transition: all var(--transition);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--orange);
  background: rgba(230, 126, 34, 0.1);
  font-weight: 600;
}

.header__cta { display: none; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
  padding: 2px;
  cursor: pointer;
  font: inherit;
  min-width: 92px;
}

.lang-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--gray-medium);
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 999px;
  transition: all var(--transition);
  pointer-events: none;
  user-select: none;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.35);
}

.lang-switch:hover .lang-btn:not(.is-active) {
  color: var(--gray-charcoal);
  background: rgba(255, 255, 255, 0.6);
}

.lang-switch:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(1.15) contrast(1.08) brightness(0.92);
  transform: scale(1.05);
  animation: heroKenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 50% 40%, rgba(230, 126, 34, 0.28) 0%, transparent 60%),
    linear-gradient(
      180deg,
      rgba(26, 26, 26, 0.55) 0%,
      rgba(26, 26, 26, 0.2) 40%,
      rgba(191, 54, 12, 0.18) 58%,
      rgba(26, 26, 26, 0.72) 100%
    );
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(243, 156, 77, 0.18) 0%, transparent 45%);
  pointer-events: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--header-height);
  padding-bottom: 60px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  border: 1px solid rgba(243, 156, 77, 0.45);
  background: rgba(26, 26, 26, 0.35);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__title-line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.hero__title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
  margin-top: 4px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.3em;
  color: var(--orange-light);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  margin-top: 56px;
  animation: bounce 2s infinite;
}

.hero__scroll a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.hero__scroll-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll a:hover { color: var(--orange); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---- Sobre ---- */
.sobre__header {
  text-align: center;
  margin-bottom: 48px;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.sobre__lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-charcoal);
  line-height: 1.5;
  margin-bottom: 16px;
}

.sobre__features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sobre__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-dark);
  line-height: 1.4;
}

.sobre__feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.16);
  color: var(--orange-deep);
  box-shadow: none;
}

.sobre__feature-icon svg {
  width: 16px;
  height: 16px;
}

.sobre__highlights {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Predio slider */
.predio-slider {
  position: relative;
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-charcoal);
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.predio-slider__slides {
  position: relative;
  aspect-ratio: 4 / 3;
}

.predio-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.predio-slider__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.predio-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: var(--img-brand-filter);
}

.predio-slider__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--img-warm-overlay);
  opacity: 0.7;
  pointer-events: none;
}

.predio-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-charcoal);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  z-index: 2;
}

.predio-slider__nav:hover {
  background: var(--orange);
  color: var(--white);
}

.predio-slider__prev { left: 12px; }
.predio-slider__next { right: 12px; }

.predio-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.predio-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all var(--transition);
}

.predio-slider__dot.active,
.predio-slider__dot:hover {
  background: var(--orange);
  transform: scale(1.2);
}

/* ---- Evento ---- */
.evento__grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 48px;
  align-items: center;
}

.evento__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--img-warm-glow);
  max-width: 380px;
  width: 100%;
  justify-self: center;
}

.evento__visual img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease, box-shadow var(--transition);
}

.evento__visual:hover img {
  transform: scale(1.02);
  box-shadow: var(--img-warm-glow);
}

.evento__lead {
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: var(--gray-medium);
}

.evento__features {
  margin-bottom: 32px;
}

.evento__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
}

.evento__features svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ---- Turismo ---- */
.turismo__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.8vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.turismo__title-line {
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
}

.turismo__word {
  display: inline-block;
  margin: 0 0.12em;
  -webkit-text-stroke: 2px #1a1a1a;
  paint-order: stroke fill;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.9);
}

.turismo__word--white {
  color: #ffffff;
}

.turismo__word--yellow {
  color: #fee100;
}

.turismo__wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.turismo__poster {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--img-warm-glow);
  margin-bottom: 36px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.turismo__poster:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(230, 126, 34, 0.28);
}

.turismo__poster img {
  width: 100%;
  height: auto;
  display: block;
  filter: var(--img-brand-filter);
}

.turismo__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.turismo__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 680px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.turismo__highlights li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-dark);
  text-align: left;
  line-height: 1.35;
}

.turismo__highlights svg {
  color: var(--orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.turismo__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.turismo__cta {
  min-width: 220px;
}

.turismo__source {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .turismo__highlights {
    grid-template-columns: 1fr;
  }

  .turismo__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .turismo__cta {
    width: 100%;
    min-width: 0;
  }

  .turismo__title {
    font-size: clamp(1.2rem, 4.2vw, 2.35rem);
    letter-spacing: 0.01em;
  }

  .turismo__word {
    -webkit-text-stroke: 1.5px #1a1a1a;
    text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.9);
    margin: 0 0.06em;
  }
}

/* ---- Nosotros ---- */
.nosotros__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.nosotros__content p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat__number::after { content: '+'; font-size: 1.5rem; }

.stat:nth-child(2) .stat__number::after { content: '%'; }

.stat:nth-child(3) .stat__number::after { content: 'hs'; font-size: 1rem; }

.stat__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.nosotros__image {
  position: relative;
}

.nosotros__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.nosotros__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ---- Servicios ---- */
.servicios {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 55%, var(--white) 100%);
}

.servicios__popular {
  text-align: center;
  margin-bottom: 48px;
}

.servicios__popular-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-medium);
  margin-bottom: 14px;
}

.servicios__popular-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.servicio-chip {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gray-charcoal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
}

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

.servicios__more {
  display: none;
  justify-content: center;
  margin-top: 28px;
}

.servicio-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(230, 126, 34, 0.12);
  border-color: rgba(230, 126, 34, 0.18);
}

.servicio-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  color: var(--gray-dark);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.servicio-card:hover .servicio-card__icon {
  background: rgba(230, 126, 34, 0.1);
  border-color: rgba(230, 126, 34, 0.22);
  color: var(--orange-deep);
}

.servicio-card__icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.servicio-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-charcoal);
  margin-bottom: 10px;
}

.servicio-card p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

.servicios__detalle {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.servicios__detalle-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-charcoal);
  text-align: center;
  margin-bottom: 36px;
}

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

.servicio-detalle {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.servicio-detalle h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.servicio-detalle li {
  font-size: 0.9rem;
  color: var(--gray-medium);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.servicio-detalle li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(230, 126, 34, 0.15);
  color: var(--orange-deep);
  margin-left: 6px;
  vertical-align: middle;
}

.tag--paid {
  background: rgba(77, 77, 77, 0.1);
  color: var(--gray-medium);
}

.tag--pet {
  background: rgba(46, 204, 113, 0.2);
  color: #2ECC71;
}

.normas__card--acepta .tag--pet {
  background: rgba(46, 204, 113, 0.25);
  color: #A8E6B0;
}

/* ---- Filtros ---- */
.filtros {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filtro-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--gray-dark);
  background: transparent;
  color: var(--gray-dark);
  cursor: pointer;
  transition: all var(--transition);
}

.filtro-btn:hover,
.filtro-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ---- Departamentos ---- */
.deptos-slider {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: center;
}

.deptos-slider__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  container-type: inline-size;
  container-name: deptos;
  padding: 8px 2px 20px;
  margin: -8px 0;
}

.deptos-slider__viewport::-webkit-scrollbar {
  display: none;
}

.deptos-slider__nav {
  position: static;
  transform: none;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(230, 126, 34, 0.2);
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deptos-slider__nav:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
}

.deptos-slider__nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.deptos__grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.depto-card {
  flex: 0 0 calc(100cqw - 8px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

@container deptos (min-width: 720px) {
  .depto-card {
    flex: 0 0 calc((100cqw - 24px) / 2);
  }
}

@container deptos (min-width: 960px) {
  .depto-card {
    flex: 0 0 calc((100cqw - 48px) / 3);
  }
}

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

.depto-card.hidden { display: none; }

.depto-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray-charcoal);
}

.depto-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--img-warm-overlay);
  opacity: 0.72;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 1;
}

.depto-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-brand-filter);
  transition: transform 0.5s ease, filter var(--transition);
}

.depto-card:hover .depto-card__img::after {
  opacity: 0.42;
}

.depto-card:hover .depto-card__img img {
  transform: scale(1.06);
  filter: var(--img-brand-filter-hover);
}

.depto-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 50px;
}

.depto-card__badge--popular {
  background: var(--orange);
}

.depto-card__body { padding: 24px; }

.depto-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-charcoal);
  margin-bottom: 8px;
}

.depto-card__meta {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
}

.depto-card__features {
  margin-bottom: 20px;
}

.depto-card__features li {
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-medium);
}

.depto-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.depto-card__btn { width: 100%; }

/* ---- Galería ---- */
.galeria__filtros {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filtro-btn--light {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

.filtro-btn--light:hover,
.filtro-btn--light.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.galeria__more {
  text-align: center;
  margin-top: 32px;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--gray-charcoal);
  border-color: var(--white);
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.galeria__item {
  position: relative;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--gray-charcoal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: box-shadow var(--transition), transform var(--transition);
}

.galeria__item:hover {
  box-shadow: var(--img-warm-glow);
  transform: translateY(-2px);
}

.galeria__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.galeria__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--img-warm-overlay);
  opacity: 0.68;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 1;
}

.galeria__item:hover::after {
  opacity: 0.38;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-brand-filter);
  transition: transform 0.5s ease, filter var(--transition);
}

.galeria__item:hover img {
  transform: scale(1.08);
  filter: var(--img-brand-filter-hover);
}

.galeria__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.82));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.galeria__item:hover .galeria__caption {
  transform: translateY(0);
}

/* ---- Testimonios ---- */
.testimonios__slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 200px;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.testimonio-card {
  display: none;
  text-align: center;
  padding: 20px;
}

.testimonio-card.active { display: block; }

.testimonio-card__stars {
  color: var(--orange);
  font-size: 1.25rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonio-card__text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonio-card__author strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--gray-charcoal);
}

.testimonio-card__author span {
  font-size: 0.85rem;
  color: var(--gray-medium);
}

.testimonios__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.testimonios__google {
  text-align: center;
  margin-top: 28px;
}

.testimonios__google a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
}

.testimonios__google a:hover {
  color: var(--orange-deep);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.dot.active,
.dot:hover {
  background: var(--orange);
  transform: scale(1.2);
}

/* ---- Normas ---- */
.normas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.normas__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition);
}

.normas__card:hover {
  transform: translateY(-4px);
}

.normas__card--no-apto {
  border-top: 3px solid #E67E22;
}

.normas__card--acepta {
  border-top: 3px solid #27AE60;
}

.normas__card--prohibido {
  border-top: 3px solid #E74C3C;
}

.normas__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.normas__card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.normas__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.normas__icon--warn {
  background: rgba(230, 126, 34, 0.2);
  color: var(--orange-light);
}

.normas__icon--ok {
  background: rgba(39, 174, 96, 0.2);
  color: #2ECC71;
}

.normas__icon--ban {
  background: rgba(231, 76, 60, 0.2);
  color: #E74C3C;
}

.normas__card li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}

.normas__card li:last-child {
  border-bottom: none;
}

.normas__card--no-apto li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange-light);
}

.normas__card--acepta li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ECC71;
  font-weight: 700;
}

.normas__card--prohibido li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #E74C3C;
  font-weight: 700;
}

.normas__note {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq__item a {
  color: var(--orange);
  font-weight: 600;
}

.faq__item a:hover {
  color: var(--orange-deep);
}

/* ---- FAQ ---- */
.faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto;
}

.faq__item {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  align-self: start;
}

.faq__item summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-charcoal);
  transition: color var(--transition), background var(--transition);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 8px;
  color: var(--orange);
}

.faq__icon svg {
  width: 18px;
  height: 18px;
}

.faq__question {
  flex: 1;
  line-height: 1.35;
  text-align: left;
}

.faq__chevron {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--orange);
  transition: transform var(--transition);
}

.faq__item[open] .faq__chevron {
  transform: rotate(45deg);
}

.faq__item summary:hover {
  color: var(--orange);
  background: rgba(230, 126, 34, 0.04);
}

.faq__item p {
  padding: 0 12px 12px 56px;
  color: var(--gray-medium);
  font-size: 0.84rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq__item summary {
    font-size: 0.86rem;
    padding: 9px 10px;
  }

  .faq__icon {
    width: 30px;
    height: 30px;
  }

  .faq__icon svg {
    width: 16px;
    height: 16px;
  }

  .faq__item p {
    padding: 0 10px 10px 50px;
    font-size: 0.82rem;
  }
}

/* ---- Ubicación ---- */
.ubicacion__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.ubicacion__refs {
  margin: 20px 0 8px;
}

.ubicacion__refs li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.95rem;
  color: var(--gray-medium);
}

.ubicacion__refs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.ubicacion__details {
  margin: 28px 0;
}

.ubicacion__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ubicacion__details svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.ubicacion__details strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gray-charcoal);
}

.ubicacion__details span,
.ubicacion__details a {
  font-size: 0.95rem;
  color: var(--gray-medium);
}

.ubicacion__map {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ---- Contacto ---- */
.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px 56px;
  align-items: start;
}

.contacto__info {
  grid-column: 1;
  grid-row: 1;
}

.contacto__channels {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacto__form {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contacto__info p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.contacto__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
  color: var(--white);
}

.contacto__channel:hover {
  background: rgba(230, 126, 34, 0.15);
  border-color: rgba(230, 126, 34, 0.3);
  color: var(--white);
  transform: translateX(4px);
}

.contacto__channel svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex-shrink: 0;
}

.contacto__channel strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
}

.contacto__channel .contacto__contact-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.contacto__channel .contacto__phone-number {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.contacto__channel span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Form ---- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-charcoal);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 4px;
  min-height: 18px;
}

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

.form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 12px;
}

.form-optional {
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.45);
}

.form-group input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- Custom Select --- */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 10px;
  color: var(--gray-charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus {
  border-color: var(--orange);
  outline: none;
}

.custom-select-arrow {
  flex-shrink: 0;
  color: var(--gray-medium);
  transition: transform var(--transition), color var(--transition);
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}

.custom-select-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.custom-select-list::-webkit-scrollbar {
  width: 4px;
}

.custom-select-list::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 999px;
}

.custom-select.is-open .custom-select-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select-option {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--gray-medium);
  font-size: 0.92rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.custom-select-option:hover {
  background: rgba(230, 126, 34, 0.1);
  color: var(--gray-charcoal);
}

.custom-select-option.is-selected {
  background: rgba(230, 126, 34, 0.15);
  color: var(--orange-deep);
  font-weight: 600;
}

.custom-select-option.is-focused {
  background: rgba(230, 126, 34, 0.08);
  color: var(--gray-charcoal);
}

/* --- Date Range Picker --- */
.date-range-picker {
  position: relative;
  width: 100%;
}

.date-range-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 10px;
  color: var(--gray-charcoal);
  font: inherit;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.date-range-picker.is-open .date-range-trigger,
.date-range-trigger:focus-visible {
  border-color: var(--orange);
  outline: none;
}

.date-range-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(230, 126, 34, 0.12);
  color: var(--orange);
  flex-shrink: 0;
}

.date-range-icon svg {
  width: 18px;
  height: 18px;
}

.date-range-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  flex: 1;
  text-align: left;
}

.date-range-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-charcoal);
}

.date-range-meta {
  font-size: 0.8rem;
  color: var(--gray-medium);
}

.date-range-arrow {
  width: 16px;
  height: 16px;
  color: var(--gray-medium);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}

.date-range-picker.is-open .date-range-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}

.date-range-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 210;
}

.date-range-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.date-range-panel-head p {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-charcoal);
}

.date-range-nav,
.date-range-clear {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--cream);
  color: var(--gray-charcoal);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  transition: all var(--transition);
}

.date-range-nav {
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  line-height: 1;
}

.date-range-clear {
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-medium);
}

.date-range-nav:hover,
.date-range-clear:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.date-range-weekdays,
.date-range-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.date-range-weekdays {
  margin-bottom: 8px;
}

.date-range-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-medium);
}

.date-range-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--gray-charcoal);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.date-range-day:hover:not(.is-disabled):not(.is-empty) {
  background: rgba(230, 126, 34, 0.12);
}

.date-range-day.is-empty {
  pointer-events: none;
}

.date-range-day.is-disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.date-range-day.is-today:not(.is-selected) {
  background: rgba(230, 126, 34, 0.18);
  color: var(--orange-deep);
  box-shadow: inset 0 0 0 2px var(--orange);
  font-weight: 700;
}

.date-range-day.is-in-range {
  background: rgba(230, 126, 34, 0.14);
  border-radius: 0;
}

.date-range-day.is-selected {
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  color: var(--white);
}

.date-range-day.is-start {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.date-range-day.is-end {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.date-range-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.date-range-nights {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--orange);
}

/* ---- Footer ---- */
.footer {
  background: linear-gradient(180deg, var(--gray-charcoal) 0%, #141414 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 0;
  border-top: 1px solid rgba(230, 126, 34, 0.2);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.footer__brand {
  max-width: 420px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer__logo img {
  height: 88px;
  width: auto;
  margin: 0 auto;
}

.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.footer__social-block {
  width: 100%;
  max-width: 720px;
}

.footer__social-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer__social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__social-link:hover {
  color: var(--white);
  border-color: var(--orange);
  background: rgba(230, 126, 34, 0.15);
  transform: translateY(-2px);
}

.footer__social-link--whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.15);
}

.footer__thanks {
  margin: 28px 0 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  max-width: 800px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer__nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--orange-light);
}

.footer__contact-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 900px;
}

.footer__contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.footer__contact-chip svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.footer__contact-chip:hover {
  color: var(--white);
  border-color: rgba(230, 126, 34, 0.4);
  background: rgba(230, 126, 34, 0.1);
}

.footer__cta .btn {
  min-width: 240px;
}

.footer__bottom {
  width: 100%;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox[hidden] { display: none; }

.lightbox__stage {
  position: relative;
  display: inline-block;
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--img-warm-glow);
  line-height: 0;
}

.lightbox__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--img-warm-overlay);
  opacity: 0.68;
  pointer-events: none;
  z-index: 1;
}

.lightbox__img {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  filter: var(--img-brand-filter);
}

.lightbox__logo-wrap {
  position: absolute;
  right: var(--lb-logo-offset, 8px);
  bottom: var(--lb-logo-offset, 8px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--lb-logo-pad-y, 0px) var(--lb-logo-pad-x, 0px);
  line-height: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--lb-logo-radius, 8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.lightbox__logo {
  display: block;
  width: var(--lb-logo-width, 115px);
  height: auto;
  max-width: none;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox__close:hover { opacity: 1; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav:hover { background: var(--orange); }

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__caption {
  color: var(--white);
  font-family: var(--font-heading);
  margin-top: 16px;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .lightbox__logo-wrap {
    right: var(--lb-logo-mobile-offset, 7px);
    bottom: var(--lb-logo-mobile-offset, 7px);
  }

  .lightbox__logo {
    width: var(--lb-logo-mobile-width, 100px);
  }
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] { display: none; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cream);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  transition: all var(--transition);
}

.modal__close:hover {
  background: var(--orange);
  color: var(--white);
}

.modal__body { padding: 36px; }

.modal__body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-charcoal);
  margin-bottom: 8px;
}

.modal__body .modal-meta {
  color: var(--gray-medium);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.modal__body .modal-features {
  margin-bottom: 24px;
}

.modal__body .modal-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--gray-medium);
}

.modal__body .modal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.modal__body .modal-desc {
  color: var(--gray-medium);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---- Contact FAB ---- */
.contact-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
  transition: all var(--transition);
  animation: contactFabPulse 2.5s infinite;
}

.contact-fab svg {
  width: 26px;
  height: 26px;
}

.contact-fab:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  color: var(--white);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px rgba(230, 126, 34, 0.5);
}

@keyframes contactFabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4); }
  50% { box-shadow: 0 6px 28px rgba(230, 126, 34, 0.55); }
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 48px;
  height: 48px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.back-to-top svg { width: 22px; height: 22px; }

.back-to-top:hover {
  background: var(--orange-deep);
  transform: translateY(-3px);
}

.back-to-top[hidden] { display: none; }

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---- Responsive ---- */
@media (min-width: 1200px) {
  .header__inner.container {
    max-width: 1560px;
    padding-left: 48px;
    padding-right: 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 40px;
  }

  .header__logo {
    justify-self: start;
  }

  .nav {
    justify-self: center;
    display: flex;
    justify-content: center;
  }

  .header__actions {
    justify-self: end;
    gap: 18px;
  }

  .header__cta { display: inline-flex; }

  .nav__list {
    gap: 12px;
  }

  .nav__link {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

@media (min-width: 1440px) {
  .header__inner.container {
    padding-left: 64px;
    padding-right: 64px;
    column-gap: 48px;
  }

  .nav__list {
    gap: 18px;
  }

  .nav__link {
    padding: 10px 22px;
    font-size: 0.92rem;
  }
}

@media (max-width: 1199px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .nav__link {
    display: block;
    padding: 14px 16px;
    font-size: 0.95rem;
    white-space: normal;
    border-radius: 12px;
  }

  .hamburger { display: flex; }
}

@media (max-width: 1023px) {
  .sobre__grid,
  .evento__grid,
  .nosotros__grid,
  .ubicacion__grid,
  .contacto__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacto__info,
  .contacto__channels,
  .contacto__form {
    grid-column: auto;
    grid-row: auto;
  }

  .contacto__info { order: 1; }
  .contacto__form { order: 2; }
  .contacto__channels { order: 3; }

  .servicios__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria__item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .nosotros__image-accent { display: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .servicios__popular {
    margin-bottom: 28px;
  }

  .servicios__popular-label {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

  .servicios__popular-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    max-width: 340px;
    margin: 0 auto;
  }

  .servicio-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6px 8px;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    border-radius: 8px;
  }

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

  .servicios__grid:not(.is-expanded) .servicio-card:nth-child(n + 4) {
    display: none;
  }

  .servicios__more {
    display: flex;
  }

  .servicios__more .btn {
    min-width: 160px;
  }

  .deptos-slider {
    display: block;
    position: relative;
  }

  .deptos-slider__viewport {
    width: 100%;
    padding: 4px 0 16px;
    margin: 0;
  }

  .deptos-slider__nav {
    position: absolute;
    top: 110px;
    z-index: 4;
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  }

  .deptos-slider__prev {
    left: 10px;
  }

  .deptos-slider__next {
    right: 10px;
  }

  .deptos__grid {
    gap: 12px;
  }

  .depto-card {
    flex: 0 0 100%;
  }

  .depto-card__img {
    height: 240px;
  }

  .depto-card__body {
    padding: 20px 18px 22px;
  }

  .depto-card__body h3 {
    font-size: 1.2rem;
  }

  .galeria__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .galeria__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    gap: 6px 14px;
  }

  .footer__contact-bar {
    flex-direction: column;
    align-items: center;
  }

  .footer__contact-chip {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .contacto__form { padding: 24px; }

  .ubicacion__map { height: 300px; }

  .contact-fab {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn { width: 100%; max-width: 280px; }

  .filtros { gap: 6px; }

  .filtro-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
}
