/* ========================================
   SINCRETISMO — Signature Cocktail Bar & Specialty Coffee
   Estilo: Brutalismo de Lujo · "Arte Líquido desde el Territorio"
   Tipografía: Cormorant Garamond (Títulos) + IBM Plex Sans (Cuerpo)
   ======================================== */

/* --- Variables / Sistema Semiótico --- */
:root {
  --antracita: #101010;
  --pizarra: #2C2F2F;
  --blanco-humo: #E3E5E5;
  --gris-mutado: #b3b3b3;
  --ambar: #9f8459;
  --ambar-hover: #1b1a1a;
  --bg-card: #161818;

  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'IBM Plex Sans', sans-serif;

  --transition: all 0.4s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--antracita);
  color: var(--blanco-humo);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a, button {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0 !important;
}

input, select, textarea, div, section, img {
  border-radius: 0px !important;
}

img {
  max-width: 100%;
  margin: auto;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--antracita); }
::-webkit-scrollbar-thumb { background: var(--pizarra); }
::-webkit-scrollbar-thumb:hover { background: var(--gris-mutado); }

/* ========================================
   PRELOADER — EL UMBRAL
   ======================================== */
#main-site {
  overflow-x: hidden;
  width: 100%;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000000;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-text {
  font-family: var(--font-title);
  font-size: clamp(18px, 4vw, 36px);
  color: var(--blanco-humo);
  letter-spacing: clamp(8px, 2vw, 15px);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInHold 2.8s forwards;
}
.preloader-text-liquid {
  font-family: var(--font-title);
  font-size: clamp(14px, 3vw, 28px);
  color: var(--blanco-humo);
  letter-spacing: clamp(8px, 2vw, 15px);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInHold 2.8s forwards;
}

@keyframes fadeInHold {
  0%   { opacity: 0; filter: blur(5px); }
  35%  { opacity: 1; filter: blur(0px); }
  75%  { opacity: 1; filter: blur(0px); }
  100% { opacity: 0; filter: blur(10px); }
}

/* ========================================
   HEADER — NAVBAR
   ======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  z-index: 9999;
  background: linear-gradient(rgba(16,16,16,0.9) 0%, rgba(16,16,16,0) 100%);
  transition: background 0.4s ease, padding 0.4s ease;
}

header.scrolled {
  background: rgba(16,16,16,0.98);
  padding: 12px 5%;
}

.logo img {
  display: block;
  filter: brightness(0.9);
  transition: var(--transition);
}

.logo img:hover {
  filter: brightness(1);
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* ========================================
   EL TERRITORIO — EDITORIAL
   ======================================== */
.territorio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-top: 1px solid var(--pizarra);
  border-bottom: 1px solid var(--pizarra);
}

.territorio-imagen {
  position: relative;
  overflow: hidden;
}

.territorio-imagen > div {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  filter: grayscale(45%) contrast(1.05) brightness(0.85);
  transition: filter 1.2s ease, transform 1.5s ease;
}

.territorio:hover .territorio-imagen > div {
  filter: grayscale(20%) contrast(1.15) brightness(0.75);
  transform: scale(1.03);
}

.territorio-contenido {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: var(--bg-card);
}

.territorio-contenido .section-tag {
  margin-bottom: 24px;
}

.territorio-contenido p {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--gris-mutado);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.territorio-contenido p strong {
  color: var(--blanco-humo);
  font-weight: 400;
}

.territorio-lista {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  margin: 18px 0 28px;
  padding: 20px 24px;
  border-left: 1px solid var(--ambar);
  background: rgba(255,121,37,0.03);
}

.territorio-lista li {
  font-family: var(--font-title);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 400;
  color: var(--blanco-humo);
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}

.territorio-lista li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ambar);
  opacity: 0.6;
}

.territorio-giro {
  font-family: var(--font-title);
  font-size: clamp(20px, 1.8vw, 26px) !important;
  font-weight: 400 !important;
  color: var(--ambar) !important;
  line-height: 1.4 !important;
  margin: 12px 0 14px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pizarra);
}

.territorio-cierre {
  font-size: clamp(14px, 1vw, 16px) !important;
  font-weight: 300 !important;
  max-width: 480px;
}

