/* ==========================================================================
   DILOM SUSHI - LANDING PAGE STYLESHEET
   Design Theme: Dark Premium Gastronomic (Black, Gold Accent, Red Brand Highlight)
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
  --bg-main: #070707;
  --bg-surface: #101010;
  --bg-card: rgba(18, 18, 18, 0.85);
  --bg-card-hover: rgba(28, 28, 28, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.03);

  --color-gold: #D4AF37;
  --color-gold-light: #F4D068;
  --color-gold-dark: #A88620;
  --color-red: #D32F2F;
  --color-red-bright: #E53935;

  --color-text-main: #FFFFFF;
  --color-text-sub: #D1D5DB;
  --color-text-muted: #9CA3AF;

  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-glow: rgba(212, 175, 55, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', cursive, sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.25);
  --shadow-red: 0 0 15px rgba(211, 47, 47, 0.3);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1240px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--color-text-main);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.w-100 { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3.5rem; }

/* --- Top Announcement Bar --- */
.top-announcement-bar {
  background: linear-gradient(90deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-red);
}

.icon-small {
  width: 14px;
  height: 14px;
}

.announcement-text {
  color: var(--color-text-sub);
}

.highlight-gold {
  color: var(--color-gold);
  font-weight: 700;
}

/* --- Header Section --- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background-color: rgba(5, 5, 5, 0.98);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-img {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1.1;
}

.brand-red {
  color: var(--color-red-bright);
}

.brand-slogan-sub {
  font-family: var(--font-script);
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-top: -2px;
}

/* Desktop Navigation */
.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: 0.5px;
  color: var(--color-text-sub);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Schedule Badge */
.header-schedule-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.icon-calendar {
  width: 16px;
  height: 16px;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-btn .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --- Mobile Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--bg-surface);
  border-left: 1px solid var(--border-gold);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
}

.drawer-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
}

.close-drawer-btn {
  background: transparent;
  border: none;
  color: var(--color-text-sub);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

.drawer-badge-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(211, 47, 47, 0.12);
  border: 1px solid var(--color-red);
  padding: 0.85rem;
  border-radius: 8px;
  color: var(--color-text-main);
}

.drawer-badge-box svg {
  width: 24px;
  height: 24px;
  color: var(--color-red-bright);
  flex-shrink: 0;
}

.drawer-badge-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gold);
}

.drawer-badge-info span {
  font-size: 0.8rem;
  color: var(--color-text-sub);
}

.mobile-nav-list li {
  margin-bottom: 1rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text-main);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-glass);
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Hero Section Slider --- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--bg-main);
  overflow: hidden;
}

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

.slides-container {
  position: relative;
  min-height: 85vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.03);
  transition: transform 6s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 7, 7, 0.4) 0%, rgba(7, 7, 7, 0.9) 100%),
              linear-gradient(180deg, rgba(7, 7, 7, 0.6) 0%, rgba(7, 7, 7, 0.95) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 800px;
}

.hero-slogan-script {
  font-family: var(--font-script);
  font-size: 2.75rem;
  color: var(--color-gold-light);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.85rem;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
}

/* Schedule Card in Hero */
.hero-schedule-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--color-gold);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md), var(--shadow-gold);
  max-width: 520px;
}

.schedule-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.schedule-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.hero-badge-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-red-bright);
  text-transform: uppercase;
}

.hero-schedule-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-gold);
  line-height: 1.2;
}

.hero-schedule-time {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--color-text-sub);
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: #000000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #28e16f 0%, #159e8e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-sm {
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp-sm:hover {
  background: #1eb956;
  transform: scale(1.05);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.icon-wa {
  width: 20px;
  height: 20px;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--color-gold);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--color-gold);
  color: #000000;
  box-shadow: var(--shadow-gold);
}

.prev-btn { left: 1.5rem; }
.next-btn { right: 1.5rem; }

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dots .dot.active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 10px;
  box-shadow: var(--shadow-gold);
}

/* --- Presentation Section --- */
.presentation-section {
  padding: 2.5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.presentation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2rem 3rem;
  box-shadow: var(--shadow-md);
}

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

.presentation-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.35rem;
}

.presentation-subtitle {
  font-size: 0.925rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-gold);
}

.presentation-decor svg {
  width: 42px;
  height: 42px;
  color: var(--color-gold);
  opacity: 0.8;
}

/* --- Section Headers --- */
.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--color-text-main);
  letter-spacing: 0.5px;
}

.title-underline {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-red) 100%);
  margin: 0.75rem auto 1.25rem auto;
  border-radius: 2px;
}

.title-underline.text-left {
  margin-left: 0;
}

.section-subtext {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-sub);
  letter-spacing: 1px;
}

