/* ============================================================
   BURGERZONE.PLC — Premium Landing Page Stylesheet
   Author: Joseph.AsvDesing_ — josephzalazar0806@gmail.com
   © BURGERZONE.PLC C.A. Rif: J50586000-3 — All rights reserved
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;900&display=swap');

/* ── CSS Variables — Light Theme (default) ── */
:root {
  /* Brand palette */
  --brand-primary: #E8490F;
  --brand-secondary: #FF6B35;
  --brand-gold: #FFB800;
  --brand-dark: #0D0D0D;
  --brand-charcoal: #1A1A1A;
  --brand-glow: rgba(232, 73, 15, 0.35);
  --brand-glow-gold: rgba(255, 184, 0, 0.25);

  /* Light mode surfaces */
  --bg-body: #F8F5F0;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-input: #F3F0EB;
  --bg-navbar: rgba(248, 245, 240, 0.92);
  --border-color: rgba(0, 0, 0, 0.08);
  --border-card: rgba(232, 73, 15, 0.15);

  /* Typography */
  --text-primary: #0D0D0D;
  --text-secondary: #4A4A4A;
  --text-muted: #888888;
  --text-on-brand: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-brand: 0 8px 40px rgba(232, 73, 15, 0.28);
  --shadow-gold: 0 0 30px rgba(255, 184, 0, 0.35);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Navbar height */
  --navbar-h: 72px;
}

/* ── Dark Mode Variables ── */
[data-theme="dark"] {
  --bg-body: #0A0A0A;
  --bg-surface: #111111;
  --bg-card: #161616;
  --bg-input: #1E1E1E;
  --bg-navbar: rgba(10, 10, 10, 0.92);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-card: rgba(232, 73, 15, 0.20);
  --text-primary: #F0EDE8;
  --text-secondary: #B8B0A5;
  --text-muted: #606060;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.40);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.70);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: var(--radius-pill);
}

/* ── Typography Utilities ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
}

.text-brand {
  color: var(--brand-primary);
}

.text-gold {
  color: var(--brand-gold);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(232, 73, 15, 0.10);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 48px rgba(232, 73, 15, 0.45);
}

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

.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.50);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.50);
  text-decoration: none;
  transition: all var(--transition-bounce);
  animation: pulse-green 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.50);
  }

  50% {
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.75), 0 0 0 12px rgba(37, 211, 102, 0.08);
  }
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: var(--bg-navbar);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Updated logo styles using user uploaded image */
.nav-logo-img-wrapper {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
  position: relative;
  transition: transform var(--transition-bounce);
}

.nav-logo:hover .nav-logo-img-wrapper {
  transform: rotate(-8deg) scale(1.08);
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: screen;
  /* Makes black background transparent in dark mode */
  transition: filter var(--transition-smooth);
}

[data-theme="light"] .nav-logo-img {
  filter: invert(1);
  mix-blend-mode: multiply;
  /* Makes white background transparent in light mode */
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--brand-primary);
  letter-spacing: 0.04em;
}

.nav-logo-text span:last-child {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast);
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--brand-primary);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
  width: 48px;
  height: 26px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  transition: background var(--transition-smooth);
  flex-shrink: 0;
}

.theme-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), #FF8C00);
  transition: all var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

[data-theme="dark"] .theme-toggle-knob {
  transform: translateX(22px);
  background: linear-gradient(135deg, #6B8DD6, #4A6CF7);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--navbar-h);
  background: #080808;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Even in light mode, hero stays dark for contrast */
[data-theme="light"] .hero {
  background: #0D0A06;
}

/* Ambient glow spots */
.hero-glow-1 {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 73, 15, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite reverse;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* Grid texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Hero Text */
.hero-content {
  max-width: 560px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.25);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInDown 0.9s ease 0.1s both;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInDown 1s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInDown 1.1s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  animation: fadeInDown 1.2s ease 0.4s both;
}

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

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-gold);
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

/* Hero Visual — Floating Scene */
.hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-scene {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  cursor: none;
}

/* Main burger */
.float-burger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(232, 73, 15, 0.50)) drop-shadow(0 0 80px rgba(255, 184, 0, 0.20));
  animation: floatY 5s ease-in-out infinite;
  will-change: transform;
  z-index: 5;
}

/* Floating decoratives */
.float-item {
  position: absolute;
  object-fit: contain;
  will-change: transform;
  pointer-events: none;
}

.float-leaf-1 {
  width: 72px;
  top: 14%;
  left: 10%;
  animation: floatLeaf1 4s ease-in-out 1s infinite;
  filter: drop-shadow(0 4px 12px rgba(100, 200, 80, 0.30));
}

.float-leaf-2 {
  width: 56px;
  top: 20%;
  right: 12%;
  animation: floatLeaf2 4.5s ease-in-out 1.5s infinite;
  filter: drop-shadow(0 4px 12px rgba(100, 200, 80, 0.25));
}

.float-leaf-3 {
  width: 48px;
  bottom: 25%;
  left: 8%;
  animation: floatLeaf3 3.8s ease-in-out 2s infinite;
  filter: drop-shadow(0 4px 12px rgba(100, 200, 80, 0.25));
}

