/* =========================================
   1. VARIABLES Y RESET (ADN Premium Dark)
========================================= */
:root {
  --bg-color: #000000;
  --bg-image-side: #0a0a0a;
  --text-main: #f5f5f5;
  --text-muted: #888888;
  --text-gold: #cfa86e;
  /* Un toque sutil opcional para highlights */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-dashed: rgba(255, 255, 255, 0.2);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --ease: cubic-bezier(0.25, 1, 0.25, 1);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* =========================================
   2. NAVBAR
========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 5rem;
  border-bottom: 1px solid var(--border-color);
}

.nav-logo {
  height: 75px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--text-main);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--text-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-btn {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.lang-btn:hover {
  background: var(--text-main);
  color: var(--bg-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* =========================================
   3. HERO SECTION (VIDEO BACKGROUND)
========================================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

/* Títulos y status */
.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-main);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.main-title {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.main-title em {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* Botón Editorial */
.action-area {
  display: inline-block;
}

.btn-editorial {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 1rem 2rem;
  color: var(--text-main);
  text-decoration: none;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  transition: all 0.4s var(--ease);
}

.btn-editorial:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
}

.btn-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* =========================================
   4. ESTRUCTURA DE SECCIONES GENERAL
========================================= */
.section {
  padding: 8rem 5vw;
  min-height: auto;
}

.bg-darker {
  background-color: var(--bg-image-side);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-subtitle {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: #fff;
}

.description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.max-w-800 {
  max-width: 800px;
}

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

.mt-2 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

/* Grids Layouts */
.grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.align-center {
  align-items: center;
}

/* =========================================
   5. HISTORIA Y PREPARACIÓN
========================================= */
.history-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-main);
}

.image-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.framed-image {
  border: 1px solid var(--border-color);
  padding: 1rem;
}

.border-left-img {
  border-left: 1px solid var(--border-color);
  padding-left: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 1rem 0;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.feature-icon {
  font-size: 2rem;
}

/* =========================================
   6. GALERÍA GRID
========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.span-2 {
  grid-column: span 2;
}

/* =========================================
   7. VIDEO PROMO BANNER
========================================= */
.video-promo-section {
  position: relative;
  width: 100%;
  height: 60vh;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-text-overlay h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  max-width: 800px;
}

/* =========================================
   8. MENÚ DE COMIDA (EXHAUSTIVO)
========================================= */
.search-bar input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.5rem;
  width: 100%;
  max-width: 400px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: center;
}

.search-bar input:focus {
  outline: none;
  border-bottom-color: var(--text-main);
}

.menu-category {
  margin-bottom: 5rem;
}

.category-title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 4px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.category-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 2.5rem 4rem;
}

.menu-item {
  display: flex;
  flex-direction: column;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--border-dashed);
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}

