/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --secondary: #00f5ff;
  --dark: #000000;
  --dark2: #080808;
  --dark3: #111111;
  --gray: #6b7280;
  --white: #ffffff;
  --text: #e5e7eb;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.88) 100%), url('img/bg-saloon.jpg') fixed center/cover;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: .9rem 0;
  background: rgba(15,15,15,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(245,158,11,.5)) brightness(1.1);
  transition: filter .3s ease;
}

.navbar:hover .logo-img,
.logo-img:hover {
  filter: drop-shadow(0 0 12px rgba(245,158,11,.8)) brightness(1.15);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: #9ca3af;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.btn-nav {
  background: var(--primary) !important;
  color: var(--dark) !important;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
  color: var(--dark);
  padding: .85rem 1.8rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 24px rgba(245,158,11,.45), 0 1px 0 rgba(255,255,255,.2) inset;
}
.btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(245,158,11,.6), 0 1px 0 rgba(255,255,255,.2) inset;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--white);
  padding: .85rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.07);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: rgba(245,158,11,.15);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: .8rem;
  border: 1px solid rgba(245,158,11,.2);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .8rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.section-header p {
  color: #9ca3af;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.45) 100%), url('img/bg-saloon.jpg') fixed center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.30) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
  margin: 0 auto;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at 40% 50%, rgba(245,158,11,.12) 0%, transparent 55%),
              radial-gradient(ellipse at 65% 50%, rgba(0,245,255,.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: .9rem;
}

.hero-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .1rem;
  margin-bottom: .8rem;
  line-height: 1;
}
.hero-pyramid span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--white);
}
.py-1 { font-size: clamp(1.8rem, 4vw, 3rem); }
.py-2 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
.py-3 { font-size: clamp(3.6rem, 8vw, 6.2rem); }
.hero-pyramid em {
  font-style: italic;
  color: var(--primary);
  text-shadow: 0 0 40px rgba(245,158,11,.6), 0 0 80px rgba(245,158,11,.3);
}
.hero-pyramid .py-3 {
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.hero-content > p {
  color: #d1d5db;
  font-size: 1.05rem;
  margin: 0 auto 1.2rem;
  max-width: 500px;
  line-height: 1.65;
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: #d1d5db;
  margin: 0 auto .7rem;
  max-width: 500px;
}
.hero-tagline strong {
  color: var(--secondary);
  text-shadow: 0 0 20px rgba(0,245,255,.6), 0 0 50px rgba(0,245,255,.25);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat small {
  color: #9ca3af;
  font-size: .8rem;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* ===== NOSOTROS ===== */
.nosotros {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(8,8,8,.75) 0%, rgba(10,10,10,.72) 100%), url('img/bg-saloon.jpg') fixed center/cover;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,158,11,.3);
  box-shadow: 0 12px 40px rgba(245,158,11,.1);
}
.feature-card:hover::before { opacity: 1; }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}
.feature-card p { color: #9ca3af; font-size: .9rem; }

/* ===== FEATURE ICON SVG ===== */
.feature-icon-svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.feature-icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(245,158,11,.3));
}

/* ===== DIFERENCIADORES ===== */
.diferenciadores {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
  padding: 1.4rem 2rem;
  background: rgba(245,158,11,.05);
  border: 1px solid rgba(245,158,11,.15);
  border-radius: 12px;
  justify-content: center;
}
.dif-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: #d1d5db;
  font-weight: 500;
  white-space: nowrap;
}
.dif-star {
  color: var(--primary);
  font-size: .85rem;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(245,158,11,.5);
}

/* ===== ESPACIO — FOTOS REALES ===== */
.espacio-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.espacio-fotos img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform var(--transition);
}
.espacio-fotos img:hover { transform: scale(1.03); }

/* ===== GALERÍA ===== */
.galeria {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.72) 100%), url('img/bg-saloon.jpg') fixed center/cover;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.album-card {
  background: var(--dark3);
  border: 1px solid rgba(245,158,11,.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.album-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,158,11,.4);
  box-shadow: 0 12px 36px rgba(245,158,11,.15);
}

