:root {
  --red: #e53935;
  --red-dark: #c71919;
  --red-soft: #fff1f1;
  --ink: #111111;
  --ink-soft: #2b2b2b;
  --muted: #666666;
  --muted-soft: #8b8b8b;
  --line: #e9e9e9;
  --panel: #ffffff;
  --soft: #f7f7f7;
  --soft-red: #fff8f8;
  --paper: #fbfaf9;
  --hairline: rgba(17, 17, 17, 0.08);
  --whatsapp: #25d366;
  --shadow-small: 0 18px 42px rgba(17, 17, 17, 0.055);
  --shadow-medium: 0 34px 90px rgba(17, 17, 17, 0.13);
  --shadow-red: 0 18px 44px rgba(229, 57, 53, 0.2);
  --radius: 8px;
  --font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--hairline);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(232, 232, 232, 0.95);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.brand-logo {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  width: fit-content;
}

.brand-logo-img {
  width: 192px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.brand-logo-fallback {
  display: none;
  align-items: baseline;
  border: 1px solid rgba(229, 57, 53, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  background:
    linear-gradient(135deg, rgba(229, 57, 53, 0.08), rgba(255, 255, 255, 0) 56%),
    #fff;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
}

.brand-logo-fallback strong {
  color: var(--red);
  font-weight: 900;
}

.brand-logo.is-missing .brand-logo-img {
  display: none;
}

.brand-logo.is-missing .brand-logo-fallback {
  display: inline-flex;
}

.menu-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%),
    #fff;
  color: var(--ink);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(17, 17, 17, 0.06);
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.main-nav {
  position: fixed;
  inset: 66px 14px auto;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a,
.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a {
  color: var(--ink-soft);
}

.main-nav a:hover {
  background: var(--soft);
}

.header-cta {
  display: none;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.18);
}

.section,
.hero-grid,
.split-layout,
.footer-inner,
.share-strip-inner {
  width: min(100% - 36px, 1160px);
  margin-inline: auto;
}

.section {
  padding: 70px 0;
}

.section-band {
  padding: 74px 0;
  background: #fff;
}

.hero.section-band {
  position: relative;
  overflow: hidden;
  padding: 70px 0 82px;
  background:
    radial-gradient(circle at 80% 43%, rgba(229, 57, 53, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 66%, #fff8f8 100%),
    #fff;
}

.hero.section-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, transparent 82%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 38px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.9rem;
}

.hero-kicker strong {
  color: var(--red);
  font-size: 1.12rem;
  font-weight: 900;
}

.hero h1,
.section-heading h2,
.quote-card h2,
.share-strip h2 {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 11.2em;
  margin-bottom: 18px;
  font-size: 2.3rem;
  line-height: 1.04;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-sub {
  max-width: 13.8em;
  margin-top: 8px;
  color: var(--red);
  font-size: 0.72em;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 43rem;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.hero-statement {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 22px 72px 22px 28px;
  background:
    linear-gradient(90deg, rgba(229, 57, 53, 0.2), transparent 34%),
    linear-gradient(135deg, #151515 0%, #090909 100%);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    10px 10px 0 var(--red),
    0 24px 44px rgba(17, 17, 17, 0.16),
    0 18px 46px rgba(229, 57, 53, 0.16);
  backdrop-filter: blur(12px);
}

.hero-statement::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, var(--red) 0 50%, transparent 50% 100%);
  content: "";
  pointer-events: none;
}

.hero-statement::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background:
    linear-gradient(180deg, #ff4a45 0%, var(--red) 46%, #9f0f0f 100%);
  content: "";
  pointer-events: none;
}

.hero-statement strong {
  position: relative;
  color: #fff;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 20px;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
}

.button-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.2);
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
  list-style: none;
}

.hero-bullets li {
  position: relative;
  padding-left: 16px;
}

.hero-bullets li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.hero-personal-note {
  max-width: 36rem;
  margin-top: 24px;
  border: 1px solid rgba(229, 57, 53, 0.14);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(229, 57, 53, 0.055), transparent 54%),
    #fff;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.055);
}

.hero-personal-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.95rem;
}

.hero-personal-note p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  min-height: 548px;
}

.hero-mockup-img {
  width: min(100%, 410px);
  height: auto;
  filter: drop-shadow(0 38px 58px rgba(17, 17, 17, 0.22));
  transform: rotate(-1.2deg);
}

