:root {
  --bg: #0c0e12;
  --bg-elevated: #141820;
  --surface: #1a1f2a;
  --text: #e8eaef;
  --text-muted: #8b93a5;
  --accent: #f4b942;
  --accent-hover: #ffc94d;
  --accent-text: #1a1204;
  --success: #3dd68c;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Newsreader", Georgia, serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(244, 185, 66, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(61, 214, 140, 0.06), transparent 45%);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Urgency bar */
.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, rgba(244, 185, 66, 0.15), rgba(244, 185, 66, 0.08));
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.urgency::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

/* Header */
header {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

header .cta-mini {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s ease, background 0.15s ease;
}

header .cta-mini:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.hero-prehead {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--success);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-bullets {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  max-width: 42ch;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.price-anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 0.75rem;
}

.price-old {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(232, 93, 93, 0.7);
}

.price-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(244, 185, 66, 0.2);
  color: var(--accent);
  border: 1px solid rgba(244, 185, 66, 0.35);
}

.cta-microcopy {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 36ch;
}

.social-proof-line {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.95;
}

/* Stats strip (credibilidad rápida) */
.stats-section {
  padding: 0 0 1rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (max-width: 600px) {
  .stats-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 12ch;
}

/* Bridge emocional */
.bridge {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(244, 185, 66, 0.04), transparent);
}

.bridge h2 {
  margin-bottom: 1rem;
}

.bridge-text {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
  color: var(--text);
}

.bridge-text strong {
  color: var(--accent);
  font-weight: 600;
}

/* Contraste sin / con */
.contrast .compare-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contrast .compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.compare-col {
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
}

.compare-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 1rem;
  text-align: left;
}

.compare-bad {
  background: rgba(232, 93, 93, 0.06);
  border-color: rgba(232, 93, 93, 0.25);
}

.compare-bad h3 {
  color: #e8a0a0;
}

.compare-good {
  background: rgba(61, 214, 140, 0.08);
  border-color: rgba(61, 214, 140, 0.3);
  box-shadow: 0 0 0 1px rgba(61, 214, 140, 0.12);
}

.compare-good h3 {
  color: var(--success);
}

.compare-col ul {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.compare-col li {
  margin-bottom: 0.5rem;
}

/* Objeciones */
.objection-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .objection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.objection-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.objection-card:hover {
  border-color: rgba(244, 185, 66, 0.35);
  transform: translateY(-2px);
}

.objection-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.65rem;
  color: var(--text);
  line-height: 1.35;
}

.objection-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.problem-lead strong {
  color: var(--accent);
}

.final-urgency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  max-width: 40ch;
}

.final-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.final-micro {
  margin-top: 1rem;
  text-align: center;
  max-width: none;
}

@keyframes btn-glow {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(244, 185, 66, 0.25);
  }
  50% {
    box-shadow: 0 8px 40px rgba(244, 185, 66, 0.45);
  }
}

.btn-pulse {
  animation: btn-glow 2.5s ease-in-out infinite;
}

.hero .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 36ch;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.price-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(244, 185, 66, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 185, 66, 0.35);
}

.btn-ghost {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 14, 18, 0.5) 100%);
  pointer-events: none;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-badges svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}

/* Sections */
section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  text-align: center;
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

