/* ============================================================
   OH-TORO — ESTILOS PRINCIPALES
   Paleta: Rojo #C8102E · Negro #111111 · Blanco #FAFAFA
   ============================================================ */

/* ----------------------------------------
   1. VARIABLES
---------------------------------------- */
:root {
  --red:         #C8102E;
  --red-dark:    #8B0000;
  --red-glow:    rgba(200, 16, 46, 0.35);
  --black:       #111111;
  --dark:        #111111;
  --dark-2:      #1C1C1C;
  --white:       #FAFAFA;
  --gray:        #F4F4F4;
  --gray-2:      #E0E0E0;
  --text:        #1C1C1C;
  --text-muted:  #666666;
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg:   0 12px 40px rgba(0, 0, 0, 0.25);
  --ease:        0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: #0D0909;
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

ul { list-style: none; }

/* ----------------------------------------
   3. UTILIDADES
---------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 110px 0;
}

.section-header.center {
  text-align: center;
  margin-bottom: 64px;
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.label.light {
  color: rgba(200, 16, 46, 0.85);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.65);
}

/* ----------------------------------------
   4. BOTONES
---------------------------------------- */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), color var(--ease);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

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

.btn-large {
  padding: 18px 52px;
  font-size: 13px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-full {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ----------------------------------------
   5. NAVBAR
---------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 22px 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

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

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
}

.nav-cta:hover { background: var(--red-dark) !important; }

/* Desktop: standalone, fuera del nav-links */
.nav-order-desktop {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8) !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 16px;
  border-radius: 2px;
  white-space: nowrap;
  transition: color var(--ease), border-color var(--ease);
}

.nav-order-desktop:hover {
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.7);
}

/* Mobile: dentro del nav-links overlay */
.nav-order-mobile { display: none; }

.nav-order {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

/* ----------------------------------------
   6. HERO
---------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(139, 0, 0, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(200, 16, 46, 0.08) 0%, transparent 50%),
    linear-gradient(160deg, #0a0a0a 0%, #0f0404 50%, #0a0a0a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%),
    url('Imagenes/hero-ramen.png') center / cover no-repeat;
  opacity: 0.75;
}

/* Kanji decorativo de fondo */
.hero-kanji {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Noto Serif JP', serif;
  font-size: 55vw;
  line-height: 1;
  color: rgba(200, 16, 46, 0.045);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 28px;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -3px;
  line-height: 0.9;
  margin-bottom: 24px;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  word-break: keep-all;
  hyphens: none;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.hero-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  margin-bottom: 52px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Indicador de scroll */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

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

/* ----------------------------------------
   6b. PROPUESTA STRIP
---------------------------------------- */
.propuesta-strip {
  background: transparent;
}

.propuesta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.propuesta-item {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background var(--ease);
}

.propuesta-item:last-child { border-right: none; }

.propuesta-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}

.propuesta-item:hover::after { transform: scaleX(1); }
.propuesta-item:hover { background: rgba(255,255,255,0.02); }

.propuesta-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 12px;
}

.propuesta-item h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.propuesta-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ----------------------------------------
   7. NOSOTROS
---------------------------------------- */
.nosotros {
  background: transparent;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nosotros-img-wrap {
  position: relative;
}

.nosotros-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.nosotros-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.nosotros-img:hover img { transform: scale(1.04); }

.nosotros-img-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 75%;
  height: 75%;
  border: 2.5px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}

.nosotros-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Stats */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ----------------------------------------
   8. EL SABOR
---------------------------------------- */
.el-sabor {
  background: transparent;
}

.sabor-feature {
  margin-bottom: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
}

.sabor-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.dish-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dish-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #222;
}

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

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

.dish-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  pointer-events: none;
}

.dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.dish-info {
  padding: 20px;
}

.dish-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}

.dish-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ----------------------------------------
   9. NUESTRO LOCAL
---------------------------------------- */
.nuestro-local {
  background: transparent;
}

.local-header {
  margin-bottom: 48px;
}

.local-photo {
  margin-bottom: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}

.local-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.local-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.8;
  margin-top: 16px;
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  margin-top: 2px;
}

.info-block h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.info-block p { color: var(--text); line-height: 1.7; }
.info-block a:hover { color: var(--red); }

/* Horarios */
.horarios {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.horario-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}

.horario-row:last-child { border-bottom: none; }

.horario-row.closed span { color: var(--text-muted); font-style: italic; }