@media (max-width: 1024px) {
  .territorio {
    grid-template-columns: 1fr;
  }
  .territorio-imagen {
    min-height: 50vh;
  }
  .territorio-imagen > div {
    min-height: 50vh;
  }
  .territorio-contenido {
    padding: 60px 40px;
  }
}

@media (max-width: 480px) {
  .territorio-imagen > div {
    min-height: 40vh;
    aspect-ratio: 1/1;
  }
  .territorio-contenido {
    padding: 40px 24px;
  }
  .territorio-lista {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }
  img {
  max-width: 100%;
  margin: auto;
  height: auto;
  display: block;
}
}

nav a {
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 400;
  color: var(--gris-mutado);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}

nav a:hover,
nav a.active {
  color: var(--ambar);
}

.btn-header {
  border: 1px solid var(--ambar);
  background: transparent;
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--blanco-humo);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
}

.btn-header:hover {
  background: var(--ambar);
  color: var(--antracita);
}

/* Header Right Container & Language Switcher */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--pizarra);
  padding: 2px;
  background: rgba(16, 16, 16, 0.7);
  backdrop-filter: blur(10px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--gris-mutado);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 5px 9px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--blanco-humo);
}

.lang-btn.active {
  color: var(--antracita);
  background: var(--ambar);
  font-weight: 600;
}

.lang-divider {
  display: none;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding-top: 18px;
  border-top: 1px solid rgba(44, 47, 47, 0.6);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.mobile-lang-label {
  font-size: 9.5px;
  letter-spacing: 1px;
  color: var(--gris-mutado);
  text-transform: uppercase;
  font-weight: 400;
  flex-shrink: 0;
}

.mobile-lang-switcher .lang-btn {
  font-size: 11px;
  padding: 6px 12px;
  border: 1px solid var(--pizarra);
  color: var(--gris-mutado);
  flex-shrink: 0;
  line-height: 1;
}

.mobile-lang-switcher .lang-btn.active {
  border-color: var(--ambar);
  background: var(--ambar);
  color: var(--antracita);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  z-index: 100;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--blanco-humo);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: rgba(0,0,0,0.97);
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 3rem;
  transition: right 0.4s ease;
  z-index: 9997;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gris-mutado);
  text-transform: uppercase;
  display: block;
  padding: 0.8rem 0;
  border-bottom: 0.5px solid rgba(44,47,47,0.5);
}

.mobile-nav a:hover {
  color: var(--ambar);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9996;
}

.mobile-overlay.active {
  display: block;
}

/* ========================================
   HERO — EL PORTAL
   ======================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1.8%;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(100%) brightness(0.65) contrast(1.35);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(rgba(18,20,20,0.2) 0%, rgba(18,20,20,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-tag {
  font-size: clamp(10px, 0.9vw, 12px);
  color: var(--ambar);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 25px;
}

.hero h1 .ambar {
  color: var(--ambar);
}

.hero p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--gris-mutado);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
    /* background: var(--ambar); */
    color: #c3c3c3;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-family: var(--font-body);
    border: 1px solid var(--pizarra);
}

.btn-primary:hover {
  background: var(--ambar-hover);
}

.btn-secondary {
  border: 1px solid var(--pizarra);
  padding: 14px 30px;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--blanco-humo);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--blanco-humo);
}

.hero-social {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
}

.hero-social a {
  color: var(--gris-mutado);
  font-size: 1.3rem;
  transition: var(--transition);
}

.hero-social a:hover {
  color: var(--ambar);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gris-mutado);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section {
  padding: 120px 5%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-dark {
  background: var(--antracita);
  max-width: 100%;
  width: 100%;
  border-top: 1px solid var(--pizarra);
  border-bottom: 1px solid var(--pizarra);
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  font-size: 11px;
  color: var(--ambar);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title .ambar {
  color: var(--ambar);
}

.section-subtitle {
  font-size: 15px;
  color: var(--gris-mutado);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--ambar);
  margin-top: 25px;
  opacity: 0.5;
}

/* ========================================
   NOSOTROS — ABOUT SECTION
   ======================================== */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nosotros-image {
  position: relative;
  padding-bottom: 60px;
}

.nosotros-image > div {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) contrast(1.0) brightness(0.9);
  border: 1px solid var(--pizarra);
  transition: filter 1s ease;
}

.nosotros-image > div:hover {
  filter: grayscale(30%) contrast(1.2) brightness(0.8);
}

