/* =============================================================================
   ZEOD DESIGN · styles.css
   Paleta pastel (rosa/azul/dorado) · Poppins + Inter + Space Mono
   Desktop-first en intención, responsive y táctil. Sin build, sin frameworks.
   ========================================================================== */

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  --bg:        #F9F9F9;
  --bg-2:      #F2F1F4;
  --paper:     #FFFFFF;
  --rosa:      #FF9FBF;
  --rosa-soft: #FFE9F1;
  --azul:      #A8D8EA;
  --azul-soft: #E8F5FB;
  --dorado:    #D4A574;
  --dorado-soft:#F7EEE0;
  --ink:       #2C2C2C;
  --ink-soft:  #585858;
  --ink-mute:  #8C8C8C;
  --line:      rgba(44,44,44,0.10);
  --line-2:    rgba(44,44,44,0.16);
  --wa:        #25D366;
  --wa-deep:   #1eb858;

  --display: "Poppins", system-ui, "Segoe UI", sans-serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "Space Mono", "Consolas", ui-monospace, monospace;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(44,44,44,0.05), 0 1px 3px rgba(44,44,44,0.04);
  --shadow:    0 18px 50px -18px rgba(44,44,44,0.18), 0 8px 20px -12px rgba(44,44,44,0.10);
  --shadow-rosa: 0 30px 70px -24px rgba(255,159,191,0.55);
  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
}

@property --aurora-shift { syntax: "<percentage>"; inherits: false; initial-value: 0%; }

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
::selection { background: var(--rosa); color: #fff; }

:focus-visible {
  outline: 2px solid var(--rosa);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =============================================================
   3. UTILIDADES
   ============================================================= */
.no-scroll { overflow: hidden; }

.skip-link {
  position: fixed; top: -120px; left: 1rem; z-index: 10001;
  padding: .7rem 1.1rem; background: var(--ink); color: #fff;
  border-radius: 10px; font-weight: 500;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.section {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(72px, 11vw, 160px) var(--gutter);
}
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-kicker {
  font-family: var(--mono);
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.section-kicker span {
  color: var(--rosa); font-weight: 700;
  padding: .15rem .5rem; background: var(--rosa-soft); border-radius: 6px;
}
.section-title {
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  letter-spacing: -0.03em;
}
.section-title em { font-style: italic; color: var(--rosa); font-weight: 500; }
.section-lead {
  margin-top: 1.2rem; font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-soft); max-width: 60ch;
}
.section-watermark {
  position: absolute; top: clamp(20px, 4vw, 48px); right: var(--gutter);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(7rem, 20vw, 18rem); line-height: .8;
  color: var(--ink); opacity: .035; pointer-events: none; z-index: 0;
  letter-spacing: -0.05em;
}

/* =============================================================
   4. FONDO AURORA + GRANO + CURSOR + RAIL + SPLASH
   ============================================================= */
.aurora {
  position: fixed; inset: -20%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(40% 38% at 22% 28%, rgba(255,159,191,.40), transparent 60%),
    radial-gradient(42% 40% at 80% 35%, rgba(168,216,234,.42), transparent 62%),
    radial-gradient(38% 36% at 60% 82%, rgba(212,165,116,.30), transparent 60%);
  filter: blur(40px) saturate(115%);
  animation: auroraDrift 26s var(--ease-soft) infinite alternate;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1.02); }
  100% { transform: translate3d(4%, 3%, 0) scale(1.12); }
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

/* Cursor: usamos el cursor NATIVO del sistema (siempre visible, también dentro
   del modal). El cursor circular quedó desactivado. El "toque estético" lo dan
   las animaciones de hover (tarjetas que se elevan, botones, subrayados). */
.cursor { display: none !important; }
/* Manita en todo lo clicable (refuerza el comportamiento por defecto) */
a[href], button, .product-open, .filter, .modal-x, .footer-up,
.product, .shot, .contact-row { cursor: pointer; }

/* Rail lateral */
.rail {
  position: fixed; top: 50%; right: 18px; z-index: 60;
  transform: translateY(-50%); display: none;
  writing-mode: vertical-rl; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .22em;
  color: var(--ink-mute);
}
.rail-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 9px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@media (min-width: 1280px) { .rail { display: inline-flex; } }

/* Splash */
.splash {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: grid; place-items: center;
  animation: splashSafety .01s 3s forwards;          /* red de seguridad CSS */
  transition: opacity .8s var(--ease-out), clip-path 1s var(--ease-out);
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { display: grid; justify-items: center; gap: 22px; }
.splash-word { display: flex; gap: .04em; font-family: var(--display); font-weight: 700; font-size: clamp(3rem, 12vw, 7rem); letter-spacing: .02em; color: var(--ink); }
.splash-word span {
  opacity: 0; transform: translateY(40px);
  animation: splashLetter .6s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * .12s + .1s);
}
.splash-word span:nth-child(1){ color: var(--rosa); }
.splash-word span:nth-child(2){ color: var(--azul); }
.splash-word span:nth-child(3){ color: var(--dorado); }
@keyframes splashLetter { to { opacity: 1; transform: none; } }
.splash-line { width: min(220px, 50vw); height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; }
.splash-line i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--rosa), var(--azul)); animation: splashBar 1.6s .3s var(--ease-out) forwards; }
@keyframes splashBar { to { width: 100%; } }