/* Botón pedir en línea */
.local-order-wrap {
  margin-top: 64px;
  text-align: center;
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.local-order-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.local-menu-link {
  display: inline-block;
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 28px;
  text-decoration: none;
  animation: menu-glow 2.8s ease-in-out infinite;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.local-menu-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
  animation: none;
}
@keyframes menu-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }
  50%       { box-shadow: 0 0 16px rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.50); }
}

/* Mapa */
.local-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 520px;
}

.local-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----------------------------------------
   10. FRANQUICIA
---------------------------------------- */
.franquicia {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.franquicia::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

/* Kanji decorativo */
.franquicia::after {
  content: '';
  position: absolute;
  right: -4%;
  bottom: -10%;
  font-family: 'Noto Serif JP', serif;
  font-size: 40vw;
  color: rgba(200, 16, 46, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Header de franquicia en dos columnas */
.franquicia-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.franquicia-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-top: 28px;
}

/* Banner de territorios */
.territorio-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 56px;
}

.territorio-banner svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  flex-shrink: 0;
}

.territorio-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.territorio-banner strong {
  color: var(--white);
  font-weight: 600;
}

/* Nota bajo CTA */
.cta-note {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* Beneficios */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.beneficio-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}

.beneficio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--ease);
}

.beneficio-card:hover::after { transform: scaleX(1); }

.beneficio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 16, 46, 0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.beneficio-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: var(--radius);
  background: rgba(200, 16, 46, 0.07);
  color: var(--red);
  transition: background var(--ease), border-color var(--ease);
}

.beneficio-card:hover .beneficio-icon {
  background: rgba(200, 16, 46, 0.14);
  border-color: rgba(200, 16, 46, 0.45);
}

.beneficio-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--red);
  flex-shrink: 0;
}

.beneficio-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.beneficio-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* Números clave de franquicia */
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 64px 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.numero-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.02);
  text-align: center;
  border-right: 1px solid var(--border-dark);
  transition: background var(--ease);
}

.numero-item:last-child { border-right: none; }

.numero-item:hover { background: rgba(200, 16, 46, 0.06); }

.numero-val {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  display: block;
}

.numero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
}

/* Pasos */
.pasos-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 64px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.pasos-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 52px;
}

.pasos-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.paso {
  text-align: center;
  padding: 0 12px;
}

.paso-linea {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, var(--red), rgba(200,16,46,0.2));
  flex-shrink: 0;
}

.paso-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.75;
}

.paso h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.paso p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.franquicia-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.franquicia-cta .btn {
  width: 100%;
  max-width: 380px;
  text-align: center;
  justify-content: center;
}