.menu-item-header span:first-child {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-item-header span:last-child {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.badge {
  background-color: var(--text-main);
  color: var(--bg-color);
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 8px;
  font-weight: 500;
}

/* =========================================
   9. EQUIPO
========================================= */
.chef-tribute-box {
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.chef-tribute-box h4 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* =========================================
   10. UBICACIÓN Y MAPA
========================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.map-container {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(1.2);
  /* Mapa en B/N oscuro */
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.box-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================
   11. FOOTER
========================================= */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 5vw 2rem;
  text-align: center;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.border-top {
  border-top: 1px solid var(--border-color);
}

/* WHATSAPP FLOTANTE */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background-color: var(--text-main);
  color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 100;
  transition: all 0.4s var(--ease);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
}

.floating-wa:hover {
  transform: scale(1.1);
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

/* =========================================
   12. ANIMACIONES
========================================= */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--ease);
}

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

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

/* =========================================
   13. RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {

  .grid-50-50,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .span-2 {
    grid-column: span 1;
  }

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

  .border-left-img {
    border-left: none;
    padding-left: 0;
  }

  .pl-4 {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .nav-links {
    display: none;
  }

  /* En un proyecto real aquí abres el modal del menú */
  .mobile-menu-btn {
    display: block;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* =========================================
   SIDEBAR & ANIMATED HAMBURGER (PREMIUM)
========================================= */

/* Botón Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 12px;
  /* Super delgado y alargado (minimalista) */
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  /* Siempre por encima del sidebar */
}

.hamburger .line {
  width: 100%;
  height: 1px;
  /* Líneas super finas */
  background-color: var(--text-main);
  transition: transform 0.6s var(--ease), opacity 0.4s ease;
  transform-origin: center;
}

/* Animación a la "X" al abrir */
.hamburger.is-active .line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger.is-active .line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  /* Oculto a la derecha */
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  /* Efecto cristal / Blur elegante */
  -webkit-backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.7s var(--ease);
}

.sidebar-overlay.is-open {
  right: 0;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Links del Sidebar (Efecto Hero en Cursiva) */
.sidebar-link {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s var(--ease);
}

.sidebar-link:hover {
  color: var(--text-muted);
}

/* Animación en cascada cuando se abre el sidebar */
.sidebar-overlay.is-open .sidebar-link {
  opacity: 1;
  transform: translateY(0);
}

.sidebar-overlay.is-open .sidebar-link:nth-child(1) {
  transition-delay: 0.2s;
}

.sidebar-overlay.is-open .sidebar-link:nth-child(2) {
  transition-delay: 0.3s;
}

.sidebar-overlay.is-open .sidebar-link:nth-child(3) {
  transition-delay: 0.4s;
}

.sidebar-overlay.is-open .sidebar-link:nth-child(4) {
  transition-delay: 0.5s;
}

.sidebar-overlay.is-open .sidebar-link:nth-child(5) {
  transition-delay: 0.6s;
}

.sidebar-overlay.is-open .sidebar-link:nth-child(6) {
  transition-delay: 0.7s;
}

/* MODIFICACIONES RESPONSIVAS AL NAVBAR ORIGINAL */
@media (max-width: 768px) {

  /* Hacemos que la barra NO se encoja. Mantiene padding constante */
  .navbar,
  .navbar.scrolled {
    padding: 1.5rem 2rem;
  }

  .navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border-color);
  }

  /* Ocultamos los links normales y el botón viejo */
  .nav-links,
  .mobile-menu-btn {
    display: none;
  }

  /* Mostramos nuestra hamburguesa elegante */
  .hamburger {
    display: flex;
  }

  /* Ajustar un poco el logo en móvil para que se vea simétrico */
  .nav-logo {
    height: 45px;
  }
}

/* =========================================
   SECCIÓN HISTORIA: PREMIUM EDITORIAL
========================================= */
.editorial-history {
  position: relative;
  overflow: hidden;
}

/* Indicador de capítulo (Línea + 01) */
.chapter-indicator {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 4rem;
  opacity: 0.5;
}

.chapter-indicator .line {
  width: 50px;
  height: 1px;
  background-color: var(--text-main);
}

.chapter-indicator .number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 2px;
}

/* Grid asimétrico */
.history-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  /* Texto un poco más ancho que la imagen */
  gap: 6rem;
  align-items: center;
}

/* Textos */
.history-text-col .title-wrapper {
  margin-bottom: 3rem;
}

.lead-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  /* Párrafo más grande */
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 2rem !important;
  border-left: 1px solid var(--border-color);
  padding-left: 1.5rem;
}

.history-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.signature-block {
  padding-top: 2rem;
  border-top: 1px dashed var(--border-dashed);
  display: inline-block;
}

/* Tratamiento de Imagen Premium */
.history-image-col {
  position: relative;
  padding: 2rem 2rem 2rem 0;
  /* Espacio para el marco desfasado */
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  /* Proporción de retrato elegante (vertical) */
  z-index: 2;
}

/* Marco desfasado (Línea fina detrás de la imagen) */
.image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid var(--border-color);
  z-index: -1;
  transition: all 0.6s var(--ease);
}

.editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.8);
  /* Look Dark B&W */
  transition: filter 0.8s var(--ease), transform 0.8s var(--ease);
}

.image-wrapper:hover .editorial-img {
  filter: grayscale(0%) contrast(1) brightness(1);
  /* Color al hover */
  transform: scale(0.98);
}