.float-tomato {
  width: 64px;
  bottom: 18%;
  right: 14%;
  animation: floatTomato 5s ease-in-out 3s infinite;
  filter: drop-shadow(0 4px 16px rgba(220, 60, 30, 0.40));
}

.float-fork {
  width: 34px;
  top: 40%;
  right: 6%;
  animation: floatFork 7s ease-in-out 4s infinite;
  filter: drop-shadow(0 4px 12px rgba(200, 200, 200, 0.30));
}

.float-rosemary {
  width: 58px;
  top: 60%;
  left: 14%;
  animation: floatRosemary 5.5s ease-in-out 2.5s infinite;
  filter: drop-shadow(0 4px 12px rgba(80, 160, 80, 0.30));
}

/* Glow ring around burger */
.burger-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 73, 15, 0.12) 0%, transparent 65%);
  animation: ringPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

/* SVG / emoji floating items (used as fallback when no image) */
.float-emoji {
  position: absolute;
  font-size: 2.4rem;
  will-change: transform;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.50));
  pointer-events: none;
  line-height: 1;
}

.fe-leaf-1 {
  top: 14%;
  left: 8%;
  animation: floatLeaf1 4s ease-in-out 1s infinite;
}

.fe-leaf-2 {
  top: 55%;
  right: 6%;
  animation: floatLeaf2 4.5s ease-in-out 1.5s infinite;
  font-size: 2rem;
}

.fe-leaf-3 {
  bottom: 22%;
  left: 5%;
  animation: floatLeaf3 3.8s ease-in-out 2s infinite;
  font-size: 1.8rem;
}

.fe-tomato {
  bottom: 16%;
  right: 10%;
  animation: floatTomato 5s ease-in-out 3s infinite;
}

.fe-fork {
  top: 38%;
  right: 5%;
  animation: floatFork 7s ease-in-out 4s infinite;
  font-size: 2rem;
}

.fe-rosemary {
  top: 65%;
  left: 12%;
  animation: floatRosemary 5.5s ease-in-out 2.5s infinite;
  font-size: 2rem;
}

/* Float Keyframes */
@keyframes floatY {

  0%,
  100% {
    transform: translate(-50%, calc(-50% + 0px));
  }

  50% {
    transform: translate(-50%, calc(-50% - 18px));
  }
}

@keyframes floatLeaf1 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-14px) rotate(8deg);
  }

  66% {
    transform: translateY(6px) rotate(-4deg);
  }
}

@keyframes floatLeaf2 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  40% {
    transform: translateY(-10px) rotate(-10deg);
  }

  80% {
    transform: translateY(8px) rotate(5deg);
  }
}

@keyframes floatLeaf3 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(12deg);
  }
}

@keyframes floatTomato {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-16px) scale(1.05);
  }
}

@keyframes floatFork {

  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  30% {
    transform: translateY(-8px) translateX(6px) rotate(4deg);
  }

  70% {
    transform: translateY(10px) translateX(-4px) rotate(-3deg);
  }
}

@keyframes floatRosemary {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  45% {
    transform: translateY(-12px) rotate(6deg);
  }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  animation: fadeInUp 1.5s ease 1s both;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.50);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}

/* ── PROCESS — CÓMO FUNCIONA ── */
.process {
  background: var(--bg-body);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-gold));
  opacity: 0.25;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-gold));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-card);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-primary);
  opacity: 0.07;
  line-height: 1;
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(232, 73, 15, 0.12), rgba(255, 107, 53, 0.06));
  border: 1px solid rgba(232, 73, 15, 0.20);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all var(--transition-bounce);
}

.process-step:hover .step-icon-wrap {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  transform: scale(1.08) rotate(-4deg);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-wa {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.step-wa:hover {
  opacity: 1;
}

/* ── SEDES — NUESTRA ZONA ── */
.sedes {
  background: var(--bg-surface);
}

.sedes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.sede-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
}

.sede-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-card);
}

.sede-map-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1A1205 0%, #0D0A06 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sede-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 73, 15, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 73, 15, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.sede-map-icon {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sede-map-icon i {
  font-size: 3rem;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 8px;
  animation: mapPing 2s ease-in-out infinite;
}

@keyframes mapPing {

  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 8px rgba(232, 73, 15, 0.60));
  }

  50% {
    transform: translateY(-8px);
    filter: drop-shadow(0 0 20px rgba(232, 73, 15, 0.90));
  }
}

.sede-map-icon span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.sede-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 3;
}

.badge-main {
  background: var(--brand-primary);
  color: #fff;
}

.badge-express {
  background: var(--brand-gold);
  color: #000;
}

.sede-body {
  padding: 28px;
}

.sede-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sede-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
}

.sede-address i {
  color: var(--brand-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.sede-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.sede-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
}

.sede-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── PROMOCIONES ── */
.promos {
  background: var(--bg-body);
  position: relative;
  overflow: hidden;
}

.promos::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 73, 15, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.promo-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  background-clip: padding-box;
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-gold), var(--brand-secondary));
  z-index: -1;
  opacity: 0.4;
  transition: opacity var(--transition-smooth);
}

