/* =========================================================
   RESTAURANTES · DANLINE — Subdominio con tema AVISPAS
   Autocontenido, no hereda del landing principal.
   ========================================================= */

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #141414;
  --bg-4: #1c1c1c;
  --honey: #ffc107;
  --honey-bright: #ffd700;
  --honey-light: #ffe066;
  --honey-dark: #c89000;
  --amber: #ff9100;
  --cream: #fff8e1;
  --wasp-stripe: #000;
  --ink: #fafafa;
  --ink-dim: #888;
  --ink-muted: #555;
  --border: rgba(255, 193, 7, 0.12);
  --border-strong: rgba(255, 193, 7, 0.35);
  --border-amber: rgba(255, 145, 0, 0.35);
  --shadow-honey: 0 0 40px rgba(255, 193, 7, 0.35);
  --shadow-amber: 0 0 40px rgba(255, 145, 0, 0.35);
  --display: "Anton", "Bebas Neue", Impact, sans-serif;
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", "Space Mono", ui-monospace, monospace;
  --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
html:not(.lenis) { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  cursor: none;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: none; font: inherit; }
::selection { background: var(--amber); color: #000; }

/* =========================================================
   PATRÓN PANAL + GRANO
   ========================================================= */
.honeycomb-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><polygon points='40,2 78,24 78,68 40,90 2,68 2,24' fill='none' stroke='%23ffc107' stroke-width='1.2'/></svg>");
  background-size: 80px 92px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.05;
  mix-blend-mode: screen;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.55) 90%);
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.preloader.gone { pointer-events: none; }
.preloader-hex {
  width: 80px; height: 92px;
  position: relative;
  animation: hex-spin 2s ease-in-out infinite;
}
.preloader-hex svg { width: 100%; height: 100%; }
.preloader-hex svg polygon {
  fill: none;
  stroke: var(--amber);
  stroke-width: 2;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: hex-draw 1.5s ease-out forwards;
}
@keyframes hex-spin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(60deg); }
}
@keyframes hex-draw { to { stroke-dashoffset: 0; } }
.preloader-text {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--amber);
  opacity: 0;
  animation: fade-in 0.6s ease 0.8s forwards;
}
@keyframes fade-in { to { opacity: 1; } }

/* =========================================================
   CURSOR + POLEN
   ========================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--honey-bright);
  box-shadow: 0 0 12px var(--honey-bright), 0 0 30px rgba(255, 215, 0, 0.5);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 145, 0, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s, background 0.3s;
}
.cursor.is-hover { width: 22px; height: 22px; background: #fff; }
.cursor-ring.is-hex {
  width: 58px; height: 66px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 145, 0, 0.16);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 0 6px rgba(255, 145, 0, 0.65))
          drop-shadow(0 0 14px rgba(255, 215, 0, 0.3));
}

.pollen {
  position: fixed;
  pointer-events: none;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--honey-bright);
  box-shadow: 0 0 6px var(--honey-bright);
  z-index: 9996;
  opacity: 0;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s ease,
              backdrop-filter 0.4s ease,
              border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 12px 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--border);
}
.nav.is-scrolled .brand { font-size: 1.25rem; }
.nav.is-scrolled .nav-cta { padding: 9px 18px; font-size: 0.65rem; }

.nav .brand {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.nav .brand-hex { width: 26px; height: 30px; display: inline-block; }
.nav .brand-hex svg { width: 100%; height: 100%; }
.nav .brand .accent { color: var(--amber); }
.nav .brand .sub {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--honey);
  margin-left: 6px;
  padding: 3px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  text-transform: uppercase;
}
.nav .links {
  display: flex;
  gap: 36px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.nav .links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-dim);
  transition: color 0.3s;
}
.nav .links a:hover { color: var(--amber); }
.nav .links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav .links a:hover::after { width: 100%; }
.nav .nav-cta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--amber);
  background: var(--amber);
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav .nav-cta:hover { background: transparent; color: var(--amber); }

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}
.scroll-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--honey-dark), var(--honey), var(--amber), var(--honey-bright));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: 0 0;
  box-shadow: 0 0 12px var(--amber), 0 0 24px rgba(255, 145, 0, 0.4);
  will-change: transform;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-stripes {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  /* Rayas más marcadas de avispa: más anchas y con negro más pesado */
  background: repeating-linear-gradient(
    90deg,
    var(--honey) 0 50px,
    var(--wasp-stripe) 50px 90px
  );
  z-index: 5;
}
.hero-stripes.bottom { top: auto; bottom: 0; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 145, 0, 0.20), transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 70%, rgba(255, 193, 7, 0.12), transparent 70%);
  z-index: 0;
  animation: hero-breath 10s ease-in-out infinite alternate;
}
@keyframes hero-breath {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

.hero .eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  padding: 8px 16px;
  border: 1px solid var(--border-amber);
  border-radius: 100px;
  background: rgba(255, 145, 0, 0.06);
}
.hero .eyebrow .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--amber); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.2rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  max-width: 1200px;
}
.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 2px var(--amber);
  font-style: italic;
  display: inline-block;
}
.hero h1 .ch {
  display: inline-block;
  will-change: transform, opacity;
}