.nosotros-image-secondary {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 220px;
  height: 220px;
  background-size: cover;
  background-position: center;
  filter: grayscale(50%) contrast(1.1) brightness(0.8);
  border: 2px solid var(--antracita);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.nosotros-image-secondary:hover {
  filter: grayscale(20%) contrast(1.2) brightness(0.9);
  transform: scale(1.03);
}

.nosotros-content p {
  font-size: 15px;
  color: var(--gris-mutado);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.nosotros-content .highlight {
  color: var(--blanco-humo);
}

.nosotros-footer {
  display: flex;
  gap: 16px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ========================================
   ¿POR QUÉ SINCRETISMO? — VALOR DIFERENCIAL
   ======================================== */
.porque-sincretismo {
  padding: 120px 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid var(--pizarra);
  border-bottom: 1px solid var(--pizarra);
}

.porque-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.porque-container .section-tag {
  margin-bottom: 12px;
}

.porque-title {
  font-family: var(--font-title);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}

.porque-title .ambar {
  color: var(--ambar);
}

.porque-intro {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--gris-mutado);
  line-height: 1.8;
  font-weight: 300;
}

.porque-intro strong {
  color: var(--blanco-humo);
  font-weight: 400;
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pizarra);
  border: 1px solid var(--pizarra);
}

.porque-card {
  background: var(--bg-card);
  padding: 60px 40px;
  text-align: center;
  transition: background 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.porque-card:hover {
  background: #1f2222;
  transform: translateY(-4px);
}

.porque-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--ambar);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.porque-card:hover .porque-icon {
  background: var(--ambar);
  border-color: var(--ambar);
}

.porque-icon i {
  font-size: 24px;
  color: var(--ambar);
  transition: color 0.4s ease;
}

.porque-card:hover .porque-icon i {
  color: var(--antracita);
}

.porque-card-title {
  font-family: var(--font-title);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: var(--blanco-humo);
  letter-spacing: 1px;
}

.porque-card-desc {
  font-size: 14px;
  color: var(--gris-mutado);
  line-height: 1.6;
  font-weight: 300;
  max-width: 260px;
}

/* Responsive: porque section */
@media (max-width: 768px) {
  .porque-sincretismo {
    padding: 80px 3%;
  }
  .porque-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
  }
  .porque-card {
    padding: 44px 30px;
  }
  .porque-container {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .porque-card {
    padding: 36px 0px;
  }
}

/* ========================================
   BOTÓN — SECCIÓN POR QUÉ SINCRETISMO
   ======================================== */
.porque-btn-container {
  text-align: center;
  margin-top: 50px;
}

.btn-porque {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--pizarra);
  color: var(--blanco-humo);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-porque i {
  font-size: 12px;
  transition: transform 0.4s ease;
}

.btn-porque:hover {
  background: var(--pizarra);
  color: var(--blanco-humo);
}

.btn-porque:hover i {
  transform: translateX(4px);
}

/* ========================================
   MANIFIESTO / HISTORIA
   ======================================== */
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.historia-content h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.15;
}

.historia-content p {
  font-size: 15px;
  color: var(--gris-mutado);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.historia-content .highlight {
  color: var(--blanco-humo);
}

.historia-image {
  border: 1px solid var(--pizarra);
  padding: 1px;
}

.historia-image div {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) contrast(1.0) brightness(0.9);
  transition: filter 1s ease;
}

@media (max-width: 768px) {
  .historia-image div {
    height: 300px;
  }
}

.historia-image:hover div {
  filter: grayscale(50%) contrast(1.3) brightness(0.7);
}

.historia-mystalia {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ambar);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pizarra);
  font-weight: 300;
}

/* ========================================
   DUALIDAD — DÍA & NOCHE
   ======================================== */
.dualidad {
  display: flex;
  height: 85vh;
  border-top: 1px solid var(--pizarra);
  border-bottom: 1px solid var(--pizarra);
}

.dual-panel {
  width: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 4%;
  transition: flex 0.6s ease, width 0.6s ease;
}

@media (hover: hover) {
  .dual-panel:hover {
    width: 55%;
  }
}

.dual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: transform 2s ease;
  filter: brightness(0.3) contrast(1) grayscale(65%);;
}

.dual-panel:hover .dual-bg {
  transform: scale(1.05);
  filter: brightness(0.45);
}