.asset-frame {
  position: relative;
  display: grid;
  place-items: center;
}

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

.whatsapp-img {
  width: min(100%, 330px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 54px rgba(17, 17, 17, 0.24));
  transform: rotate(1.2deg);
}

.asset-frame.asset-missing img {
  display: none;
}

.asset-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 240px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(229, 57, 53, 0.08), transparent 52%),
    #fff;
  color: var(--ink);
  text-align: center;
}

.asset-frame.asset-missing .asset-placeholder {
  display: grid;
}

.asset-placeholder span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.asset-placeholder strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.asset-placeholder p {
  max-width: 18rem;
  margin: 0;
  font-size: 0.84rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.how-heading {
  margin-bottom: 24px;
}

.how-heading h2 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--red);
  font-size: clamp(2.15rem, 6vw, 3.2rem);
  text-transform: uppercase;
}

.section-heading h2,
.quote-card h2,
.share-strip h2 {
  margin-bottom: 14px;
  font-size: 1.9rem;
  line-height: 1.14;
}

.section-heading p:last-child,
.quote-card p,
.share-strip p {
  margin-bottom: 0;
}

.demo-section .section-heading p:not(.section-kicker) {
  color: var(--ink);
}

.demo-reminder {
  margin-top: 12px;
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px;
  background: rgba(229, 57, 53, 0.055);
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

.personalization-strip {
  padding: 58px 0;
  background:
    linear-gradient(180deg, #fff8f8 0%, #fff 100%),
    #fff;
}

.personalization-inner {
  display: grid;
  width: min(100% - 36px, 1160px);
  gap: 28px;
  align-items: start;
  margin-inline: auto;
  border: 1px solid rgba(229, 57, 53, 0.16);
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at 8% 10%, rgba(229, 57, 53, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(229, 57, 53, 0.07), rgba(255, 255, 255, 0) 52%),
    #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 24px 70px rgba(17, 17, 17, 0.075);
}

.personalization-inner h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.16;
}

.personalization-points {
  display: grid;
  gap: 10px;
}

.personalization-points article {
  border-left: 2px solid rgba(229, 57, 53, 0.34);
  padding: 2px 0 2px 14px;
}

.personalization-points strong,
.personalization-points span {
  display: block;
}

.personalization-points strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.94rem;
}

.personalization-points span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.problem-grid,
.steps-grid,
.demo-grid {
  display: grid;
  gap: 14px;
}

.info-card,
.step-card,
.demo-card,
.quote-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.035);
}

.info-card {
  padding: 16px 0 0;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}

.problem-points {
  gap: 10px;
}

.problem-points .info-card {
  min-height: 0;
  padding: 0;
  border-width: 1px 0 0;
  overflow: hidden;
}

.problem-points summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 11px 0;
  cursor: pointer;
  list-style: none;
}

.problem-points summary::-webkit-details-marker {
  display: none;
}

.problem-points .line-icon {
  margin: 0;
}

.problem-points h3 {
  margin: 0;
}

.problem-points p {
  margin: 0;
  padding: 0 0 13px 34px;
}

.problem-more {
  display: inline-flex;
  min-width: 78px;
  justify-content: center;
  border: 1px solid rgba(229, 57, 53, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.problem-more::before {
  content: "Leer más";
}

.problem-points details[open] .problem-more::before {
  content: "Ocultar";
}

.compact-list details {
  overflow: hidden;
}

.compact-list summary {
  position: relative;
  display: grid;
  gap: 0;
  min-height: 58px;
  align-content: center;
  padding-right: 34px;
  cursor: pointer;
  list-style: none;
}

.compact-list summary::-webkit-details-marker {
  display: none;
}

.compact-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(229, 57, 53, 0.18);
  border-radius: 50%;
  color: var(--red);
  content: "+";
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.compact-list details[open] summary::after {
  content: "-";
}

.compact-list details p,
.compact-list details > span {
  margin-top: 2px;
}

.line-icon {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.info-card h3,
.step-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.info-card p,
.step-card p {
  margin: 0;
  font-size: 0.9rem;
}

.split-layout {
  display: grid;
  gap: 30px;
  align-items: center;
}

.screenshot-preview {
  position: relative;
}

.preview-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
}

.preview-label span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.preview-label strong {
  color: var(--red);
  font-size: 0.9rem;
}

.whatsapp-frame {
  min-height: 500px;
  padding: 22px 20px 16px;
  background:
    radial-gradient(circle at 54% 45%, rgba(229, 57, 53, 0.15), transparent 34%),
    radial-gradient(circle at 48% 58%, rgba(17, 17, 17, 0.08), transparent 42%);
}

.solution-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.solution-visual::before {
  position: absolute;
  inset: 14% 7% 10% 12%;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(229, 57, 53, 0.08), transparent 42%),
    #fff;
  box-shadow: 0 26px 74px rgba(17, 17, 17, 0.06);
  content: "";
}

.solution-floating-note {
  position: absolute;
  right: 4px;
  bottom: 86px;
  width: min(236px, 70vw);
  border: 1px solid rgba(229, 57, 53, 0.16);
  border-radius: 14px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(18px);
}

.solution-floating-note span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-floating-note strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.32;
}

