/* ============================================
   STYLES — THE CHILAQUILES SPOT
   Main stylesheet — shared across all pages
   
   Load order:
   1. Google Fonts (below)
   2. variables.css  — :root color tokens
   3. animations.css — @keyframes + .reveal system
   4. This file      — all components & layout
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Oswald:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
@import './variables.css';
@import './animations.css';


/* ============================================
   BASE RESET
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--blanco);
  color: var(--negro);
  overflow-x: hidden;
}


/* ============================================
   HALFTONE DOT PATTERN — REUSABLE
============================================ */
.halftone {
  background-image: radial-gradient(circle, rgba(0,0,0,0.12) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}

.halftone-light {
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}


/* ============================================
   SPEED LINES — BACKGROUND EFFECT
============================================ */
.speed-lines {
  background-image: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255,255,255,0.04) 0deg,
    rgba(255,255,255,0.04) 1deg,
    transparent 1deg,
    transparent 6deg
  );
}


/* ============================================
   NAVBAR
============================================ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--negro);
  border-bottom: var(--border-thick);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}

.nav-logo {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  color: var(--dorado);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .mask-icon {
  width: 36px;
  height: 36px;
}

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

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--blanco);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--rosa);
  color: var(--blanco) !important;
  padding: 10px 22px;
  border: 3px solid var(--blanco);
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--dorado) !important;
  color: var(--negro) !important;
}


/* ============================================
   LANGUAGE TOGGLE
============================================ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 3px solid var(--dorado);
  overflow: hidden;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.lang-btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--dorado);
  background: transparent;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-btn.active {
  background: var(--dorado);
  color: var(--negro);
}

.lang-btn:hover:not(.active) {
  background: rgba(255,210,0,0.15);
}

/* Hamburger — oculto en desktop */
.nav-hamburger { display: none; }

/* Botón flotante — oculto en desktop, visible solo desde script móvil */
.order-float-btn { display: none; }

.lang-divider {
  width: 2px;
  height: 20px;
  background: var(--dorado);
  opacity: 0.5;
}


/* ============================================
   ORDER NOW MODAL
============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(43,43,43,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--blanco);
  border: 6px solid var(--negro);
  padding: 48px 40px 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 10px 10px 0 var(--negro);
  animation: modal-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: 'Bangers', cursive;
  font-size: 28px;
  color: var(--negro);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}

.modal-close:hover { color: var(--rosa); }

.modal-title {
  font-family: 'Bangers', cursive;
  font-size: 38px;
  color: var(--negro);
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  margin-bottom: 6px;
}

.modal-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--rosa);
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.delivery-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.delivery-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border: 4px solid var(--negro);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--negro);
  transition: transform 0.12s, box-shadow 0.12s;
  box-shadow: 4px 4px 0 var(--negro);
  position: relative;
  overflow: hidden;
}

.delivery-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--negro);
}

.delivery-btn.uber { background: var(--negro); color: var(--blanco); }
.delivery-btn.skip { background: var(--dorado); }
.delivery-btn.door { background: var(--rosa); color: var(--blanco); }

.delivery-logo {
  font-size: 28px;
  line-height: 1;
}

.delivery-arrow {
  margin-left: auto;
  font-size: 20px;
  opacity: 0.7;
}


/* ============================================
   PANEL DIAGONAL DIVIDERS
============================================ */
.diagonal-down {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
}

.diagonal-up {
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.diagonal-both {
  clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  margin-top: -60px;
  margin-bottom: -60px;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}


/* ============================================
   PANEL 1 — HERO (index.html)
============================================ */
#hero {
  min-height: 100vh;
  background: var(--azul);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

/* White speed-lines — default (index.html hero) */
.hero-rays {
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255,255,255,0.03) 0deg,
    rgba(255,255,255,0.03) 1.5deg,
    transparent 1.5deg,
    transparent 8deg
  );
}

/* Two-column layout — index.html hero */
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 60px 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Logo oficial en hero — Asset_1 (máscara + título) */
.hero-logo-official {
  width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── BADGE CIRCULAR DEL LOGO ── */
.logo-badge {
  width: 340px;
  height: 340px;
  position: relative;
  margin: 0 auto;
}

.badge-outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--negro);
  border: 6px solid var(--dorado);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.4);
  animation: badge-pulse 3s ease-in-out infinite;
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mask-svg {
  width: 150px;
  height: 170px;
}

.badge-wordmark-top {
  font-family: 'Bangers', cursive;
  font-size: 11px;
  color: var(--blanco);
  letter-spacing: 3px;
  text-align: center;
}

.badge-wordmark-main {
  font-family: 'Bangers', cursive;
  font-size: 20px;
  color: var(--dorado);
  letter-spacing: 2px;
  text-align: center;
  line-height: 1;
}

.badge-ring-dots {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 210, 0, 0.4);
}

.badge-zap {
  position: absolute;
  font-size: 20px;
  color: var(--dorado);
}

.badge-zap.left      { left: 20px; top: 50%; transform: translateY(-50%) rotate(-20deg); }
.badge-zap.right     { right: 20px; top: 50%; transform: translateY(-50%) rotate(20deg); }
.badge-zap.top-left  { left: 45px; top: 30px; transform: rotate(-45deg); font-size: 14px; }
.badge-zap.top-right { right: 45px; top: 30px; transform: rotate(45deg); font-size: 14px; }

/* ── HERO TEXT SIDE ── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--dorado);
  text-transform: uppercase;
  background: var(--negro);
  display: inline-block;
  padding: 4px 12px;
  border: 2px solid var(--dorado);
  align-self: flex-start;
}

/* Título SVG en nav — franchise */
.nav-title-svg {
  height: 30px;
  width: auto;
  display: block;
}