.album-card-image {
  height: 280px;
  overflow: hidden;
  background: var(--dark);
}
.album-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}
.album-card-image img.baby-pos { object-position: center 15%; }
.album-card:hover .album-card-image img { transform: scale(1.08); }

.album-card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  justify-content: space-between;
}
.album-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.album-count {
  font-size: .9rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}
.album-desc {
  font-size: .95rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
}

.btn-album {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: .8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: .5rem;
}
.btn-album:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* Album Modal */
.album-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, rgba(18,8,40,.97) 0%, rgba(5,5,18,.97) 100%);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(16px);
}
.album-modal.open { display: flex; }

.modal-content {
  position: relative;
  width: 92%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-album-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
}
.modal-album-header #modalAlbumTitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .3px;
}

.modal-album-counter {
  font-size: .95rem;
  color: var(--primary);
  font-weight: 600;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.25);
  padding: .25rem .75rem;
  border-radius: 20px;
}

.modal-album-hint {
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  margin: 0;
  padding-bottom: .25rem;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  z-index: 5001;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--white); }

.modal-carousel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

/* ===== GALERÍA PREVIEW STRIP ===== */
.galeria-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
  margin: 2rem auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.galeria-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.galeria-preview img:hover { transform: scale(1.05); }

/* ===== SWIPER COVERFLOW ===== */
#albumSwiper {
  width: 100%;
  height: 460px;
  padding: 20px 0;
  overflow: hidden;
}
#albumSwiper .swiper-slide {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
  transition: box-shadow .4s ease;
}
#albumSwiper .swiper-slide-active {
  box-shadow: 0 24px 64px rgba(0,0,0,.8), 0 0 0 2px rgba(245,158,11,.4);
}
#albumSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open {
  visibility: visible;
  opacity: 1;
}
.lb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(8,8,8,.75) 0%, rgba(10,10,10,.72) 100%), url('img/bg-saloon.jpg') fixed center/cover;
  backdrop-filter: blur(12px);
}
.lb-frame {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  border: 3px solid rgba(245,158,11,.6);
  box-shadow: 0 24px 64px rgba(0,0,0,.8), 0 0 32px rgba(245,158,11,.3);
  transition: opacity .25s ease;
}
.lb-img.fading { opacity: 0; }

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  z-index: 10;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  backdrop-filter: blur(4px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(245,158,11,.35); }
.lb-close {
  top: 1.2rem; right: 1.5rem;
  width: 42px; height: 42px;
  font-size: 1.1rem;
}
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 2.2rem;
  line-height: 1;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }
.lb-counter {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  z-index: 2;
}

/* ===== PRECIOS ===== */
.precios {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(8,8,8,.75) 0%, rgba(10,10,10,.72) 100%), url('img/bg-saloon.jpg') fixed center/cover;
}

.precios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.precio-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.precio-card:hover { transform: translateY(-4px); }
.precio-card.destacado {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(245,158,11,.10), var(--dark3));
  box-shadow: 0 0 0 1px rgba(245,158,11,.15), 0 8px 40px rgba(245,158,11,.2);
}

.precio-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.precio-header {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}
.precio-icon { font-size: 1.8rem; }
.precio-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.precio-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1.4rem;
}
.precio-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
  margin-left: .3rem;
}

.precio-sub {
  font-size: .78rem;
  color: #9ca3af;
  text-align: center;
  margin: -.4rem 0 .6rem;
  font-style: italic;
}