.steps-grid {
  counter-reset: step;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 20px 20px 18px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 68%, #fbfbfb 100%),
    #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 46px rgba(17, 17, 17, 0.06);
}

.step-card::after {
  position: absolute;
  top: -12px;
  right: 12px;
  color: rgba(229, 57, 53, 0.13);
  content: "0" counter(step);
  counter-increment: step;
  font-size: 5.15rem;
  font-weight: 900;
  line-height: 1;
}

.step-card span {
  display: none;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

.working-note {
  max-width: 680px;
  margin: 18px auto 0;
  border-left: 4px solid var(--red);
  padding-left: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.share-strip {
  padding: 42px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(229, 57, 53, 0.28), transparent 28%),
    var(--ink);
  color: #fff;
}

.share-strip-inner {
  display: grid;
  gap: 18px;
  align-items: center;
}

.share-strip h2,
.share-strip .section-kicker {
  color: #fff;
}

.share-strip p {
  color: rgba(255, 255, 255, 0.74);
}

.share-uses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.share-uses span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.qr-small {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  padding: 4px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}

.qr-fake {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.42);
}

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

.demo-group + .demo-group {
  margin-top: 30px;
}

.demo-group-pending {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.demo-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #fbfbfb 100%),
    #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 22px 54px rgba(17, 17, 17, 0.075);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.demo-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 28px 70px rgba(17, 17, 17, 0.1);
}

.demo-media {
  min-height: 148px;
  background:
    linear-gradient(135deg, rgba(229, 57, 53, 0.88), rgba(17, 17, 17, 0.9)),
    #222;
  background-position: center;
  background-size: cover;
}

.demo-taqueria .demo-media {
  background-image:
    linear-gradient(135deg, rgba(229, 57, 53, 0.88), rgba(17, 17, 17, 0.88));
}

.demo-tortas .demo-media {
  background-image:
    linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(229, 57, 53, 0.82));
}

.demo-burgers .demo-media {
  background-image:
    linear-gradient(135deg, rgba(229, 57, 53, 0.2), rgba(17, 17, 17, 0.18)),
    url("./assets/coverquieroburger.webp");
}

.demo-pizza .demo-media {
  background-image:
    linear-gradient(135deg, rgba(76, 24, 14, 0.18), rgba(181, 47, 35, 0.2)),
    url("./ejemplos/quiero-pizza/assets/pizza-hero.webp");
}

.demo-mariscos .demo-media {
  background-image:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(229, 57, 53, 0.78));
}

.demo-fonda .demo-media {
  background-image:
    linear-gradient(135deg, rgba(229, 57, 53, 0.82), rgba(17, 17, 17, 0.88));
}

.demo-armable .demo-media {
  background-image:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(229, 57, 53, 0.84));
}

