/* ══════════════════════════════════════════════════════════════
   SKYREEF COZUMEL — STYLESHEET COMPLETO
   Versión optimizada: mobile-first, responsive, premium
══════════════════════════════════════════════════════════════ */

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

:root {
  --azul:       #005F8E;
  --azul-deep:  #003B5C;
  --turquesa:   #00B4D8;
  --turq-light: #48CAE4;
  --coral:      #FF6B6B;
  --oro:        #F2A71B;
  --arena:      #F5F0E8;
  --noche:      #0A1E30;
  --blanco:     #FAFEFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--blanco);
  color: var(--noche);
  overflow-x: hidden;
}

/* ── Language system ── */
.t-en { display: none; }
body.lang-en .t-es { display: none; }
body.lang-en .t-en { display: inline; }


/* ══════════════════════════════════════════════════════════════
   NAVEGACIÓN
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 30, 48, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  height: 82px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Links desktop ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--turq-light);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--turquesa);
}

/* ── Derecha del nav: social + lang + hamburger ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Redes sociales ── */
.nav-social {
    display: flex !important;
    align-items: center;
    gap: 6px;
  }

.nav-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.78;
  flex-shrink: 0;
}

.nav-social-btn:hover {
  transform: scale(1.15);
  opacity: 1;
}

.nav-social-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.nav-social-fb {
  background: #1877F2;
  color: white;
}

.nav-social-viator {
  background-image: url("../images/viator-logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #34E0A1;
}

/* ── Selector de idioma ── */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 4px 6px;
  flex-shrink: 0;
}

.nav-lang a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 7px;
  border-radius: 14px;
  line-height: 1;
}

.nav-lang a:hover {
  color: white;
}

.nav-lang a.lang-active {
  color: var(--noche);
  background: var(--turquesa);
  font-weight: 800;
}

.nav-lang .lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  margin: 0 1px;
}

/* ── WhatsApp nav button ── */
.nav-wsp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-wsp svg {
  width: 14px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   HAMBURGUESA
══════════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ══════════════════════════════════════════════════════════════
   MENÚ MÓVIL DESPLEGABLE
══════════════════════════════════════════════════════════════ */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(8, 22, 38, 0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  padding: 8px 0 24px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 15px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.nav-mobile a:hover {
  color: var(--turquesa);
  background: rgba(0, 180, 216, 0.05);
  padding-left: 36px;
}

.nav-mobile a:last-of-type {
  border-bottom: none;
}

/* Footer del menú móvil */
.nav-mobile-footer {
  margin-top: 20px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Selector de idioma dentro del menú móvil */
.nav-mobile-lang {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 4px 6px;
}

.nav-mobile-lang a {
  display: inline-block !important;
  padding: 4px 10px !important;
  border-bottom: none !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.45) !important;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s !important;
  padding-left: 10px !important;
}

.nav-mobile-lang a:hover {
  color: white !important;
  padding-left: 10px !important;
  background: none !important;
}

.nav-mobile-lang a.mob-lang-active {
  color: var(--noche) !important;
  background: var(--turquesa) !important;
  padding-left: 10px !important;
}

.nav-mobile-lang .lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  padding: 0 1px;
}

/* Redes sociales en menú móvil */
.nav-mobile-social {
  display: flex;
  align-items: center;
  gap: 8px;
}


/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}

.slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.3s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-1 { background-image: url('../images/hero-skyreef-main.jpg'); background-color: #004e7c; }
.slide-2 { background-image: url('../images/hero-beachfront-experience.jpg'); background-color: #2a5f2e; }
.slide-3 { background-image: url('../images/hero-caribbean-water.jpg'); background-color: #00638a; }
.slide-4 { background-image: url('../images/hero-sunset-dining.jpg'); background-color: #1a0f00; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 30, 48, 0.5) 0%,
    rgba(10, 30, 48, 0.22) 40%,
    rgba(10, 30, 48, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(10, 30, 48, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 8.5vw, 88px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

.hero-title em {
  font-style: italic;
  color: var(--turq-light);
}

.hero-tagline {
  font-size: clamp(13px, 2.2vw, 17px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 42px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-tagline strong {
  color: var(--oro);
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Botones ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--turquesa);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.45);
  white-space: nowrap;
}

.btn-primary:hover {
  background: #0099ba;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 180, 216, 0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ── Dots del slideshow ── */
.slide-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--turq-light);
  transform: scale(1.45);
}

/* ── Wave y scroll hint ── */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce 2s infinite;
}

.scroll-hint svg {
  width: 16px;
}

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


/* ══════════════════════════════════════════════════════════════
   SECCIÓN COMÚN — HEADER Y LABELS
══════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header-tight {
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--turquesa);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 900;
  color: var(--noche);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--azul);
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════════════════════ */
.servicios {
  padding: 90px 24px 80px;
  background: var(--arena);
  position: relative;
  overflow: hidden;
}

.servicios::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.srv-card {
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.12);
}

.srv-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background-size: cover;
  background-position: center;
}

.srv-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 30, 48, 0.65) 0%, transparent 55%);
}