/* Base hero H1 — index.html */
.hero-h1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(60px, 8vw, 96px);
  line-height: 0.9;
  color: var(--blanco);
  text-shadow: 5px 5px 0 var(--negro), -2px -2px 0 var(--negro);
  letter-spacing: 2px;
}

/* In index.html, the colored span is block-level for line-break effect */
.hero-h1 span {
  color: var(--dorado);
  display: block;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--blanco);
  letter-spacing: 1px;
  border-left: 5px solid var(--rosa);
  padding-left: 16px;
}

/* ── SPEECH BUBBLE ── */
.speech-bubble {
  position: relative;
  background: var(--blanco);
  border: 4px solid var(--negro);
  border-radius: 20px;
  padding: 16px 24px;
  font-family: 'Bangers', cursive;
  font-size: 20px;
  color: var(--negro);
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 5px 5px 0 var(--negro);
  max-width: 320px;
}

/* Tail (shadow layer) */
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 8px solid transparent;
  border-top: 24px solid var(--negro);
}

/* Tail (fill layer, sits above shadow) */
.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 6px solid transparent;
  border-top: 20px solid var(--blanco);
  z-index: 1;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--blanco);
  background: var(--rosa);
  border: 4px solid var(--negro);
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 5px 5px 0 var(--negro);
  transition: transform 0.15s, box-shadow 0.15s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--negro);
}

.btn-secondary {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--negro);
  background: var(--dorado);
  border: 4px solid var(--negro);
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 5px 5px 0 var(--negro);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--negro);
}

/* ── MENU LIGHTBOX MODAL ── */
.menu-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.menu-modal-overlay.open {
  display: flex;
  animation: modalFadeIn 0.2s ease forwards;
}

.menu-modal-box {
  position: relative;
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  border: 4px solid var(--dorado);
  box-shadow: 8px 8px 0 var(--dorado);
  animation: modalZoomIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  overflow: hidden;
  background: var(--negro);
}

.menu-modal-badge {
  font-family: 'Bangers', cursive;
  font-size: 14px;
  letter-spacing: 3px;
  background: var(--dorado);
  color: var(--negro);
  padding: 4px 20px;
  text-align: center;
  border-bottom: 3px solid var(--negro);
}

.menu-modal-img {
  display: block;
  width: 100%;
  max-height: calc(90vh - 60px);
  object-fit: contain;
}

.menu-modal-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  color: var(--negro);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 2px 6px;
}

.menu-modal-close:hover {
  color: var(--rosa);
}

@keyframes modalZoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ── ONOMATOPEYA CRUNCH — floating ── */
.onomatopeya-hero {
  position: absolute;
  font-family: 'Bangers', cursive;
  color: var(--dorado);
  text-shadow: 4px 4px 0 var(--negro), -2px -2px 0 var(--negro);
  pointer-events: none;
  user-select: none;
  animation: float-rotate 4s ease-in-out infinite;
}

.ono-crunch {
  font-size: 80px;
  bottom: 80px;
  right: 5%;
  transform: rotate(-15deg);
  animation-delay: 0s;
}

.ono-zap {
  font-size: 48px;
  top: 120px;
  right: 8%;
  transform: rotate(10deg);
  animation-delay: 1s;
  color: var(--blanco);
  text-shadow: 3px 3px 0 var(--rosa);
}

/* ── FOOD PHOTOS FLOATING ── */
.food-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.food-float {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--negro);
  border: 4px solid var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  animation: float 3s ease-in-out infinite;
}

.food-float:nth-child(1) { top: 15%; left: 3%; animation-delay: 0s; }
.food-float:nth-child(2) { top: 65%; left: 5%; animation-delay: 0.8s; }
.food-float:nth-child(3) { bottom: 10%; right: 20%; animation-delay: 1.5s; width: 90px; height: 90px; }

.food-float img {
  width: 65%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ── TICKER TAPE ── */
.ticker-wrap {
  background: var(--rosa);
  border-top: 4px solid var(--negro);
  border-bottom: 4px solid var(--negro);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 20;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--blanco);
  padding: 0 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker-item .dot {
  width: 8px;
  height: 8px;
  background: var(--dorado);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}


/* ============================================
   PANEL 2 — KNOCKOUT BANNER
============================================ */
#knockout {
  background: var(--negro);
  padding: 100px 40px 120px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.knockout-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.knockout-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Standalone section label — index.html (knockout panel) */
.section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--rosa);
  text-transform: uppercase;
}

.knockout-h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.92;
  color: var(--dorado);
  text-shadow: 4px 4px 0 var(--rosa);
  letter-spacing: 2px;
}

.knockout-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250,250,248,0.85);
  max-width: 420px;
}

/* ── TRUCK VISUAL BOX ── */
.truck-panel {
  background: var(--azul);
  border: 5px solid var(--dorado);
  padding: 32px;
  position: relative;
  box-shadow: 8px 8px 0 var(--dorado);
}

.truck-panel-label {
  position: absolute;
  top: -18px;
  left: 20px;
  background: var(--dorado);
  color: var(--negro);
  font-family: 'Bangers', cursive;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 4px 16px;
  border: 3px solid var(--negro);
}

.truck-placeholder {
  aspect-ratio: 16/9;
  background: var(--negro);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,0.2);
  flex-direction: column;
  gap: 8px;
}

.truck-placeholder .truck-icon { font-size: 60px; }

.truck-placeholder p {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}

/* ── STARBURST ── */
.starburst {
  position: absolute;
  font-family: 'Bangers', cursive;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 12s linear infinite;
}