.hero .sub {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink-dim);
  max-width: 720px;
  position: relative;
  z-index: 2;
  line-height: 1.5;
}
.hero .sub strong { color: var(--amber); font-weight: 600; font-style: normal; }

.hero-cta {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  padding: 18px 36px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s ease;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: none;
  font-weight: 600;
  background: transparent;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -2;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--honey);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: #000; border-color: var(--honey); }
.btn.primary {
  color: #000;
  border-color: var(--amber);
}
.btn.primary::before { background: var(--amber); }
.btn.primary::after { background: #fff; }
.btn.primary:hover { color: #000; }

/* Hero floating wasps */
.hero-wasp {
  position: absolute;
  width: 56px;
  height: 28px;
  z-index: 3;
  pointer-events: none;
}
.hero-wasp svg { width: 100%; height: 100%; }
.hero-wasp.w1 { top: 18%; left: 10%; }
.hero-wasp.w2 { top: 55%; right: 12%; }
.hero-wasp.w3 { bottom: 22%; left: 22%; }

.wasp-dyn {
  position: absolute;
  width: calc(56px * var(--wasp-scale, 1));
  height: calc(28px * var(--wasp-scale, 1));
  pointer-events: none;
  z-index: 3;
  will-change: transform;
  opacity: var(--wasp-op, 0.9);
}
.wasp-dyn svg { width: 100%; height: 100%; display: block; }
.wasp-wings {
  transform-origin: 40px 14px;
  animation: wingflap 0.1s ease-in-out infinite alternate;
}
@keyframes wingflap {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0.3); }
}

/* Marquee */
.hero-marquee {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  z-index: 5;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.marquee-track {
  display: inline-block;
  animation: marq 30s linear infinite;
  font-family: var(--display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
}
.marquee-track span { margin-right: 50px; }
.marquee-track .hot { color: var(--amber); }
@keyframes marq {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SECCIONES
   ========================================================= */
section {
  position: relative;
  padding: 140px 40px;
}
.section-head {
  margin-bottom: 70px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 8px 14px;
  border: 1px solid var(--border-amber);
  border-radius: 100px;
  margin-bottom: 24px;
}
.section-head .label::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 900px;
}
.section-head h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--amber);
  font-style: italic;
}
.section-head h2 .filled { color: var(--amber); font-style: italic; }
.section-head .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-dim);
  margin-top: 24px;
  max-width: 700px;
}

/* Dividers animados */
.pain::after,
.tiers-web::after,
.tiers-ia::after,
.combos::after,
.addons::after,
.how::after,
.faq::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(var(--scroll-divider, 0));
  transform-origin: center;
  width: 60%;
  max-width: 700px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  z-index: 1;
}

/* =========================================================
   PAIN POINTS (3 cards)
   ========================================================= */