.image-wrapper:hover::before {
  top: -10px;
  right: -10px;
  bottom: 10px;
  left: 10px;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Sello flotante animado (Badge) */
.floating-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.floating-badge svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotateBadge 15s linear infinite;
  /* Animación giratoria */
}

.badge-center {
  font-size: 1.5rem;
  color: var(--text-main);
}

@keyframes rotateBadge {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsivo para la Historia Premium */
@media (max-width: 1024px) {
  .history-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .history-image-col {
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .floating-badge {
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
  }
}

/* =========================================
   SECCIÓN PREPARACIÓN: TARJETAS EDITORIALES
========================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.editorial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/* Contenedor de la Imagen */
.feature-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  /* Formato vertical elegante */
  overflow: hidden;
  margin-bottom: 2rem;
  /* Marco inicial invisible */
  border: 1px solid transparent;
  transition: border-color 0.6s var(--ease);
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.6);
  /* B&W oscuro */
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

/* Número de la esquina */
.feature-number {
  position: absolute;
  top: 15px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--text-main);
  z-index: 2;
  opacity: 0.9;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
  /* Para que resalte sobre la foto */
}

/* Efecto al pasar el mouse (Hover) */
.editorial-card:hover .feature-img {
  transform: scale(1.05);
  /* Zoom in suave */
  filter: grayscale(0%) contrast(1) brightness(0.9);
  /* Regresa el color */
}

.editorial-card:hover .feature-image-wrapper {
  border-color: rgba(255, 255, 255, 0.2);
  /* Aparece un marco sutil */
}

/* Textos debajo de la imagen */
.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 90%;
  margin: 0 auto;
}

/* Responsivo para las tarjetas */
@media (max-width: 1024px) {
  .features-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    /* Una columna en celular */
    gap: 4rem;
  }

  .feature-image-wrapper {
    aspect-ratio: 16 / 9;
    /* En celular se ve mejor horizontal */
  }
}

/* =========================================
   SECCIÓN GALERÍA & LIGHTBOX PREMIUM
========================================= */

/* Grilla de Galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}

.span-2 {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

/* Capa de Hover ("Ampliar") */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-overlay span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.5rem 1.2rem;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* =========================================
   LIGHTBOX (SLIDER FULLSCREEN)
========================================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: all;
}

/* Fondo Blur Elegante */
.lightbox-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Contenido de la Imagen */
.lightbox-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  /* Animación de entrada de la foto */
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s var(--ease);
}

.lightbox-content img.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Botones Minimalistas */
.lightbox-btn {
  position: absolute;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
  transition: color 0.3s, transform 0.3s;
  padding: 1rem;
}

.lightbox-btn:hover {
  color: var(--text-main);
  transform: scale(1.1);
}

.lightbox-close {
  top: 2rem;
  right: 2.5rem;
  font-size: 1.8rem;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* Responsivo Galería y Lightbox */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .lightbox-btn {
    font-size: 1.5rem;
    padding: 0.5rem;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }
}

.editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Eliminamos grayscale, dejamos un brillo sutil para que se vea elegante */
  filter: brightness(0.9) contrast(1.05);
  transition: filter 0.8s var(--ease), transform 0.8s var(--ease);
}

.image-wrapper:hover .editorial-img {
  filter: brightness(1.1) contrast(1.1);
  /* Se ilumina un poco más al hover */
  transform: scale(0.98);
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Color vivo desde el inicio, solo un poco oscurecido para el texto */
  filter: brightness(0.7) saturate(1.1);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.editorial-card:hover .feature-img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.2);
  /* Color vibrante al máximo al hover */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Color real, bajamos brillo para que el botón "Ampliar" destaque */
  filter: brightness(0.8);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
  /* Se ilumina al pasar el mouse */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  /* Un poco más de altura para que luzcan más */
  gap: 1rem;
  /* Esto ayuda a que el navegador intente rellenar huecos si los hubiera */
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Esto es vital para que no se deformen */
  display: block;
  filter: brightness(0.8);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