.demo-wok .demo-media {
  background-image:
    radial-gradient(circle at 70% 28%, rgba(248, 193, 74, 0.64) 0 7px, transparent 8px),
    radial-gradient(circle at 37% 70%, rgba(15, 95, 74, 0.82) 0 18px, transparent 19px),
    linear-gradient(135deg, #0f5f4a, #1c1916 56%, #f05a28);
}

.demo-card-body {
  padding: 20px;
}

.demo-grid-ready .demo-card {
  border-color: rgba(229, 57, 53, 0.14);
}

.demo-grid-ready .demo-card::after {
  display: block;
  width: calc(100% - 40px);
  height: 3px;
  margin: 0 20px 20px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.demo-card-body > span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.demo-card a,
.demo-card button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 15px;
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.demo-card button:disabled {
  border: 1px solid var(--line);
  background: #f6f6f6;
  color: var(--muted);
  cursor: not-allowed;
}

.demo-card-pending {
  background: #fbfbfb;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.025);
}

.demo-card-pending .demo-media {
  min-height: 110px;
  filter: grayscale(0.35);
  opacity: 0.82;
}

.demo-card-pending .demo-card-body > span {
  color: var(--muted);
}

.orders-demo-card {
  display: grid;
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(229, 57, 53, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.07);
}

.orders-demo-preview {
  display: grid;
  gap: 10px;
  min-height: 238px;
  padding: 21px;
  background: #f5eee6;
}

.orders-preview-top,
.orders-preview-summary,
.orders-preview-title { display: grid; gap: 3px; }
.orders-preview-title strong { color: var(--ink); font-size: 0.86rem; }
.orders-preview-title span { color: var(--muted); font-size: 0.7rem; font-weight: 700; }
.orders-preview-filters,
.orders-preview-actions { display: flex; flex-wrap: wrap; gap: 5px; }
.orders-preview-filters i,
.orders-preview-actions b { border-radius: 6px; padding: 5px 6px; font-size: 0.62rem; font-style: normal; font-weight: 800; }
.orders-preview-filters i { background: #eaded0; color: var(--muted); }
.orders-preview-filters i:first-child { background: var(--red); color: #fff; }
.orders-preview-actions b { background: #ece5dd; color: var(--ink); }.orders-preview-actions b:last-child { background: #2bb565; color: #fff; }

.orders-preview-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.orders-preview-top span {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
}

.orders-preview-top b {
  border-radius: 7px;
  padding: 7px 9px;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
}

.orders-preview-summary {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.orders-preview-summary i,
.orders-preview-order em {
  border-radius: 999px;
  padding: 4px 7px;
  background: #ffe6a9;
  color: #735400;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.orders-preview-order {
  padding: 12px;
  border: 1px solid #eaded0;
  border-radius: 10px;
  background: #fffaf2;
  box-shadow: 0 3px 10px rgba(56, 35, 20, 0.05);
}

.orders-preview-order div { display: grid; gap: 3px; }
.orders-preview-order small { color: var(--red); font-weight: 900; letter-spacing: 0.04em; }
.orders-preview-order strong { color: var(--ink); font-size: 0.88rem; }
.orders-preview-order span { color: var(--muted); font-size: 0.7rem; }
.orders-preview-order.is-muted em { background: #d9f4df; color: #22643c; }

.orders-demo-content { padding: 24px; }
.orders-demo-content > span { display: block; margin-bottom: 7px; color: var(--red); font-size: 0.78rem; font-weight: 900; }
.orders-demo-content h3 { margin: 0; color: var(--ink); font-size: 1.25rem; line-height: 1.25; }
.orders-demo-content h3 small { display: block; margin-top: 4px; color: var(--muted); font-size: 0.78rem; font-weight: 700; }
.orders-demo-content p { margin: 12px 0 0; color: var(--muted); line-height: 1.65; }
.orders-demo-benefits { display: grid; gap: 6px; margin: 15px 0 0; padding: 0; color: var(--ink); font-size: 0.8rem; font-weight: 700; list-style: none; }.orders-demo-benefits li { display: flex; gap: 7px; align-items: flex-start; }.orders-demo-benefits li::before { color: var(--red); content: "•"; }
.orders-demo-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.orders-demo-actions a { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; border-radius: var(--radius); padding: 0 15px; background: var(--ink); color: #fff; font-size: 0.86rem; font-weight: 900; }
.orders-demo-actions .orders-demo-menu-link { background: #f3ebe4; color: var(--ink); }

/* Directorio plegable para demos reales, separado de los ejemplos por giro. */
.demo-directory {
  margin-top: 30px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.045);
}

.demo-directory summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.demo-directory summary::-webkit-details-marker {
  display: none;
}

.demo-directory summary strong,
.demo-directory summary small {
  display: block;
}

.demo-directory summary strong {
  color: var(--ink);
  font-size: 1rem;
}

.demo-directory summary small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.demo-directory-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--hairline);
  border-radius: 50%;
}

.demo-directory-icon::before,
.demo-directory-icon::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 2px;
  background: var(--red);
  content: "";
  transition: transform 160ms ease;
}

.demo-directory-icon::after {
  transform: rotate(90deg);
}

.demo-directory[open] .demo-directory-icon::after {
  transform: rotate(0);
}

.demo-directory-list {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--hairline);
  padding: 12px;
}

.demo-directory-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 92px;
  overflow: hidden;
  border: 1px solid rgba(229, 57, 53, 0.16);
  border-radius: calc(var(--radius) - 4px);
  padding: 16px;
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.demo-directory-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.14);
}

.demo-directory-item small,
.demo-directory-item strong,
.demo-directory-item b {
  display: block;
}

.demo-directory-item small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
}

.demo-directory-item strong {
  font-size: 1.04rem;
}

.demo-directory-item b {
  flex: 0 0 auto;
  font-size: 0.82rem;
  white-space: nowrap;
}

.demo-directory-elmonch {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.78) 48%, rgba(8, 8, 8, 0.28) 100%),
    url("./menus/el-monch/assets/hero-el-monch.png") 78% center / cover;
}