/* --- Nuestros Platos Section --- */
.menu-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.category-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.category-icon svg {
  width: 22px;
  height: 22px;
}

.category-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-gold);
  letter-spacing: 0.5px;
}

.category-items-list {
  margin-bottom: 1.5rem;
  flex: 1;
}

.category-items-list li {
  font-size: 0.975rem;
  color: var(--color-text-sub);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  display: inline-block;
}

/* Category Filter Navigation Tabs */
.menu-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.menu-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--color-text-sub);
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-tab-btn:hover, .menu-tab-btn.active {
  background: var(--color-gold);
  color: #000000;
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

/* Category Block Groups */
.category-block-group {
  transition: all var(--transition-normal);
}

.category-block-group.hidden {
  display: none;
}

.category-block-header {
  border-left: 4px solid var(--color-gold);
  background: rgba(212, 175, 55, 0.05);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-bottom: 1.75rem;
}

.cat-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cat-title-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
}

.cat-title-wrap h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.cat-description {
  font-size: 0.875rem;
  color: var(--color-gold-light);
  margin-top: 0.25rem;
}

/* Ingredients Display Card */
.ingredients-display-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2rem;
}

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

.ing-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-sub);
  font-size: 0.95rem;
}

.ing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

/* --- Dishes Gallery Section (All 17 Photos) --- */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.dish-card.hidden {
  display: none;
}

.dish-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.dish-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.dish-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-img-box img {
  transform: scale(1.08);
}

.dish-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(7, 7, 7, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--color-gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.dish-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.dish-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.dish-desc {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 0.85rem;
}

.dish-tag {
  font-size: 0.775rem;
  color: var(--color-gold);
  font-weight: 600;
}

.menu-expansion-notice {
  margin-top: 3.5rem;
  background: rgba(18, 18, 18, 0.7);
  border: 1px dashed var(--border-gold);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.menu-expansion-notice p {
  max-width: 700px;
  color: var(--color-text-sub);
  font-size: 0.95rem;
}

/* --- Promociones Section --- */
.promos-banner {
  background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  box-shadow: var(--shadow-md);
}

.promos-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.promo-tag {
  background: var(--color-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.promos-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

.promos-desc {
  color: var(--color-text-sub);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.promos-schedule-reminder {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--color-gold);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.promos-schedule-reminder svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.promos-image-side {
  position: relative;
  min-height: 350px;
}

.promos-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Quiénes Somos Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(7, 7, 7, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.about-badge-overlay .gold-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-gold);
}

.about-badge-overlay span {
  font-size: 0.825rem;
  color: var(--color-text-sub);
}

.about-text-content p {
  color: var(--color-text-sub);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.schedule-highlight-inline {
  color: var(--color-gold);
  font-weight: 800;
  background: rgba(212, 175, 55, 0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
}

.about-schedule-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(211, 47, 47, 0.1);
  border: 1px solid var(--color-red);
  padding: 1.25rem;
  border-radius: 12px;
}

.about-schedule-box .box-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.about-schedule-box .box-icon svg {
  width: 22px;
  height: 22px;
}

.about-schedule-box h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.about-schedule-box p {
  font-size: 0.85rem;
  color: var(--color-text-sub);
  margin-bottom: 0;
}

/* --- Horario Section --- */
.schedule-featured-section {
  background: var(--bg-surface);
}

.schedule-featured-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 2px solid var(--color-gold);
  border-radius: 24px;
  padding: 3.5rem;
  text-align: center;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.18);
  position: relative;
}

.schedule-featured-header {
  margin-bottom: 2.5rem;
}

.important-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-red);
}

.important-badge svg {
  width: 16px;
  height: 16px;
}

.schedule-featured-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: #FFFFFF;
}

.schedule-featured-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.schedule-item-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.schedule-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.schedule-icon-circle svg {
  width: 32px;
  height: 32px;
}

.schedule-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.schedule-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  color: #FFFFFF;
}

.schedule-divider-line {
  width: 2px;
  height: 60px;
  background: var(--border-gold);
}

.schedule-notice-sub {
  color: var(--color-text-sub);
  font-size: 0.95rem;
}

/* --- Formas de Pago --- */
.payment-section {
  padding: 2.5rem 0;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gold);
}

.payment-icon {
  width: 28px;
  height: 28px;
}

.payment-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #FFFFFF;
}

.payment-method-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 0.95rem;
}

.payment-method-item svg {
  width: 18px;
  height: 18px;
  color: #25D366;
}