/* ----------------------------------------
   11. CONTACTO
---------------------------------------- */
.contacto {
  background: transparent;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contacto-text .section-title { color: var(--white); }

.contacto-text p {
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.85;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.contacto-info a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contacto-info a:hover { color: var(--red); }

/* Formulario */
.contacto-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  resize: vertical;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(200,16,46,0.06);
}

.form-group textarea { margin-bottom: 24px; }

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

/* ----------------------------------------
   12. FOOTER
---------------------------------------- */
.footer {
  background: rgba(5, 3, 5, 0.80);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo-img {
  height: 96px;
  width: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background var(--ease), color var(--ease);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

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

.footer-nav h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

.footer-nav a { color: rgba(255,255,255,0.45); }
.footer-nav a:hover { color: var(--red); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ----------------------------------------
   13. ANIMACIONES DE ENTRADA
---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Delay en cascada para tarjetas */
.dish-card:nth-child(2),
.beneficio-card:nth-child(2) { transition-delay: 0.08s; }
.dish-card:nth-child(3),
.beneficio-card:nth-child(3) { transition-delay: 0.16s; }
.dish-card:nth-child(4),
.beneficio-card:nth-child(4) { transition-delay: 0.24s; }

/* ----------------------------------------
   14. RESPONSIVE — TABLET (≤ 1024px)
---------------------------------------- */
@media (max-width: 1024px) {
  .dishes-grid      { grid-template-columns: 1fr 1fr; }
  .beneficios-grid  { grid-template-columns: 1fr 1fr; }
  .propuesta-grid   { grid-template-columns: 1fr 1fr; }
  .numeros-grid     { grid-template-columns: 1fr 1fr; }

  .franquicia-header { grid-template-columns: 1fr; gap: 24px; }

  .pasos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .paso-linea { display: none; }

  .nosotros-grid,
  .local-grid,
  .contacto-grid { gap: 56px; }
}

/* ----------------------------------------
   15. RESPONSIVE — MÓVIL (≤ 768px)
---------------------------------------- */
@media (max-width: 768px) {
  .section { padding: 80px 0; }

  /* Nav */
  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  .nav-order-desktop { display: none; }
  .nav-order-mobile { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background:
      radial-gradient(ellipse 90% 50% at 50% 0%,   rgba(200, 16, 46, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 50% 100%,  rgba(200, 16, 46, 0.10) 0%, transparent 55%),
      #0E0406;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 2px solid rgba(200, 16, 46, 0.5);
  }

  .nav-links.open { display: flex; }

  /* Animación escalonada de entrada */
  @keyframes menuItemIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open li {
    opacity: 0;
    animation: menuItemIn 0.35s ease forwards;
    width: 100%;
    text-align: center;
  }

  .nav-links.open li:nth-child(1) { animation-delay: 0.05s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.12s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.19s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.26s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.33s; }
  .nav-links.open li:nth-child(6) { animation-delay: 0.40s; }

  /* Todos los enlaces — Inter, uppercase, tracking amplio */
  .nav-links li a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    display: block;
    padding: 15px 0;
    text-align: center;
    position: relative;
    transition: color 0.25s ease, letter-spacing 0.25s ease;
  }

  .nav-links li a::after { display: none; }

  .nav-links li a:hover {
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 7px;
  }

  /* Separador antes del CTA */
  .nav-links li:has(.nav-cta) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 60%;
  }

  /* Botón Solicitar — gris apagado */
  .nav-links .nav-cta {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55) !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 13px 40px;
    border-radius: 0;
    display: inline-block;
    transition: color 0.25s ease, border-color 0.25s ease;
  }

  .nav-links .nav-cta:hover { color: rgba(255,255,255,0.85) !important; background: transparent !important; border-color: rgba(255,255,255,0.4); letter-spacing: 4px; }

  /* "Pide acá" al fondo — rojo sólido */
  .nav-links li.nav-order-mobile {
    position: absolute;
    bottom: 64px;
    left: 0;
    width: 100%;
    text-align: center;
    animation-delay: 0.45s !important;
  }

  .nav-links .nav-order {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white) !important;
    background: var(--red);
    border: none;
    padding: 13px 40px;
    border-radius: 0;
    display: inline-block;
    transition: background 0.25s ease;
  }

  .nav-links .nav-order::after { display: none; }
  .nav-links .nav-order:hover {
    color: var(--white) !important;
    background: var(--red-dark);
  }

  /* Hero */
  .hero-title { letter-spacing: -1px; white-space: normal; }
  .hero-kanji { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-sub { letter-spacing: 1.5px; }

  /* Propuesta strip */
  .propuesta-grid { grid-template-columns: 1fr 1fr; }
  .propuesta-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .propuesta-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .propuesta-item:last-child, .propuesta-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Nosotros */
  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .nosotros-img-wrap { order: -1; }
  .nosotros-img-accent { display: none; }
  .stats { flex-wrap: wrap; gap: 24px; }

  /* Sabor */
  .dishes-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Local */
  .local-grid { grid-template-columns: 1fr; gap: 48px; }
  .local-map { height: 360px; }

  /* Franquicia */
  .beneficios-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .pasos-wrap {
    padding: 36px 24px;
  }
  .pasos-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Contacto */
  .contacto-grid { grid-template-columns: 1fr; gap: 48px; }
  .contacto-form { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }

  /* ---- Compresión general ---- */
  .section { padding: 56px 0; }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .section-desc {
    font-size: 0.84rem;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(3rem, 16vw, 6rem);
    margin-bottom: 16px;
  }
  .hero-tagline {
    font-size: clamp(1rem, 4.5vw, 1.3rem);
    margin-bottom: 12px;
  }
  .hero-eyebrow { font-size: 10px; letter-spacing: 3px; }
  .hero-content { padding: 0 20px; }

  /* Propuesta strip */
  .propuesta-item { padding: 24px 18px; }
  .propuesta-num  { font-size: 0.65rem; margin-bottom: 8px; }
  .propuesta-item h3 { font-size: 0.72rem; margin-bottom: 6px; }
  .propuesta-item p  { font-size: 0.76rem; }

  /* Franquicia */
  .franquicia-intro { font-size: 0.88rem; line-height: 1.65; }
  .beneficio-card   { padding: 20px 18px; }
  .beneficio-card h3 { font-size: 0.95rem; }
  .beneficio-card p  { font-size: 0.82rem; }
  .beneficio-icon   { width: 40px; height: 40px; margin-bottom: 14px; }

  .numero-val   { font-size: 1.6rem; }
  .numero-label { font-size: 10px; }
  .numero-item  { padding: 20px 10px; }

  .paso h4 { font-size: 0.88rem; }
  .paso p   { font-size: 0.80rem; }
  .paso-num { font-size: 2rem; }

  /* Nosotros */
  .nosotros-grid { gap: 32px; }
  .stat-num   { font-size: clamp(1.4rem, 6vw, 2rem); }
  .stat-label { font-size: 0.7rem; }
  .stats      { gap: 16px; }

  /* El Sabor */
  .dish-info         { padding: 14px; }
  .dish-info h3      { font-size: 0.92rem; }
  .dish-info p       { font-size: 0.76rem; }

  /* Nuestro Local */
  .local-map         { height: 280px; }
  .local-desc        { font-size: 0.84rem; }
  .info-block h4     { font-size: 0.85rem; }
  .info-block p,
  .info-block a      { font-size: 0.82rem; }
  .horario-row       { font-size: 0.80rem; }

  /* FAQ */
  .faq-question      { font-size: 0.86rem; padding: 18px 0; }
  .faq-answer p      { font-size: 0.82rem; }

  /* Contacto */
  .contacto-text p   { font-size: 0.86rem; }
  .contacto-info a   { font-size: 0.84rem; }

  /* Footer */
  .footer-brand p    { font-size: 0.82rem; }
  .footer-nav li     { font-size: 0.82rem; }

  /* WhatsApp — más pequeño en móvil, sin tooltip */
  .whatsapp-float svg { width: 24px; height: 24px; }
  .whatsapp-tooltip   { display: none; }
}

/* ----------------------------------------
   16. RESPONSIVE — MÓVIL PEQUEÑO (≤ 480px)
---------------------------------------- */
@media (max-width: 480px) {
  .dishes-grid     { grid-template-columns: 1fr; }
  .beneficios-grid { grid-template-columns: 1fr; }

  .section { padding: 44px 0; }
  .hero-title { font-size: clamp(2.6rem, 18vw, 4.5rem); }

  .contacto-form { padding: 28px 20px; }
  .pasos-wrap    { padding: 28px 16px; }
}

/* ============================================================
   17. DISEÑO MODERNO — FUTURISMO MINIMALISTA 2025
   Grain · Grid técnico · Glassmorphism
   ============================================================ */

/* Textura grain global (sutil) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* Sin grid — fondo limpio */
body::before { display: none; }

/* Blobs de color sutiles en el hero */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(200, 16, 46, 0.15);
  filter: blur(90px);
  top: -150px;
  left: -100px;
  animation: blob1 14s ease-in-out infinite;
}

.hero-blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(200, 16, 46, 0.10);
  filter: blur(100px);
  bottom: -100px;
  right: -80px;
  animation: blob2 18s ease-in-out infinite;
}