/* Problem */
.problem-list {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.problem-list li::before {
  content: "✕";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #e85d5d;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Solution */
.solution-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  text-align: center;
}

.solution-box p {
  margin: 0;
  font-size: 1.15rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.benefit-card:hover {
  border-color: rgba(244, 185, 66, 0.35);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.benefit-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.t-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.t-card p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
}

.t-card .author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  font-style: normal;
}

.t-card .loc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

details {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

details summary {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  border-bottom: 1px solid var(--border);
}

details p {
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Guarantee */
.guarantee {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(61, 214, 140, 0.08), rgba(244, 185, 66, 0.06));
  border: 1px solid rgba(61, 214, 140, 0.25);
  border-radius: calc(var(--radius) + 6px);
  max-width: 640px;
  margin: 0 auto;
}

.guarantee h2 {
  margin-bottom: 0.75rem;
}

.guarantee p {
  margin: 0;
  color: var(--text-muted);
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding-bottom: 4rem;
}

.final-cta h2 {
  margin-bottom: 0.75rem;
}

.final-cta .price {
  display: block;
  margin: 1rem 0;
}

/* Footer */
footer {
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sticky CTA mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(12, 14, 18, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .mini-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.1rem;
}

.sticky-cta .btn-primary {
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

body.has-sticky {
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  body.has-sticky {
    padding-bottom: 0;
  }
}

/* —— Bloques extra: barra oferta, specs, galería, antes/después, embudo visual, pagos —— */
.top-offer-bar {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #f8fafc;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
}

.spec-icons-section {
  padding: 1.75rem 0 2rem;
}

.spec-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .spec-icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .spec-icons-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.spec-icon-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 0.65rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  min-height: 100%;
}

.spec-icon-emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.spec-icon-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.25;
  color: var(--text);
}

.spec-icon-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.product-gallery {
  padding: 0 0 1.5rem;
  border-top: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-cell {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.gallery-cell img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.before-after-section .before-after-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .before-after-section .before-after-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ba-col {
  padding: 1.5rem 1.25rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
}

.ba-col h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.ba-col ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.ba-before {
  background: rgba(148, 163, 184, 0.08);
}

.ba-after {
  background: linear-gradient(145deg, rgba(244, 185, 66, 0.12), rgba(61, 214, 140, 0.1));
  border-color: rgba(61, 214, 140, 0.25);
}

.visual-funnel {
  background: linear-gradient(180deg, rgba(244, 185, 66, 0.05), transparent);
}

.vf-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .vf-layout {
    grid-template-columns: minmax(260px, 400px) 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.vf-product {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.vf-product img {
  width: 100%;
  height: auto;
  display: block;
}

.vf-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vf-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.vf-dot {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vf-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.vf-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
}

.payments-section {
  padding: 2rem 0;
}

.payments-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.payments-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pay-ico {
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent);
}

/* —— Tema claro “compact-cool” (referencia estilo mobile funnel) —— */
body.theme-compact-cool {
  --bg: #faf7fb;
  --bg-elevated: #ffffff;
  --surface: #f4eef7;
  --text: #111827;
  --text-muted: #5b6478;
  --accent: #c026d3;
  --accent-hover: #d946ef;
  --accent-text: #fafafa;
  --success: #059669;
  --border: rgba(17, 24, 39, 0.08);
  --shadow: 0 20px 60px rgba(192, 38, 211, 0.12);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-price: "DM Sans", "Outfit", system-ui, sans-serif;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.theme-compact-cool .hero .lead,
body.theme-compact-cool .section-lead,
body.theme-compact-cool .solution-box p,
body.theme-compact-cool .benefit-card p,
body.theme-compact-cool details p {
  font-family: "Newsreader", Georgia, serif;
}

body.theme-compact-cool {
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(192, 38, 211, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(5, 150, 105, 0.06), transparent 50%);
}

body.theme-compact-cool .urgency {
  background: linear-gradient(90deg, rgba(192, 38, 211, 0.12), rgba(192, 38, 211, 0.06));
  color: #86198f;
  border-bottom-color: var(--border);
}

body.theme-compact-cool .urgency::before {
  background: #c026d3;
}

body.theme-compact-cool .top-offer-bar {
  background: linear-gradient(90deg, #c026d3, #a21caf);
  color: #fff;
  border-bottom: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

body.theme-compact-cool header {
  background: var(--bg-elevated);
  border-bottom-color: var(--border);
}

body.theme-compact-cool .logo {
  color: var(--text);
}

body.theme-compact-cool .hero-prehead {
  color: #86198f;
}

body.theme-compact-cool .price,
body.theme-compact-cool .stat-value,
body.theme-compact-cool .mini-price {
  color: #a21caf;
}

/* Importes: más contenidos, DM Sans + números tabulares */
body.theme-compact-cool .price,
body.theme-compact-cool .pack-price,
body.theme-compact-cool .mini-price,
body.theme-compact-cool .stat-value,
body.theme-compact-cool .final-cta .price,
body.theme-compact-cool .order-pack-price {
  font-family: var(--font-price);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

body.theme-compact-cool .price {
  font-size: clamp(1.35rem, 3.2vw, 1.55rem);
  font-weight: 600;
}

body.theme-compact-cool .pack-price {
  font-size: clamp(1.2rem, 2.6vw, 1.32rem);
  font-weight: 600;
  color: #a21caf;
}

body.theme-compact-cool .pack-old,
body.theme-compact-cool .price-old {
  font-family: var(--font-price);
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.85;
}

body.theme-compact-cool .mini-price {
  font-size: 0.9375rem;
  font-weight: 600;
}

body.theme-compact-cool .stat-value {
  font-size: clamp(1.2rem, 2.2vw, 1.35rem);
  font-weight: 600;
}

body.theme-compact-cool .final-cta .price {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
}

body.theme-compact-cool .price-badge {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
}

body.theme-compact-cool .logo {
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.theme-compact-cool .hero h1 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

body.theme-compact-cool .section-title {
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.theme-compact-cool .section-sub {
  font-size: 0.98rem;
  line-height: 1.55;
}

body.theme-compact-cool .pack-name {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.theme-compact-cool .pack-qty {
  font-size: 0.84rem;
}

body.theme-compact-cool .order-pack-price {
  font-size: 1.05rem;
}

body.theme-compact-cool .order-cop {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
}

body.theme-compact-cool .btn-primary,
body.theme-compact-cool .cta-mini {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.theme-compact-cool .hero-prehead {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body.theme-compact-cool .hero-chip-t {
  font-size: 0.875rem;
  font-weight: 700;
}

body.theme-compact-cool .btn-primary {
  background: #111827;
  color: #fff;
  box-shadow: 0 10px 36px rgba(17, 24, 39, 0.2);
}

body.theme-compact-cool .btn-primary:hover {
  background: #0b1220;
  box-shadow: 0 14px 44px rgba(17, 24, 39, 0.28);
}

body.theme-compact-cool header .cta-mini {
  background: #c026d3;
  color: #fff;
}

body.theme-compact-cool header .cta-mini:hover {
  background: #a21caf;
}

body.theme-compact-cool .btn-pulse {
  animation: btn-glow-light 2.5s ease-in-out infinite;
}

@keyframes btn-glow-light {
  0%,
  100% {
    box-shadow: 0 10px 36px rgba(17, 24, 39, 0.2);
  }
  50% {
    box-shadow: 0 10px 48px rgba(192, 38, 211, 0.35);
  }
}

body.theme-compact-cool .hero-visual::after {
  background: linear-gradient(180deg, transparent 50%, rgba(250, 247, 251, 0.65) 100%);
}

body.theme-compact-cool .vf-dot {
  background: #c026d3;
  color: #fff;
}

body.theme-compact-cool .sticky-cta {
  background: rgba(255, 255, 255, 0.96);
  border-top-color: var(--border);
}

body.theme-compact-cool .sticky-cta .btn-primary {
  background: #c026d3;
  color: #fff;
}

body.theme-compact-cool .sticky-cta .btn-primary:hover {
  background: #a21caf;
}

body.theme-compact-cool .final-urgency {
  color: #86198f;
}

body.theme-compact-cool .price-badge {
  background: rgba(192, 38, 211, 0.12);
  color: #86198f;
  border-color: rgba(192, 38, 211, 0.35);
}

body.theme-compact-cool .bridge-text strong {
  color: #a21caf;
}

/* —— Layout enfocado: menos ruido, más aire, packs + vídeo —— */
body.layout-focus section {
  padding: clamp(2.25rem, 4vw, 3rem) 0;
}

body.layout-focus .section-tight {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
}

.wrap.narrow {
  max-width: 720px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}

.hero--focus {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero--focus .hero-copy .lead {
  max-width: 38ch;
  font-size: 1.15rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.hero-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  min-width: 4.5rem;
}

.hero-chip-t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.2;
}

.hero-chip-d {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.hero-trust-line {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-visual--media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #000;
}

.hero-visual--media::after {
  display: none;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

/* Packs */
.packs-section {
  background: color-mix(in srgb, var(--surface) 55%, var(--bg));
  overflow: visible;
}

.packs-section .wrap {
  overflow: visible;
}

.packs-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .packs-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.pack-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: box-shadow 0.15s ease;
  min-height: 0;
  overflow: visible;
}

.pack-card--featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 16px 48px rgba(192, 38, 211, 0.18);
}

/* Badge solo sobre la imagen — no solapa titulares HTML */
.pack-img-wrap .pack-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 92%, transparent);
  color: #fafafa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pack-card--featured .pack-img-wrap .pack-badge {
  background: var(--accent);
  color: var(--accent-text);
}

.pack-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.9rem, 2.8vw, 1rem);
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.35;
  padding: 0 0.25rem;
  text-wrap: balance;
}

/* Rellena todo el ancho del pack: sin “letterbox” blanco (object-fit: cover) */
.pack-img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0f172a;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.pack-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.pack-highlights {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.pack-highlights li {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.55rem 0.5rem 1.85rem;
  border-radius: 10px;
  background: linear-gradient(100deg, #fce7f3 0%, #ffedd5 100%);
  color: #831843;
  position: relative;
  border: 1px solid rgba(192, 38, 211, 0.12);
}

.pack-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 4px;
  background: #059669;
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.pack-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.pack-qty {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pack-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.35rem;
}

.pack-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.pack-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--accent);
}

.pack-ship {
  font-size: 0.82rem;
  color: var(--success);
  margin: 0 0 1rem;
  font-weight: 600;
}

.pack-card--no-price .pack-qty {
  margin-bottom: 0.65rem;
}

.pack-qty-stepper {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pack-qty-stepper-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-align: center;
}

.pack-qty-stepper-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.pack-stepper-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pack-stepper-btn:hover {
  background: var(--accent);
  color: var(--accent-text);
  border-color: transparent;
}

.pack-qty-input {
  width: 3rem;
  height: 2.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  -moz-appearance: textfield;
  appearance: textfield;
}

.pack-qty-input::-webkit-outer-spin-button,
.pack-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.95rem 1rem;
  box-sizing: border-box;
}

/* Media strip */
.media-layout {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .media-layout {
    grid-template-columns: minmax(280px, 380px) 1fr;
    align-items: start;
  }
}

.media-gif {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.media-gif img,
.media-gif video {
  width: 100%;
  height: auto;
  display: block;
}

.media-stills {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .media-stills {
    grid-template-columns: 1fr 1fr;
  }
}

.media-still {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.media-still img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.problem-list--compact li {
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  margin-bottom: 0.5rem;
}

.solution-box--plain {
  text-align: left;
  max-width: none;
}

.benefits-grid--three {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .benefits-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps--inline .step {
  text-align: left;
}

@media (min-width: 768px) {
  .steps--inline {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 1.25rem;
  }
}

.guarantee--minimal {
  max-width: none;
  background: transparent;
  border: 1px dashed var(--border);
  padding: 1.75rem 1.25rem;
}

.guarantee--minimal h2 {
  margin-bottom: 0.5rem;
}

body.theme-compact-cool .pack-card {
  background: #fff;
}

body.theme-compact-cool .hero-chip {
  background: #fff;
}

body.theme-compact-cool .packs-section {
  background: linear-gradient(180deg, #f3e8ff 0%, #faf7fb 35%, #faf7fb 100%);
}

body.theme-compact-cool .site-header {
  background: rgba(250, 247, 251, 0.92);
}

/* Botón pack (elemento <button>) */
button.btn-primary {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.pack-card button.btn-primary {
  font-family: var(--font-display);
}

/* Modal de pedido */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.order-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 540px) {
  .order-modal-overlay {
    align-items: center;
    padding: 1.5rem;
  }
}

.order-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: min(92vh, 720px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 1.25rem 1.75rem;
  color: #111827;
}

@media (min-width: 540px) {
  .order-modal {
    border-radius: 18px;
  }
}

.order-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
  border-radius: 8px;
}

.order-modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.order-modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 2rem 0.35rem 0;
  color: #0f172a;
}

.order-modal-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.45;
}

.order-pack-summary {
  margin-bottom: 1.15rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.5;
}

.order-pack-inner strong {
  color: #0f172a;
}

.order-pack-qty-line {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: #475569;
}

.order-pack-unit-note {
  font-size: 0.82rem;
  color: #64748b;
}

.order-pack-old {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.88rem;
  margin-right: 0.35rem;
}

.order-pack-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: #c026d3;
}

.order-cop {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.order-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.order-field .req {
  color: #dc2626;
}

.order-field-doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .order-field-doc-grid {
    grid-template-columns: 1fr;
  }
}

.order-field-half {
  min-width: 0;
}

.order-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.15rem 0.65rem 0.15rem 0.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.order-input-wrap:focus-within {
  border-color: #c026d3;
  box-shadow: 0 0 0 3px rgba(192, 38, 211, 0.12);
}

.order-input-wrap input,
.order-select-wrap select {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  padding: 0.65rem 0.25rem;
  min-width: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: #0f172a;
}

.order-input-wrap input::placeholder {
  color: #94a3b8;
}

.order-input-wrap input:focus,
.order-select-wrap select:focus {
  outline: none;
}

.order-ico {
  flex-shrink: 0;
  display: flex;
  color: #64748b;
}

.order-select-wrap {
  padding-left: 0.65rem;
}

.order-select-wrap select {
  cursor: pointer;
  width: 100%;
}

.order-hint {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
}

.order-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

body.theme-compact-cool .order-submit {
  background: #111827;
  color: #fff;
}

body.theme-compact-cool .order-submit:hover {
  background: #0b1220;
}

/* Consentimiento inicial */
html.terms-pending #funnel-root {
  visibility: hidden;
  pointer-events: none;
}

html.terms-pending body {
  overflow: hidden;
}

.terms-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.terms-gate-box {
  max-width: 26rem;
  width: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.terms-gate-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.terms-gate-text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
}

.terms-gate-btn {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: #111827;
  color: #fff;
}

.terms-gate-btn:hover {
  background: #0b1220;
}

/* Confirmación de pedido */
.order-success-panel {
  padding-top: 0.25rem;
}

.order-success-title {
  margin-top: 0;
}

.order-success-lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.order-success-meta {
  margin-bottom: 0.75rem;
}

.order-success-id {
  margin: 0;
  font-size: 0.9rem;
  color: #0f172a;
}

.order-success-warn {
  margin: 0;
  font-size: 0.85rem;
  color: #b45309;
}

.order-success-dl {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
}

.order-success-dl dt {
  margin: 0;
  font-weight: 600;
  color: #64748b;
}

.order-success-dl dd {
  margin: 0;
  color: #0f172a;
}

.order-success-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: #b91c1c;
}

.order-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.theme-compact-cool .btn-secondary {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

body.theme-compact-cool .btn-secondary:hover {
  background: #f1f5f9;
}

/* Página pedido-gracias.html */
.thank-you-page {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.thank-you-shell {
  padding: 2rem 1rem 3rem;
  max-width: 32rem;
  margin: 0 auto;
}

.thank-you-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.thank-you-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6366f1;
  font-family: var(--font-display);
}

.thank-you-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.thank-you-id {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.thank-you-id strong {
  color: #4f46e5;
  font-size: 1.15rem;
}

.thank-you-date {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
}

.thank-you-dl {
  margin-bottom: 1.25rem;
}

.thank-you-totals {
  margin: 0 0 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0.7rem 0.85rem;
}

.thank-you-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #334155;
  padding: 0.2rem 0;
}

.thank-you-total-row strong {
  color: #0f172a;
  font-size: 0.95rem;
}

.thank-you-total-row.thank-you-saved strong {
  color: #16a34a;
}

.thank-you-wa {
  margin: 0 0 1rem;
}

.thank-you-wa-link {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
}

.thank-you-actions {
  margin: 0;
}

.thank-you-back {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.thank-you-back:hover {
  background: #f8fafc;
}

.thank-you-error {
  color: #b91c1c;
  line-height: 1.5;
}

.thank-you-error a {
  color: #4f46e5;
}