/* =========================================
   SECCIÓN VIDEO CINEMÁTICO PREMIUM
========================================= */
.video-promo-section {
  padding: 6rem 5vw;
  /* Espacio alrededor para que respire como una obra de arte */
  background-color: var(--bg-color);
}

.video-container {
  max-width: 1400px;
  /* Ancho máximo para pantallas muy grandes */
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 75vh;
  /* Formato alargado tipo cine */
  overflow: hidden;
  border: 1px solid var(--border-color);
  /* Marco fino elegantísimo */
  border-radius: 2px;
}

/* Efecto de Slow Zoom para el video */
.cinematic-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
  /* Color un poco más dramático */
  animation: slowZoom 25s linear infinite alternate;
  /* Magia pura */
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

/* Gradiente tipo viñeta (más oscuro arriba y abajo) */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

/* Textos sobre el video */
.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.video-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.video-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 200;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -1px;
}

.video-title em {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  color: #fff;
}

/* Línea sutil debajo del texto */
.video-separator {
  width: 2px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 2.5rem auto 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .video-promo-section {
    padding: 3rem 0;
    /* En móvil le quitamos el padding para que llene la pantalla */
  }

  .video-wrapper {
    height: 60vh;
    border-left: none;
    border-right: none;
  }
}

/* =========================================
   🔥 PARCHE: CORRECCIÓN DE OVERLAP Y MÓVIL 🔥
========================================= */

/* 1. Solución al Video que tapa el menú (Reseteo de altura) */
.video-promo-section {
  height: auto !important;
  /* Destruye los 60vh viejos que causaban el choque */
  position: relative;
  z-index: 1;
}

.video-wrapper {
  height: 75vh !important;
}

/* 2. Asegurar que el Menú se posicione correctamente debajo del video */
#menu {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  /* Evita cualquier desborde extraño */
}

/* 3. Solución al Menú que desaparece en Móvil */
.menu-grid {
  /* La magia: 'min(100%, 450px)'. En PC mide 450px, pero en celular se adapta al 100% de la pantalla sin romperse ni ocultarse */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr)) !important;
  gap: 2.5rem 2rem !important;
}

/* 4. Ajustes finos exclusivos para Celular (UX Premium) */
@media (max-width: 768px) {

  .video-promo-section {
    padding: 4rem 0 !important;
  }

  .video-wrapper {
    height: 50vh !important;
    /* Más proporcionado en vertical para celular */
  }

  /* Reducimos los márgenes de las secciones para aprovechar el espacio en pantallitas */
  .section {
    padding: 5rem 1.5rem !important;
  }

  /* Acomodamos el Titulo y el Precio en columnas para que no se apachurren */
  .menu-item-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .menu-item-header span:first-child {
    font-size: 1rem !important;
  }

  .menu-item-header span:last-child {
    font-size: 1.1rem !important;
    font-weight: 500;
    color: var(--text-main);
  }
}

/* =========================================
   SECCIÓN EQUIPO/HOMENAJE: EDITORIAL MEMORIAL
========================================= */
.editorial-memorial {
  padding: 10rem 5vw;
  background: linear-gradient(to bottom, #000, #0a0a0a);
}

.equipo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  /* Imagen más pequeña, texto con más aire */
  gap: 8rem;
  align-items: center;
}

/* El Marco del Chef */
.chef-image-col {
  position: relative;
}

.chef-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  /* Retrato vertical */
  z-index: 2;
}

.chef-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  /* Tono ligeramente cálido/nostálgico */
  transition: filter 0.5s var(--ease);
}

/* El cuadro de línea que envuelve la foto */
.frame-border {
  position: absolute;
  top: -25px;
  left: -25px;
  right: 25px;
  bottom: 25px;
  border: 1px solid var(--border-color);
  z-index: -1;
  pointer-events: none;
}

/* Tarjeta de Homenaje */
.tribute-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 3.5rem;
  margin-top: 3rem;
  overflow: hidden;
}

.tribute-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.chef-name {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.tribute-line {
  width: 40px;
  height: 1px;
  background-color: var(--text-gold);
  /* Un toque de color sutil */
  margin-bottom: 2rem;
}

.tribute-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
}