.pain { background: var(--bg-2); border-top: 1px solid var(--border); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.pain-card {
  padding: 40px 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}
.pain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, var(--amber), transparent 40%, transparent 60%, var(--honey));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.pain-card:hover::before { opacity: 1; }
.pain-card:hover {
  transform: translateY(-4px);
  background: var(--bg-4);
}
.pain-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(255, 145, 0, 0.4));
}
.pain-card h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.05;
}
.pain-card p {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-dim);
  line-height: 1.55;
}
.pain-card p strong { color: var(--amber); font-weight: 600; }

/* =========================================================
   TIER CARDS (web + IA, mismo patrón)
   ========================================================= */
.tiers-web, .tiers-ia {
  background: var(--bg);
}
.tiers-ia { background: var(--bg-2); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.tier-card {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s ease;
  cursor: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tier-card:last-child { border-right: none; }
.tier-card:hover { background: var(--bg-2); }
.tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(255, 145, 0, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.tier-card:hover::before { opacity: 1; }
.tier-card > * { position: relative; z-index: 1; }

.tier-card.featured {
  background: var(--bg-3);
}
.tier-card.featured::after {
  content: "★ MÁS POPULAR";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--amber);
  color: #000;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 0.2em;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(255, 145, 0, 0.5);
}

.tier-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.tier-name {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}
.tier-price {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--amber);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier-price .currency {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-dim);
  vertical-align: top;
  margin-left: 6px;
  letter-spacing: 0.2em;
}
.tier-price .mo {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  margin-left: 2px;
}
.tier-sub-price {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--honey);
  letter-spacing: 0.1em;
  margin-top: 2px;
  margin-bottom: 4px;
  font-weight: 600;
}
.tier-time {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.tier-card ul {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}
.tier-card ul li {
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.tier-card ul li::before {
  content: "▸";
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-card ul li:last-child { border-bottom: none; }
.tier-card ul li strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   COMBOS — 3 cards grandes, la del medio recomendada
   ========================================================= */
.combos { background: var(--bg); }
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.combo-card {
  padding: 48px 38px;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.combo-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.combo-card.recommended {
  border: 1px solid var(--amber);
  background: linear-gradient(180deg, var(--bg-3) 0%, rgba(255, 145, 0, 0.08) 100%);
  box-shadow: 0 0 0 1px var(--border-amber), 0 10px 40px rgba(255, 145, 0, 0.15);
  transform: translateY(-10px);
}
.combo-card.recommended:hover {
  transform: translateY(-16px);
  box-shadow: 0 0 0 1px var(--amber), 0 20px 60px rgba(255, 145, 0, 0.3);
}
.combo-card.recommended::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 145, 0, 0.35) 40deg,
    rgba(255, 215, 0, 0.55) 65deg,
    transparent 110deg,
    transparent 250deg,
    rgba(255, 145, 0, 0.35) 295deg,
    rgba(255, 215, 0, 0.55) 320deg,
    transparent 360deg
  );
  opacity: 0.18;
  mix-blend-mode: overlay;
  animation: conic-sweep 7s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.combo-card.recommended > * { position: relative; z-index: 1; }
@keyframes conic-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.combo-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--amber);
  color: #000;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 7px 18px;
  letter-spacing: 0.25em;
  z-index: 3;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(255, 145, 0, 0.55);
  background: linear-gradient(90deg, var(--amber) 0%, var(--honey-bright) 50%, var(--amber) 100%);
  background-size: 200% 100%;
  animation: badge-shimmer 2.5s linear infinite;
}
@keyframes badge-shimmer {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

.combo-name {
  font-family: var(--display);
  font-size: 2.3rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.combo-what {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-dim);
  line-height: 1.5;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.combo-what strong { color: var(--ink); font-weight: 600; }
.combo-price {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.combo-price-sub {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--honey);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 600;
}
.combo-save {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.combo-save strong {
  color: var(--amber);
  font-style: normal;
  font-weight: 700;
}
.combo-bonus {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  padding: 10px 12px;
  background: rgba(255, 145, 0, 0.08);
  border-left: 3px solid var(--amber);
  border-radius: 0 4px 4px 0;
}
.combo-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* =========================================================
   ADD-ONS — lista compacta
   ========================================================= */
.addons { background: var(--bg-2); border-top: 1px solid var(--border); }
.addons-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--bg-3);
}
.addon-item {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
}
.addon-item:last-child { border-bottom: none; }
.addon-item:hover { background: var(--bg-4); padding-left: 40px; }
.addon-info { flex: 1; }
.addon-name {
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1;
}
.addon-desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-dim);
  line-height: 1.4;
}
.addon-price {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =========================================================
   HOW — 4 pasos horizontales con conector
   ========================================================= */
.how { background: var(--bg); border-top: 1px solid var(--border); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}
.how-step {
  padding: 36px 28px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
  text-align: center;
}
.how-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  background: var(--bg-4);
}
.how-num {
  font-family: var(--display);
  font-size: 4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--amber);
  line-height: 1;
  margin-bottom: 14px;
}
.how-icon { font-size: 2rem; margin-bottom: 10px; }
.how-title {
  font-family: var(--display);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--amber);
  letter-spacing: -0.01em;
}
.how-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-dim);
}
.how-connector {
  position: absolute;
  left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber) 0%, rgba(255, 145, 0, 0.4) 50%, transparent 100%);
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
  top: 70px;
}