.starburst svg {
  position: absolute;
  inset: 0;
}

.starburst-text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--negro);
}

/* Decorative ZAP background elements */
.zap-deco {
  position: absolute;
  font-family: 'Bangers', cursive;
  font-size: 32px;
  color: var(--dorado);
  opacity: 0.25;
  pointer-events: none;
  user-select: none;
}


/* ============================================
   PANEL 3 — MENU PREVIEW
============================================ */
#menu-preview {
  background: var(--dorado);
  padding: 120px 40px 140px;
  position: relative;
  overflow: hidden;
  z-index: 4;
}

.menu-preview-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.menu-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.menu-h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--negro);
  letter-spacing: 3px;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.15);
  line-height: 1;
}

.menu-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--negro);
  opacity: 0.7;
  letter-spacing: 3px;
  margin-top: 8px;
}

/* ── STEPS GRID (3-step build process) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.step-panel {
  background: var(--blanco);
  border: 4px solid var(--negro);
  box-shadow: 6px 6px 0 var(--negro);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-panel:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--negro);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 16px;
  background: var(--rosa);
  color: var(--blanco);
  font-family: 'Bangers', cursive;
  font-size: 28px;
  letter-spacing: 1px;
  padding: 2px 14px;
  border: 3px solid var(--negro);
  box-shadow: 3px 3px 0 var(--negro);
}

/* Color variants for the 3 steps */
.step-panel.step-1 { background: var(--blanco); }
.step-panel.step-2 { background: var(--rosa); }
.step-panel.step-2 .step-title,
.step-panel.step-2 .step-desc { color: var(--blanco); }
.step-panel.step-3 { background: var(--negro); }
.step-panel.step-3 .step-title,
.step-panel.step-3 .step-desc { color: var(--blanco); }
.step-panel.step-3 .step-number { background: var(--dorado); color: var(--negro); }

.step-icon { font-size: 48px; margin-bottom: 12px; display: block; }

/*
  Scoped to .step-panel to avoid colliding with franchise.html's
  .how-step .step-title which has its own distinct Oswald/uppercase style.
*/
.step-panel .step-title {
  font-family: 'Bangers', cursive;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--negro);
  margin-bottom: 8px;
}

.step-panel .step-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--negro);
  opacity: 0.8;
}

/* ── PLATILLOS CARDS ── */
.platillos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.platillo-card {
  background: var(--negro);
  border: 4px solid var(--negro);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.platillo-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.5);
}

.platillo-img {
  aspect-ratio: 1;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border-bottom: 4px solid var(--negro);
}

.platillo-info {
  padding: 12px;
  background: var(--negro);
}

.platillo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.platillo-price {
  display: inline-block;
  background: var(--dorado);
  color: var(--negro);
  font-family: 'Bangers', cursive;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 2px 10px;
  border: 2px solid var(--negro);
  clip-path: polygon(3px 0%, 100% 0%, calc(100% - 3px) 100%, 0% 100%);
}

/* Imágenes reales en platillo-cards */
.platillo-mockup {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info bar gris para The Technique (fondo negro arriba → diferenciación) */
.platillo-info--gray {
  background: #3d3d3d;
}

/* Ícono taco pequeño junto al nombre en The Technique */
.technique-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.technique-badge img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

/* Imágenes reales en salsa-cards */
.salsa-visual {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid rgba(0,0,0,0.3);
  overflow: hidden;
}
.salsa-mockup {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}


/* ============================================
   PANEL 4 — SALSAS (LAS MÁSCARAS)
============================================ */
#salsas {
  background: var(--negro);
  padding: 140px 40px 140px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.salsas-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

.salsas-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.salsas-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--rosa);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.salsas-h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(52px, 6vw, 80px);
  color: var(--dorado);
  letter-spacing: 3px;
  text-shadow: 4px 4px 0 var(--rosa);
  line-height: 1;
}

.salsas-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: rgba(250,250,248,0.6);
  margin-top: 12px;
  letter-spacing: 1px;
}

.salsas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.salsa-card {
  position: relative;
  border: 4px solid var(--negro);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.salsa-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--dorado);
}

