/* ════════════════════════════════════════════════════════════
   DON MANZANA CELLSTORE — Editorial Dark Warm
   Tinta profunda · crema cálido · rojo manzana · verde hoja
   ════════════════════════════════════════════════════════════ */

:root {
  --ink: #0c0b0e;
  --ink-2: #141318;
  --ink-3: #1c1a21;
  --cream: #f4efe4;
  --cream-2: #eae3d2;
  --cream-dim: rgba(244, 239, 228, 0.62);
  --red: #d6432b;
  --red-hot: #e85a3f;
  --leaf: #3e7c4f;
  --line: rgba(244, 239, 228, 0.13);
  --line-cream: rgba(12, 11, 14, 0.14);
  --wa: #23b558;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--red); color: var(--cream); }

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

a { color: inherit; }

/* ── Reveal system (defensivo: si JS falla, todo visible) ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.42s; }
.reveal.d5 { transition-delay: 0.54s; }
/* red de seguridad — sin JS, todo legible */
.no-js .reveal, .reveal[data-split] { opacity: 1; transform: none; }

/* ════════════════ SPLASH ════════════════ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--ink);
  animation: splash-auto-hide 4.5s forwards; /* red de seguridad CSS */
}
.splash.is-done { opacity: 0; pointer-events: none; transition: opacity 0.7s ease; }
@keyframes splash-auto-hide {
  0%, 92% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
.splash__badge { text-align: center; color: var(--cream); }
.splash__badge .badge-svg {
  width: clamp(110px, 18vw, 160px);
  margin: 0 auto 1rem;
  animation: badge-pop 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.85) rotate(-6deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
.splash__tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  animation: badge-pop 1.1s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ════════════════ NAV ════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem var(--pad);
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12, 11, 14, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
}
.nav__badge { width: 42px; height: 42px; color: var(--cream); flex: none; }
.nav__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.nav__name em {
  font-style: italic;
  font-size: 0.78rem;
  color: var(--red-hot);
  font-weight: 500;
}
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.25s ease;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1.5px;
  background: var(--red-hot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12, 11, 14, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--cream);
}
.mobile-menu .btn { font-family: var(--font-body); font-size: 1rem; margin-top: 0.8rem; }