.hero-blob-3 {
  width: 350px;
  height: 350px;
  background: rgba(200, 16, 46, 0.07);
  filter: blur(70px);
  top: 45%;
  left: 55%;
  animation: blob3 11s ease-in-out infinite;
}

@keyframes blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(90px, 70px) scale(1.12); }
  66%       { transform: translate(-50px, 110px) scale(0.92); }
}

@keyframes blob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-80px, -90px) scale(1.18); }
}

@keyframes blob3 {
  0%, 100% { transform: translate(0, 0) scale(1);    opacity: 0.6; }
  50%       { transform: translate(-90px, 60px) scale(1.15); opacity: 1; }
}

/* Fondo negro galaxia — profundidad infinita */
.galaxy-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 100% 30% at 50% 0%,   rgba(200, 16, 46, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 100% 100%, rgba(200, 16, 46, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 0%   70%,  rgba(200, 16, 46, 0.05) 0%, transparent 60%),
    #0D0909;
  pointer-events: none;
}

.franquicia,
.el-sabor,
.contacto,
.nosotros { position: relative; }

.franquicia .container,
.el-sabor .container,
.contacto .container,
.nosotros .container { position: relative; z-index: 1; }

/* ---- Territorios ---- */
.territorios-wrap {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.mapa-container {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.mapa-svg {
  width: 100%;
  max-width: 150px;
  overflow: visible;
}

.chile-path {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.mapa-label-dir {
  font-family: 'Inter', sans-serif;
  font-size: 7px;
  fill: rgba(255, 255, 255, 0.20);
  letter-spacing: 1px;
}

.m-dot { cursor: default; }

.m-dot.disponible circle {
  fill: rgba(255, 255, 255, 0.45);
  transition: fill 0.2s ease;
}

.m-dot.disponible:hover circle {
  fill: rgba(255, 255, 255, 0.90);
}

.activo-core {
  fill: var(--red);
  filter: drop-shadow(0 0 5px rgba(200, 16, 46, 0.9));
}

.activo-pulse {
  fill: none;
  stroke: rgba(200, 16, 46, 0.45);
  stroke-width: 1;
  animation: pulse-activo 2.2s ease-in-out infinite;
}

@keyframes pulse-activo {
  0%, 100% { r: 9; stroke-opacity: 0.45; }
  50%       { r: 13; stroke-opacity: 0.10; }
}

.mapa-leyenda {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  color: rgba(255, 255, 255, 0.40);
  letter-spacing: 0.4px;
}

.leyenda-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.activo-dot    { background: var(--red); box-shadow: 0 0 6px rgba(200,16,46,0.6); }
.disponible-dot { background: rgba(255, 255, 255, 0.45); }

/* Lista ciudades */
.ciudades-lista { display: flex; flex-direction: column; }

.ciudad-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 16px;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.ciudad-row:hover { background: rgba(255, 255, 255, 0.025); }

.ciudad-row.activo-row {
  background: rgba(200, 16, 46, 0.06);
  border-bottom-color: rgba(200, 16, 46, 0.12);
}

.ciudad-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ciudad-nombre {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.ciudad-region {
  font-family: 'Inter', sans-serif;
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.2px;
}

.ciudad-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ciudad-tag.activo-tag {
  background: rgba(200, 16, 46, 0.14);
  color: rgba(220, 60, 60, 0.95);
  border-color: rgba(200, 16, 46, 0.28);
}

.ciudades-nota {
  margin-top: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .territorios-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mapa-container {
    position: static;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .mapa-svg { max-width: 75px; flex-shrink: 0; }
  .ciudad-nombre { font-size: 0.82rem; }
  .ciudad-region { font-size: 0.68rem; }
}

/* ---- Toggle franquicia móvil ---- */
.franchise-toggle-wrap { display: none; }

@media (max-width: 768px) {
  /* Ocultar secciones franquicia por defecto */
  .franquicia,
  .nosotros,
  .faq-section,
  .contacto { display: none; }

  /* Mostrar cuando está activo el modo franquicia */
  body.franchise-mode .franquicia,
  body.franchise-mode .nosotros,
  body.franchise-mode .faq-section,
  body.franchise-mode .contacto { display: block; }

  /* Botón toggle */
  .franchise-toggle-wrap {
    display: flex;
    justify-content: center;
    padding: 24px 20px;
    background: transparent;
  }

  .franchise-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    background: var(--red);
    border: none;
    border-radius: 4px;
    padding: 18px 22px;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 4px 24px rgba(200, 16, 46, 0.40);
    transition: background 0.25s ease, box-shadow 0.25s ease;
  }

  .franchise-toggle-btn:hover {
    background: var(--red-dark);
    box-shadow: 0 4px 32px rgba(200, 16, 46, 0.60);
  }

  .ftb-texts { display: flex; flex-direction: column; gap: 3px; }

  .ftb-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.70rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
  }

  .ftb-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
  }

  .ftb-arrow {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.80);
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .franchise-toggle-btn:hover .ftb-arrow { transform: translateX(4px); }
  .franchise-toggle-btn.active .ftb-arrow { transform: rotate(90deg); }
}

/* ---- Botón Pide acá flotante (solo móvil) ---- */
.mobile-order-float { display: none; }

@media (max-width: 768px) {
  .mobile-order-float {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 900;
    background: var(--red);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 20px;
    height: 50px;
    border-radius: 25px;
    box-shadow: 0 4px 18px rgba(200, 16, 46, 0.40);
    white-space: nowrap;
    animation: order-pulse 2.8s ease-in-out infinite;
  }

  @keyframes order-pulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(200, 16, 46, 0.40); }
    50%       { box-shadow: 0 4px 28px rgba(255, 255, 255, 0.30), 0 2px 12px rgba(200, 16, 46, 0.25); }
  }
}