/* Each salsa card gets its own color personality */
.salsa-card.mild   { background: var(--verde); border-color: #4a8f78; }
.salsa-card.medium { background: #8B1A1A;       border-color: #c0392b; }
.salsa-card.mild2  { background: #2d5a3d;       border-color: #3d8a5a; }
.salsa-card.spicy  { background: #7a1515;       border-color: var(--rosa); }

.salsa-number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: var(--dorado);
  border: 3px solid var(--negro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bangers', cursive;
  font-size: 18px;
  color: var(--negro);
  z-index: 2;
}

.salsa-heat {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 14px;
  z-index: 2;
}

.salsa-visual {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  border-bottom: 4px solid rgba(0,0,0,0.3);
}

.salsa-info { padding: 16px; }

.salsa-type {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.salsa-name {
  font-family: 'Bangers', cursive;
  font-size: 20px;
  color: var(--dorado);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.salsa-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.salsa-badge {
  display: inline-block;
  margin-top: 10px;
  background: rgba(0,0,0,0.3);
  color: var(--dorado);
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 10px;
  border: 1px solid rgba(255,210,0,0.4);
}

/* Background decorative word */
.pow-deco {
  position: absolute;
  font-family: 'Bangers', cursive;
  font-size: 120px;
  color: rgba(228, 0, 124, 0.06);
  right: -20px;
  bottom: 40px;
  letter-spacing: 4px;
  pointer-events: none;
  user-select: none;
}


/* ============================================
   PANEL 4.5 — TAG-TEAM PROTEINS
============================================ */
#proteins {
  background: var(--azul);
  padding: 140px 40px 160px;
  position: relative;
  z-index: 6;
  overflow: hidden;
}

.proteins-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

.proteins-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.proteins-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--dorado);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.proteins-h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(52px, 6vw, 80px);
  color: var(--blanco);
  letter-spacing: 3px;
  text-shadow: 4px 4px 0 var(--negro);
  line-height: 1;
}

.proteins-h2 span { color: var(--dorado); }

.proteins-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: rgba(250,250,248,0.75);
  margin-top: 12px;
  letter-spacing: 1px;
}

/* 3-column × 2-row grid */
.proteins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.protein-card {
  background: var(--blanco);
  border: 4px solid var(--negro);
  box-shadow: 6px 6px 0 var(--negro);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.protein-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--negro);
}

.protein-visual {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border-bottom: 4px solid var(--negro);
  position: relative;
  overflow: hidden;
}

/* Individual protein accent colors */
.protein-card.birria   .protein-visual { background: #7a1515; }
.protein-card.alpastor .protein-visual { background: var(--rosa); }
.protein-card.carnitas .protein-visual { background: var(--verde); }
.protein-card.pollo    .protein-visual { background: #c47c0a; }
.protein-card.chorizo  .protein-visual { background: #9a3200; }
.protein-card.steak    .protein-visual { background: var(--negro); }

/* Large watermark letter behind the emoji icon */
.protein-visual::before {
  content: attr(data-letter);
  position: absolute;
  font-family: 'Bangers', cursive;
  font-size: 140px;
  color: rgba(255,255,255,0.07);
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.protein-icon {
  position: relative;
  z-index: 2;
  filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.5));
}

.protein-img {
  position: relative;
  z-index: 2;
  width: 75%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.6));
  transition: transform 0.25s ease;
}

.protein-card:hover .protein-img {
  transform: scale(1.06) translateY(-4px);
}

/* "FIGHTER" label badge */
.protein-fighter-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--dorado);
  color: var(--negro);
  font-family: 'Bangers', cursive;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 2px 10px;
  border: 2px solid var(--negro);
  z-index: 3;
  clip-path: polygon(3px 0%, 100% 0%, calc(100% - 3px) 100%, 0% 100%);
}

.protein-info {
  padding: 16px 18px 20px;
  background: var(--blanco);
}

.protein-number {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(43,43,43,0.45);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.protein-name {
  font-family: 'Bangers', cursive;
  font-size: 26px;
  color: var(--negro);
  letter-spacing: 1.5px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.protein-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: rgba(43,43,43,0.7);
  line-height: 1.55;
}

.protein-tag-row {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.protein-tag {
  background: var(--negro);
  color: var(--dorado);
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border: 1px solid rgba(255,210,0,0.3);
  text-transform: uppercase;
}

/* Background decorative word */
.smash-deco {
  position: absolute;
  font-family: 'Bangers', cursive;
  font-size: 120px;
  color: rgba(255,255,255,0.05);
  left: -20px;
  bottom: 40px;
  letter-spacing: 4px;
  pointer-events: none;
  user-select: none;
}


/* ============================================
   PANEL 5 — ABOUT / CULTURA
============================================ */
#about {
  background: var(--verde);
  padding: 140px 40px 140px;
  position: relative;
  overflow: hidden;
  z-index: 7;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--dorado);
  line-height: 0.95;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.about-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(250,250,248,0.9);
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,0,0,0.25);
  border: 2px solid rgba(255,210,0,0.3);
  padding: 12px 16px;
  border-left: 5px solid var(--dorado);
}

.pillar-icon { font-size: 24px; flex-shrink: 0; }

.pillar-text {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--blanco);
  letter-spacing: 1px;
}

/* ── THOUGHT BUBBLES ── */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.thought-bubble {
  background: var(--blanco);
  border: 4px solid var(--negro);
  border-radius: 24px;
  padding: 20px 24px;
  position: relative;
  box-shadow: 5px 5px 0 var(--negro);
  max-width: 360px;
}

.thought-bubble:nth-child(2) { align-self: flex-end; }
.thought-bubble:nth-child(3) { align-self: center; background: var(--dorado); }

/* Three dots "thought" tail */
.thought-bubble::after {
  content: '●●●';
  position: absolute;
  font-size: 12px;
  color: var(--negro);
  bottom: -28px;
  left: 24px;
  letter-spacing: -2px;
}

.thought-bubble:nth-child(2)::after {
  left: auto;
  right: 24px;
}

.thought-emoji { font-size: 28px; margin-bottom: 8px; display: block; }

.thought-text {
  font-family: 'Bangers', cursive;
  font-size: 17px;
  color: var(--negro);
  letter-spacing: 1px;
  line-height: 1.4;
}

.thought-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(43,43,43,0.7);
  margin-top: 6px;
}


/* ============================================
   PANEL 6 — FRANCHISE TEASER (index.html)
============================================ */
#franchise-teaser {
  background: var(--rosa);
  padding: 140px 40px 160px;
  position: relative;
  overflow: hidden;
  z-index: 8;
}

.franchise-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(0,0,0,0.04) 0deg,
    rgba(0,0,0,0.04) 1deg,
    transparent 1deg,
    transparent 6deg
  );
}

.franchise-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* BOOM! decoration — teaser panel (index.html version) */
.boom-burst {
  position: absolute;
  top: 32px;
  right: 80px;
  font-family: 'Bangers', cursive;
  font-size: 72px;
  color: var(--dorado);
  text-shadow: 4px 4px 0 var(--negro);
  transform: rotate(12deg);
  animation: wobble 2s ease-in-out infinite;
  pointer-events: none;
}