.dual-content {
  position: relative;
  z-index: 2;
}

.dual-time {
  font-size: 20px;
  color: var(--ambar);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
}

.dual-content h3 {
  font-family: var(--font-title);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.1;
}

.dual-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 18px;
  padding: 0;
}

.dual-list li {
  position: relative;
  font-family: var(--font-title);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 300;
  color: var(--blanco-humo);
  letter-spacing: 0.5px;
}

.dual-list li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--ambar);
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.6;
}

.dual-list li span {
  vertical-align: middle;
}

@media (max-width: 768px) {
  .dual-list {
    gap: 4px 14px;
  }
  .dual-list li {
    font-size: 14px;
  }
}

/* ========================================
   PUENTE — DUALIDAD → CARTA
   ======================================== */
.dualidad-puente {
  text-align: center;
  padding: 60px 5% 0;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.dualidad-puente p {
  font-family: var(--font-title);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--gris-mutado);
  letter-spacing: 1px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 20px;
}

.dualidad-puente p::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--ambar);
  opacity: 0.4;
  margin: 20px auto 0;
}

@media (max-width: 768px) {
  .dualidad-puente {
    padding: 40px 3% 0;
  }
}

/* ========================================
   CARTA LÍQUIDA — PDF LINKS
   ======================================== */
.carta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem;
  margin-top: 60px;
}

.carta-card {
  background: var(--bg-card);
  border: 1px solid var(--pizarra);
  padding: 40px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.carta-card:hover {
  transform: translateY(-4px);
  border-color: var(--ambar);
}

.carta-card-tag {
  font-size: 10px;
  color: var(--ambar);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.carta-card-name {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 4px;
}

.carta-card-mystalia {
  font-size: 13px;
  color: var(--gris-mutado);
  font-style: italic;
  margin-bottom: 15px;
  font-weight: 300;
}

.carta-card-desc {
  font-size: 13px;
  color: var(--gris-mutado);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
  flex-grow: 1;
}

.carta-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--pizarra);
}

.carta-card-price {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--ambar);
}

.carta-card-pdf {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gris-mutado);
  display: flex;
  align-items: center;
  gap: 6px;
}

.carta-card-pdf:hover {
  color: var(--ambar);
}

/* Café section */
.carta-cafe {
  margin-top: 20px;
  padding: 60px;
  border: 1px solid var(--pizarra);
  background: var(--bg-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.carta-cafe-content h3 {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 5px;
}

.carta-cafe-content .mystalia-tag {
  font-size: 14px;
  color: var(--gris-mutado);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}

.carta-cafe-content p {
  font-size: 14px;
  color: var(--gris-mutado);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.carta-cafe-image {
  border: 1px solid var(--pizarra);
  padding: 1px;
}

.carta-cafe-image div {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  filter: grayscale(50%) contrast(1.2) brightness(0.6);
  transition: filter 0.8s ease;
}

.carta-cafe-image:hover div {
  filter: grayscale(20%) contrast(1.2) brightness(0.8);
}

.cta-center {
  text-align: center;
  margin-top: 50px;
}

/* PDF CTA Banner */
.pdf-banner {
  border: 1px solid var(--pizarra);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
  background: var(--bg-card);
}

.pdf-banner p {
  font-size: 14px;
  color: var(--gris-mutado);
  margin-bottom: 25px;
  font-weight: 300;
}

/* ========================================
   RESERVAS & WIDGET
   ======================================== */
.reservas {
  padding: 120px 5%;
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid var(--pizarra);
  border-bottom: 1px solid var(--pizarra);
}

.reservas h2 {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 15px;
}

.reservas > p {
  font-size: 14px;
  color: var(--gris-mutado);
  margin-bottom: 60px;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
  font-weight: 300;
}

.widget-reserva {
  background: var(--bg-card);
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--pizarra);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
  text-align: left;
}

.widget-group label {
  display: block;
  font-size: 11px;
  color: var(--gris-mutado);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.widget-group input,
.widget-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--pizarra);
  color: var(--blanco-humo);
  font-family: var(--font-body);
  padding: 10px 0;
  font-size: 14px;
  outline: none;
}

.widget-group input:focus,
.widget-group select:focus {
  border-bottom-color: var(--ambar);
}

.widget-group select option {
  background: var(--antracita);
  color: var(--blanco-humo);
}

/* Estilo del calendario nativo en inputs date — color blanco */
.widget-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.widget-group input[type="date"]::-moz-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.vip-card {
  max-width: 800px;
  margin: 40px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--ambar);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ambar);
}