.demo-directory-freese {
  background:
    linear-gradient(90deg, rgba(194, 36, 88, 0.96) 0%, rgba(222, 78, 125, 0.84) 55%, rgba(255, 167, 192, 0.66) 100%),
    url("./menus/freese/assets/logo-freese.png") 84% center / 145px auto no-repeat,
    #ee7ea4;
}

.quote-section {
  padding-top: 76px;
  padding-bottom: 86px;
  background: #fff;
}

.quote-card {
  display: grid;
  gap: 22px;
  border-color: rgba(229, 57, 53, 0.18);
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(229, 57, 53, 0.1), rgba(255, 255, 255, 0) 44%),
    #fff;
  box-shadow: 0 20px 58px rgba(17, 17, 17, 0.065);
}

.quote-card .button {
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #fff;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-logo .brand-logo-img {
  width: 150px;
  max-height: 38px;
}

.footer-logo .brand-logo-fallback {
  font-size: 1.18rem;
}

.footer-tagline {
  margin: 16px 0 6px;
  color: var(--ink);
  font-weight: 800;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
}

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

.footer-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 90;
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-medium);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 560px) {
  .hero h1 {
    font-size: 3rem;
  }

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

  .orders-demo-card {
    grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  }

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

  .quote-card .button {
    width: auto;
    justify-self: start;
  }
}