.franchise-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: rgba(43,43,43,0.8);
  text-transform: uppercase;
  background: var(--dorado);
  border: 3px solid var(--negro);
  padding: 4px 16px;
  display: inline-block;
}

.franchise-h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(56px, 7vw, 100px);
  color: var(--blanco);
  text-shadow: 5px 5px 0 var(--negro);
  letter-spacing: 2px;
  line-height: 0.92;
}

.franchise-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(250,250,248,0.9);
  letter-spacing: 1px;
  max-width: 540px;
  line-height: 1.5;
}

.franchise-formats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}

/* Small pill-style format labels in teaser */
.format-tag {
  background: rgba(0,0,0,0.2);
  color: var(--blanco);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border: 2px solid rgba(255,255,255,0.4);
  text-transform: uppercase;
}


/* ============================================
   PANEL 7 — FOOTER (index.html — full)
============================================ */
footer {
  background: var(--negro);
  border-top: 6px solid var(--dorado);
  padding: 80px 40px 40px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-family: 'Bangers', cursive;
  font-size: 28px;
  color: var(--dorado);
  letter-spacing: 2px;
}

.footer-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(250,250,248,0.6);
  letter-spacing: 1px;
  border-left: 3px solid var(--rosa);
  padding-left: 12px;
  line-height: 1.5;
}

.footer-contact a {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(250,250,248,0.6);
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--dorado); }

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--dorado);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,210,0,0.3);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: rgba(250,250,248,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--blanco); }

.social-links {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(250,250,248,0.7);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.social-link:hover { color: var(--rosa); }

.footer-bottom {
  border-top: 2px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-copyright {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: rgba(250,250,248,0.4);
  letter-spacing: 1px;
}

.footer-hashtags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hashtag {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--rosa);
  letter-spacing: 1px;
}


/* ============================================
   MOBILE RESPONSIVE — index.html
============================================ */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-left { align-items: center; }
  .logo-badge { width: 240px; height: 240px; }
  .ono-crunch { font-size: 50px; }
  .knockout-content { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .platillos-grid { grid-template-columns: repeat(2, 1fr); }
  .salsas-grid { grid-template-columns: repeat(2, 1fr); }
  .proteins-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  .platillos-grid { grid-template-columns: 1fr; }
  .salsas-grid { grid-template-columns: 1fr; }
  .proteins-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}


/* ================================================================
   FRANCHISE PAGE — franchise.html
   All styles below apply exclusively to the franchise landing page.

   Scoping strategy: shared selectors that differ between pages
   (#hero, footer, .boom-burst, .hero-rays, .hero-content, .hero-h1)
   are overridden using body:has(#form-section), which is only true
   in franchise.html. `:has()` is supported in all modern browsers
   (Chrome 105+, Firefox 121+, Safari 15.4+).
================================================================ */

/* ── BACK BUTTON (franchise nav only) ── */
.nav-back {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--blanco);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-back:hover { color: var(--dorado); }


/* ── FRANCHISE HERO — structure overrides ── */

/*
  On franchise.html, #hero is a shorter intro panel (60vh vs full-height).
  Background is negro not azul. Has diagonal clip-path to flow into #formats.
*/
body:has(#form-section) #hero {
  min-height: 60vh;
  background: var(--negro);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  margin-bottom: -48px;
}

/*
  Franchise hero rays use a warm gold tint instead of white,
  matching the darker negro background.
*/
body:has(#form-section) .hero-rays {
  background-image: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255,210,0,0.03) 0deg,
    rgba(255,210,0,0.03) 1.5deg,
    transparent 1.5deg,
    transparent 8deg
  );
}

/*
  Franchise hero is centered single-column, not the two-column badge+text
  layout used in index.html.
*/
body:has(#form-section) .hero-content {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 80px 40px 120px;
  max-width: 900px;
}

/* Franchise hero title is larger and uses simpler text-shadow */
body:has(#form-section) .hero-h1 {
  font-size: clamp(56px, 9vw, 110px);
  text-shadow: 5px 5px 0 rgba(0,0,0,0.5);
  margin-bottom: 24px;
}

/*
  In index.html, .hero-h1 span uses display:block for multi-line effect.
  In franchise.html the two spans are inline (ÚNETE AL / RING) so they
  need to stay inline.
*/
body:has(#form-section) .hero-h1 span {
  display: inline;
  color: var(--dorado);
}

/* Gold halftone dots — franchise hero only */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,210,0,0.06) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

/* Eyebrow tag above the H1 */
.hero-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--dorado);
  background: rgba(255,210,0,0.1);
  border: 2px solid var(--dorado);
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Subtitle below H1 in franchise hero */
.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(250,250,248,0.75);
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;
}

/*
  Franchise BOOM! is a large decorative ghost element (low opacity),
  not an animated starburst like in the teaser panel on index.html.
*/
body:has(#form-section) .boom-burst {
  top: auto;
  bottom: 72px;
  right: 5%;
  font-size: 120px;
  color: rgba(228, 0, 124, 0.08);
  text-shadow: none;
  transform: none;
  animation: none;
  letter-spacing: 3px;
  z-index: 1;
}

/* Así funciona — texto negro sobre fondo dorado */
#how .section-h2 {
  color: var(--negro);
  text-shadow: 2px 2px 0 rgba(255,255,255,0.25);
}


/* ── SHARED SECTION HEADER WRAPPER (franchise pages) ── */