/* =========================================================
   COLMENA CTA — card grande que linkea al hub
   ========================================================= */
.colmena-cta {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.colmena-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 60px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 145, 0, 0.14), transparent 70%),
    linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-amber);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.colmena-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><polygon points='40,2 78,24 78,68 40,90 2,68 2,24' fill='none' stroke='%23ff9100' stroke-width='1.2'/></svg>");
  background-size: 60px 69px;
  opacity: 0.06;
  pointer-events: none;
}
.colmena-card > * { position: relative; z-index: 1; }
.colmena-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.colmena-card h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.colmena-card h2 em {
  color: var(--amber);
  font-style: italic;
}
.colmena-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-dim);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.colmena-preview {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 30px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ink-dim);
}
.colmena-preview .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.colmena-preview strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg-2); border-top: 1px solid var(--border); }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  padding: 26px 10px;
  text-align: left;
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  line-height: 1.2;
}
.faq-q:hover { color: var(--amber); padding-left: 18px; }
.faq-q .chevron {
  width: 14px;
  height: 10px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] { color: var(--amber); padding-left: 18px; }
.faq-q[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  height: 0;
  opacity: 0;
  will-change: height;
}
.faq-a-inner {
  padding: 0 10px 28px;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink-dim);
  line-height: 1.65;
  max-width: 780px;
}
.faq-a-inner strong { color: var(--ink); font-weight: 600; }
.faq-a-inner em { color: var(--amber); font-style: italic; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #000;
  padding: 100px 40px 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto 80px;
}
.footer-brand {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-muted);
  text-transform: uppercase;
}
.footer-brand .hot {
  color: var(--amber);
  -webkit-text-stroke: 0;
}
.footer-brand-sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--amber);
  margin-top: 14px;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-dim);
  padding: 6px 0;
  transition: color 0.3s, transform 0.3s;
  cursor: none;
}
.footer-col a:hover { color: var(--amber); transform: translateX(4px); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}

/* =========================================================
   POLVO DORADO FLOTANTE
   ========================================================= */