/* --- Contacto & Formulario Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-info-card, .contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.card-subtitle {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-glass);
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.info-val {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-top: 0.15rem;
}

.btn-maps-sm {
  margin-top: 0.6rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--color-gold);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
}

.btn-maps-sm:hover {
  background: var(--color-gold);
  color: #000000;
}

.btn-maps-sm svg {
  width: 14px;
  height: 14px;
}

.email-link {
  color: var(--color-gold);
  font-size: 1.05rem;
  font-weight: 600;
}

.email-link:hover {
  text-decoration: underline;
}

.social-links-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border-glass);
}

.fb-btn {
  background: rgba(24, 119, 242, 0.15);
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.3);
}

.fb-btn:hover { background: #1877F2; color: #FFFFFF; }

.ig-btn {
  background: rgba(225, 48, 108, 0.15);
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.3);
}

.ig-btn:hover { background: #E1306C; color: #FFFFFF; }

.social-icon-btn svg {
  width: 16px;
  height: 16px;
}

/* Contact Form Styling */
.form-subtext {
  color: var(--color-text-sub);
  font-size: 0.925rem;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.col-half {
  flex: 1;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.required-star {
  color: var(--color-red-bright);
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
  background: rgba(15, 15, 15, 0.95);
}

.form-group.invalid input, .form-group.invalid textarea {
  border-color: var(--color-red-bright);
}

.error-msg {
  color: var(--color-red-bright);
  font-size: 0.775rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.invalid .error-msg {
  display: block;
}

.btn-send svg {
  width: 18px;
  height: 18px;
}

/* Success Toast */
.form-success-toast {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid #25D366;
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  color: #FFFFFF;
}

.form-success-toast.active {
  display: flex;
}

.form-success-toast svg {
  width: 28px;
  height: 28px;
  color: #25D366;
  flex-shrink: 0;
}

.form-success-toast strong {
  color: #25D366;
  font-size: 1rem;
}

.form-success-toast p {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  margin-top: 0.25rem;
}

/* --- Final CTA Section --- */
.final-cta-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%);
}

.final-cta-card {
  background: radial-gradient(circle at center, rgba(30, 25, 10, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 2px solid var(--color-gold);
  border-radius: 24px;
  padding: 4rem 2rem;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.cta-mini-script {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.final-cta-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-sub);
  margin-bottom: 2.25rem;
}

.btn-hero-cta {
  padding: 1.15rem 2.75rem;
  font-size: 1.15rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.final-schedule-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-size: 0.925rem;
  font-weight: 600;
  margin-top: 2rem;
}

.final-schedule-footer-note svg {
  width: 18px;
  height: 18px;
}

/* --- Main Footer --- */
.main-footer {
  background-color: #030303;
  border-top: 1px solid var(--border-gold);
  padding-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFFFFF;
  display: block;
}

.footer-script-slogan {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--color-gold);
}

.footer-info-col p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-sub);
  font-size: 0.925rem;
  margin-bottom: 0.75rem;
}

.footer-info-col svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.footer-schedule-badge {
  color: var(--color-gold) !important;
  font-weight: 700;
}

.footer-social-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 1rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.85rem;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-sub);
  transition: all var(--transition-fast);
}

.social-circle.wa:hover { background: #25D366; color: #FFFFFF; border-color: #25D366; }
.social-circle.fb:hover { background: #1877F2; color: #FFFFFF; border-color: #1877F2; }
.social-circle.ig:hover { background: #E1306C; color: #FFFFFF; border-color: #E1306C; }

.social-circle svg {
  width: 20px;
  height: 20px;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-glass);
  padding: 1.5rem 0;
  font-size: 0.825rem;
  color: var(--color-text-muted);
}

/* --- Permanent Floating WhatsApp Widget --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease;
  animation: pulse-wa 2.5s infinite;
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #121212;
  border: 1px solid var(--color-gold);
  color: #FFFFFF;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp-btn:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .promos-banner {
    grid-template-columns: 1fr;
  }
  .promos-image-side {
    min-height: 250px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav, .header-schedule-badge {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-slogan-script {
    font-size: 2.1rem;
  }
  .presentation-card {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }
  .presentation-decor {
    display: none;
  }
  .schedule-featured-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .schedule-divider-line {
    width: 80%;
    height: 1px;
  }
  .schedule-featured-card {
    padding: 2rem 1.25rem;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .prev-btn { left: 0.5rem; }
  .next-btn { right: 0.5rem; }
  .floating-whatsapp-btn {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .dishes-grid {
    grid-template-columns: 1fr;
  }
  .menu-tabs-bar {
    gap: 0.5rem;
  }
  .menu-tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .btn {
    width: 100%;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .final-cta-title {
    font-size: 2.25rem;
  }
  .social-links-row {
    flex-direction: column;
  }
}