/*
  In franchise.html sections use a .section-header wrapper around
  .section-tag + .section-h2 + .section-sub. This scoped rule overrides
  the index.html standalone .section-tag color (rosa → dorado).
*/
.section-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.section-header .section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--dorado);    /* overrides the rosa color in the base rule */
  display: block;
  margin-bottom: 12px;
}

.section-h2 {
  font-family: 'Bangers', cursive;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  color: var(--blanco);
  letter-spacing: 2px;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.section-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(250,250,248,0.7);
  letter-spacing: 1px;
  margin-top: 12px;
}


/* ── FORMATS SECTION ── */
#formats {
  background: var(--azul);
  padding: 120px 40px 100px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 48px, 100% calc(100% - 60px), 0 100%);
  margin-top: -48px;
  margin-bottom: -60px;
}

.formats-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/*
  .format-card uses its own opacity/transform reveal inline
  (JS adds .visible class) rather than relying on the global reveal system.
*/
.format-card {
  background: var(--blanco);
  border: 4px solid var(--negro);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--negro);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s, box-shadow 0.15s;
}

.format-card.visible { opacity: 1; transform: translateY(0); }

.format-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--negro);
}

.format-icon { font-size: 42px; display: block; margin-bottom: 12px; }

.format-name {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  color: var(--negro);
  letter-spacing: 1px;
}


/* ── HOW IT WORKS ── */
#how {
  background: var(--dorado);
  padding: 120px 40px 100px;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  margin-top: -60px;
  margin-bottom: -60px;
}

.how-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.how-step {
  background: var(--negro);
  border: 4px solid var(--negro);
  padding: 32px 24px;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}

.how-step.visible { opacity: 1; transform: translateY(0); }

/* Large ordinal number displayed at the top of each step */
.step-num {
  font-family: 'Bangers', cursive;
  font-size: 52px;
  color: var(--dorado);
  line-height: 1;
  margin-bottom: 8px;
}

/*
  These are scoped to .how-step to avoid conflicting with the
  index.html .step-panel .step-title / .step-desc rules above.
  In franchise the step-title is uppercase Oswald, not Bangers.
*/
.how-step .step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.how-step .step-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: rgba(250,250,248,0.7);
  line-height: 1.6;
}


/* ── FORM SECTION ── */
#form-section {
  background: var(--rosa);
  padding: 120px 40px 100px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
}

.form-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}

/* Floating BOOM / POW decorative text in the form section background */
.form-ono {
  position: absolute;
  font-family: 'Bangers', cursive;
  font-size: 80px;
  color: rgba(255,255,255,0.08);
  user-select: none;
  pointer-events: none;
  letter-spacing: 3px;
}

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.form-box {
  background: var(--blanco);
  border: 6px solid var(--negro);
  padding: 48px 48px 40px;
  box-shadow: 10px 10px 0 var(--negro);
}

.form-title {
  font-family: 'Bangers', cursive;
  font-size: 48px;
  color: var(--negro);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 6px;
}

.form-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--rosa);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--negro);
}

/* Two-column field row */
.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Full-width field (textarea row) */
.field.full { grid-column: 1 / -1; }

label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--negro);
  text-transform: uppercase;
}

input,
textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--negro);
  background: var(--blanco);
  border: 3px solid var(--negro);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--rosa);
  box-shadow: 3px 3px 0 var(--rosa);
}

textarea { min-height: 130px; }

.btn-submit {
  font-family: 'Bangers', cursive;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--blanco);
  background: var(--negro);
  border: 4px solid var(--negro);
  padding: 16px 40px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  box-shadow: 5px 5px 0 var(--rosa);
  transition: transform 0.12s, box-shadow 0.12s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.btn-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--rosa);
}

.form-disclaimer {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: rgba(43,43,43,0.55);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* ── SUCCESS STATE (shown after form submit) ── */
.success-box {
  display: none;
  text-align: center;
  padding: 40px 24px;
}

.success-box.show  { display: block; }
.form-fields.hidden { display: none; }

.success-icon { font-size: 64px; margin-bottom: 16px; }

.success-title {
  font-family: 'Bangers', cursive;
  font-size: 52px;
  color: var(--negro);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.success-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--rosa);
  letter-spacing: 1px;
}


/* ── FRANCHISE FOOTER (mini — overrides full footer) ── */
/*
  franchise.html uses a single-line centered footer vs. the full
  multi-column footer grid in index.html. Scoped via body:has().
*/
body:has(#form-section) footer {
  padding: 40px;
  text-align: center;
}