/* =============================================================
   5. BOTONES
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.4rem; border-radius: 100px;
  font-family: var(--display); font-weight: 500; font-size: .98rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background-color .3s;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { box-shadow: 0 22px 44px -16px rgba(44,44,44,.5); }
.ico-arrow { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease-out); }
.btn-primary:hover .ico-arrow { transform: translateX(4px); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-deep); box-shadow: 0 22px 44px -16px rgba(37,211,102,.6); }
.ico-wa { fill: currentColor; }

.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

/* =============================================================
   6. NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 14px var(--gutter);
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(249,249,249,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line); padding-block: 9px;
}
.nav-brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.nav-logo { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; box-shadow: var(--shadow-sm); }
.nav-name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.nav-name em { font-style: normal; font-weight: 400; color: var(--rosa); margin-left: .15em; }
.nav-links { display: none; gap: 1.4rem; }
.nav-link { position: relative; font-family: var(--display); font-weight: 500; font-size: .92rem; padding: .3rem 0; color: var(--ink-soft); transition: color .3s; }
.nav-link span { font-family: var(--mono); font-size: .62rem; color: var(--rosa); vertical-align: super; margin-right: .15em; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: var(--rosa); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .6rem 1.1rem; font-size: .9rem; }
@media (min-width: 1024px) { .nav-links { display: inline-flex; } }

.nav-burger { display: inline-grid; gap: 5px; width: 44px; height: 44px; place-content: center; border-radius: 12px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .25s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-burger, .nav-cta.nav-cta { } }
@media (min-width: 1024px) { .nav-burger { display: none; } }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95; background: var(--paper);
  display: grid; place-content: center; gap: 1.6rem; text-align: center;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile nav { display: grid; gap: 1.1rem; }
.nav-mobile a { font-family: var(--display); font-weight: 600; font-size: 1.6rem; color: var(--ink); }
.nav-mobile a span { font-family: var(--mono); font-size: .8rem; color: var(--rosa); margin-right: .4rem; }
.nav-mobile .btn { justify-self: center; margin-top: .6rem; }

/* =============================================================
   7. HERO
   ============================================================= */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: grid; align-items: center; padding: 120px var(--gutter) 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil { position: absolute; inset: 0; background: rgba(255,255,255,.30); }
.hero-inner { position: relative; max-width: 1100px; margin-inline: auto; width: 100%; }
.hero-kicker {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: .5rem;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); background: rgba(255,255,255,.6); padding: .5rem .9rem; border-radius: 100px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); box-shadow: var(--shadow-sm);
}
.hero-kicker em { font-style: normal; color: var(--rosa); }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); }
.hero-title { margin: 1.4rem 0 1rem; font-size: clamp(3.6rem, 15vw, 11rem); line-height: .86; letter-spacing: -.04em; }
.hero-line { display: block; }
.hero-line--offset { margin-left: clamp(.5em, 8vw, 2.2em); font-style: italic; font-weight: 500; background: linear-gradient(100deg, var(--rosa), var(--dorado)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; padding-bottom: 0.12em; }
.hero-tagline { font-family: var(--display); font-weight: 500; font-size: clamp(1.2rem, 2.4vw, 1.8rem); color: var(--ink); }
.hero-lead { margin-top: .8rem; max-width: 46ch; font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--line-2); border-radius: 100px; display: grid; justify-items: center; padding-top: 7px; }
.hero-scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--rosa); animation: scrollDot 1.6s var(--ease-soft) infinite; }
@keyframes scrollDot { 0%{transform:translateY(0);opacity:1;} 70%{transform:translateY(12px);opacity:0;} 100%{opacity:0;} }