@media (min-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px max(28px, calc((100vw - 1160px) / 2));
  }

  .brand-logo-img {
    width: 216px;
    max-height: 52px;
  }

  .brand-logo-fallback {
    font-size: 1.22rem;
  }

  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    justify-content: center;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero.section-band {
    padding: 72px 0 88px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
  }

  .hero h1 {
    max-width: 12.8em;
    font-size: 3.45rem;
  }

  .hero-title-main,
  .hero-title-sub {
    display: block;
  }

  .hero-title-sub {
    max-width: 13.6em;
    margin-top: 10px;
    font-size: 0.62em;
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-visual {
    min-height: 680px;
    justify-items: end;
  }

  .hero-mockup-img {
    width: min(100%, 520px);
    transform: rotate(-2.4deg) translateX(8px);
  }

  .problem-points {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .problem-points .info-card {
    border-width: 1px 0 0;
    padding-top: 18px;
  }

  .problem-points summary {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 0;
    cursor: default;
  }

  .problem-points .line-icon {
    margin-bottom: 8px;
  }

  .problem-points p {
    padding: 0;
  }

  .problem-more {
    display: none;
  }

  .section,
  .section-band {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-heading h2,
  .quote-card h2,
  .share-strip h2 {
    font-size: 2.38rem;
  }

  .split-layout {
    grid-template-columns: 1fr 0.84fr;
    gap: 60px;
  }

  .personalization-inner {
    grid-template-columns: 0.9fr 1fr;
    padding: 30px;
  }

  .personalization-inner h2 {
    font-size: 2.18rem;
  }

  .personalization-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .demo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .share-strip-inner {
    grid-template-columns: 1fr auto auto;
  }

  .quote-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 1060px) {
  .hero h1 {
    font-size: 3.55rem;
  }
}

@media (max-width: 819px) {
  .share-strip {
    padding: 34px 0;
  }

  .share-strip-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 14px;
  }

  .share-strip-inner > div:first-child {
    grid-column: 1 / -1;
  }

  .share-uses {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    align-content: start;
    align-self: center;
    gap: 8px;
  }

  .share-uses span {
    padding: 8px 10px;
    white-space: nowrap;
  }

  .share-uses span:nth-child(2) {
    order: 3;
  }

  .share-uses span:nth-child(3) {
    order: 2;
  }

  .share-uses span:nth-child(4) {
    order: 4;
  }

  .qr-small {
    align-self: center;
    justify-self: end;
  }

  .hero.section-band {
    padding: 32px 0 26px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-subtitle {
    margin-bottom: 18px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-bullets {
    margin-top: 16px;
  }

  .hero-personal-note {
    margin-top: 16px;
  }

  .hero-visual {
    min-height: 408px;
  }

  .hero-mockup-img {
    width: min(100%, 344px);
  }

  .personalization-strip {
    padding: 32px 0 42px;
  }

  .solution.section-band {
    padding: 54px 0 48px;
  }

  .whatsapp-frame {
    min-height: 452px;
    padding: 10px 12px 6px;
  }

  .solution-visual {
    min-height: 472px;
  }

  .whatsapp-img {
    width: min(100%, 306px);
  }

  .solution-floating-note {
    right: 0;
    bottom: 46px;
    width: min(188px, 58vw);
    padding: 9px 10px;
  }

  .solution-floating-note span {
    font-size: 0.6rem;
  }

  .solution-floating-note strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-logo-img {
    width: 158px;
  }

  .brand-logo-fallback {
    font-size: 1rem;
    padding: 8px 10px;
  }

  .hero-grid,
  .section,
  .split-layout,
  .footer-inner,
  .share-strip-inner,
  .personalization-inner {
    width: min(100% - 30px, 1160px);
  }

  .section {
    padding: 48px 0;
  }

  .section-band {
    padding: 50px 0;
  }

  .hero.section-band {
    padding: 28px 0 18px;
  }

  .hero-grid {
    gap: 18px;
  }

  .section-kicker {
    margin-bottom: 8px;
  }

  .hero-kicker {
    gap: 6px;
    font-size: 0.78rem;
  }

  .hero-kicker strong {
    font-size: 0.96rem;
  }

  .personalization-inner {
    padding: 20px;
  }

  .personalization-inner h2 {
    font-size: 1.45rem;
  }

  .hero h1 {
    font-size: 2.1rem;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    margin-bottom: 16px;
  }

  .hero-statement {
    padding: 16px 42px 16px 18px;
    line-height: 1.48;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      6px 6px 0 var(--red),
      0 16px 32px rgba(17, 17, 17, 0.14),
      0 12px 30px rgba(229, 57, 53, 0.12);
  }

  .hero-statement::before {
    width: 34px;
    height: 34px;
  }

  .hero-actions {
    gap: 9px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
  }

  .hero-bullets {
    gap: 6px 12px;
    margin-top: 14px;
    font-size: 0.84rem;
  }

  .hero-personal-note {
    margin-top: 14px;
    padding: 12px 14px;
  }

  .hero-visual {
    min-height: 352px;
  }

  .hero-mockup-img {
    width: min(100%, 292px);
    transform: rotate(-1deg);
  }

  .personalization-strip {
    padding: 26px 0 34px;
  }

  .split-layout {
    gap: 20px;
  }

  .solution.section-band {
    padding: 48px 0 42px;
  }

  .whatsapp-frame {
    min-height: 420px;
    padding: 8px 10px 4px;
  }

  .solution-visual {
    min-height: 440px;
  }

  .whatsapp-img {
    width: min(100%, 294px);
  }

  .solution-floating-note {
    right: 0;
    bottom: 42px;
    width: min(176px, 55vw);
    border-radius: 12px;
    padding: 8px 10px;
  }

  .solution-floating-note span {
    margin-bottom: 3px;
    font-size: 0.58rem;
  }

  .solution-floating-note strong {
    font-size: 0.76rem;
    line-height: 1.22;
  }

  .share-strip {
    padding: 30px 0;
  }

  .share-strip-inner {
    gap: 14px 10px;
  }

  .share-uses {
    gap: 7px;
  }

  .share-uses span {
    padding: 7px 9px;
    font-size: 0.74rem;
  }

  .qr-small {
    width: 86px;
    height: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Demo activa de postres: portada propia sin depender de fotografía. */
.demo-postres .demo-media {
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.55) 0 7%, transparent 7.5%),
    radial-gradient(circle at 31% 74%, rgba(255, 255, 255, 0.35) 0 5%, transparent 5.5%),
    linear-gradient(135deg, #e73662, #ff8fa4);
}

.demo-postres .demo-card-body > span {
  color: #c52f52;
}