.footer-text {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(250,250,248,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-text a {
  color: var(--dorado);
  text-decoration: none;
}


/* ── FRANCHISE RESPONSIVE ── */
@media (max-width: 640px) {
  .field-group  { grid-template-columns: 1fr; }
  .form-box     { padding: 32px 24px; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================
   MOBILE — 480px y menos (360px / 375px)
============================================ */
@media (max-width: 480px) {

 /* ── RESET DIAGONALES ── */
  /*
    En mobile los clip-path crean overlaps de 60px que tapan contenido.
    Se eliminan y se reemplaza la separación con border-top estilo comic.
  */
  .diagonal-down,
  .diagonal-both {
    clip-path: none;
    margin-top: 0;
    margin-bottom: 0;
  }

  .diagonal-both {
    border-top: 4px solid var(--negro);
  }

  #hero { border-top: none; }


  /* ── NAV ── */
  nav {
    padding: 0 16px;
    height: 56px;
  }

  .nav-logo { font-size: 18px; }
  .nav-logo .mask-icon { width: 28px; height: 28px; }
  .nav-title-svg { height: 22px; }

  /* Ocultar nav-links por defecto en móvil */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--negro);
    z-index: 999;
    padding: 40px 24px;
    gap: 0;
    border-top: 4px solid var(--dorado);
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
  }

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

  .nav-links li {
    width: 100%;
    border-bottom: 2px solid rgba(255,210,0,0.15);
  }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 22px;
    letter-spacing: 2px;
  }

  .nav-links .nav-cta {
    margin-top: 24px;
    display: block;
    text-align: center;
    padding: 16px;
    font-size: 22px;
    clip-path: none;
    border: 4px solid var(--blanco);
  }

  .lang-toggle {
    margin-top: 16px;
    clip-path: none;
    overflow: hidden;
    border-radius: 4px;
    width: fit-content;
    align-self: center;
  }

  /* Hamburger button */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--dorado);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
  }

  /* Estado abierto — transforma en X */
  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }


  /* ── HERO (index.html) ── */
  #hero { padding-top: 56px; }

  .hero-content {
    padding: 40px 16px 60px;
    gap: 24px;
  }

  .logo-badge {
    width: 200px;
    height: 200px;
  }

  .hero-logo-official {
    width: 210px;
  }

  .hero-h1 {
    font-size: clamp(48px, 13vw, 60px);
  }

  .hero-label {
    font-size: 15px;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .hero-tagline { font-size: 15px; }

  .speech-bubble {
    font-size: 16px;
    padding: 12px 18px;
    max-width: 100%;
  }

  /* Esconder elementos flotantes decorativos */
  .food-float    { display: none; }
  .ono-crunch    { display: none; }
  .ono-zap       { display: none; }
  .zap-deco      { display: none; }
  .pow-deco      { display: none; }
  .smash-deco    { display: none; }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 19px;
    padding: 14px 24px;
    text-align: center;
  }


  /* ── TICKER ── */
  .ticker-item { font-size: 16px; padding: 0 20px; }


  /* ── KNOCKOUT ── */
  #knockout { padding: 80px 16px 80px; }

  .knockout-h2 { font-size: clamp(44px, 12vw, 64px); }

  .truck-panel { padding: 20px 16px; }


  /* ── MENU PREVIEW ── */
  #menu-preview { padding: 80px 16px 0; }

  .platillos-wrap {
    background: var(--rosa);
    border-top: 4px solid var(--negro);
    margin: 32px -16px 0;
    padding: 32px 16px 48px;
  }

  .platillos-wrap h3 { color: var(--blanco) !important; }
  .platillos-wrap a  { color: var(--blanco) !important; border-color: var(--blanco) !important; }

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

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


  /* ── SALSAS ── */
  #salsas { padding: 100px 16px 100px; }

  .salsas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Estado compacto — fila horizontal ícono + nombre */
  .salsa-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 64px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  }

  .salsa-visual {
    aspect-ratio: unset;
    width: 60px;
    min-width: 60px;
    height: 64px;
    border-bottom: none;
    border-right: 4px solid rgba(0,0,0,0.3);
    font-size: 28px;
    flex-shrink: 0;
  }

  /* Ocultar en estado compacto */
  .salsa-number { display: none; }
  .salsa-heat   { display: none; }

  .salsa-info {
    display: flex;
    align-items: center;
    padding: 0 12px;
    flex: 1;
  }

  .salsa-type  { display: none; }
  .salsa-name  { font-size: 15px; margin-bottom: 0; line-height: 1.1; }
  .salsa-desc  { display: none; }
  .salsa-badge { display: none; }

  /* Estado expandido — full width */
  .salsa-card.active {
    grid-column: 1 / -1;
    flex-direction: column;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
  }

  .salsa-card.active .salsa-visual {
    aspect-ratio: 3/2;
    width: 100%;
    height: auto;
    min-width: unset;
    border-right: none;
    border-bottom: 4px solid rgba(0,0,0,0.3);
    font-size: 60px;
  }

  .salsa-card.active .salsa-number {
    display: block;
    position: absolute;
    top: 12px;
    left: 12px;
  }

  .salsa-card.active .salsa-heat {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .salsa-card.active .salsa-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px 18px;
    /* salsa-number y salsa-heat son hermanos del .salsa-info en el DOM,
       se posicionan contra .salsa-card que ya tiene position: relative */
  }

  .salsa-card.active .salsa-type  { display: block; }
  .salsa-card.active .salsa-name  { font-size: 20px; margin-bottom: 8px; }
  .salsa-card.active .salsa-desc  { display: block; }
  .salsa-card.active .salsa-badge { display: inline-block; }


  /* ── STEPS — bloque compacto en móvil ── */
  /*
    En desktop los 3 paneles son tarjetas verticales con ícono grande + título + descripción.
    En móvil los comprimimos a filas horizontales: badge de número | ícono | título.
    La descripción desaparece — el usuario ya sabe cómo funciona al ver los pasos visuales.
  */

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .step-panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px 14px 56px; /* deja espacio al .step-number absolute */
    min-height: 64px;
    box-shadow: 4px 4px 0 var(--negro);
  }

  /* El step-number sigue siendo absolute pero recalibrado para la fila compacta */
  .step-number {
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    font-size: 18px;
    padding: 2px 8px;
  }

  .step-icon {
    font-size: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-panel .step-title {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 1.1;
  }

  /* Descripción fuera — el flujo visual (3 pasos) comunica sin texto) */
  .step-panel .step-desc { display: none; }


  /* ── PROTEINS ── */
  #proteins { padding: 100px 16px 120px; }

  /* Grid de 2 columnas para los botones compactos */
  .proteins-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Estado compacto — fila horizontal con ícono + nombre */
  .protein-card {
    flex-direction: row;
    align-items: center;
    min-height: 64px;
    box-shadow: 4px 4px 0 var(--negro);
  }

  .protein-visual {
    aspect-ratio: unset;
    width: 60px;
    min-width: 60px;
    height: 64px;
    border-bottom: none;
    border-right: 4px solid var(--negro);
    font-size: 28px;
    flex-shrink: 0;
  }

  /* Ocultar watermark en compacto — se ve raro a ese tamaño */
  .protein-visual::before { font-size: 50px; }

  /* Badge solo visible en expandido */
  .protein-fighter-badge { display: none; }

  .protein-info {
    display: flex;
    align-items: center;
    padding: 0 14px;
    flex: 1;
  }

  .protein-number { display: none; }

  .protein-name {
    font-size: 17px;
    margin-bottom: 0;
    line-height: 1;
  }

  .protein-desc    { display: none; }
  .protein-tag-row { display: none; }

  /* Estado expandido — tarjeta completa a full width */
  .protein-card.active {
    grid-column: 1 / -1;
    flex-direction: column;
    box-shadow: 6px 6px 0 var(--negro);
  }

  .protein-card.active .protein-visual {
    aspect-ratio: 3/2;
    width: 100%;
    height: auto;
    min-width: unset;
    border-right: none;
    border-bottom: 4px solid var(--negro);
    font-size: 56px;
  }

  .protein-card.active .protein-visual::before { font-size: 140px; }

  .protein-card.active .protein-fighter-badge { display: block; }

  .protein-card.active .protein-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px 20px;
  }

  .protein-card.active .protein-number {
    display: block;
    margin-bottom: 4px;
  }

  .protein-card.active .protein-name {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .protein-card.active .protein-desc    { display: block; }
  .protein-card.active .protein-tag-row { display: flex; }



  /* ── ABOUT ── */
  #about { padding: 100px 16px 100px; }

  .thought-bubble { max-width: 100%; }

  .thought-bubble:nth-child(2) { align-self: auto; }


  /* ── TEASER FRANQUICIA (en index.html) ── */
  #franchise-teaser { padding: 100px 16px 100px; }

  .franchise-h2 { font-size: clamp(44px, 12vw, 72px); }

  .franchise-sub { font-size: 15px; }

  .boom-burst { font-size: 70px !important; }


  /* ── REORDEN MÓVIL — flex order + z-index corregido ── */
  /*
    El <main id="sections-flow"> convierte las secciones en un flex column.
    CSS order reordena visualmente sin mover el DOM.
    z-index se recalcula para que cada sección quede SOBRE la anterior
    en los 60px de overlap diagonal — en el nuevo orden visual.
  */
  #sections-flow {
    display: flex;
    flex-direction: column;
  }

  #hero             { order: 1; }
  .ticker-wrap      { order: 1; }
  #menu-preview     { order: 2; z-index: 3; }
  #salsas           { order: 3; z-index: 4; }
  #proteins         { order: 4; z-index: 5; }
  #knockout         { order: 5; z-index: 6; }
  #about            { order: 6; }
  #franchise-teaser { order: 7; }



  /* ── FOOTER ── */
  footer { padding: 60px 16px 32px; }

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

  .footer-hashtags { justify-content: center; }


  /* ══════════════════════════════════════
     FRANCHISE PAGE — 480px
  ══════════════════════════════════════ */