/* =============================================================
   8. MARQUEE
   ============================================================= */
.marquee { position: relative; overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; background: var(--paper); }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--paper), transparent); }
.marquee-track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; will-change: transform; }
.marquee-track span { font-family: var(--display); font-weight: 500; font-size: clamp(1rem, 1.8vw, 1.45rem); color: var(--ink); }
.marquee-track b { color: var(--rosa); font-size: 1.2rem; }

/* =============================================================
   9. CATÁLOGO
   ============================================================= */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(28px, 4vw, 44px); }
.filter {
  font-family: var(--display); font-weight: 500; font-size: .88rem;
  padding: .5rem 1rem; border-radius: 100px; color: var(--ink-soft);
  background: var(--paper); box-shadow: inset 0 0 0 1px var(--line);
  transition: color .3s, background-color .3s, box-shadow .3s, transform .3s var(--ease-out);
}
.filter:hover { transform: translateY(-2px); color: var(--ink); }
.filter.is-active { background: var(--ink); color: #fff; box-shadow: none; }

.grid { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 30px); position: relative; z-index: 1; }
@media (min-width: 600px)  { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.product { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); display: flex; flex-direction: column; }
.product.is-hidden { display: none; }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #fff; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-soft); filter: contrast(1.03) saturate(1.06); }
/* Fotos anchas/cuadradas o de baja resolución: se muestran completas sobre
   blanco (sin recortes feos y con menos agrandado = se ven más nítidas). */