.precio-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: auto;
}
.precio-includes li { font-size: .9rem; color: #9ca3af; }

.precio-sena {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
  color: #9ca3af;
}
.precio-sena strong { color: var(--primary); }

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  padding: .85rem 1.2rem;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  text-align: center;
}
.btn-card:hover { background: var(--primary); color: var(--dark); }
.precio-card.destacado .btn-card { background: var(--primary); color: var(--dark); }
.precio-card.destacado .btn-card:hover { background: #f7b733; border-color: #f7b733; }

/* ===== CÓMO SE RESERVA ===== */
.reserva-info {
  background: rgba(245,158,11,.04);
  padding: 4rem 0;
  border-top: 1px solid rgba(245,158,11,.2);
  border-bottom: 1px solid rgba(245,158,11,.2);
}
.reserva-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
.reserva-step h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-weight: 600;
}
.reserva-step-badge {
  background: var(--primary);
  color: var(--dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: .9rem;
}
.reserva-step p { color: #9ca3af; font-size: .95rem; line-height: 1.7; }
.reserva-aviso {
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  max-width: 900px;
}
.reserva-aviso p { font-size: .95rem; color: #e5e7eb; margin: 0; }
.precios-nota {
  text-align: center;
  font-size: .85rem;
  color: #9ca3af;
  margin-top: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.precios-nota strong { color: #e5e7eb; }

/* ===== EXTRAS ===== */
.extras {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.72) 100%), url('img/bg-saloon.jpg') fixed center/cover;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.extra-card {
  background: rgba(8,8,8,.95);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.extra-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,.25);
}

.extra-img {
  height: 180px;
  overflow: hidden;
  background: var(--dark3);
}
.extra-img img { height: 100%; transition: transform .5s ease; }
.extra-card:hover .extra-img img { transform: scale(1.08); }

.extra-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.extra-info { margin-bottom: 1rem; }

.extra-price {
  display: inline-block;
  background: rgba(245,158,11,.15);
  color: var(--primary);
  font-size: .9rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(245,158,11,.3);
  align-self: flex-start;
  margin-top: auto;
}
.extra-price.free {
  background: rgba(16,185,129,.15);
  color: #10b981;
  border-color: rgba(16,185,129,.3);
}

.extra-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}
.extra-body p { font-size: .88rem; color: #9ca3af; line-height: 1.6; }

/* ===== FAQ ===== */
.faq {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(6,6,6,.80) 0%, rgba(12,12,12,.76) 100%), url('img/bg-saloon.jpg') fixed center/cover;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(245,158,11,.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.faq-item[open] {
  border-color: rgba(245,158,11,.4);
  background: rgba(245,158,11,.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.8rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  list-style: none;
  user-select: none;
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--primary);
  border-bottom: 2.5px solid var(--primary);
  transform: rotate(45deg);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
  margin-top: -5px;
  border-radius: 1px;
}
.faq-item[open] .faq-question::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item[open] .faq-question { color: var(--primary); }

.faq-answer {
  padding: 1rem 1.8rem 1.4rem;
  color: #d1d5db;
  font-size: .93rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,.05);
}
.faq-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-bullets li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: .4rem;
}
.faq-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
.faq-bullets li strong {
  color: #fff;
}

/* ===== CTA CIERRE ===== */
.cta-cierre {
  padding: 7rem 0;
  background: linear-gradient(160deg, rgba(4,4,4,.97) 0%, rgba(20,12,2,.97) 100%), url('img/bg-saloon.jpg') fixed center/cover;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245,158,11,.15);
  border-bottom: 1px solid rgba(245,158,11,.08);
}
.cta-cierre::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-cierre-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-cierre-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.cta-cierre-inner > p { color: #9ca3af; font-size: 1.1rem; max-width: 480px; line-height: 1.7; }
.cta-cierre-note { color: #6b7280; font-size: .85rem; margin-top: -.5rem; }
.footer-tagline-neon {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--secondary);
  text-shadow: 0 0 14px rgba(0,245,255,.5), 0 0 30px rgba(0,245,255,.2);
  margin-top: .9rem;
  letter-spacing: 2px;
}

/* ===== UBICACIÓN ===== */
.ubicacion {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(8,8,8,.75) 0%, rgba(10,10,10,.72) 100%), url('img/bg-saloon.jpg') fixed center/cover;
}

.ubicacion-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.ubicacion-info .section-tag { display: inline-block; margin-bottom: .8rem; }

.ubicacion-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.ubicacion-info > p {
  color: #9ca3af;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.ubicacion-datos { display: flex; flex-direction: column; gap: 1rem; }

.ubic-dato {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: .8rem 1rem;
}
.ubic-dato > span { font-size: 1.3rem; }
.ubic-dato div { display: flex; flex-direction: column; gap: .1rem; }
.ubic-dato strong { font-size: .9rem; color: var(--white); }
.ubic-dato span:last-child { font-size: .85rem; color: #9ca3af; }
.ubic-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #25d366;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: 100px;
  margin-top: .35rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.ubic-wa-btn:hover { background: #1ebe59; transform: translateY(-1px); }

.ubicacion-mapa {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245,158,11,.15);
  min-height: 400px;
}
.ubicacion-mapa iframe { display: block; width: 100%; height: 400px; border: 0; }

.maps-open-link {
  display: block;
  text-align: center;
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--primary);
  font-weight: 600;
  transition: opacity .2s;
}
.maps-open-link:hover { opacity: .75; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.72) 100%), url('img/bg-saloon.jpg') fixed center/cover;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-simple {
  grid-template-columns: 1fr !important;
  max-width: 480px;
  text-align: center;
}
.footer-simple .footer-brand .logo { justify-content: center; }

.footer-brand .logo { margin-bottom: .8rem; }
.footer-brand .logo-img {
  height: 65px;
  max-width: 150px;
  filter: drop-shadow(0 0 6px rgba(245,158,11,.4)) brightness(1.05);
}
.footer-brand p { color: #6b7280; font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: .9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #10b981;
  font-size: .9rem;
  font-weight: 500;
  transition: opacity var(--transition);
}
.footer-wa:hover { opacity: .75; }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #e1306c;
  font-size: .9rem;
  font-weight: 500;
  transition: opacity var(--transition);
}
.footer-instagram:hover { opacity: .75; }
.footer-instagram svg { width: 20px; height: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.footer-bottom p { color: #4b5563; font-size: .82rem; }

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.55); }

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 4px 20px rgba(37,211,102,.4); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,.4); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,.4); }
}