/* ---- WhatsApp flotante ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2.8s ease-in-out infinite;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 20px;
  }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(255, 255, 255, 0.40);
  animation: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: rgba(15, 10, 10, 0.92);
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15); }
  50%       { box-shadow: 0 4px 32px rgba(255, 255, 255, 0.35); }
}

/* ---- Barra de prueba social ---- */
.social-proof-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 10px 24px;
  background: rgba(8, 4, 4, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.social-proof-bar.visible { transform: translateY(0); }

.sp-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.sp-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.sp-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .social-proof-bar {
    gap: 14px;
    padding: 8px 16px;
    bottom: 0;
  }
  .sp-num   { font-size: 0.85rem; }
  .sp-label { font-size: 0.58rem; letter-spacing: 0.4px; }
  .sp-sep   { display: none; }
  .sp-item  { flex-direction: column; gap: 2px; text-align: center; }
}

/* ---- Popup de salida ---- */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.exit-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.exit-modal {
  position: relative;
  max-width: 440px;
  width: 100%;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(200, 16, 46, 0.14) 0%, transparent 60%),
    #0E0406;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  padding: 48px 44px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.exit-overlay.open .exit-modal { transform: translateY(0); }

.exit-modal .label { display: block; margin-bottom: 16px; }

.exit-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.exit-modal p {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.6;
  margin-bottom: 28px;
}