.tribute-text em {
  color: var(--text-main);
  font-style: normal;
  font-weight: 500;
}

/* Comilla gigante decorativa */
.tribute-quote-icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

/* Responsivo */
@media (max-width: 1100px) {
  .equipo-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    max-width: 700px;
    margin: 0 auto;
  }

  .chef-image-col {
    order: 2;
  }

  .chef-text-col {
    order: 1;
    text-align: center;
  }

  .tribute-line {
    margin: 0 auto 2rem;
  }
}

@media (max-width: 600px) {
  .tribute-card {
    padding: 2rem 1.5rem;
  }

  .chef-name {
    font-size: 2.2rem;
  }
}

/* =========================================
   NUEVA SECCIÓN EQUIPO: EDITORIAL MEMORIAL
========================================= */
.editorial-memorial {
  position: relative;
  overflow: hidden;
}

.equipo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  /* Imagen un poco más chica que el texto */
  gap: 6rem;
  align-items: center;
}

.chef-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  z-index: 2;
}

.chef-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Toque nostálgico */
  transition: filter 0.8s var(--ease), transform 0.8s var(--ease);
}

.chef-frame:hover .chef-img {
  /* Regresa el color al 100% */
  transform: scale(0.98);
}

.frame-border {
  position: absolute;
  top: 25px;
  right: -25px;
  bottom: -25px;
  left: 25px;
  border: 1px solid var(--border-color);
  z-index: -1;
  transition: all 0.6s var(--ease);
}

.chef-frame:hover .frame-border {
  top: 10px;
  right: -10px;
  bottom: -10px;
  left: 10px;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Placa Conmemorativa */
.tribute-card {
  position: relative;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.02);
  /* Fondo de cristal muy suave */
  border: 1px solid var(--border-color);
  margin-top: 3rem;
  overflow: hidden;
}

.tribute-quote-icon {
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.tribute-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.chef-name {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.tribute-line {
  width: 50px;
  height: 1px;
  background-color: var(--text-main);
  margin-bottom: 1.5rem;
}

.tribute-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
}


/* =========================================
   NUEVA SECCIÓN UBICACIÓN: PREMIUM CONTACT
========================================= */
.location-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  /* El mapa ocupa más espacio */
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.map-box {
  width: 100%;
  height: 100%;
  min-height: 500px;
  /* Asegura que no se haga chaparrito */
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(1.1);
  /* Efecto Dark Mode Mapa */
}

.info-panel {
  padding: 4rem 3rem;
  background-color: var(--bg-color);
  /* Fondo negro puro */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  border-left: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
  opacity: 0.8;
  margin-top: -5px;
  /* Alineación perfecta con el texto */
}

.info-content .box-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.info-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================
   RESPONSIVE (Para Celulares y Tablets)
========================================= */
@media (max-width: 1024px) {

  /* Homenaje Celular */
  .equipo-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .chef-image-col {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Ubicación Celular */
  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .map-box {
    min-height: 350px;
    /* Mapa más pequeño en celular */
  }

  .info-panel {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
  }
}

/* =========================================
   FOOTER: EDITORIAL MASTER FOOTER
========================================= */
.footer-premium {
  padding: 8rem 0 4rem 0;
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 5rem;
}

.footer-brand-logo {
  height: 50px;
  width: auto;
  opacity: 0.9;
}

/* Botón Volver Arriba */
.back-to-top {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color 0.4s var(--ease);
}

.back-to-top:hover {
  color: var(--text-main);
}

.arrow-up {
  font-size: 1.2rem;
  transition: transform 0.4s var(--ease);
}

.back-to-top:hover .arrow-up {
  transform: translateY(-5px);
}

/* Grid Principal */
.footer-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 8rem;
}

.footer-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-main);
  margin-bottom: 2rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links a,
.footer-address {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* Barra Inferior */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Tu Firma (Branding de autor) */
.author-credit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.credit-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
  text-decoration: none;
  transition: opacity 0.3s;
}

