@font-face {
  font-family: 'Avenir';
  src: url('../font/Avenir/Avenir Light/Avenir Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Avenir';
  src: url('../font/Avenir/Avenir Book/Avenir Book.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Avenir';
  src: url('../font/Avenir_Regular.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Avenir';
  src: url('../font/Avenir/Avenir Heavy/Avenir Heavy.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Avenir';
  src: url('../font/Avenir/Avenir Black/Avenir Black.ttf') format('truetype');
  font-weight: 900;
}

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

:root {
  --navy:   #303B97;
  --blue:   #1a5fc8;
  --teal:   #1A9BD7;
  --gold:   #FDC700;
  --white:  #ffffff;
  --gray50: #f8fafc;
  --gray100:#f1f5f9;
  --gray200:#e2e8f0;
  --gray500:#64748b;
  --gray700:#334155;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--gray700); background: #fff; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.section-title { font-family: 'Avenir', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
.section-title span { color: var(--gold); }
.section-sub  { color: var(--gray500); font-size: .95rem; margin-top: 10px; max-width: 540px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: .88rem; cursor: pointer; border: none; transition: all .25s; letter-spacing: .04em; }
.btn-teal    { background: linear-gradient(180deg, #1A9BD7 0%, #0A5B8A 100%); color: #fff; }
.btn-teal:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy    { background: var(--navy); color: #fff; }
.btn-navy:hover { filter: brightness(1.15); transform: translateY(-2px); }
.btn-gold    { background: var(--gold); color: #fff; }
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,.4); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 10px; left: 0; right: 0; z-index: 1000;
  background: #fff; box-shadow: 0 1px 12px rgba(0,0,0,.08);
  border-radius: 5px;
    width: 99%;
    margin: 0 auto;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; position: relative;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo .site-name { font-family: 'Avenir', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.2; }

/* wp_nav_menu() genera: nav.primary-nav > ul.menu > li.menu-item > a */
.primary-nav { display: flex; align-items: center; }
.primary-nav ul.menu { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.primary-nav ul.menu > li { position: relative; }
.primary-nav ul.menu > li > a { color: var(--navy); font-size: .85rem; font-weight: 500; text-decoration: none; display: block; padding: 8px 0; transition: color .2s; }
.primary-nav ul.menu > li > a:hover,
.primary-nav ul.menu > li.current-menu-item > a,
.primary-nav ul.menu > li.current_page_item > a { color: var(--teal); }

/* Acciones (teléfono + CTA) */
.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { color: var(--teal); font-size: 1.05rem; text-decoration: none; }
.nav-cta { background: linear-gradient(180deg, #1A9BD7 0%, #0A7AB5 100%);; color: #fff; padding: 10px 22px; border-radius: 50px; font-size: .83rem; font-weight: 600; transition: all .25s; text-decoration: none; }
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Hamburger */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; width: 36px; height: 36px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #06121f;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .45;
}
video.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero--interior { min-height: 700px; }
.hero--interior .hero-content { max-width: 900px; }
.hero--interior h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.hero--interior h1 span { color: var(--gold); }
.hero--interior .hero-bg { opacity: 1; }
.hero--interior .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,60,.80) 0%, rgba(10,30,60,.60) 50%, rgba(10,30,60,.80) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  padding-top: 70px;
  width: 100%; max-width: 800px;
}
.hero-location {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 22px;
}
.hero-location::before,
.hero-location::after {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--teal);
}
.hero-location span { color: var(--teal); font-size: .72rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.hero h1 {
  font-family: 'Avenir', sans-serif;
  font-size: clamp(3rem, 7vw, 4rem);
  font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); }
.hero-tagline { font-size: clamp(.82rem, 1.5vw, .95rem); color: rgba(255,255,255,.65); letter-spacing: .28em; text-transform: uppercase; margin-bottom: 18px; font-weight: 400; }
.hero-desc { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 36px; line-height: 1.75; font-size: .93rem; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Slider dots */
.hero-dots { position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); transition: all .3s; cursor: pointer; }
.dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 3;
  color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
}
.hero-scroll i { animation: bounce .9s ease-in-out infinite; }
@keyframes bounce { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(5px); } }

/* ── BOOKING BAR ── */
.booking-bar {
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  border-radius: 16px;
  max-width: 1000px; margin: -36px auto 0; position: relative; z-index: 10;
}
.booking-inner { display: flex; align-items: flex-end; gap: 12px; padding: 24px 28px; flex-wrap: wrap; }
.booking-field { flex: 1; min-width: 150px; }
.booking-field label { display: block; font-size: .72rem; font-weight: 600; color: var(--gray500); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }
.booking-field input, .booking-field select {
  width: 100%; border: 1.5px solid var(--gray200); border-radius: 8px;
  padding: 11px 14px; font-size: .88rem; color: var(--gray700); outline: none;
  transition: border-color .2s; background: var(--gray50); font-family: inherit;
}
.booking-field input:focus, .booking-field select:focus { border-color: var(--teal); }
.booking-btn { background: var(--teal); color: #fff; border: none; border-radius: 8px; padding: 13px 26px; font-size: .88rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all .25s; display: flex; align-items: center; gap: 8px; font-family: inherit; }
.booking-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
@media (max-width: 768px) {
  .booking-inner { flex-direction: column; align-items: stretch; }
  .booking-field { width: 100%; min-width: 0; max-width: none !important; }
  .booking-btn { width: 100%; justify-content: center; }
}

/* ── MOMENTOS ÚNICOS ── */
.momentos { padding: 100px 0 90px; background: #eef4fb; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head-label {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-head-label::before,
.section-head-label::after { content: ''; flex: 1; max-width: 50px; height: 1.5px; background: var(--teal); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pkg-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .3s, box-shadow .3s;
  background: linear-gradient(180deg, #0A5B8A 0%, #1A9BD7 100%);
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-7px); box-shadow: 0 16px 50px rgba(0,0,0,.2); }
.pkg-card.teal-card { background: linear-gradient(180deg, #0A1E3C 0%, #1E4080 100%); }
.pkg-img { position: relative; height: 210px; overflow: hidden; flex-shrink: 0; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.pkg-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-tags {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.pkg-tag-cat {
  display: flex; align-items: center; gap: 6px;
  background: rgba(10,18,40,.72); backdrop-filter: blur(6px);
  color: #fff; padding: 5px 12px; border-radius: 50px;
  font-size: .71rem; font-weight: 600;
}
.pkg-tag-cat i { font-size: .65rem; opacity: .8; }
.pkg-tag-off {
  background: #fff; color: var(--navy);
  padding: 5px 12px; border-radius: 50px;
  font-size: .71rem; font-weight: 700; letter-spacing: .03em;
}
.pkg-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.pkg-body h3 { font-family: 'Avenir', sans-serif; font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.25; }
.pkg-body p { color: rgba(255,255,255,.78); font-size: .86rem; line-height: 1.65; margin-bottom: 14px; flex: 1; }
.pkg-date { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.6); font-size: .78rem; margin-bottom: 18px; }
.pkg-date i { font-size: .75rem; }
.pkg-link { display: flex; align-items: center; gap: 7px; color: #fff; font-size: .87rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; transition: gap .2s; }
.pkg-link:hover { gap: 11px; }

/* ── BIENESTAR ── */
.bienestar {
  padding: 90px 0;
  position: relative; overflow: hidden;
}
.bienestar-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.bienestar-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,22,50,.92) 0%, rgba(7,22,50,.82) 55%, rgba(7,22,50,.5) 100%);
}
.bienestar-inner { position: relative; z-index: 2; max-width: 1150px; }
.bienestar-label {
  display: flex; align-items: center; gap: 10px;
  color: var(--teal); font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; margin-bottom: 18px;
}
.bienestar-label::before { content: ''; width: 30px; height: 1.5px; background: var(--teal); }
.bienestar-inner h2 {
  font-family: 'Avenir', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 18px;
}
.bienestar-inner h2 span { color: var(--gold); }
.bienestar-inner > p { color: rgba(255,255,255,.72); font-size: .93rem; line-height: 1.78; max-width: 560px; margin-bottom: 36px; }

/* Feature cards (top row – SPA ancho + 2 iguales) */
.features-row { display: grid; grid-template-columns: 2fr 1.1fr 1.1fr; gap: 14px; margin-bottom: 14px; }
.feat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 22px 24px;
}
.feat-card-top { display: flex; align-items: center; gap: 13px; margin-bottom: 10px; }
.feat-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(0,181,200,.22); border: 1px solid rgba(0,181,200,.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-icon i { color: var(--teal); font-size: 1.1rem; }
.feat-card-top h4 { color: #fff; font-size: .95rem; font-weight: 600; }
.feat-card > p { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.6; margin: 0; }

/* Club Catillo – contenedor único con fondo */
.club-wrapper {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 22px 24px;
}
.club-label { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.club-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.club-card { display: flex; align-items: flex-start; gap: 13px; }
.club-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(0,181,200,.22); border: 1px solid rgba(0,181,200,.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.club-icon i { color: var(--teal); font-size: 1rem; }
.club-card h4 { color: #fff; font-size: .88rem; font-weight: 600; margin-bottom: 5px; }
.club-card p  { color: rgba(255,255,255,.55); font-size: .78rem; line-height: 1.55; margin: 0; }

/* ── UNA EXPERIENCIA ÚNICA ── */
.experiencia { padding: 100px 0; background: #eef4fb; }
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 50px;
  align-items: center;
}
.exp-card { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-lg); }
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; display: block; }
.exp-card:hover img { transform: scale(1.06); }
.exp-card--short { height: 300px; }
.exp-card--tall  { height: 370px; }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,18,45,.82) 0%, rgba(5,18,45,.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 22px;
}
.exp-overlay h3 { font-family: 'Avenir', sans-serif; color: #fff; font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.exp-link { display: flex; align-items: center; gap: 6px; color: var(--teal); font-size: .84rem; font-weight: 600; transition: gap .2s; }
.exp-link:hover { gap: 10px; }

/* ── HABITACIONES ── */
.habitaciones { padding: 100px 0; background: #fff; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.room-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-img { position: relative; height: 220px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; padding: 5px 14px; border-radius: 50px; font-size: .72rem; font-weight: 700; }
.room-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.room-capacity { font-size: .82rem; color: var(--gray500); margin-bottom: 14px; }
.room-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; flex: 1; align-content: flex-start; }
.room-pill { display: flex; align-items: center; gap: 5px; border: 1px solid var(--gray200); border-radius: 50px; padding: 5px 12px; font-size: .76rem; color: var(--gray700); background: var(--gray50); }
.room-pill i { color: var(--teal); font-size: .75rem; }
.room-btn { display: block; text-align: center; background: linear-gradient(180deg, #0A1E3C 0%, #1E4080 100%); color: #fff; border-radius: 10px; padding: 13px; font-size: .9rem; font-weight: 600; transition: background .25s; margin-top: auto;transition: all .25s; }
.room-btn:hover {filter: brightness(1.1);
    transform: translateY(-2px);
 }

/* ── STATS CTA ── */
.stats-cta { padding: 110px 0; position: relative; overflow: hidden; background: #071a38; }
.stats-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: .3; }
.stats-inner { position: relative; z-index: 2; text-align: center; }
.stats-inner-label {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 22px;
}
.stats-inner-label::before,
.stats-inner-label::after { content: ''; flex: 1; max-width: 50px; height: 1.5px; background: var(--teal); }
.stats-inner h2 { font-family: 'Avenir', sans-serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; max-width: 780px; margin: 0 auto 20px; line-height: 1.2; font-weight: 700; }
.stats-inner h2 span { color: var(--gold); }
.stats-inner > p { color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 48px; line-height: 1.78; font-size: .92rem; text-align: center; }
.stats-row { display: flex; justify-content: center; gap: 64px; margin: 0 auto 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.4rem; font-weight: 700; color: var(--teal); line-height: 1; }
.stat-label { color: rgba(255,255,255,.55); font-size: .78rem; margin-top: 6px; }

/* ── PLANIFICA TU VISITA ── */
.planifica { padding: 100px 0; background: #fff; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.plan-card { background: #fff; border-radius: 14px; padding: 26px 28px; border: 1px solid var(--gray200); transition: border-color .3s, box-shadow .3s, transform .3s; display: flex; gap: 18px; align-items: flex-start; }
.plan-card:hover { border-color: rgba(0,181,200,.4); box-shadow: 0 6px 24px rgba(0,181,200,.1); transform: translateY(-3px); }
.plan-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, rgba(26, 155, 215, 0.10) 0%, rgba(10, 91, 138, 0.10) 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plan-icon i { color: var(--teal); font-size: 1.1rem; }
.plan-card-body { flex: 1; }
.plan-num { font-size: .68rem; font-weight: 700; color: var(--teal); letter-spacing: .08em; margin-bottom: 4px; }
.plan-card h3 { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 7px; }
.plan-card p { color: var(--gray500); font-size: .82rem; line-height: 1.65; margin: 0; }
.plan-card p a { color: var(--teal); font-weight: 600; }

/* ── TESTIMONIOS ── */
.testimonios { padding: 100px 0 80px; background: #eef4fb; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.test-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 2px 20px rgba(0,0,0,.07); position: relative; }
.test-quote { position: absolute; top: 20px; right: 22px; font-size: 3.5rem; line-height: 1; color: rgba(0,181,200,.15); font-family: Georgia, serif; font-weight: 700; user-select: none; }
.test-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.test-stars i { color: var(--gold); font-size: .9rem; }
.test-card > p { color: var(--gray700); font-size: .875rem; line-height: 1.75; margin-bottom: 22px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .82rem; flex-shrink: 0; }
.test-name { font-weight: 600; color: var(--navy); font-size: .88rem; }
.test-date { color: var(--gray500); font-size: .75rem; margin-top: 1px; }

/* Stats bajo las cards */
.test-stats-bar { border-top: 1px solid var(--gray200); margin-top: 56px; padding-top: 48px; display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.tstat { text-align: center; }
.tstat-num { font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.tstat-label { color: var(--gray500); font-size: .82rem; margin-top: 6px; }

/* ── RESERVA ── */
.reserva { padding: 100px 0; background: #fff; }
.reserva-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 0; }
.reserva-left { padding-top: 20px; }
.reserva-label { display: flex; align-items: center; gap: 10px; color: var(--teal); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; }
.reserva-label::before { content: ''; width: 30px; height: 1.5px; background: var(--teal); }
.reserva-left h2 { font-family: 'Avenir', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.reserva-left h2 span { color: var(--gold); }
.reserva-left > p { color: var(--gray500); font-size: .9rem; line-height: 1.75; margin-bottom: 28px; max-width: 420px; }
.reserva-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.reserva-contact-row { display: flex; align-items: baseline; gap: 0; font-size: .87rem; }
.reserva-contact-label { color: var(--teal); font-weight: 600; min-width: 90px; }
.reserva-contact-val { color: var(--gray700); }
.reserva-contact-wrap { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.reserva-contact-wrap .reserva-contact { flex: 1; margin-bottom: 0; }
.reserva-nav-btns { display: flex; gap: 12px; flex-shrink: 0; }
.nav-map-btn { display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.nav-map-btn:hover { transform: scale(1.1); }
.reserva-map-img { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.reserva-map-img iframe { width: 100%; height: 220px; border: 0; display: block; }

/* Formulario */
.contact-form { background: #F8FBFF; border-radius: 16px; padding: 36px; box-shadow: 0 4px 40px rgba(0,0,0,.10); }
.contact-form h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .7rem; font-weight: 700; color: var(--gray500); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }
.form-group input, .form-group textarea {
  width: 100%; border: 1.5px solid var(--gray200); border-radius: 8px;
  padding: 12px 14px; font-size: .88rem; color: var(--gray700);
  outline: none; transition: border-color .2s; background: #fff; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit,
.wpcf7-form-control.wpcf7-submit { width: 100%; background: linear-gradient(180deg, #1A9BD7 0%, #0A5B8A 100%); color: #fff; border: none; border-radius: 10px; padding: 16px; font-size: .95rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; font-family: inherit; margin-top: 8px; transition: filter .2s; letter-spacing: .04em; }
.form-submit:hover,
.wpcf7-form-control.wpcf7-submit:hover { filter: brightness(1.1); }

/* ── FOOTER ── */
footer { background: #070F1F; color: rgba(255,255,255,.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; gap: 48px; }

/* Columna brand */
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-logo img { height: 52px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .82rem; line-height: 1.75; color: rgba(255,255,255,.55); max-width: 240px; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.social-btn { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: all .2s; font-size: .85rem; }
.social-btn:hover { background: var(--teal); color: #fff; }

/* Columnas generales */
.footer-col h4 { color: #fff; font-weight: 600; font-size: .88rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }

/* Columna contacto */
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .81rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-contact-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact-icon i { color: var(--teal); font-size: .72rem; }

/* Columna novedades */
.footer-subscribe { margin: 14px 0 18px; }
.footer-subscribe .wpcf7,
.footer-subscribe form.wpcf7-form {
  display: flex; flex-wrap: wrap; align-items: flex-start; width: 100%; gap: 0;
}
.footer-subscribe .wpcf7-form-control-wrap { display: flex; flex-wrap: wrap; flex: 1; }
.footer-subscribe input {
  flex: 1; width: 100%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-right: none; border-radius: 8px 0 0 8px; padding: 10px 14px;
  font-size: .82rem; color: #fff; outline: none; font-family: inherit;
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,.35); }
.footer-subscribe button { background: linear-gradient(180deg, #1A9BD7 0%, #0A5B8A 100%); border: none; border-radius: 0 8px 8px 0; padding: 10px 14px; color: #fff; cursor: pointer; font-size: .9rem; transition: filter .2s; flex-shrink: 0; }
.footer-subscribe button:hover { filter: brightness(1.1); }
.footer-subscribe .wpcf7-not-valid-tip,
.footer-subscribe .wpcf7-response-output {
  flex-basis: 100%; width: 100%; margin: 6px 0 0; font-size: .72rem;
  position: static !important; top: auto !important; left: auto !important;
}
.footer-hours { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 10px; padding: 16px 18px; }
.footer-hours-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.footer-hours p { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0; }

/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; margin-top: 56px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .76rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ── WHATSAPP ── */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 999; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.55rem; box-shadow: 0 4px 18px rgba(37,211,102,.5); transition: transform .25s; }
.wa-float:hover { transform: scale(1.1); }

/* ── POOL CARDS (interior aguas termales) ── */
.pools-section { padding: 80px 0; background: var(--gray100); }
.pools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.pool-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pool-card__header { background: #d6eeff; padding: 14px 16px; }
.pool-badge { background: var(--teal); color: #fff; font-size: .75rem; font-weight: 600; padding: 5px 14px; border-radius: 50px; display: inline-block; }
.pool-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pool-body h3 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pool-body > p { font-size: .81rem; color: var(--gray500); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.pool-specs { border-top: 1px solid var(--gray100); padding-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.pool-spec { display: flex; justify-content: space-between; align-items: center; font-size: .79rem; }
.pool-spec-label { color: var(--gray500); }
.pool-spec-val {     font-weight: 700;font-size: 0.7rem;padding: 2px 10px;border-radius: 50px; }
.pool-spec-val--temp { background: #fee2e2; color: #e05252; }
.pool-spec-val--dim  { background: #dbeafe; color: var(--teal); }
.pool-spec-val--prof { background: #e0e7ff; color: var(--navy); }
.pool-spec-val--tipo { background: #d1fae5; color: #059669; }
@media (max-width: 1024px) { .pools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .pools-grid { grid-template-columns: 1fr; } }

/* ── HISTORIA TIMELINE ── */
.historia-section {
  padding: 90px 0; position: relative; overflow: hidden;
}
.historia-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.historia-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, #0A1E3C 0%, #0B2041 7.14%, #0D2345 14.29%, #0E254A 21.43%, #0F274F 28.57%, #112A53 35.71%, #122C58 42.86%, #142F5D 50%, #153162 57.14%, #173367 64.29%, #18366C 71.43%, #1A3871 78.57%, #1B3B76 85.71%, #1C3D7B 92.86%, #1E4080 100%);
  opacity: .92;
}
.historia-head { position: relative; z-index: 2; text-align: center; margin-bottom: 60px; }
.historia-head .section-head-label { color: var(--teal); }
.historia-head .section-title { color: #fff; }
.historia-head .section-sub { color: rgba(255,255,255,.6); margin: 10px auto 0; }

.timeline { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: rgba(26,155,215,.35); transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 40px 1fr;
  align-items: center; gap: 0; margin-bottom: 32px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-card {
  width: 408px; height: 198.5px;
  border-radius: 16px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.10);
  padding: 20px 22px; box-sizing: border-box;
  display: flex; flex-direction: column; justify-content: center;
}
.timeline-card h4 { color: #fff; font-size: .92rem; font-weight: 600; margin-bottom: 8px; }
.timeline-card p  { color: rgba(255,255,255,.65); font-size: .8rem; line-height: 1.65; margin: 0; }
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 16777200px;
  border: 2px solid #1A9BD7;
  background: #1A9BD7;
  justify-self: center;
}
/* Odd: card izquierda, vacío derecha */
.timeline-item:nth-child(odd) .timeline-card:first-child  { grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-empty             { grid-column: 3; }
/* Even: vacío izquierda, card derecha */
.timeline-item:nth-child(even) { direction: rtl; }
.timeline-item:nth-child(even) > * { direction: ltr; }

@media (max-width: 768px) {
  .timeline::before { left: 6px; transform: none; }
  .timeline-item { display: flex; flex-direction: row; align-items: flex-start; gap: 12px; direction: ltr; }
  .timeline-item:nth-child(even) { direction: ltr; }
  .timeline-dot { order: 1; flex-shrink: 0; margin-top: 22px; }
  .timeline-card { order: 2; flex: 1; width: auto; height: auto; }
  .timeline-empty { display: none; }
}

/* ── CERTIFICACIONES ── */
.cert-section { padding: 80px 0; background: var(--gray50); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.cert-card {
  background: #fff; border-radius: 16px; border: 1px solid var(--gray200);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow);
}
.cert-card__title { font-family: 'Avenir', sans-serif; font-size: .97rem; font-weight: 700; color: var(--navy); }
.cert-card__issuer { font-size: .8rem; font-weight: 600; color: var(--teal); margin-bottom: 4px; }
.cert-card__desc { font-size: .82rem; color: var(--gray500); line-height: 1.65; flex: 1; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #d1fae5; color: #059669; font-size: .78rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px; margin-top: 65px; align-self: flex-start;
}
.cert-logos { display: flex; justify-content: center; gap: 32px; margin-top: 52px; flex-wrap: wrap; }
.cert-logo { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cert-logo__badge {
  width: 60px; height: 60px; border-radius: 50%;
  background: #4b5563; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-align: center;
}
.cert-logo__name { font-size: .75rem; color: var(--gray500); text-align: center; max-width: 80px; line-height: 1.4; }

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

/* ── GALLERY CAROUSEL ── */
.gallery-section { padding: 80px 0; background: var(--gray100); }
.gallery-section .section-head { text-align: center; }
.gallery-section .section-sub { margin: 10px auto 0; text-align: center; }
.gallery-carousel-wrap {
  position: relative; margin-top: 40px;
  display: flex; align-items: center;
}
.gallery-carousel { overflow: hidden; flex: 1; padding: 20px 0; }
.gallery-track {
  display: flex; gap: 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.gallery-slide {
  flex: 0 0 calc(33.333% - 14px);
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 1/1; cursor: pointer;
}
.gallery-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-slide__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 18px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 100%);
  color: #fff; font-size: .85rem; font-weight: 600;
}
.gallery-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: none; cursor: pointer;
  box-shadow: var(--shadow-lg); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; z-index: 2;
  transition: all .2s;
}
.gallery-arrow:hover { background: var(--teal); color: #fff; }
.gallery-prev { margin-right: 14px; }
.gallery-next { margin-left: 14px; }
.gallery-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.gallery-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray200); border: none; cursor: pointer;
  transition: all .3s; padding: 0;
}
.gallery-dot.active { background: var(--teal); width: 28px; border-radius: 5px; }

@media (max-width: 768px) {
  .gallery-slide { flex: 0 0 100%; }
}

/* ── IMPLEMENTACIÓN SPA ── */
.impl-section { padding: 80px 0; position: relative; overflow: hidden; }
.impl-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.impl-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, #0A1E3C 0%, #0B2041 7.14%, #0D2345 14.29%, #0E254A 21.43%, #0F274F 28.57%, #112A53 35.71%, #122C58 42.86%, #142F5D 50%, #153162 57.14%, #173367 64.29%, #18366C 71.43%, #1A3871 78.57%, #1B3B76 85.71%, #1C3D7B 92.86%, #1E4080 100%);
  opacity: .95;
}
.impl-inner { position: relative; z-index: 2; }
.impl-head { text-align: center; margin-bottom: 48px; }
.impl-head .section-head-label { color: var(--teal); }
.impl-head .section-title { color: #fff; }
.impl-head .section-sub { color: rgba(255,255,255,.6); margin: 10px auto 0; text-align: center; }

.impl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.impl-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 22px 20px; display: flex; flex-direction: column; gap: 10px;
}
.impl-check-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(26,155,215,.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.impl-check { font-size: 1.4rem; color: var(--gold); }
.impl-badge {
  display: inline-block; border-radius: 16777200px;
background: rgba(253, 199, 0, 0.20); color:#FDC700;
  font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 50px;
  align-self: flex-start;
}
.impl-card h4 { color: #fff; font-size: .92rem; font-weight: 700; margin: 0; }
.impl-card p  { color: rgba(255,255,255,.6); font-size: .8rem; line-height: 22.75px; margin: 0; }

.impl-stats {
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; margin-top: 52px; padding-top: 40px; gap: 16px;
}
.impl-stat__num { font-family: 'Avenir', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.impl-stat__label { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: 8px; }

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

/* ── ACTIVIDADES DEPORTES ── */
.activities-section { padding: 80px 0; background: var(--gray50); }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.activity-card { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow); aspect-ratio: 1/1; }
.activity-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.activity-card:hover img { transform: scale(1.05); }

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

/* ── CLUB CATILLO ── */
.club-section { padding: 80px 0; position: relative; overflow: hidden; }
.club-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.club-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, #0A1E3C 0%, #0B2041 7.14%, #0D2345 14.29%, #0E254A 21.43%, #0F274F 28.57%, #112A53 35.71%, #122C58 42.86%, #142F5D 50%, #153162 57.14%, #173367 64.29%, #18366C 71.43%, #1A3871 78.57%, #1B3B76 85.71%, #1C3D7B 92.86%, #1E4080 100%);
  opacity: .95;
}
.club-inner { position: relative; z-index: 2; }
.club-head { text-align: center; margin-bottom: 40px; }
.club-head .section-head-label { color: var(--teal); }
.club-head .section-title { color: #fff; }
.club-head .section-sub { color: rgba(255,255,255,.6); margin: 10px auto 0; text-align: center; }
.club-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.club-card { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-lg); }
.club-card--wide { grid-column: 1 / -1; aspect-ratio: 16/5; }
.club-card--sm   { aspect-ratio: 1/1; }
.club-card img   { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.club-card:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .club-grid { grid-template-columns: 1fr; }
  .club-card--wide { grid-column: auto; aspect-ratio: 4/3; }
}

/* ── SPA CONTENT ROWS (interior aguas termales) ── */
.spa-section { padding: 80px 0; background: var(--gray50); }
.spa-rows { display: flex; flex-direction: column; gap: 64px; margin-top: 52px; }
.spa-row { display: flex; align-items: center; gap: 60px; }
.spa-row:nth-child(even) { flex-direction: row-reverse; }
.spa-row__text { flex: 1; color: var(--gray700); font-size: .92rem; line-height: 1.78; }
.spa-row__img { flex: 1; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.spa-row__img img { width: 100%; height: 280px; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .spa-row, .spa-row:nth-child(even) { flex-direction: column; gap: 24px; }
  .spa-row__img img { height: 220px; }
}

/* ── MENU GALLERY (interior restaurant) ── */
.menu-section { padding: 80px 0 60px; }
.menu-section + .menu-section { padding-top: 0; }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.menu-card { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow); aspect-ratio: 1 / 1; max-width: 329px; max-height: 336px; }
.menu-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; display: block; }
.menu-card:hover img { transform: scale(1.06); }
.menu-card .exp-overlay { background: linear-gradient(to top, rgba(5,18,45,.88) 0%, rgba(5,18,45,.15) 60%, transparent 100%); padding: 16px 16px; }
.menu-card .exp-overlay h3 { font-size: .92rem; margin-bottom: 4px; }
.menu-card .exp-overlay p { color: rgba(255,255,255,.7); font-size: .76rem; line-height: 1.45; margin: 0; }
@media (max-width: 768px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ── ROOMS LIST (interior habitaciones) ── */
.rooms-list { padding: 80px 0; background: var(--gray50); }
.room-item {
  display: flex; align-items: stretch;
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
  margin-bottom: 28px;
}
.room-item:last-child { margin-bottom: 0; }
/* Pares: imagen a la derecha */
.room-item:nth-child(even) { flex-direction: row-reverse; }
.room-item__img { width: 40%; flex-shrink: 0; }
.room-item__img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 280px; }
.room-item__body { flex: 1; padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.room-item__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.room-item__desc { color: var(--gray500); font-size: .88rem; line-height: 1.72; margin-bottom: 22px; max-width: 520px; }
.room-item__accesorios { color: var(--teal); font-size: .82rem; font-weight: 600; margin-bottom: 16px; }
.room-item__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-top: auto; }
.room-item__amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.room-item__amenity { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--gray700); }
.room-item__amenity i { color: var(--teal); width: 18px; text-align: center; flex-shrink: 0; font-size: .9rem; }
@media (max-width: 768px) {
  .room-item, .room-item:nth-child(even) { flex-direction: column; }
  .room-item__img { width: 100%; }
  .room-item__img img { min-height: 220px; }
  .room-item__body { padding: 24px 22px; }
  .room-item__bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .room-item__amenities { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-row { grid-template-columns: 1fr 1fr; }
  .club-row { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .primary-nav { display: none; }
  .nav-actions .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .features-row { grid-template-columns: 1fr; }
  .club-row { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .reserva-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
/* Menú mobile: panel que cae desde el navbar */
@media (max-width: 768px) {
  .navbar.menu-open .primary-nav {
    display: block; position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border-top: 1px solid var(--gray200); padding: 10px 0 18px; z-index: 999;
  }
  .navbar.menu-open .primary-nav ul.menu { flex-direction: column; gap: 0; align-items: stretch; }
  .navbar.menu-open .primary-nav ul.menu > li > a { padding: 13px 28px; font-size: .92rem; border-bottom: 1px solid var(--gray100); }
  .navbar.menu-open .primary-nav ul.menu > li:last-child > a { border-bottom: none; }
}
@media (max-width: 540px) {
  .exp-grid, .plan-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .booking-inner { flex-direction: column; }
  .booking-btn { width: 100%; justify-content: center; }
  .test-stats { gap: 22px; }
}