/* ════════════════ BOTONES ════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn--solid {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 10px 30px -12px rgba(214, 67, 43, 0.65);
}
.btn--solid:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(232, 90, 63, 0.7);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--cream);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn--cream {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.55);
}
.btn--cream:hover { transform: translateY(-2px); background: #fff; }

/* ════════════════ HERO ════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 14vh, 9rem) var(--pad) 4rem;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 78% 30%, rgba(214, 67, 43, 0.16), transparent 65%),
    radial-gradient(700px 500px at 12% 85%, rgba(62, 124, 79, 0.10), transparent 60%),
    radial-gradient(1200px 800px at 50% -10%, rgba(244, 239, 228, 0.05), transparent 55%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--cream); opacity: 0.85; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: italic;
  color: var(--red-hot);
}
.hero__sub {
  color: var(--cream-dim);
  max-width: 34rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero__proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  color: var(--cream-dim);
  font-size: 0.9rem;
}
.hero__proof li::before {
  content: "●";
  color: var(--leaf);
  font-size: 0.55rem;
  margin-right: 0.5rem;
  vertical-align: 2px;
}
.hero__proof strong { color: var(--cream); font-weight: 600; }

/* teléfono CSS */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.hero__ring {
  position: absolute;
  width: min(430px, 90%);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: ring-spin 40s linear infinite;
}
.hero__ring::before {
  content: "";
  position: absolute;
  top: -5px; left: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red-hot);
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.phone {
  position: relative;
  z-index: 2;
  animation: phone-float 7s ease-in-out infinite;
  transition: transform 0.3s ease-out;
}
@keyframes phone-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}
.phone__frame {
  width: clamp(200px, 24vw, 250px);
  aspect-ratio: 250 / 508;
  border-radius: 44px;
  background: linear-gradient(160deg, #3a3840, #17161b 55%, #232128);
  padding: 9px;
  box-shadow:
    inset 0 0 0 2px rgba(244, 239, 228, 0.16),
    0 40px 80px -30px rgba(0, 0, 0, 0.85),
    0 0 90px -25px rgba(214, 67, 43, 0.35);
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(214, 67, 43, 0.5), transparent 55%),
    radial-gradient(120% 100% at 10% 100%, rgba(62, 124, 79, 0.4), transparent 60%),
    linear-gradient(170deg, #191722, #0d0c11);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}
.phone__island {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone__hour {
  position: absolute;
  top: 16px; left: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.9;
}
.phone__badge { width: 44%; color: var(--cream); }
.phone__brandline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.phone__brandline span { font-style: italic; color: var(--red-hot); }
.phone__shadow {
  position: absolute;
  bottom: -34px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  filter: blur(18px);
  animation: shadow-breathe 7s ease-in-out infinite;
}
@keyframes shadow-breathe {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.55; }
  50% { transform: translateX(-50%) scale(0.82); opacity: 0.35; }
}

.hero__scrollhint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
}
.hero__scrollhint span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--red-hot);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ════════════════ MARQUEE ════════════════ */
.marquee {
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  padding: 0.95rem 0;
  border-block: 1px solid var(--line-cream);
  transform: rotate(-0.6deg) scale(1.01);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee-slide 26s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee__track i { color: var(--red); font-style: normal; }
@keyframes marquee-slide { to { transform: translateX(-50%); } }

/* ════════════════ SECTIONS BASE ════════════════ */
.section { padding: clamp(4.5rem, 10vw, 7.5rem) var(--pad); }
.section__head {
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.section__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section__head h2 em { font-style: italic; color: var(--red-hot); }
.section__lede {
  margin-top: 1.1rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
}
.section--cream {
  background: var(--cream);
  color: var(--ink);
}
.section--cream .section__head h2 em { color: var(--red); }
.section--cream .section__lede { color: rgba(12, 11, 14, 0.62); }
.section--cream .eyebrow { color: var(--red); }

/* ════════════════ STATS ════════════════ */
.stats {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.stat__num::after { content: ""; }
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
  letter-spacing: 0.02em;
}

/* ════════════════ CATÁLOGO ════════════════ */
.catalog__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  position: relative;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  border-color: rgba(232, 90, 63, 0.5);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.card__meta {
  font-size: 0.85rem;
  color: var(--cream-dim);
  letter-spacing: 0.03em;
}
.card__desc { color: var(--cream-dim); font-size: 0.95rem; flex: 1; }
.chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
}
.chip--new { background: rgba(62, 124, 79, 0.18); color: #7fc492; border: 1px solid rgba(127, 196, 146, 0.35); }
.chip--semi { background: rgba(214, 67, 43, 0.14); color: var(--red-hot); border: 1px solid rgba(232, 90, 63, 0.4); }
.chip--other { background: rgba(244, 239, 228, 0.08); color: var(--cream-dim); border: 1px solid var(--line); }
.card__cta {
  margin-top: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card__cta span { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); color: var(--red-hot); }
.card__cta:hover span { transform: translateX(5px); }
.catalog__note {
  text-align: center;
  margin-top: 2.6rem;
  color: var(--cream-dim);
  font-size: 0.98rem;
}
.catalog__note a { color: var(--red-hot); font-weight: 600; }

/* ════════════════ PROCESO ════════════════ */
.process__steps {
  list-style: none;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 1rem; }
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.4rem, 7vw, 5rem);
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(12, 11, 14, 0.35);
  line-height: 1;
  display: block;
  margin-bottom: 0.9rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.step p { color: rgba(12, 11, 14, 0.66); font-size: 0.98rem; }

/* ════════════════ CONFIANZA ════════════════ */
.trust__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.trust__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  background: linear-gradient(180deg, rgba(244, 239, 228, 0.025), transparent);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.trust__item:hover { border-color: rgba(244, 239, 228, 0.32); transform: translateY(-4px); }
.trust__icon {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(62, 124, 79, 0.2);
  color: #7fc492;
  font-weight: 700;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(127, 196, 146, 0.35);
}
.trust__item h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.trust__item p { color: var(--cream-dim); font-size: 0.95rem; }

/* ════════════════ VENDE TU EQUIPO ════════════════ */
.section--accent {
  background:
    radial-gradient(900px 480px at 85% 20%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(150deg, var(--red) 0%, #a92f1c 85%);
  color: var(--cream);
}
.sell__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.sell__copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.sell__copy h2 em { font-style: italic; }
.sell__copy > p { opacity: 0.92; max-width: 32rem; margin-bottom: 1.4rem; }
.sell__list {
  list-style: none;
  margin-bottom: 1.9rem;
  display: grid;
  gap: 0.55rem;
}
.sell__list li::before {
  content: "✓";
  font-weight: 700;
  margin-right: 0.6rem;
}
.sell__badge { display: grid; place-items: center; }
.sell__badge-svg {
  width: clamp(180px, 22vw, 280px);
  color: var(--cream);
  --badge-apple: var(--cream);
  --badge-leaf: rgba(244, 239, 228, 0.7);
  opacity: 0.9;
  animation: badge-slow-spin 60s linear infinite;
}
@keyframes badge-slow-spin { to { transform: rotate(360deg); } }

/* ════════════════ TESTIMONIOS ════════════════ */
.quotes__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 400;
}
.quote p::before { content: "“"; color: var(--red-hot); }
.quote p::after { content: "”"; color: var(--red-hot); }
.quote footer { font-size: 0.85rem; color: var(--cream-dim); letter-spacing: 0.02em; }
.quotes__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: rgba(244, 239, 228, 0.4);
  font-style: italic;
}

/* ════════════════ FAQ ════════════════ */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line-cream);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  transition: color 0.25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  flex: none;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--red); }
.faq__item p {
  padding: 0 0.2rem 1.4rem;
  color: rgba(12, 11, 14, 0.68);
  max-width: 62ch;
}