.promo-card:hover::before {
  opacity: 0.85;
}

.promo-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-brand);
}

.promo-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-brand);
}

.promo-emoji {
  font-size: 3.2rem;
  margin-bottom: 16px;
  display: block;
}

.promo-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.promo-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.promo-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.promo-price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.promo-price-new {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand-gold);
}

.promo-price-cur {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── MENÚ — GRID DE PLATOS ── */
.menu-section {
  background: var(--bg-surface);
}

.menu-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-brand);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.menu-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0D0A06;
}

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

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

.menu-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--brand-primary);
  color: #fff;
}

.menu-card-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.60);
  border: none;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.menu-card-fav:hover,
.menu-card-fav.active {
  color: #FF3B5C;
  transform: scale(1.15);
}

.menu-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.menu-card-desc {
  font-size: 0.80rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.55;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brand-primary);
}

.menu-card-currency {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-add {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-brand);
}

.btn-add:hover {
  transform: scale(1.15) rotate(90deg);
}

.menu-cta-row {
  text-align: center;
  margin-top: 48px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── DELIVERY FORM ── */
.delivery {
  background: var(--bg-body);
}

.delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.delivery-info {
  position: sticky;
  top: calc(var(--navbar-h) + 24px);
}

.delivery-info-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.delivery-info-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.delivery-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.delivery-hl {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.delivery-hl-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(232, 73, 15, 0.12), rgba(255, 107, 53, 0.06));
  border: 1px solid rgba(232, 73, 15, 0.20);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.delivery-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-label span {
  color: var(--brand-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(232, 73, 15, 0.12);
  background: var(--bg-card);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.75rem;
}

.form-select option {
  background: var(--bg-card);
}

.form-submit-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Form success toast */
.form-toast {
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
  animation: slideInUp 0.4s ease;
}

.form-toast.show {
  display: flex;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── REVIEWS — OPINIONES ── */
.reviews {
  background: var(--bg-surface);
  overflow: hidden;
}

.reviews-track-wrap {
  overflow: hidden;
  position: relative;
}

.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.reviews-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-surface), transparent);
}

.reviews-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-surface), transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewScroll 30s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviewScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--border-card);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars i {
  color: var(--brand-gold);
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.av-1 {
  background: linear-gradient(135deg, #E8490F, #FF6B35);
}

.av-2 {
  background: linear-gradient(135deg, #6B8DD6, #4A6CF7);
}

.av-3 {
  background: linear-gradient(135deg, #25D366, #1DA851);
}

.av-4 {
  background: linear-gradient(135deg, #FFB800, #FF8C00);
}

.av-5 {
  background: linear-gradient(135deg, #FF3B5C, #C41E3A);
}

.av-6 {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}

.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.review-verified {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-verified i {
  color: #25D366;
}

.reviews-manual {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.reviews-dot.active {
  background: var(--brand-primary);
  transform: scale(1.3);
}

/* ── FOOTER ── */
.footer {
  background: #080808;
  color: rgba(255, 255, 255, 0.70);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] .footer {
  background: #080808;
}

.footer-top {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  max-width: 260px;
}

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

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social.wa {
  border-color: rgba(37, 211, 102, 0.30);
}

.footer-social.ig {
  border-color: rgba(225, 48, 108, 0.30);
}

.footer-social:hover {
  transform: translateY(-3px);
}

.footer-social.wa:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.footer-social.ig:hover {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
  color: #fff;
  border-color: transparent;
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--brand-primary);
  opacity: 0.60;
}

/* Payment methods */
.payment-methods {
  margin-top: 4px;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
}

.payment-item:hover {
  border-color: rgba(232, 73, 15, 0.30);
  background: rgba(232, 73, 15, 0.05);
  color: rgba(255, 255, 255, 0.80);
}

.payment-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Footer CTA bar */
.footer-cta-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cta-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.60);
}

.footer-cta-text strong {
  color: #fff;
}

.footer-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.7;
}

.footer-bottom p strong {
  color: rgba(255, 255, 255, 0.40);
  font-weight: 600;
}

.footer-bottom a {
  color: rgba(232, 73, 15, 0.60);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--brand-primary);
}

/* ── ANIMATIONS UTILITIES ── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left {
  transform: translateX(-40px);
}

.reveal.from-right {
  transform: translateX(40px);
}

.reveal.scale-in {
  transform: scale(0.90);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0 auto;
  max-width: 800px;
}

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    height: 420px;
  }

  .float-burger {
    width: 260px;
    height: 260px;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .nav-menu {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: var(--bg-navbar);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    padding: 12px 0;
    width: 100%;
    font-size: 1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-visual {
    height: 320px;
  }

  .float-burger {
    width: 220px;
    height: 220px;
  }

  .float-leaf-1 {
    width: 48px;
  }

  .float-leaf-2 {
    width: 38px;
  }

  .float-tomato {
    width: 42px;
  }

  .float-fork {
    width: 24px;
  }

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

  .process-grid::before {
    display: none;
  }

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

  .delivery-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .delivery-info {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .delivery-form-card {
    padding: 28px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-cta-bar {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-btns {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 1.4rem;
  }

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

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
}