.author-name:hover {
  opacity: 0.7;
}

/* Responsivo Footer */
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-premium {
    padding: 5rem 2rem 3rem 2rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .author-credit {
    align-items: center;
  }
}

/* =========================================
   🔥 FIX DEFINITIVO Y FINAL PARA MÓVIL 🔥
========================================= */

@media (max-width: 768px) {

  /* --- 1. REPARACIÓN DE LA GALERÍA (Estilo Instagram) --- */
  .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    /* Fuerza 1 sola columna estricta */
    grid-auto-rows: 400px !important;
    /* Altura perfecta para fotos en celular */
    gap: 1.5rem !important;
  }

  /* Rompemos el span-2 para que las fotos grandes no fuercen columnas extra */
  .gallery-item,
  .gallery-item.span-2 {
    grid-column: span 1 !important;
    width: 100% !important;
  }

  /* --- 2. REPARACIÓN DEL MENÚ FANTASMA --- */
  /* Forzamos a que el menú siempre sea visible en celular saltándonos la animación,
     ya que la sección es muy grande para la pantalla de un móvil */
  #menu {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: block !important;
    visibility: visible !important;
  }

  .menu-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  /* --- 3. DISEÑO DE PLATILLOS EN MÓVIL --- */
  .menu-item-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2) !important;
    padding-bottom: 12px !important;
  }

  .menu-item-header span:first-child {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    /* Evita que los nombres largos se corten */
  }

  .menu-item-header span:last-child {
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    color: var(--text-gold, #cfa86e) !important;
    /* Color elegante para el precio */
    align-self: flex-start !important;
  }
}

/* =========================================
   REDISEÑO DE UBICACIÓN (PREMIUM CON IMAGEN)
========================================= */

/* Estructura Principal */
.location-wrapper.layout-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Mitad imagen, mitad datos */
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background-color: var(--bg-color);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Columna Izquierda: Imagen del Local */
.local-image-box {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.local-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
  /* Efecto dramático suave */
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.location-wrapper.layout-with-image:hover .local-img {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.05);
}

/* Columna Derecha: Contenedor Textos + Mapa */
.location-details {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-color);
}

/* Panel de Textos Tipográficos */
.info-panel {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--bg-color);
}

.info-item {
  display: block;
  /* Ya no usamos flex porque quitamos los iconos */
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  /* Línea divisoria elegante */
  padding-bottom: 1.5rem;
}

.info-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item .box-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
  /* Tono tenue para la etiqueta */
  margin-bottom: 0.8rem;
}

.info-item p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 300;
}

/* Botón "¿Cómo llegar?" pegado abajo */
.location-action {
  margin-top: 0.5rem;
}

/* Mapa en la parte inferior derecha */
.location-details .small-map {
  flex-grow: 1;
  /* Rellena el espacio que sobra abajo */
  min-height: 250px;
  /* Altura mínima para que no desaparezca */
  border-top: 1px solid var(--border-color);
}

.small-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* --- RESPONSIVO PARA LA NUEVA UBICACIÓN MÓVIL --- */
@media (max-width: 1024px) {
  .location-wrapper.layout-with-image {
    grid-template-columns: 1fr;
    /* Se apilan en pantallas pequeñas */
  }

  .local-image-box {
    min-height: 400px;
  }

  .location-details {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }

  .location-details .small-map {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .info-panel {
    padding: 2.5rem 1.5rem;
    /* Menos padding en celular */
  }
}

/* =========================================
   NUEVA SECCIÓN: DELIVERY (UBER EATS CTA)
========================================= */

.editorial-delivery {
  padding: 6rem 5vw;
  background-color: var(--bg-color);
}

.delivery-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.02);
  /* Fondo de cristal muy tenue */
  border: 1px solid var(--border-color);
  padding: 4rem;
  border-radius: 2px;
  overflow: hidden;
}

/* Botón Especial de Uber Eats */
.uber-btn {
  display: inline-flex;
  width: auto;
  gap: 15px;
  border-color: rgba(255, 255, 255, 0.3);
}