.exit-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.exit-note {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.25) !important;
  margin-bottom: 0 !important;
}

.exit-menu-link {
  display: inline-block;
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 28px;
  text-decoration: none;
  animation: menu-glow 2.8s ease-in-out infinite;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.exit-menu-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
  animation: none;
}

.exit-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.30);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.exit-close:hover { color: rgba(255, 255, 255, 0.70); }

@media (max-width: 480px) {
  .exit-modal { padding: 36px 24px; }
}

.exit-mobile  { display: none; }
.exit-desktop { display: block; }

@media (max-width: 768px) {
  .exit-mobile  { display: block; }
  .exit-desktop { display: none; }
}

/* ---- Mapa tooltip flotante ---- */
.mapa-float-tooltip {
  position: fixed;
  background: rgba(10, 4, 4, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.3px;
  padding: 5px 11px;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 9998;
  white-space: nowrap;
}
.mapa-float-tooltip.visible { opacity: 1; }

/* ---- FAQ ---- */
.faq-section { background: transparent; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

.faq-question:hover {
  color: rgba(255, 255, 255, 1);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(200, 16, 46, 0.7);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.50);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ---- Leer más ---- */
.read-more-btn {
  display: none;
}

@media (max-width: 768px) {
  .expandable {
    display: none;
  }
  .expandable.open {
    display: block;
  }
  .read-more-btn {
    display: inline-block;
    background: none;
    border: none;
    color: rgba(200, 16, 46, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 0.80rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 6px 0 0;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

/* Glassmorphism en tarjetas de beneficios */
.beneficio-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.beneficio-card:hover {
  background: rgba(200, 16, 46, 0.06) !important;
  border-color: rgba(200, 16, 46, 0.25) !important;
}

/* Glassmorphism en tarjetas de platos */
.dish-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dish-card:hover {
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.12) !important;
}

/* Corrección de textos en secciones que eran claras */
.nosotros .section-title,
.nuestro-local .section-title { color: var(--white); }

.nosotros .label { color: var(--red); }

.stat-num  { color: var(--white); }
.stat-label { color: rgba(255,255,255,0.5); }

.local-desc { color: rgba(255,255,255,0.6); }
.info-block p { color: rgba(255,255,255,0.7); }
.info-block a { color: rgba(255,255,255,0.7); }
.horario-row span { color: rgba(255,255,255,0.7); }
.horario-row.closed span { color: rgba(255,255,255,0.3); }
.local-order-note { color: rgba(255,255,255,0.45); }


/* Glow en números clave */
.numero-val {
  text-shadow: 0 0 30px rgba(200, 16, 46, 0.4);
}

/* Borde gradiente animado en el CTA principal del hero */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}