/* ===== SCROLL OFFSET (navbar fija) ===== */
#nosotros, #galeria, #precios, #extras, #faq, #reservar {
  scroll-margin-top: 80px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .ubicacion-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .albums-grid { grid-template-columns: repeat(2, 1fr); }
  .reserva-grid { grid-template-columns: 1fr; gap: 2rem; }
  .galeria-preview { grid-template-columns: repeat(3, 1fr); }
  .galeria-preview img { height: 110px; }
  .espacio-fotos { grid-template-columns: 1fr; }
  .espacio-fotos img { height: 200px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,.97);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    z-index: 99;
  }
  .hamburger { display: block; }

  .hero { min-height: 60vh; }
  .hero-ctas { flex-direction: column; }
  .hero-pyramid { gap: 0.5rem; }
  .hero-stats { gap: 1rem; }
  .btn-primary, .btn-secondary { justify-content: center; font-size: .9rem; padding: .9rem 1.2rem; }

  .section-header h2 { font-size: 1.4rem; line-height: 1.4; }
  section { padding: 3rem 0 !important; }

  .precios-grid { grid-template-columns: 1fr; }
  .precio-amount { font-size: 1.6rem; }

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

  .albums-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .logo-img { height: 40px; max-width: 100px; }
  .footer-brand .logo-img { height: 35px; max-width: 90px; }

  .diferenciadores { flex-direction: column; align-items: flex-start; gap: .75rem; padding: 1.2rem 1.4rem; }
  .dif-item { white-space: normal; }

  .lb-prev { left: .6rem; }
  .lb-next { right: .6rem; }
  .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 1.8rem; }

  .feature-card h3 { font-size: .95rem; }
  .extra-body h3 { font-size: .95rem; }
}

/* ===== iOS: background-attachment fix ===== */
@supports (-webkit-touch-callout: none) {
  body,
  .hero, .nosotros, .galeria, .precios, .extras, .faq,
  .ubicacion, .cta-cierre, .footer, .lb-overlay {
    background-attachment: scroll;
  }
}

/* ===== REDUCCIÓN DE MOVIMIENTO ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== UTILIDADES INLINE ===== */
.faq-intro-text { margin: 0 0 .8rem; }
.btn-visita-margin { margin-top: 1.5rem; }
.mapa-iframe { border: 0; border-radius: 16px; }
.footer-privacy-link { color: inherit; text-decoration: underline; opacity: .8; }