/* ════════════════ ENTREGAS ════════════════ */
.delivery { padding: clamp(4rem, 9vw, 6.5rem) var(--pad); }
.delivery__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: stretch;
}
.delivery__divider { width: 1px; background: var(--line); }
.delivery__icon { font-size: 1.9rem; display: block; margin-bottom: 0.9rem; }
.delivery__block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.delivery__block p { color: var(--cream-dim); max-width: 40ch; }

/* ════════════════ CTA FINAL ════════════════ */
.final {
  position: relative;
  padding: clamp(5rem, 12vw, 8.5rem) var(--pad);
  text-align: center;
  background:
    radial-gradient(800px 480px at 50% 110%, rgba(214, 67, 43, 0.22), transparent 65%),
    var(--ink);
  border-top: 1px solid var(--line);
}
.final__inner { max-width: 720px; margin: 0 auto; }
.final__badge {
  width: 92px;
  margin: 0 auto 1.6rem;
  color: var(--cream);
}
.final h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.final h2 em { font-style: italic; color: var(--red-hot); }
.final p { color: var(--cream-dim); margin-bottom: 2.2rem; }
.final__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ════════════════ FOOTER ════════════════ */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.4rem var(--pad) 2rem;
  background: #08080a;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto 2.4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2.5rem;
  align-items: start;
}
.footer__badge { width: 62px; color: var(--cream); margin-bottom: 0.8rem; }
.footer__brand p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.footer__brand span { font-size: 0.85rem; color: var(--cream-dim); }
.footer__links { display: grid; gap: 0.55rem; }
.footer__links a, .footer__social a {
  text-decoration: none;
  color: var(--cream-dim);
  font-size: 0.92rem;
  transition: color 0.25s ease;
}
.footer__links a:hover, .footer__social a:hover { color: var(--red-hot); }
.footer__social { display: grid; gap: 0.55rem; text-align: right; }
.footer__legal {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: rgba(244, 239, 228, 0.38);
}

/* ════════════════ WHATSAPP FLOAT ════════════════ */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 80;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(35, 181, 88, 0.65);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); }
.wa-float svg { width: 30px; height: 30px; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1020px) {
  .catalog__grid, .trust__grid, .quotes__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1.4rem; }
}

@media (max-width: 840px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-top: 6.5rem; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 0; margin-top: 1.5rem; }
  .hero__ring { display: none; }
  .phone__frame { width: 190px; }
  .process__steps { grid-template-columns: 1fr; gap: 2.4rem; }
  .sell__inner { grid-template-columns: 1fr; }
  .sell__badge { order: -1; }
  .sell__badge-svg { width: 130px; }
  .delivery__inner { grid-template-columns: 1fr; }
  .delivery__divider { width: 100%; height: 1px; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__social { text-align: left; }
}

@media (max-width: 560px) {
  .catalog__grid, .trust__grid, .quotes__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .final__actions .btn { width: 100%; }
}

/* Modo plano (?flat=1): capturas y pruebas sin animaciones */
.is-flat *, .is-flat *::before, .is-flat *::after {
  animation: none !important;
  transition: none !important;
}
.is-flat .reveal { opacity: 1 !important; transform: none !important; }
.is-flat .splash { display: none !important; }
.is-flat .hero { min-height: 720px; }
html.is-flat { scroll-behavior: auto; }

/* Solo se desactiva la animación decorativa más intensa,
   nunca los reveals de contenido (regla del skill: Windows
   trae reduced-motion activado por defecto en muchos equipos). */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation-duration: 60s; }
}