.srv-snorkel     .srv-img { background-image: url('../images/snorkel-service-card.jpg');     background-color: #005f8e; }
.srv-playa       .srv-img { background-image: url('../images/snorkel-beach-access.jpg');       background-color: #00638a; }
.srv-bar         .srv-img { background-image: url('../images/menu-bar-service.jpg');           background-color: #7a4000; }
.srv-restaurante .srv-img { background-image: url('../images/about-food-fresh-seafood.jpg'); background-color: #3a1a00; }
.srv-bebida      .srv-img { background-image: url('../images/menu-welcome-drink.jpg');      background-color: #004e6e; }
.srv-tequila     .srv-img { background-image: url('../images/menu-tequila-tasting.jpg');     background-color: #6b3600; }
.srv-masaje      .srv-img { background-image: url('../images/menu-beach-massage.jpg');      background-color: #00455e; }
.srv-ilimitado   .srv-img { background-image: url('../images/about-all-inclusive-value.jpg');   background-color: #5c2800; }

.srv-badge {
  position: relative;
  z-index: 2;
  background: var(--turquesa);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
}

.srv-badge.gold  { background: var(--oro); color: var(--noche); }
.srv-badge.coral { background: var(--coral); }

.srv-body {
  padding: 22px 22px 26px;
}

.srv-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--azul-deep);
  margin-bottom: 8px;
}

.srv-body p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════════
   ARRECIFE — SNORKEL
══════════════════════════════════════════════════════════════ */
.arrecife {
  background: var(--noche);
  padding: 80px 24px;
}

.arrecife .section-label  { color: var(--turq-light); }
.arrecife .section-title  { color: white; }
.arrecife .section-title em { color: var(--turq-light); }
.arrecife .section-desc   { color: rgba(255, 255, 255, 0.6); margin-bottom: 48px; }

.reef-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.reef-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.reef-cell {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}

.reef-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.reef-cell-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s;
}

.reef-cell:hover .reef-cell-inner {
  transform: scale(1.06);
}

.reef-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 48, 0);
  border-radius: 14px;
  transition: background 0.3s;
}

.reef-cell:hover::after {
  background: rgba(0, 180, 216, 0.12);
}

.rc-1 .reef-cell-inner { background-image: url('../images/reef-gallery-01.jpg'); background-color: #0077a8; }
.rc-2 .reef-cell-inner { background-image: url('../images/reef-gallery-02.jpg'); background-color: #005f8e; }
.rc-3 .reef-cell-inner { background-image: url('../images/reef-front-skyreef.jpg'); background-color: #00455e; }
.rc-4 .reef-cell-inner { background-image: url('../images/reef-gallery-04.jpg'); background-color: #003b5c; }
.rc-5 .reef-cell-inner { background-image: url('../images/reef-gallery-05.jpg'); background-color: #006a8e; }
.rc-6 .reef-cell-inner { background-image: url('../images/reef-gallery-06.jpg'); background-color: #0088aa; }


/* ══════════════════════════════════════════════════════════════
   GALERÍA
══════════════════════════════════════════════════════════════ */
.galeria {
  padding: 80px 24px;
  background: var(--arena);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.g-cell {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}

.g-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.g-cell-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.g-cell:hover .g-cell-inner {
  transform: scale(1.05);
}

.g-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 48, 0);
  border-radius: 14px;
  transition: background 0.3s;
}

.g-cell:hover::after {
  background: rgba(10, 30, 48, 0.18);
}

.gc-1  .g-cell-inner { background-image: url('../images/hero-skyreef-main.jpg');  background-color: #006a8e; }
.gc-2  .g-cell-inner { background-image: url('../images/gallery-home-02.jpg');  background-color: #1a0f00; }
.gc-3  .g-cell-inner { background-image: url('../images/gallery-home-03.jpg');  background-color: #0e1a28; }
.gc-4  .g-cell-inner { background-image: url('../images/gallery-home-04.jpg');  background-color: #00638a; }
.gc-5  .g-cell-inner { background-image: url('../images/menu-specialty-dish-01.jpg');  background-color: #5c2800; }
.gc-6  .g-cell-inner { background-image: url('../images/gallery-home-06.jpg');  background-color: #6b3600; }
.gc-7  .g-cell-inner { background-image: url('../images/gallery-home-07.jpg');  background-color: #00455e; }
.gc-8  .g-cell-inner { background-image: url('../images/gallery-home-08.jpg');  background-color: #1a0f00; }
.gc-9  .g-cell-inner { background-image: url('../images/gallery-home-09.jpg');  background-color: #cc6600; }
.gc-10 .g-cell-inner { background-image: url('../images/gallery-home-10.jpg'); background-color: #c05000; }
.gc-11 .g-cell-inner { background-image: url('../images/gallery-home-11.jpg'); background-color: #5c2800; }
.gc-12 .g-cell-inner { background-image: url('../images/gallery-home-12.jpg'); background-color: #3a1a00; }
.gc-13 .g-cell-inner { background-image: url('../images/gallery-home-13.jpg'); background-color: #006a8e; }
.gc-14 .g-cell-inner { background-image: url('../images/about-hero-skyreef.jpg'); background-color: #0077a8; }
.gc-15 .g-cell-inner { background-image: url('../images/gallery-home-15.jpg'); background-color: #6b3600; }
.gc-16 .g-cell-inner { background-image: url('../images/gallery-home-16.jpg'); background-color: #00455e; }

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

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(0, 95, 142, 0.4);
  color: var(--azul);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.btn-outline-dark:hover {
  border-color: var(--azul);
  background: rgba(0, 95, 142, 0.05);
}


/* ══════════════════════════════════════════════════════════════
   RESEÑAS
══════════════════════════════════════════════════════════════ */
.reseñas-section {
  background: linear-gradient(180deg, #EAF8FC 0%, #D0F0F8 100%);
  border-top: 5px solid var(--turquesa);
  padding: 80px 0 72px;
  overflow: hidden;
}

.reseñas-section .section-header {
  margin-bottom: 48px;
  padding: 0 24px;
}

.reseñas-section .section-label  { color: var(--azul); }
.reseñas-section .section-title  { color: var(--noche); }
.reseñas-section .section-title em { color: var(--azul); }
.reseñas-section .section-desc   { color: rgba(10, 30, 48, 0.65); }

.reviews-track-wrap {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.rev-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--azul);
  background: white;
  color: var(--azul);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.rev-nav:hover {
  background: var(--azul);
  color: white;
}

.reviews-viewport {
  flex: 1;
  overflow: hidden;
  margin: 0 12px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.rev-card {
  flex-shrink: 0;
  background: white;
  border-radius: 18px;
  padding: 26px 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 95, 142, 0.09);
  border: 1px solid rgba(0, 180, 216, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rev-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
  color: white;
}

.rev-meta { flex: 1; min-width: 0; }

.rev-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--noche);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rev-date  { font-size: 11px; color: rgba(10, 30, 48, 0.42); }
.rev-stars { font-size: 13px; letter-spacing: 1px; color: #F59E0B; }

.rev-text {
  font-size: 13px;
  color: rgba(10, 30, 48, 0.70);
  line-height: 1.65;
  font-weight: 400;
  flex: 1;
}

.rev-source {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(10, 30, 48, 0.32);
}

.reviews-progress-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.reviews-progress-bar {
  width: 200px;
  height: 3px;
  background: rgba(0, 95, 142, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.reviews-progress-fill {
  height: 100%;
  background: var(--azul);
  border-radius: 4px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.reviews-progress-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(10, 30, 48, 0.38);
  letter-spacing: 1px;
  min-width: 36px;
  text-align: right;
}

.reseñas-badge {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(10, 30, 48, 0.42);
  letter-spacing: 1px;
}

.reseñas-badge strong {
  color: var(--azul);
}


/* ══════════════════════════════════════════════════════════════
   RESERVACIONES — FORMULARIO
══════════════════════════════════════════════════════════════ */
.reserva-section {
  background: var(--noche);
  padding: 90px 24px;
}

.reserva-section .section-label    { color: var(--turq-light); }
.reserva-section .section-title    { color: white; }
.reserva-section .section-title em { color: var(--turq-light); }

.reserva-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.reserva-form-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 24px;
  padding: 36px 32px;
}

.reserva-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.reserva-form-box p.form-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--turquesa);
  background: rgba(0, 180, 216, 0.08);
}

.form-group select option {
  background: var(--noche);
  color: white;
}

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

.btn-wsp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #25D366;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 17px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-wsp:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-wsp svg {
  width: 22px;
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 14px;
  line-height: 1.5;
}

.reserva-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 18px;
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-card-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--turq-light);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  line-height: 1.6;
}

.info-card a,
.info-highlight {
  color: var(--turq-light);
  font-weight: 600;
  text-decoration: none;
}

.map-box {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 180, 216, 0.2);
  height: 240px;
}

.map-box iframe {
  display: block;
  border: 0;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: #060f18;
  padding: 36px 24px;
  text-align: center;
}

.footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.footer a:hover {
  color: var(--turq-light);
}


/* ══════════════════════════════════════════════════════════════
   MEDIA QUERIES — RESPONSIVE DESIGN
══════════════════════════════════════════════════════════════ */

/* ── Tablet grande / desktop pequeño ── */
@media (max-width: 1050px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Tablet / móvil grande (900px) ── */
@media (max-width: 900px) {
  /* Ocultar links de navegación, mostrar hamburguesa */
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }

  /* Redes sociales del navbar: ocultar en móvil (las del footer del menú quedan eliminadas del HTML) */
  .nav-social    { display: none; }

  /* nav-lang: SIEMPRE visible — NO tiene display:none aquí */

  /* WhatsApp: colapsa a solo ícono (sin texto) */
  .nav-wsp {
    font-size: 0;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    flex-shrink: 0;
  }
  .nav-wsp svg {
    width: 17px;
    flex-shrink: 0;
  }
  .nav-wsp-text { display: none; }

  .nav-inner {
  max-width: 1440px;
  padding: 0 38px;
}

  .nav-logo img {
    height: 52px;
  }

  .nav-mobile {
    top: 64px;
  }

  .nav-right {
    gap: 8px;
  }
}

/* ── Tablet mediana (768px) ── */
@media (max-width: 768px) {
  .hero-content   { padding: 0 20px; }
  .hero-eyebrow   { font-size: 10px; letter-spacing: 3px; padding: 8px 18px; margin-bottom: 18px; }
  .hero-title     { font-size: clamp(36px, 9vw, 60px); margin-bottom: 16px; }
  .hero-tagline   { font-size: 12px; letter-spacing: 2px; margin-bottom: 32px; }
  .btn-primary,
  .btn-ghost      { font-size: 12px; padding: 14px 26px; }
  .section-title  { font-size: clamp(26px, 6vw, 40px); }
  .section-desc   { font-size: 15px; }
  .reserva-layout { grid-template-columns: 1fr; }
  .reserva-form-box { padding: 28px 24px; }
  .reef-photos    { grid-template-columns: repeat(2, 1fr); }
  .reef-wide      { grid-column: span 2; aspect-ratio: 2/1; }
}

/* ── Móvil mediano (600px) ── */
@media (max-width: 600px) {
  .nav-inner {
    padding: 0 14px;
    height: 60px;
  }

  .nav-logo img  { height: 34px; }
  .nav-mobile    { top: 60px; }

  .nav-hamburger {
    width: 36px;
    height: 36px;
  }

  /* WhatsApp aún más compacto */
  .nav-wsp {
    width: 34px;
    height: 34px;
  }

  .nav-right { gap: 6px; }

  /* nav-lang: achica el texto pero sigue visible */
  .nav-lang {
    padding: 3px 5px;
  }
  .nav-lang a {
    font-size: 10px;
    padding: 3px 6px;
  }

  .hero { padding-top: 60px; min-height: 580px; }
  .hero-content   { padding: 0 18px; }
  .hero-eyebrow   { font-size: 9px; letter-spacing: 2.5px; padding: 7px 14px; margin-bottom: 14px; }
  .hero-title     { font-size: clamp(34px, 10vw, 52px); margin-bottom: 14px; }
  .hero-tagline   { font-size: 11px; letter-spacing: 1.8px; margin-bottom: 28px; }
  .hero-ctas      { gap: 10px; flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-ghost      { font-size: 12px; padding: 14px 28px; width: 100%; max-width: 280px; justify-content: center; }

  .servicios      { padding: 60px 16px 56px; }
  .srv-grid       { grid-template-columns: 1fr; gap: 16px; }
  .section-header { margin-bottom: 40px; }
  .section-title  { font-size: clamp(24px, 7vw, 34px); }
  .section-desc   { font-size: 14px; }

  .arrecife       { padding: 60px 16px; }
  .reef-photos    { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .reef-wide      { grid-column: span 1; aspect-ratio: 1; }

  .galeria        { padding: 60px 16px; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .g-wide         { grid-column: span 1 !important; aspect-ratio: 1 !important; }

  .reseñas-section { padding: 60px 0 52px; }
  .rev-nav         { width: 36px; height: 36px; font-size: 22px; }
  .reviews-track-wrap { padding: 0 10px; }
  .reviews-viewport   { margin: 0 8px; }

  .reserva-section    { padding: 60px 16px; }
  .reserva-form-box   { padding: 24px 18px; }
  .reserva-form-box h3 { font-size: 22px; }
  .form-row           { grid-template-columns: 1fr; }
  .btn-wsp            { font-size: 13px; padding: 16px 20px; }

  .nav-mobile a       { padding: 14px 24px; font-size: 13px; }
  .nav-mobile-footer  { padding: 16px 24px 4px; }
  .scroll-hint        { display: none; }
  .slide-dots         { bottom: 60px; }
}

/* ── WhatsApp del menú móvil (nav-wsp-mobile) — restablecer estilos completos ── */
.nav-wsp-mobile {
  display: none !important;  
  font-size: 13px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 20px !important;
  padding: 10px 18px !important;
  gap: 8px !important;
}
.nav-wsp-mobile svg {
  width: 16px !important;
}
.nav-wsp-mobile span {
  display: inline !important;
  font-size: 13px !important;
}

/* ── Móvil pequeño (400px) ── */
@media (max-width: 400px) {
  .nav-inner    { padding: 0 10px; }
  .nav-logo img { height: 30px; }

  .nav-wsp {
    width: 32px;
    height: 32px;
  }

  .nav-lang a   { font-size: 9.5px; padding: 2px 5px; }

  .hero-title   { font-size: 30px; }
  .hero-tagline { font-size: 10px; letter-spacing: 1.5px; }

  .btn-primary,
  .btn-ghost    { max-width: 100%; padding: 14px 20px; }

  .form-group input,
  .form-group select { font-size: 16px; }
}
.nav-logo {
  margin-right: auto;
}

.nav-right {
  margin-left: auto;
}

/* ══════════════════════════════════════════════════════════════
   MENU PAGE — migración limpia etapa 1
══════════════════════════════════════════════════════════════ */
.menu-page {
  background: var(--arena);
}

.menu-hero {
  position: relative;
  padding: 150px 24px 86px;
  background:
    linear-gradient(to bottom, rgba(10, 30, 48, 0.74), rgba(10, 30, 48, 0.96)),
    url("../images/about-hero-skyreef.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.menu-hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  background: rgba(0, 180, 216, 0.25);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 30px;
  padding: 7px 18px;
  margin-bottom: 16px;
}

.menu-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  color: white;
}

.menu-hero-title em,
.menu-page .section-title em {
  color: var(--oro);
  font-style: italic;
}

.menu-page .reserva-section .section-title em {
  color: var(--turq-light);
}

.menu-nav-bar {
  position: sticky;
  top: 82px;
  z-index: 90;
  background: var(--arena);
  border-bottom: 1px solid rgba(10, 30, 48, 0.08);
  padding: 0 24px;
}

.menu-nav-inner {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 0;
}

.menu-nav-inner::-webkit-scrollbar {
  display: none;
}

.menu-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  background: white;
  border: 1px solid rgba(10, 30, 48, 0.12);
  color: var(--azul);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 30px;
  padding: 9px 18px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.menu-nav-btn:hover {
  background: var(--azul);
  color: white;
  border-color: var(--azul);
}

.menu-philosophy,
.menu-digital-section,
.menu-gallery-section,
.menu-reviews-section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 24px 64px;
}

.menu-philosophy {
  text-align: center;
}

.menu-philosophy-inner {
  max-width: 780px;
  margin: 0 auto;
}

.menu-digital-section {
  padding-top: 40px;
}

.menu-display {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.menu-display-en {
  display: none;
}

body.lang-en .menu-display-es {
  display: none;
}

body.lang-en .menu-display-en {
  display: grid;
}

.menu-card {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.menu-card img {
  display: block;
  width: 100%;
  height: auto;
}

.download-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(10, 30, 48, 0.06);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--azul);
  color: var(--azul);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 32px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn-download::before {
  content: "↓";
  font-size: 14px;
}

.btn-download:hover {
  background: var(--azul);
  color: white;
  box-shadow: 0 10px 25px rgba(0, 95, 142, 0.2);
}

.pairing-box {
  max-width: 620px;
  margin: 32px auto 0;
  background: linear-gradient(135deg, var(--azul-deep) 0%, #005580 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 63, 92, 0.18);
  display: flex;
  text-align: left;
}

.pairing-accent {
  width: 6px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, var(--oro), #e8920a);
}

.pairing-body {
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.pairing-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.pairing-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.pairing-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.menu-video-section {
  background: var(--noche);
  padding: 82px 24px;
  text-align: center;
}

.menu-video-section .section-label {
  color: var(--turq-light);
}

.menu-video-section .section-title {
  color: white;
}

.menu-video-section .section-desc {
  color: rgba(255, 255, 255, 0.56);
}

.menu-video-wrapper {
  max-width: 860px;
  margin: 38px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.menu-video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.menu-gallery-section {
  text-align: center;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 38px;
}

.food-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.food-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.food-item:hover img {
  transform: scale(1.06);
}

.chef-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: linear-gradient(135deg, var(--oro), #e8920a);
  color: white;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: 0 4px 12px rgba(242, 167, 27, 0.45);
}

.menu-reviews-section {
  max-width: none;
  background: linear-gradient(160deg, #e8f7fb 0%, #f0fafe 42%, #fafeff 100%);
}

.menu-reviews-section .section-header,
.menu-review-grid,
.menu-reviews-carousel {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.menu-reviews-carousel {
  display: grid;
  gap: 22px;
}

.menu-reviews-viewport {
  overflow: hidden;
}

.menu-review-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

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

.menu-review-card {
  background: white;
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 6px 28px rgba(0, 95, 142, 0.07);
  text-align: left;
  flex: 0 0 auto;
}

.menu-review-card p:not(.review-stars) {
  font-size: 13px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 18px;
}

.menu-review-card strong {
  color: var(--azul-deep);
  font-size: 12px;
}

.review-stars {
  color: var(--oro);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.menu-review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.menu-review-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 95, 142, 0.18);
  border-radius: 50%;
  background: white;
  color: var(--azul);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.menu-review-controls button:hover {
  background: var(--azul);
  color: white;
  transform: translateY(-1px);
}

.menu-review-controls span {
  min-width: 54px;
  color: rgba(10, 30, 48, 0.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: center;
}

.menu-packages-banner,
.client-photos-section {
  background: var(--noche);
  padding: 82px 24px;
  text-align: center;
}

.menu-packages-banner {
  background: linear-gradient(160deg, #03223a 0%, #00456e 50%, #005580 100%);
}

.menu-packages-inner,
.client-photos-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.menu-packages-banner .section-label,
.client-photos-section .section-label {
  color: var(--turq-light);
}

.menu-packages-banner .section-title,
.client-photos-section .section-title {
  color: white;
}

.menu-packages-banner .section-desc,
.client-photos-section .section-desc {
  color: rgba(255, 255, 255, 0.62);
}

.packages-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 42px 0 36px;
  text-align: left;
}

.pkg-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px 22px;
}

.pkg-card-featured {
  background: rgba(0, 180, 216, 0.11);
  border-color: rgba(0, 180, 216, 0.36);
}

.pkg-card-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 14px;
}

.pkg-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.25;
  color: white;
  margin-bottom: 18px;
}

.pkg-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.pkg-card li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}

.pkg-card li::before {
  content: "•";
  color: var(--turq-light);
  margin-right: 8px;
}

.btn-packages {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--oro);
  color: var(--noche);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 36px;
  box-shadow: 0 10px 30px rgba(242, 167, 27, 0.32);
}

.client-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.client-photos-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .menu-nav-bar {
    top: 70px;
  }

  .packages-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-review-grid {
    grid-template-columns: 1fr;
  }
}

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

  .food-grid,
  .client-photos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .menu-hero {
    padding: 124px 18px 74px;
  }

  .menu-nav-bar {
    top: 60px;
    padding: 0 16px;
  }

  .menu-philosophy,
  .menu-digital-section,
  .menu-gallery-section,
  .menu-reviews-section,
  .menu-packages-banner,
  .client-photos-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pairing-body {
    flex-direction: column;
  }

  .packages-cards {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   PACKAGES PAGE — migración limpia etapa 1
══════════════════════════════════════════════════════════════ */
.packages-page {
  background: var(--arena);
}

.packages-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 136px 24px 92px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(10, 30, 48, 0.62), rgba(10, 30, 48, 0.88)),
    url("../images/package-hero-skyreef-banner.jpg");
  background-size: cover;
  background-position: center 40%;
}

.packages-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.packages-hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  background: rgba(0, 180, 216, 0.25);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 30px;
  padding: 7px 20px;
  margin-bottom: 20px;
}

.packages-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}

.packages-hero-title em {
  color: var(--turq-light);
  font-style: italic;
}

.packages-hero-subtitle {
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  line-height: 1.75;
}

.packages-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.packages-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--oro);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 34px;
  box-shadow: 0 8px 28px rgba(242, 167, 27, 0.38);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.packages-hero-cta:hover {
  background: #e8920a;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(242, 167, 27, 0.5);
}

.packages-hero-cta-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.packages-hero-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  box-shadow: none;
}

.packages-section,
.packages-gallery {
  padding: 82px 24px 72px;
}

.packages-intro,
.packages-gallery-intro {
  max-width: 680px;
  margin: 0 auto 58px;
  text-align: center;
}

.packages-grid-main {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.package-card {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}

.package-featured {
  border: 2px solid var(--turquesa);
  box-shadow: 0 8px 40px rgba(0, 180, 216, 0.12);
}

.package-photo {
  position: relative;
  height: 225px;
  overflow: hidden;
}

.package-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 30, 48, 0.72), rgba(10, 30, 48, 0.08) 62%);
}

.package-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.package-card:hover .package-photo img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--oro);
  color: white;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 6px 14px;
  box-shadow: 0 4px 12px rgba(242, 167, 27, 0.4);
}

.package-price {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 2px;
  color: white;
  text-align: right;
}

.package-price span {
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.package-price sup {
  font-size: 15px;
}

.package-price small {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.76);
}

.package-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}

.package-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--azul-deep);
  margin-bottom: 7px;
}

.package-featured .package-body h3 {
  color: var(--azul);
}

.package-tagline {
  font-size: 12px;
  color: #778;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
}

.package-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin-bottom: 24px;
  flex: 1;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  color: #445;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  padding: 9px 0;
}

.package-list li::before {
  content: "✓";
  color: var(--turquesa);
  font-weight: 900;
}

.package-list li:last-child {
  border-bottom: 0;
}

.package-body blockquote {
  background: rgba(0, 180, 216, 0.05);
  border-left: 3px solid var(--turquesa);
  border-radius: 0 10px 10px 0;
  color: #556;
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 22px;
  padding: 12px 16px;
}

.package-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--azul);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 22px;
  box-shadow: 0 6px 20px rgba(0, 95, 142, 0.25);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.package-btn:hover {
  background: var(--azul-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 95, 142, 0.35);
}

.package-featured .package-btn {
  background: var(--turquesa);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

.package-last .package-btn {
  background: linear-gradient(135deg, var(--oro), #e8920a);
  box-shadow: 0 6px 20px rgba(242, 167, 27, 0.35);
}

.packages-amenities {
  background: var(--noche);
  padding: 64px 24px;
}

.packages-amenities-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.packages-amenities .section-label {
  color: var(--turq-light);
}

.packages-amenities .section-title {
  color: white;
}

.packages-amenities .section-title em {
  color: var(--turq-light);
}

.packages-amenities .section-desc {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 40px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-align: center;
}

.amenity-icon {
  font-size: 28px;
  line-height: 1;
}

.packages-gallery-mosaic {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 10px;
}

.packages-gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.packages-gallery-mosaic .gallery-wide {
  grid-column: span 2;
}

.packages-page .reserva-section .section-title em {
  color: var(--turq-light);
}

@media (max-width: 900px) {
  .packages-grid-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .packages-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }

  .packages-gallery-mosaic .gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .packages-hero {
    padding: 124px 18px 80px;
  }

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

  .packages-hero-cta {
    width: 100%;
    max-width: 280px;
  }

  .packages-section,
  .packages-gallery,
  .packages-amenities {
    padding-left: 16px;
    padding-right: 16px;
  }

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

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

/* ══════════════════════════════════════════════════════════════
   PROMOTIONS PAGE — migración limpia etapa 1
══════════════════════════════════════════════════════════════ */
.promotions-page {
  background: var(--arena);
}

.promotions-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 136px 24px 88px;
  background:
    linear-gradient(to bottom, rgba(10, 30, 48, 0.62), rgba(10, 30, 48, 0.78)),
    url("../images/promo-hero-live-music.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.promotions-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.promotions-hero-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.96);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.promotions-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.38);
}

.promotions-hero-title em {
  color: var(--turq-light);
  font-style: italic;
}

.promotions-hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.promotions-nav-bar {
  position: sticky;
  top: 82px;
  z-index: 90;
  background: var(--arena);
  border-bottom: 1px solid rgba(10, 30, 48, 0.08);
  padding: 0 24px;
}

.promotions-nav-inner {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 0;
}

.promotions-nav-inner::-webkit-scrollbar {
  display: none;
}

.promotions-nav-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  background: white;
  border: 1px solid rgba(10, 30, 48, 0.12);
  border-radius: 30px;
  color: var(--azul);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 9px 18px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.promotions-nav-inner a:hover {
  background: var(--azul);
  border-color: var(--azul);
  color: white;
}

.birthday-promo-section,
.wine-promo-section,
.locals-promo-section,
.promo-client-photos {
  padding: 88px 24px 78px;
}

.birthday-promo-section,
.locals-promo-section {
  background: var(--arena);
}

.wine-promo-section {
  background: var(--blanco);
}

.promo-section-header {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.birthday-promo-section .section-label,
.wine-promo-section .section-label {
  color: var(--oro);
}

.birthday-promo-section .section-title em,
.wine-promo-section .section-title em {
  color: var(--oro);
}

.promo-flyers {
  max-width: 520px;
  margin: 0 auto 44px;
}

.promo-flyers img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.promo-flyers .promo-flyer-en,
.wine-promo-image .wine-img-en,
body.lang-en .promo-flyers .promo-flyer-es,
body.lang-en .wine-promo-image .wine-img-es {
  display: none;
}

body.lang-en .promo-flyers .promo-flyer-en,
body.lang-en .wine-promo-image .wine-img-en {
  display: block;
}

.promo-steps {
  max-width: 960px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promo-steps article {
  background: white;
  border: 1px solid rgba(242, 167, 27, 0.16);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.promo-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--oro);
  border-radius: 50%;
  color: white;
  font-weight: 900;
  margin-bottom: 14px;
}

.promo-steps h3 {
  font-family: 'Playfair Display', serif;
  color: var(--azul-deep);
  font-size: 19px;
  margin-bottom: 8px;
}

.promo-steps p,
.local-promo-body p,
.local-promo-body small {
  color: #555;
  font-size: 13px;
  line-height: 1.65;
}

.promo-conditions {
  max-width: 760px;
  margin: 0 auto 42px;
  background: white;
  border-left: 4px solid var(--oro);
  border-radius: 20px;
  padding: 30px 34px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
}

.promo-conditions h3 {
  color: var(--oro);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.promo-conditions ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.promo-conditions li {
  color: #444;
  font-size: 13px;
  line-height: 1.55;
}

.promo-conditions li::before {
  content: "•";
  color: var(--oro);
  font-weight: 900;
  margin-right: 8px;
}

.promo-centered-cta {
  text-align: center;
}

.promo-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, opacity 0.2s;
}

.promo-whatsapp-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.promo-photo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: 200px;
}

.promo-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-music-section {
  background: var(--noche);
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}

.live-music-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/menu-specialty-dish-02.jpg") center/cover;
  opacity: 0.1;
}

.live-music-layout,
.wine-promo-layout {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.live-music-section .section-label {
  color: var(--turq-light);
}

.live-music-section .section-title {
  color: white;
}

.live-music-section .section-title em {
  color: var(--turq-light);
}

.live-music-section .section-desc {
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 24px;
}

.music-schedule {
  display: inline-grid;
  gap: 4px;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 14px;
  color: white;
  padding: 14px 20px;
  margin-bottom: 18px;
}

.music-schedule strong {
  color: var(--turq-light);
}

.music-free-badge {
  width: fit-content;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 20px;
  color: var(--turq-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 9px 20px;
  margin-bottom: 22px;
}

.promo-countdown {
  display: grid;
  gap: 14px;
  max-width: 440px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.promo-countdown-label {
  color: var(--turq-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.promo-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.promo-countdown-unit {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(0, 180, 216, 0.08));
  border: 1px solid rgba(72, 202, 228, 0.34);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.promo-countdown-unit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 56%);
  pointer-events: none;
}

.promo-countdown-unit strong {
  position: relative;
  z-index: 1;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.promo-countdown-unit span {
  position: relative;
  z-index: 1;
  color: var(--turq-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.music-video-wrap {
  width: min(310px, 100%);
  justify-self: center;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.music-video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
}

.wine-promo-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.wine-promo-image img {
  width: 100%;
  display: block;
}

.wine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}

.wine-tags span {
  background: rgba(0, 95, 142, 0.08);
  border: 1px solid rgba(0, 95, 142, 0.2);
  border-radius: 20px;
  color: var(--azul-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
}

.locals-cards {
  max-width: 1000px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.local-promo-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.local-promo-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}

.local-promo-body {
  padding: 26px 28px 30px;
}

.local-promo-value {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  color: var(--azul);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.local-promo-body h3 {
  font-family: 'Playfair Display', serif;
  color: var(--azul-deep);
  font-size: 23px;
  margin-bottom: 10px;
}

.local-promo-body small {
  display: block;
  color: #999;
  font-style: italic;
  margin-top: 14px;
}

.promo-client-photos {
  background: var(--noche);
}

.promo-client-photos .section-label {
  color: var(--turq-light);
}

.promo-client-photos .section-title {
  color: white;
}

.promo-client-photos .section-title em {
  color: var(--oro);
}

.promo-client-photos .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.promo-client-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.promo-client-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.promo-info-note {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 6px;
}

.promotions-page .reserva-section .section-title em {
  color: var(--turq-light);
}

@media (max-width: 900px) {
  .promotions-nav-bar {
    top: 70px;
  }

  .live-music-layout,
  .wine-promo-layout,
  .locals-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .promo-steps,
  .promo-conditions ul {
    grid-template-columns: 1fr;
  }

  .promo-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-photo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 150px;
  }

  .promo-photo-strip img:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 600px) {
  .promotions-hero {
    padding: 124px 18px 80px;
  }

  .promotions-nav-bar {
    top: 60px;
    padding: 0 16px;
  }

  .birthday-promo-section,
  .wine-promo-section,
  .locals-promo-section,
  .promo-client-photos,
  .live-music-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .promo-whatsapp-btn {
    width: 100%;
    max-width: 320px;
  }

  .promo-countdown {
    max-width: 100%;
  }

  .promo-countdown-grid {
    gap: 7px;
  }

  .promo-countdown-unit {
    min-height: 72px;
    border-radius: 13px;
  }

  .promo-countdown-unit strong {
    font-size: 26px;
  }

  .promo-countdown-unit span {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — migración limpia etapa 1
══════════════════════════════════════════════════════════════ */
.about-page {
  background: white;
}

.about-hero {
  min-height: 620px;
  padding: 170px 24px 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(10, 30, 48, 0.74), rgba(0, 59, 92, 0.58)),
    url("../images/hero-skyreef-main.jpg") center / cover no-repeat;
}

.about-hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.about-hero-label,
.about-question-tag,
.about-story-label {
  display: inline-block;
  color: var(--turq-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-hero-label {
  background: rgba(0, 180, 216, 0.18);
  border: 1px solid rgba(0, 180, 216, 0.35);
  border-radius: 30px;
  padding: 8px 22px;
  margin-bottom: 24px;
}

.about-hero-title {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
}

.about-hero-title em,
.about-story-title em,
.about-award-section em {
  color: var(--turq-light);
  font-style: italic;
}

.about-hero-sub {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.about-question-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-question-section.is-flipped .about-question-photo {
  order: 2;
}

.about-question-section.is-flipped .about-question-body {
  order: 1;
}

.about-question-photo {
  min-height: 420px;
  overflow: hidden;
}

.about-question-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-question-photo:hover img {
  transform: scale(1.04);
}

.about-question-body {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.about-question-section:nth-of-type(even) .about-question-body {
  background: var(--arena);
}

.about-question-num {
  color: rgba(0, 95, 142, 0.08);
  font-family: 'Playfair Display', serif;
  font-size: 82px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: -2px;
}

.about-question-tag {
  color: var(--turquesa);
  margin-bottom: 14px;
}

.about-question-title {
  font-family: 'Playfair Display', serif;
  color: var(--azul-deep);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.24;
  margin-bottom: 20px;
}

.about-question-copy {
  color: #445;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-quote {
  background: rgba(0, 180, 216, 0.06);
  border-left: 3px solid var(--turquesa);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
}

.about-quote p {
  color: #556;
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 8px;
}

.about-quote cite {
  color: var(--azul);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-story-section,
.about-reviews-section {
  background: var(--noche);
  padding: 100px 24px;
}

.about-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-story-label {
  margin-bottom: 16px;
}

.about-story-title {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 22px;
}

.about-story-copy {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.about-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
}

.about-stat strong {
  display: block;
  color: var(--turquesa);
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 10px;
}

.about-story-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.about-story-images img:first-child {
  grid-column: span 2;
}

.about-map-section,
.about-faq-section {
  background: var(--arena);
  padding: 100px 24px;
}

.about-map-inner,
.about-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-map-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-map-frame {
  height: 440px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.about-map-frame iframe,
.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-route-cards {
  display: grid;
  gap: 14px;
}

.about-route-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.about-route-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 14px;
  color: var(--azul);
  font-size: 13px;
  font-weight: 900;
}

.about-route-card h3 {
  color: var(--azul-deep);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 5px;
}

.about-route-card p {
  color: #556;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.about-pill {
  display: inline-block;
  margin-top: 8px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 20px;
  color: var(--azul);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
}

.about-reviews-section .section-label {
  color: var(--turq-light);
}

.about-reviews-section .section-title {
  color: white;
}

.about-reviews-section .section-title em {
  color: var(--oro);
}

.about-review-note {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  margin-top: 10px;
}

.about-review-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 28px 26px;
}

.about-review-stars {
  color: var(--oro);
  font-size: 15px;
  letter-spacing: 2px;
}

.about-review-card p {
  flex: 1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
}

.about-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-review-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.avatar-blue { background: #005F8E; }
.avatar-gold { background: #F2A71B; }
.avatar-violet { background: #8B5CF6; }
.avatar-green { background: #10B981; }
.avatar-teal { background: #059669; }
.avatar-orange { background: #D97706; }

.about-review-author strong {
  display: block;
  color: white;
  font-size: 13px;
}

.about-review-author small {
  display: block;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  margin-top: 2px;
}

.about-reviews-more {
  text-align: center;
  margin-top: 44px;
}

.about-reviews-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 30px;
  transition: border-color 0.25s, color 0.25s;
}

.about-reviews-more a:hover {
  border-color: var(--turquesa);
  color: white;
}

.about-gallery-section {
  background: white;
  padding: 100px 24px;
}

.about-gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 10px;
}

.about-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.45s;
}

.about-gallery-grid img:hover {
  transform: scale(1.03);
}

.about-award-section {
  background: linear-gradient(135deg, var(--azul-deep) 0%, #005580 100%);
  padding: 80px 24px;
  text-align: center;
}

.about-award-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-award-mark {
  display: inline-block;
  color: var(--oro);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-award-section h2 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  margin-bottom: 14px;
}

.about-award-section h2 em {
  color: var(--oro);
}

.about-award-section p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.about-award-section strong {
  display: inline-flex;
  margin-top: 24px;
  background: rgba(242, 167, 27, 0.12);
  border: 1px solid rgba(242, 167, 27, 0.4);
  border-radius: 30px;
  color: var(--oro);
  font-size: 13px;
  padding: 11px 24px;
}

.about-faq-inner {
  max-width: 760px;
}

.about-faq-item {
  border-bottom: 1px solid rgba(0, 95, 142, 0.12);
}

.about-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  color: var(--azul-deep);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 22px 0;
  text-align: left;
}

.about-faq-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  color: var(--turquesa);
  font-size: 18px;
  transition: transform 0.3s, background 0.2s, color 0.2s;
}

.about-faq-item.open .about-faq-icon {
  background: var(--turquesa);
  color: white;
  transform: rotate(45deg);
}

.about-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.about-faq-item.open .about-faq-answer {
  max-height: 360px;
}

.about-faq-answer p {
  color: #445;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  padding: 0 0 24px;
}

.about-page .reserva-section .section-title em {
  color: var(--turq-light);
}

@media (max-width: 900px) {
  .about-question-section,
  .about-story-inner,
  .about-map-grid {
    grid-template-columns: 1fr;
  }

  .about-question-section.is-flipped .about-question-photo,
  .about-question-section.is-flipped .about-question-body {
    order: unset;
  }

  .about-question-body {
    padding: 54px 32px;
  }

  .about-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .about-hero {
    min-height: 560px;
    padding: 132px 18px 92px;
  }

  .about-hero-label,
  .about-question-tag,
  .about-story-label {
    letter-spacing: 3px;
  }

  .about-question-body,
  .about-story-section,
  .about-map-section,
  .about-reviews-section,
  .about-gallery-section,
  .about-faq-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-stats,
  .about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-gallery-grid {
    grid-auto-rows: 180px;
  }

  .about-story-images {
    grid-template-rows: 220px 170px;
  }
}