.vip-card i {
  font-size: 1rem;
  color: var(--ambar);
  opacity: 1;
  margin: 2px 5px;
  display: block;
}

.vip-card h3 {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--ambar);
  margin-bottom: 15px;
  font-weight: 400;
}

.vip-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
  color: var(--gris-mutado);
  max-width: 600px;
  margin-inline: auto;
}

.btn-vip {
  background: transparent;
  border: 1px solid var(--ambar);
  padding: 12px 25px;
  font-size: 12px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  color: var(--blanco-humo);
  font-family: var(--font-body);
}

.btn-vip:hover {
  background: var(--ambar);
  color: #000;
}

/* ========================================
   TESTIMONIOS / VALIDACIÓN SOCIAL
   ======================================== */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonio-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid var(--pizarra);
  transition: transform 0.3s ease;
}

.testimonio-card:hover {
  transform: translateY(-5px);
  border-color: var(--ambar);
}

.testimonio-card i {
  font-size: 24px;
  color: var(--ambar);
  opacity: 0.4;
  margin-bottom: 20px;
  display: block;
}

.testimonio-card blockquote {
  font-size: 14px;
  color: var(--blanco-humo);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
  font-weight: 300;
}

.testimonio-card .author {
  font-size: 11px;
  color: var(--ambar);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

/* ========================================
   GALERÍA / ESPACIO
   ======================================== */
.espacio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1px;
  background: var(--pizarra);
  border: 1px solid var(--pizarra);
}

.espacio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.espacio-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 400px;
}

.espacio-item div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(60%) contrast(1.1) brightness(0.9);
  transition: filter 0.6s ease, transform 0.8s ease;
}

.espacio-item:hover div {
  filter: grayscale(30%) contrast(1.1) brightness(0.7);
  transform: scale(1.05);
}

.espacio-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.espacio-item:hover .overlay {
  opacity: 1;
}

.espacio-item .overlay span {
  font-size: 11px;
  color: var(--blanco-humo);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========================================
   INFO PRÁCTICA
   ======================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 60px;
}

.info-card {
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--pizarra);
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--ambar);
  transform: translateY(-3px);
}

.info-card i {
  font-size: 1.5rem;
  color: var(--ambar);
  margin-bottom: 1rem;
  display: block;
}

.info-card h4 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 13px;
  color: var(--gris-mutado);
  line-height: 1.7;
  font-weight: 300;
}

.info-card .highlight {
  color: var(--blanco-humo);
}

.info-cta {
  text-align: center;
  margin-top: 50px;
}

/* ========================================
   FOOTER — EL GRAN FOOTER
   ======================================== */
footer {
  border-top: 1px solid var(--pizarra);
  background: var(--antracita);
  display: flex;
  flex-direction: column;
}

/* Bloque 1: Marca Monumental */
.footer-monumental {
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--pizarra);
  user-select: none;
}

/* Footer logo: 50% en desktop, 100% en móvil */
.footer-monumental img {
  max-width: 50%;
}

@media (max-width: 768px) {
  .footer-monumental img {
    max-width: 100%;
  }
}

.footer-monumental h2 {
  font-family: var(--font-title);
  font-size: clamp(60px, 13vw, 160px);
  font-weight: 300;
  color: #6a6d6d;
  line-height: 0.8;
  letter-spacing: -2px;
  margin: 0;
}

/* Bloque 2: Mapa + Contenido */
.footer-content {
  display: flex;
  width: 100%;
}

.footer-map-box {
  width: 35%;
  background: #0c0d0d;
  border-right: 1px solid var(--pizarra);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: radial-gradient(rgba(47, 47, 44, 0.4) 1px, transparent 1px);
  background-size: 20px 20px;
  min-height: 300px;
}

.footer-map-box iframe {
  position: relative;
  z-index: 1;
}

.footer-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: rgba(16, 16, 16, 0.35);
  mix-blend-mode: multiply;
  filter: brightness(0.7) contrast(1.3) saturate(0.4);
  transition: filter 0.6s ease, background 0.6s ease;
}