.product.is-contain .product-media img { object-fit: contain; padding: 7%; }
.product:hover .product-media img { transform: scale(1.04); }
.product-badge { position: absolute; top: 12px; right: 12px; font-family: var(--mono); font-size: .68rem; font-weight: 700; color: #1f7a44; background: rgba(255,255,255,.92); padding: .25rem .6rem; border-radius: 100px; box-shadow: var(--shadow-sm); }
.product-open {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  padding: .7rem 1rem; border-radius: 100px; font-family: var(--display); font-weight: 600; font-size: .9rem;
  background: rgba(255,255,255,.95); color: var(--ink); box-shadow: var(--shadow);
  transform: translateY(140%); opacity: 0; transition: transform .45s var(--ease-out), opacity .45s var(--ease-out);
}
.product:hover .product-open, .product:focus-within .product-open { transform: none; opacity: 1; }
.product-info { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.product-tag { align-self: flex-start; font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); padding: .22rem .6rem; border-radius: 100px; background: var(--bg-2); }
.product-name { font-size: 1.12rem; font-weight: 600; }
.product-desc { font-size: .9rem; color: var(--ink-soft); flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .4rem; }
.product-price { font-family: var(--mono); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.product-link { font-family: var(--display); font-size: .85rem; font-weight: 500; color: var(--rosa); }

/* Colores de cartelito por categoría */
.product[data-cat="dia-padre"]   .product-tag { background: var(--dorado-soft); color: #7a5a30; }
.product[data-cat="decoraciones"].product-tag,
.product[data-cat="decoraciones"] .product-tag { background: #F3E6D2; color: #7a5a30; }
.product[data-cat="parejas"]     .product-tag { background: var(--rosa-soft); color: #9b3f63; }
.product[data-cat="invitaciones"] .product-tag { background: #FCE7F0; color: #9b3f63; }
.product[data-cat="cumpleanos"]  .product-tag { background: #FFE3EC; color: #b14a72; }
.product[data-cat="papeleria"]   .product-tag { background: var(--azul-soft); color: #2e5c6e; }

.catalogo-note { margin-top: clamp(34px, 5vw, 56px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; padding: clamp(24px, 4vw, 40px); background: linear-gradient(120deg, var(--rosa-soft), var(--azul-soft)); border-radius: var(--r-lg); }
.catalogo-note p { font-size: 1.05rem; max-width: 52ch; }
.catalogo-note strong { font-family: var(--display); }

/* =============================================================
   10. PORTFOLIO LANES
   ============================================================= */
.portfolio { max-width: none; padding-inline: 0; }
.portfolio .section-head { padding-inline: var(--gutter); margin-inline: auto; max-width: var(--maxw); }
.portfolio .section-watermark { right: var(--gutter); }
.lanes { display: grid; gap: clamp(14px, 2vw, 22px); }
.lane { overflow: hidden; }
.lane-track { display: inline-flex; gap: clamp(14px, 2vw, 22px); will-change: transform; padding-inline: var(--gutter); }
.shot { position: relative; height: clamp(200px, 26vw, 340px); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); flex: 0 0 auto; }
.shot img { height: 100%; width: auto; object-fit: cover; transition: transform .7s var(--ease-soft), filter .5s; }
.shot:hover img { transform: scale(1.06); filter: saturate(1.12); }
.shot figcaption {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--ink);
  background: rgba(255,255,255,.92); padding: .35rem .8rem; border-radius: 100px;
  opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); box-shadow: var(--shadow-sm);
}
.shot:hover figcaption { opacity: 1; transform: none; }

/* =============================================================
   11. PROCESO
   ============================================================= */
.steps { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 28px); position: relative; z-index: 1; }
@media (min-width: 600px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: clamp(24px, 3vw, 34px); background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); overflow: hidden; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-n { font-family: var(--mono); font-size: .8rem; font-weight: 700; color: var(--rosa); }
.step-ico { display: grid; place-content: center; width: 56px; height: 56px; margin: 14px 0 18px; border-radius: 16px; background: linear-gradient(135deg, var(--rosa-soft), var(--azul-soft)); }
.step-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { font-size: .94rem; color: var(--ink-soft); }
.step::after { content: ""; position: absolute; inset: 0 0 auto auto; width: 120px; height: 120px; background: radial-gradient(circle at 100% 0, rgba(255,159,191,.16), transparent 70%); pointer-events: none; }

/* =============================================================
   12. ENVÍOS
   ============================================================= */
.ship-grid { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 28px); position: relative; z-index: 1; }
@media (min-width: 860px) { .ship-grid { grid-template-columns: 1fr 1fr; } }
.ship-card { padding: clamp(26px, 3.4vw, 40px); background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.ship-place { font-size: 1.4rem; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.ship-list { display: grid; gap: .85rem; }
.ship-list > div { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.ship-list dt { font-family: var(--mono); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-mute); flex: 0 0 auto; }
.ship-list dd { text-align: right; font-size: .96rem; color: var(--ink); font-weight: 500; }
.callout { margin-top: clamp(22px, 3vw, 34px); padding: clamp(26px, 3.4vw, 40px) clamp(28px, 3.6vw, 46px); background: linear-gradient(120deg, var(--rosa-soft), #fff 72%); border: 1px solid var(--rosa); border-radius: var(--r-lg); }
.callout-title { font-family: var(--mono); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rosa); font-weight: 700; margin-bottom: 1.3rem; }
.callout ul { display: grid; gap: .85rem; padding-left: 0; list-style: none; }
.callout li { font-size: 1rem; line-height: 1.55; color: var(--ink-soft); padding-left: 1.1rem; border-left: 2px solid var(--rosa); }

/* =============================================================
   13. CONTACTO
   ============================================================= */
.contact-card { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); padding: clamp(32px, 5vw, 70px); border-radius: clamp(28px, 4vw, 44px); background: linear-gradient(135deg, var(--rosa-soft) 0%, #fff 55%, var(--azul-soft) 100%); box-shadow: var(--shadow); position: relative; z-index: 1; overflow: hidden; }
@media (min-width: 940px) { .contact-card { grid-template-columns: 1.4fr .9fr; align-items: center; } }
.contact-title { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 1rem 0; }
.contact-title em { font-style: italic; color: var(--rosa); font-weight: 500; }
.contact-lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.contact-panel { display: grid; gap: .7rem; align-content: start; }
.contact-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; background: rgba(255,255,255,.7); border-radius: var(--r); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease-out), background-color .3s; }
a.contact-row:hover { transform: translateY(-2px); background: #fff; }
.contact-k { font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); }
.contact-v { font-family: var(--display); font-weight: 600; font-size: 1rem; }

/* =============================================================
   14. FOOTER
   ============================================================= */
.footer { position: relative; padding: clamp(60px, 8vw, 110px) var(--gutter) 40px; background: var(--paper); border-top: 1px solid var(--line); overflow: hidden; }
.footer-giant { overflow: hidden; margin-bottom: clamp(30px, 5vw, 56px); }
.footer-giant span { display: inline-block; white-space: nowrap; font-family: var(--display); font-weight: 700; font-size: clamp(3rem, 13vw, 11rem); line-height: 1; letter-spacing: -.03em; color: transparent; -webkit-text-stroke: 1.5px var(--rosa); will-change: transform; }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 4vw, 44px); max-width: var(--maxw); margin-inline: auto; }
@media (min-width: 760px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 { font-family: var(--mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1rem; font-weight: 700; }
.footer-col p { margin-bottom: .5rem; font-size: 1rem; }
.footer-col a { transition: color .3s; }
.footer-col a:hover { color: var(--rosa); }
.footer-mute { color: var(--ink-mute); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; max-width: var(--maxw); margin: clamp(40px, 6vw, 70px) auto 0; padding-top: 24px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-mute); }
.footer-up { font-family: var(--display); font-weight: 500; color: var(--ink); transition: color .3s; }
.footer-up:hover { color: var(--rosa); }

/* =============================================================
   15. MODAL
   ============================================================= */
.modal { position: fixed; inset: 0; z-index: 10002; display: none; place-items: center; padding: clamp(16px, 4vw, 40px); }
.modal.is-open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(44,44,44,.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); animation: fade .3s var(--ease-out); }
@keyframes fade { from { opacity: 0; } }
.modal-card { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; max-width: 860px; width: 100%; max-height: 90vh; overflow: auto; background: var(--paper); border-radius: var(--r-lg); box-shadow: 0 40px 100px -30px rgba(44,44,44,.6); animation: pop .4s var(--ease-out); }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } }
@media (min-width: 720px) { .modal-card { grid-template-columns: 1fr 1fr; } }
.modal-x { position: absolute; top: 12px; right: 14px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); font-size: 1.6rem; line-height: 1; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out); }
.modal-x:hover { transform: rotate(90deg); }
.modal-media { background: #fff; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; max-height: 420px; filter: contrast(1.03) saturate(1.06); }
/* Mismo encuadre que la tarjeta del catálogo: las fotos anchas/baja resolución
   se muestran completas sobre blanco (sin zoom), no recortadas/ampliadas. */
.modal.is-contain .modal-media img { object-fit: contain; padding: 6%; }
@media (min-width: 720px) { .modal-media img { max-height: none; } }
.modal-body { padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; gap: .8rem; }
.modal-name { font-size: 1.5rem; }
.modal-desc { color: var(--ink-soft); }
.modal-specs { list-style: none; display: grid; gap: .5rem; margin-top: .4rem; }
.modal-specs li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--ink); }
.modal-specs li::before { content: "✓"; position: absolute; left: 0; color: var(--wa); font-weight: 700; }
.modal-foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.modal-price { font-family: var(--mono); font-weight: 700; font-size: 1.5rem; }

/* =============================================================
   16. REVEAL / ANIMACIONES
   ============================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
.reveal.is-visible { opacity: 1; transform: none; }
/* Defensa: un .reveal que también es split nunca debe quedar invisible */
.reveal[data-split] { opacity: 1; transform: none; }
.split-char, .split-word { display: inline-block; will-change: transform; }

/* =============================================================
   17. RESPONSIVE
   ============================================================= */
@media (min-width: 720px) {
  .hero-lead { font-size: 1.15rem; }
}
@media (max-width: 1023px) {
  .rail { display: none; }
}

/* =============================================================
   18. REDUCED-MOTION  (solo lo intrusivo; las micro-interacciones siguen vivas)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll span { animation: none; }
  /* Aurora, marquee, lanes, splash y hover SIGUEN activos a propósito. */
}