.dust {
  position: fixed;
  width: var(--sz, 3px);
  height: var(--sz, 3px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--honey-bright) 0%, var(--amber) 60%, transparent 100%);
  box-shadow: 0 0 6px var(--honey-bright), 0 0 12px rgba(255, 145, 0, 0.35);
  left: var(--x, 50vw);
  top: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  animation: dust-rise var(--dur, 18s) var(--delay, 0s) linear infinite;
  will-change: transform, opacity;
}
@keyframes dust-rise {
  0%   { transform: translate3d(0, 0, 0) scale(0.85); opacity: 0; }
  10%  { opacity: var(--op, 0.45); }
  50%  { transform: translate3d(calc(var(--drift, 40px) * 0.5), -55vh, 0) scale(1.05); }
  90%  { opacity: var(--op, 0.45); }
  100% { transform: translate3d(var(--drift, 40px), -115vh, 0) scale(0.9); opacity: 0; }
}

/* =========================================================
   SCRAMBLE + REVEAL
   ========================================================= */
.scr-glitch {
  color: var(--honey-bright);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  font-family: var(--mono);
  font-style: normal;
  display: inline-block;
}
[data-reveal] { opacity: 0; }

/* =========================================================
   FAB WHATSAPP
   ========================================================= */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-fab svg { width: 28px; height: 28px; flex-shrink: 0; }
.wa-fab:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1fbc5a;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6),  0 0 0 14px rgba(37, 211, 102, 0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card { border-right: none; border-bottom: 1px solid var(--border); }
  .tier-card:last-child { border-bottom: none; }
  .combo-grid { grid-template-columns: 1fr; gap: 30px; }
  .combo-card.recommended { transform: none; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  body { cursor: auto; }
  .cursor, .cursor-ring, .pollen { display: none; }
  a, button, .btn, .tier-card, .combo-card, .faq-q { cursor: pointer; }
  .nav { padding: 16px 20px; }
  .nav.is-scrolled { padding: 10px 20px; }
  .nav .links { display: none; }
  .nav .brand .sub { display: none; }
  section { padding: 80px 20px; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .addon-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 24px;
  }
  .addon-item:hover { padding-left: 24px; }
  .addon-price { text-align: left; }
  .colmena-card { padding: 50px 28px; }
  .faq-q { font-size: 1.05rem; padding: 22px 4px; }
}

@media (max-width: 600px) {
  .wa-fab { right: 14px; bottom: 14px; padding: 12px 16px 12px 12px; font-size: 0.9rem; }
  .wa-fab svg { width: 24px; height: 24px; }
}
@media (max-width: 380px) {
  .wa-fab span { display: none; }
  .wa-fab { padding: 12px; border-radius: 50%; }
}

/* =========================================================
   LOGO V5 — {danline} dev style (override del nav/preloader/footer)
   Restaurantes usa --amber como acento para diferenciarse del landing.
   ========================================================= */
.nav .brand {
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  text-transform: none;
}
.nav .brand .brace {
  color: var(--amber);
  font-weight: 700;
  font-size: 1.45em;
  padding: 0 0.05em;
  line-height: 0.85;
}
.nav .brand .brand-text { padding: 0 0.15em; }
.nav .brand .brand-cursor {
  display: inline-block;
  width: 7px;
  height: 1em;
  background: var(--amber);
  margin: 0 0.1em 0 0.05em;
  animation: brand-blink 1.05s steps(2, start) infinite;
  vertical-align: middle;
  transform: translateY(-1px);
}
@keyframes brand-blink { 50% { opacity: 0; } }

.nav.is-scrolled .brand { font-size: 1.0rem; }
.nav.is-scrolled .brand .brand-cursor { width: 6px; }

.preloader-text .brace {
  color: var(--amber);
  font-weight: 700;
  font-family: var(--mono);
}

.footer-brand {
  font-family: var(--mono);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
  -webkit-text-stroke: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
}
.footer-brand .brace {
  color: var(--amber);
  font-weight: 700;
  font-size: 1.2em;
  padding: 0 0.08em;
  line-height: 0.85;
  -webkit-text-stroke: 0;
}
.footer-brand .footer-cursor {
  display: inline-block;
  width: 0.18em;
  height: 0.85em;
  background: var(--amber);
  margin: 0 0.12em 0 0.06em;
  animation: brand-blink 1.05s steps(2, start) infinite;
  vertical-align: middle;
}