.uber-btn:hover {
  background-color: #06C167;
  /* Verde oficial de Uber Eats */
  border-color: #06C167;
  color: #fff;
}

/* Imagen y Sello */
.delivery-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Cuadrado perfecto */
  border-radius: 2px;
  overflow: hidden;
}

.del-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.1) brightness(0.8);
  transition: filter 0.8s var(--ease), transform 0.8s var(--ease);
}

.delivery-wrapper:hover .del-img {
  filter: grayscale(0%) contrast(1.1) brightness(1);
  transform: scale(1.05);
}

/* Sellito circular de Uber */
.uber-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #06C167;
  /* Acento sutil de marca */
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Responsivo para Delivery */
@media (max-width: 1024px) {
  .delivery-wrapper {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 3.5rem;
  }

  .delivery-image {
    aspect-ratio: 16 / 9;
    /* Más apaisado en móvil para que no sea tan alto */
  }
}

/* Estilos para el selector de idioma */
.lang-wrapper {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 4px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.lang-wrapper span {
  padding: 6px 12px;
  border-radius: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
}

/* El idioma SELECCIONADO se marca en blanco con texto oscuro */
.lang-wrapper span.active {
  background: #ffffff;
  color: #000000;
}

/* El idioma NO seleccionado se atenúa */
.lang-wrapper span:not(.active) {
  opacity: 0.5;
}

.lang-wrapper span:not(.active):hover {
  opacity: 0.8;
}

/* =========================================
   NUEVAS SECCIONES: RESERVACIONES Y FACTURACIÓN
========================================= */

/* --- Reservaciones (Parallax Elegante) --- */
.editorial-reservations {
  padding: 10rem 5vw;
  /* Efecto Parallax con fondo oscuro */
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/ambiente-2.webp') center/cover no-repeat;
  background-attachment: fixed;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reservation-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5rem 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  /* Efecto cristalino */
  -webkit-backdrop-filter: blur(8px);
}

/* Botón dorado para resaltar la reservación */
.gold-btn {
  display: inline-flex;
  justify-content: center;
  width: auto;
  border-color: var(--text-gold, #cfa86e);
  color: var(--text-gold, #cfa86e);
}

.gold-btn:hover {
  background-color: var(--text-gold, #cfa86e);
  color: var(--bg-color);
}

.tolerance-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2rem;
  letter-spacing: 1px;
}

/* --- Facturación --- */
.premium-billing {
  padding: 8rem 5vw;
}

.billing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.inline-btn {
  display: inline-flex;
  width: auto;
  padding: 1rem 0;
  /* Más limpio */
}

/* Tarjeta de Soporte */
.support-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 2px;
}

.support-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.support-card h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-weight: 400;
}

.support-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.support-link {
  color: var(--text-gold, #cfa86e);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--text-gold, #cfa86e);
  transition: opacity 0.3s;
  letter-spacing: 1px;
}

.support-link:hover {
  opacity: 0.7;
}

/* Responsivo Reservaciones y Facturación */
@media (max-width: 1024px) {
  .billing-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .editorial-reservations {
    background-attachment: scroll;
    /* Desactiva el parallax en móvil para evitar bugs de iOS */
    padding: 6rem 5vw;
  }

  .reservation-wrapper {
    padding: 3rem 1.5rem;
  }
}

/* Separador vertical entre Historia y Fundadores */
.editorial-divider {
  width: 1px;
  height: 120px;
  background-color: var(--border-color);
  margin: 6rem auto;
}

/* =========================================
   SELECTOR DE IDIOMA VISUAL
========================================= */
.lang-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

.lang-label {
  opacity: 0.5;
  transition: all 0.3s var(--ease);
}

.lang-label.active {
  opacity: 1;
  /* Línea separada y elegante */
}

.lang-separator {
  opacity: 0.5;
  font-weight: 300;
}

/* Botón de soporte específico */
.support-wa-btn {
  justify-content: center;
  margin-top: 1rem;
  border-radius: 4px !important;
  /* Un poco más cuadrado para la tarjeta */
  background-color: rgba(255, 255, 255, 0.05);
}

.support-wa-btn:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
}