/* ── NAV FRANCHISE MOBILE ── */
  body:has(#form-section) nav {
    padding: 0 12px;
    gap: 8px;
  }
  body:has(#form-section) .nav-logo {
    gap: 6px;
  }
  body:has(#form-section) .nav-logo .mask-icon {
    width: 30px;
    height: 30px;
  }
  body:has(#form-section) .nav-title-svg {
    height: 29px;
  }
  body:has(#form-section) .nav-back {
    font-size: 10px;
    letter-spacing: 1px;
  }

  /* Hero tag — "⚡ OPORTUNIDAD DE NEGOCIO ⚡" en una línea */
  .hero-tag {
    letter-spacing: 2px;
    padding: 4px 10px;
    font-size: 10px;
  }

  /* Teléfono footer — sin corte a mitad */
  .footer-text a[href^="tel"] {
    white-space: nowrap;
  }

  body:has(#form-section) #hero {
    min-height: 50vh;
  }

  body:has(#form-section) .hero-content {
    padding: 50px 16px 80px;
  }

  body:has(#form-section) .hero-h1 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .hero-sub { font-size: 15px; }

  /* Formato secciones franchise */
  #formats   { padding: 80px 16px 80px; }
  #how       { padding: 80px 16px 80px; }
  #form-section { padding: 80px 16px 80px; }

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

  .steps-list { grid-template-columns: 1fr; }

  /* Form box */
  .form-box { padding: 28px 20px 24px; }

  .form-title { font-size: 36px; }

  .field-group { grid-template-columns: 1fr; }

  .btn-submit {
    font-size: 20px;
    padding: 14px 24px;
  }

  /* Footer franchise */
  body:has(#form-section) footer { padding: 32px 16px; }

  /* ── BOTÓN FLOTANTE ORDER NOW ── */
  .order-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 22px;
    right: 16px;
    z-index: 1000;
    background: rgba(228, 0, 124, 0.82);
    color: var(--dorado);
    font-family: 'Bangers', cursive;
    font-size: 20px;
    letter-spacing: 2.5px;
    border: 3px solid var(--negro);
    padding: 11px 22px;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--negro);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
    transition: transform 0.1s ease, opacity 0.1s ease;
    white-space: nowrap;
    animation: floatPulse 2.5s ease-in-out infinite;
  }

  .order-float-btn:active {
    transform: scale(0.93);
    opacity: 0.9;
  }

  @keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
  }

}