.footer-map-box:hover .footer-map-overlay {
    background: rgba(247, 243, 238, 0.97);
    filter: brightness(1) contrast(1.9) saturate(0.9);
}

.footer-map-box i {
  font-size: 40px;
  color: var(--ambar);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.footer-text-box {
  width: 65%;
  padding: 80px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-about {
  margin-bottom: 50px;
}

.footer-about h5 {
  font-size: 11px;
  color: var(--ambar);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-about p {
  font-size: 14px;
  color: var(--gris-mutado);
  line-height: 1.8;
  font-weight: 300;
  text-align: justify;
}

.footer-info {
  display: flex;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

.footer-col h5 {
  font-size: 11px;
  color: var(--blanco-humo);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 13px;
  color: var(--gris-mutado);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
  border-top: 1px solid var(--pizarra);
  background: #0c0d0d;
  margin-bottom: 50px;
}

.copyright {
  font-size: 11px;
  color: var(--gris-mutado);
  letter-spacing: 1px;
}

.socials {
  display: flex;
  gap: 20px;
}

.socials a {
  font-size: 18px;
  color: var(--gris-mutado);
  transition: color 0.3s ease;
}

.socials a:hover {
  color: var(--ambar);
}

/* ========================================
   NEW CARTA — PROMO BANNER, LANGUAGE TOGGLE, MENU GRID
   ======================================== */

.promo-banner {
  background: var(--bg-card);
  border: 1px solid var(--ambar);
  padding: 18px 24px;
  margin-bottom: 40px;
  text-align: center;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  color: var(--blanco-humo);
  line-height: 1.6;
}

.promo-banner i,
.promo-banner span {
  margin-right: 6px;
}

.lang-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  justify-content: flex-start;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--pizarra);
  padding: 10px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--gris-mutado);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:first-child {
  border-right: none;
}

.lang-btn.active {
  background: var(--ambar);
  color: var(--antracita);
  border-color: var(--ambar);
}

.lang-btn:hover:not(.active) {
  color: var(--blanco-humo);
  border-color: var(--blanco-humo);
}

.pdf-downloads {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-carta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pizarra);
  border: 1px solid var(--pizarra);
  margin-top: 20px;
}

.menu-card-column {
  background: var(--bg-card);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.menu-card-column:hover {
  border-color: transparent;
}

.menu-card-column-title {
  font-family: var(--font-title);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--blanco-humo);
  letter-spacing: 1px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pizarra);
}

.menu-item {
  margin-bottom: 22px;
}

.menu-item:last-of-type {
  margin-bottom: 30px;
}

.menu-item-name {
  font-family: var(--font-title);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 400;
  color: var(--blanco-humo);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--gris-mutado);
  line-height: 1.6;
  font-weight: 300;
}

.menu-column-link {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ambar);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--pizarra);
  transition: var(--transition);
}

.menu-column-link:hover {
  color: var(--ambar-hover);
  gap: 12px;
}

/* ========================================
   CARTA — CENTRADO DE CABECERA
   ======================================== */
#carta .section-header {
  text-align: center;
}

#carta .section-header .section-subtitle {
  margin: 0 auto;
}

#carta .section-divider {
  display: none;
}

#carta .lang-toggle {
  justify-content: center;
}

#carta .pdf-downloads {
  justify-content: center;
}

/* ========================================
   NEW CARTA GRID — 3 COLUMNAS (2fr | 3fr | 1fr)
   ======================================== */
.carta-new-grid {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  border: 1px solid var(--pizarra);
  background: var(--bg-card);
  margin-top: 40px;
  overflow: hidden;
}

.carta-new-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* COLUMNA 1: BOTÓN */
.carta-new-col-1 {
  padding: 60px 40px;
  align-items: center;
}

.carta-new-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--ambar);
  color: var(--blanco-humo);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
}

.carta-new-btn:hover {
  background: var(--ambar);
  color: var(--antracita);
}

/* COLUMNA 2: INFO */
.carta-new-col-2 {
  padding: 60px 40px;
  border-left: 1px solid var(--pizarra);
  border-right: 1px solid var(--pizarra);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.carta-new-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.carta-new-badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--pizarra);
  color: var(--gris-mutado);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  text-transform: none;
  line-height: 1.3;
}

.carta-new-title {
  font-family: var(--font-title);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--blanco-humo);
  line-height: 1.3;
  margin: 0;
  max-width: 90%;
}

.carta-new-desc {
  font-size: 14px;
  color: var(--gris-mutado);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  font-family: var(--font-body);
}

/* COLUMNA 3: IMAGEN */
.carta-new-col-3 {
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.carta-new-col-3 img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  filter: grayscale(40%) contrast(1.05) brightness(0.85);
  transition: filter 0.8s ease, transform 1.2s ease;
}

.carta-new-col-3:hover img {
  filter: grayscale(20%) contrast(1.15) brightness(0.7);
  transform: scale(1.03);
}

/* RESPONSIVE: MÓVIL — SOLO 1 COLUMNA */
@media (max-width: 900px) {
  .carta-new-grid {
    grid-template-columns: 1fr;
  }

  .carta-new-col-1 {
    padding: 40px 30px;
    border-bottom: 1px solid var(--pizarra);
  }

  .carta-new-col-2 {
    padding: 40px 30px;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--pizarra);
    gap: 5px;
  }

  .carta-new-title {
    max-width: 100%;
    font-size: clamp(20px, 5vw, 26px);
  }

  .carta-new-col-3 {
    max-height: 300px;
  }

  .carta-new-col-3 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .carta-new-col-1 {
    padding: 30px 20px;
  }

  .carta-new-col-2 {
    padding: 30px 20px;
  }

  .carta-new-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .carta-new-btn {
    padding: 16px 36px;
    font-size: 13px;
    width: 100%;
  }

  .carta-new-col-3 {
    max-height: 220px;
  }

  .carta-new-col-3 img {
    height: 220px;
  }
}

/* ========================================
   MOBILE CTA FLOTANTE
   ======================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--antracita);
  color: var(--blanco-humo);
  text-align: center;
  padding: 15px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  z-index: 1000;
  text-transform: uppercase;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .menu-carta-grid {
    grid-template-columns: 1fr;
  }
  .menu-card-column {
    padding: 30px 24px;
  }
  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .nosotros-image-secondary {
    width: 180px;
    height: 180px;
    right: -10px;
  }

  .historia-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .historia-image {
    order: -1;
  }
  .carta-cafe {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  .carta-cafe-image {
    order: -1;
  }
  .testimonios-grid {
    grid-template-columns: 1fr;
  }
  .widget-reserva {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  header .lang-switcher {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    padding: 2.5rem 1.8rem;
    width: min(78%, 320px);
  }

  .nosotros-image-secondary {
    width: 150px;
    height: 150px;
    right: -8px;
  }
  .nosotros-image > div {
    height: 340px;
  }

  .hero h1 {
    font-size: 38px;
  }
  .hero-social {
    display: none;
  }
  .hero-scroll {
    display: none;
  }

  .dualidad {
    flex-direction: column;
    height: auto;
  }
  .dual-panel {
    width: 100%;
    height: 50vh;
  }
  .dual-panel:hover {
    width: 100%;
  }

  .section {
    padding: 80px 3%;
  }

  .espacio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .espacio-item:first-child {
    grid-column: 1 / -1;
  }

  .footer-content {
    flex-direction: column;
  }
  .footer-map-box {
    width: 100%;
    height: 250px;
    border-right: none;
    border-bottom: 1px solid var(--pizarra);
  }
  .footer-text-box {
    width: 100%;
    padding: 60px 5%;
  }
  .footer-info {
    flex-direction: column;
    gap: 30px;
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }
  .hero-actions {
    flex-direction: row;
    gap: 12px;
  }
  .btn-primary,
  .btn-secondary {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
  .espacio-grid {
    grid-template-columns: 1fr;
  }
  .carta-grid {
    grid-template-columns: 1fr;
  }
  .carta-cafe {
    padding: 5px 5px;
  }
  .widget-reserva {
    padding: 25px;
  }
  .vip-card {
    padding: 30px 20px;
  }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 80vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-label {
  color: var(--gris-mutado);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 300;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  background: none;
  border: none;
  color: var(--gris-mutado);
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--blanco-humo);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gris-mutado);
  font-size: 30px;
  cursor: pointer;
  z-index: 10001;
  padding: 20px;
  transition: color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--blanco-humo);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95vw;
  }
  .lightbox-prev {
    left: 5px;
  }
  .lightbox-next {
    right: 5px;
  }
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }
}
