/* ============ TOKENS ============ */
:root {
  --pink: #de7aaf;
  --pink-600: #c95f97;
  --pink-50: #fdeef4;
  --pink-100: #fbe0eb;
  --pink-200: #f6c4d8;
  --blue: #9cc7e5;
  --blue-600: #6fa8d1;
  --blue-50: #eef6fc;
  --blue-100: #dceffa;
  --ink: #2a1f2a;
  --ink-2: #4a3a45;
  --muted: #7a6a73;
  --line: #ece4ea;
  --bg: #ffffff;
  --bg-soft: #fdf8fb;
  --footer: #2a1d28;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(42,29,40,.04), 0 2px 6px rgba(42,29,40,.04);
  --shadow-md: 0 6px 24px rgba(222,122,175,.10), 0 2px 6px rgba(42,29,40,.05);
  --shadow-lg: 0 24px 60px rgba(42,29,40,.10), 0 4px 12px rgba(42,29,40,.05);
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }

/* ============ TYPOGRAPHY ============ */
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
}
.h-section {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  display: inline-block;
  position: relative;
}
.h-section::after {
  content: "";
  position: absolute;
  left: 0; right: 28%;
  bottom: -2px;
  height: 3px;
  background: var(--pink);
  border-radius: 3px;
}
.h-section--center {
  display: block;
  text-align: center;
}
.h-section--center::after {
  left: 50%;
  right: auto;
  width: 110px;
  transform: translateX(-55%);
}
.lede { color: var(--muted); margin: 0 0 36px; font-size: 16px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--pink);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(222,122,175,.35);
}
.eyebrow::before { content: "★"; font-size: 11px; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(42,29,40,.02);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.nav-logo img { height: 58px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--pink); }
.nav-link.is-active { color: var(--pink); font-weight: 500; }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.nav-burger { display: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(222,122,175,.35);
}
.btn-primary:hover { background: var(--pink-600); box-shadow: 0 10px 24px rgba(222,122,175,.45); }
.btn-ghost {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}
.btn-ghost:hover { background: var(--pink-50); }
.btn-block { width: 100%; justify-content: center; padding: 16px 26px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 64px 0 88px;
  background:
    radial-gradient(ellipse 800px 500px at 90% 20%, rgba(156,199,229,.18), transparent 60%),
    radial-gradient(ellipse 700px 600px at 0% 100%, rgba(222,122,175,.12), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  z-index: 0;
  opacity: .32;
  filter: saturate(.9) blur(2px);
  pointer-events: none;
  animation: heroBgDrift 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroBgDrift {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { animation: none; }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(253,238,244,.70) 0%, rgba(251,224,235,.60) 50%, rgba(238,246,252,.65) 100%),
    radial-gradient(ellipse 800px 500px at 90% 20%, rgba(156,199,229,.22), transparent 60%),
    radial-gradient(ellipse 700px 600px at 0% 100%, rgba(222,122,175,.30), transparent 60%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 320px; height: 320px;
  background: var(--pink-50);
  left: -120px; bottom: -120px;
}
.hero::after {
  width: 260px; height: 260px;
  background: var(--blue-50);
  right: -80px; top: 40px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-copy { max-width: 520px; }
.hero h1 { margin: 24px 0 22px; }
.hero h1 .underline {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--pink);
  border-radius: 3px;
}
.hero-sub {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--blue);
  background: #fff;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 500;
  transition: all .15s ease;
}
.chip:hover { background: var(--blue-50); transform: translateY(-1px); }
.chip.is-active { background: var(--pink); color: #fff; border-color: var(--pink); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-showcase {
  position: relative;
  background: var(--blue-100);
  border-radius: 28px;
  padding: 28px;
  aspect-ratio: 1.05/1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 30px 60px rgba(111,168,209,.18);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}
.showcase-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-card image-slot { width: 100%; height: 100%; }
.showcase-card .label {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.showcase-pill {
  align-self: flex-start;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.showcase-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }

/* ============ PRODUCTOS ============ */.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-100);
}
.product-media {
  aspect-ratio: 1.4/1;
  background: var(--pink-50);
  position: relative;
  overflow: hidden;
}
.product-card:nth-child(2) .product-media,
.product-card:nth-child(5) .product-media { background: var(--blue-50); }
.product-media image-slot { width: 100%; height: 100%; }
.product-body {
  padding: 22px 24px 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.product-text h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--ink);
}
.product-text p { margin: 0; color: var(--muted); font-size: 14px; }
.product-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .2s ease, background .2s ease;
}
.product-card:hover .product-arrow { background: var(--pink-600); transform: translateX(2px); }

/* IG badge on product card */
.ig-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(42,29,40,.12);
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.ig-badge:hover {
  background: linear-gradient(135deg, #de7aaf 0%, #9cc7e5 100%);
  color: #fff;
  transform: translateY(-2px);
}

/* Catalog badge (bottom-left of product media) */
.catalog-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(42,29,40,.78);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  pointer-events: none;
  transition: background .2s ease, transform .2s ease;
}
.product-card:hover .catalog-badge {
  background: var(--pink);
  transform: translateY(-2px);
}

/* Catalog modal */
.cm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,29,40,.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px;
  overflow-y: auto;
  animation: cmFade .25s ease;
}
@keyframes cmFade { from { opacity: 0; } to { opacity: 1; } }
.cm-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: #fff;
  border-radius: 24px;
  padding: 44px 44px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: cmPop .3s cubic-bezier(.2,.7,.2,1);
  margin: auto;
}
@keyframes cmPop {
  from { opacity: 0; transform: scale(.96) translateY(12px); }
  to { opacity: 1; transform: none; }
}
.cm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  border: 1px solid var(--line);
  transition: transform .15s ease, background .15s ease, color .15s ease;
  z-index: 4;
}
.cm-close:hover { background: var(--pink); color: #fff; transform: scale(1.05); border-color: var(--pink); }

.cm-head {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.cm-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cm-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 8px;
  line-height: 1.1;
}
.cm-head p { margin: 0; color: var(--muted); font-size: 15px; }
.cm-head p strong { color: var(--ink-2); font-weight: 500; }

.cm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cm-thumb {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--pink-50);
  border: 0;
  padding: 0;
  cursor: zoom-in;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
}
.cm-thumb:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 12px 28px rgba(42,29,40,.18);
  z-index: 2;
}
.cm-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.cm-thumb:hover img { transform: scale(1.08); }
.cm-thumb-num {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .02em;
}

.cm-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.cm-foot .btn { padding: 16px 32px; font-size: 15px; }
.cm-foot-note { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

/* Lightbox inside catalog modal */
.cm-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 40px;
  animation: cmFade .2s ease;
  cursor: zoom-out;
}
.cm-lightbox img {
  max-width: min(100%, 900px);
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  cursor: default;
}
.cm-lb-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background .15s ease, transform .15s ease;
}
.cm-lb-close:hover { background: rgba(255,255,255,.3); transform: scale(1.05); }
.cm-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background .15s ease, transform .15s ease;
}
.cm-lb-nav:hover { background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.08); }
.cm-lb-nav.prev { left: 24px; }
.cm-lb-nav.next { right: 24px; }
.cm-lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* Form pre-fill highlight */
.field input.is-prefilled,
.field select.is-prefilled,
.field textarea.is-prefilled {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 4px rgba(222,122,175,.18) !important;
  animation: prefillFlash 1.4s ease;
}
@keyframes prefillFlash {
  0% { background: var(--pink-50); }
  100% { background: #fff; }
}

@media (max-width: 720px) {
  .cm-content { padding: 28px 20px; border-radius: 18px; }
  .cm-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cm-lb-nav { width: 44px; height: 44px; }
  .cm-lb-nav.prev { left: 12px; }
  .cm-lb-nav.next { right: 12px; }
}

/* IG modal */
.ig-modal {
  position: fixed;
  inset: 0;
  background: rgba(42,29,40,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: igModalFade .25s ease;
}
@keyframes igModalFade { from { opacity: 0; } to { opacity: 1; } }
.ig-modal-inner {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: igModalPop .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes igModalPop {
  from { opacity: 0; transform: scale(.94) translateY(12px); }
  to { opacity: 1; transform: none; }
}
.ig-modal-inner::-webkit-scrollbar { width: 8px; }
.ig-modal-inner::-webkit-scrollbar-thumb { background: var(--pink-200); border-radius: 4px; }
.ig-modal-inner .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
}
.ig-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transition: transform .15s ease, background .15s ease;
}
.ig-modal-close:hover { background: var(--pink); color: #fff; transform: scale(1.05); }

/* ============ COMO FUNCIONA ============ */
.howto {
  background:
    radial-gradient(ellipse 700px 400px at 90% 50%, rgba(156,199,229,.15), transparent 60%),
    var(--pink-50);
  position: relative;
  overflow: hidden;
}
.howto::before, .howto::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.howto::before { width: 260px; height: 260px; background: rgba(255,255,255,.4); left: -60px; bottom: -60px; }
.howto::after { width: 200px; height: 200px; background: rgba(255,255,255,.35); right: 6%; top: 12%; }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin: 56px 0 32px;
  position: relative;
  z-index: 1;
}
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 6px 16px rgba(222,122,175,.35);
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
}
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.step-arrow {
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 24px;
  padding: 0 12px;
  font-family: var(--serif);
}
.howto-cta { text-align: center; position: relative; z-index: 1; }

/* ============ OCASIONES ============ */
.ocasiones-section {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.ocasiones-section::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156,199,229,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.ocasiones-section::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,122,175,.16) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  pointer-events: none;
}
.ocasiones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.ocasion-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}
.ocasion-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--blue-50) 100%);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 0;
}
.ocasion-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-100);
}
.ocasion-chip:hover::before { opacity: 1; }
.ocasion-chip > * { position: relative; z-index: 1; }

.ocasion-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--pink-50);
  display: grid;
  place-items: center;
  font-size: 26px;
  flex-shrink: 0;
  transition: background .2s ease, transform .25s ease;
}
.ocasion-chip:nth-child(even) .ocasion-icon { background: var(--blue-50); }
.ocasion-chip:hover .ocasion-icon {
  background: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.ocasion-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ocasion-text strong {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}
.ocasion-text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.ocasion-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: transparent;
  color: var(--pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.ocasion-chip:hover .ocasion-arrow {
  background: var(--pink);
  color: #fff;
  transform: translateX(2px);
}

@media (max-width: 960px) {
  .ocasiones-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ocasion-chip { padding: 16px 18px; gap: 12px; }
  .ocasion-icon { width: 44px; height: 44px; font-size: 22px; border-radius: 12px; }
}
@media (max-width: 560px) {
  .ocasiones-grid { grid-template-columns: 1fr; }
}

/* ============ GALERIA ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .25s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item image-slot { width: 100%; height: 100%; }
.gallery-item:nth-child(1) { background: var(--pink-100); }
.gallery-item:nth-child(2) { background: var(--blue-100); }
.gallery-item:nth-child(3) { background: var(--pink-50); }
.gallery-item:nth-child(4) { background: var(--blue-50); }
.gallery-item:nth-child(5) { background: var(--blue-50); }
.gallery-item:nth-child(6) { background: var(--pink-50); }
.gallery-item:nth-child(7) { background: var(--blue-100); }
.gallery-item:nth-child(8) { background: var(--pink-100); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42,29,40,.45) 100%);
  opacity: 0;
  transition: opacity .2s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cta {
  text-align: center;
  margin-top: 36px;
}
.link-pink {
  color: var(--pink);
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s ease;
}
.link-pink:hover { gap: 10px; }

/* ============ FORM ============ */
.form-section {
  background:
    radial-gradient(ellipse 700px 400px at 10% 50%, rgba(222,122,175,.10), transparent 60%),
    var(--blue-50);
  position: relative;
  overflow: hidden;
}
.form-section::before, .form-section::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.form-section::before { width: 320px; height: 320px; background: rgba(255,255,255,.4); left: -80px; top: -80px; }
.form-section::after { width: 240px; height: 240px; background: rgba(222,122,175,.10); right: -40px; bottom: -40px; }
.form-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-lg);
}
.form-head { text-align: center; position: relative; z-index: 1; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.field input,
.field textarea,
.field select {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-size: 15px;
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; font-family: var(--sans); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(222,122,175,.12);
}
.field.has-error input,
.field.has-error textarea { border-color: #e85c7b; box-shadow: 0 0 0 4px rgba(232,92,123,.12); }
.field-error {
  font-size: 12px;
  color: #e85c7b;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-foot { margin-top: 28px; }
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
  justify-content: center;
  padding: 16px 24px;
}
.btn-wa:hover {
  background: #1fb957;
  box-shadow: 0 10px 24px rgba(37,211,102,.45);
}
.form-actions .btn {
  justify-content: center;
  padding: 16px 24px;
}
.form-foot-note {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.form-foot-note strong { color: var(--ink-2); font-weight: 500; }

/* File upload dropzone */
.file-dropzone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  min-height: 98px;
  width: 100%;
  box-sizing: border-box;
  border: 1.5px dashed var(--blue);
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.file-dropzone:hover {
  background: var(--blue-100);
  border-color: var(--blue-600);
  transform: translateY(-1px);
}
.file-dropzone svg { flex-shrink: 0; }
.file-dropzone-text { display: flex; flex-direction: column; gap: 2px; }
.file-dropzone-text strong { color: var(--ink); font-size: 14px; font-weight: 500; }
.file-dropzone-text span { color: var(--muted); font-size: 12px; }

.file-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  min-height: 98px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 1.5px solid var(--pink-200);
  border-radius: 12px;
  background: var(--pink-50);
  position: relative;
}
.file-preview img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}
.file-preview-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.file-preview-info strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-preview-info span { color: var(--muted); font-size: 12px; }
.file-preview-remove {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 6px rgba(42,29,40,.1);
  transition: background .15s ease, color .15s ease, transform .15s ease;
  flex-shrink: 0;
}
.file-preview-remove:hover { background: #e85c7b; color: #fff; transform: scale(1.05); }

/* Success screen — image tip */
.success-image-tip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--blue-50);
  border-radius: 12px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.success-image-tip-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.success-image-tip strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.success-image-tip span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 560px) {
  .form-actions { grid-template-columns: 1fr; }
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  animation: fadeUp .35s ease;
}
.form-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--pink-50);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--pink);
}
.form-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
}
.form-success p { color: var(--muted); margin: 0 0 24px; }
.form-success .btn { margin-top: 32px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============ INSTAGRAM ============ */
.ig-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.ig-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ig-head-text { flex: 1; min-width: 260px; }
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(222,122,175,.30);
  transition: transform .15s ease, box-shadow .2s ease;
}
.ig-handle:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(222,122,175,.45); }

.ig-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px;
  margin: 0 -4px;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
  mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.ig-grid::-webkit-scrollbar { display: none; }
.ig-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

.ig-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  z-index: 4;
  box-shadow: 0 6px 20px rgba(42,29,40,.18), 0 2px 6px rgba(42,29,40,.08);
  border: 1px solid var(--line);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.ig-arrow:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  transform: translateY(-50%) scale(1.08);
}
.ig-arrow:active { transform: translateY(-50%) scale(0.96); }
.ig-arrow.prev { left: -10px; }
.ig-arrow.next { right: -10px; }
@media (prefers-reduced-motion: reduce) {
  .ig-grid { overflow-x: auto; }
}

.ig-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--blue-50) 100%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  flex: 0 0 320px;
  width: 320px;
  height: 500px;
}
.ig-card:not(.has-embed) { height: 320px; }
.ig-card.has-embed { padding: 0; background: #fff; }
.ig-card .instagram-media {
  min-width: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
}
.ig-card.has-embed iframe {
  border-radius: 0 !important;
}

/* Caption overlay (slides up on hover) */
.ig-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(180deg, rgba(42,29,40,0) 0%, rgba(42,29,40,.92) 45%, rgba(42,29,40,.96) 100%);
  color: #fff;
  transform: translateY(calc(100% - 8px));
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 5;
  pointer-events: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.ig-card:hover .ig-caption,
.ig-card:focus-within .ig-caption {
  transform: translateY(0);
  pointer-events: auto;
}
.ig-caption p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-caption-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--pink-100);
  padding-top: 4px;
  transition: gap .15s ease, color .15s ease;
}
.ig-caption-link:hover { color: #fff; gap: 10px; }
/* Hover hint pill on cards that have a caption (so users know to hover) */
.ig-card .ig-caption::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  opacity: .8;
}

.ig-scroll-wrap {
  position: relative;
}
.ig-hint {
  position: absolute;
  top: -34px;
  right: 0;
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: .8;
}
.ig-hint .pulse-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulseSoft 1.6s ease-in-out infinite;
}
.ig-hint svg { display: block; }
@keyframes pulseSoft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .5; }
}

@media (max-width: 960px) {
  .ig-card { flex: 0 0 280px; width: 280px; height: 470px; }
  .ig-hint { display: none; }
  .ig-arrow { display: none; }
}

.ig-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  color: var(--ink-2);
}
.ig-placeholder .ig-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #de7aaf 0%, #f48fb1 40%, #9cc7e5 100%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(222,122,175,.30);
}
.ig-placeholder .ig-text {
  font-size: 14px;
  color: var(--muted);
  max-width: 200px;
  line-height: 1.4;
}
.ig-placeholder .ig-text strong { color: var(--ink-2); font-weight: 500; display: block; margin-bottom: 4px; }

.ig-cta {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 960px) {
  .ig-grid { grid-template-columns: unset; }
}
@media (max-width: 560px) {
  .ig-grid { grid-template-columns: unset; gap: 14px; }
  .ig-card { flex: 0 0 260px; width: 260px; height: 480px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--footer);
  color: #d8c8d2;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { margin: 14px 0 0; font-size: 14px; max-width: 320px; opacity: .8; }
.footer-iso { display: flex; justify-content: center; }
.footer-iso img { height: 80px; width: auto; filter: brightness(1.1); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-row { display: flex; align-items: center; gap: 14px; }
.footer-row .label { color: rgba(255,255,255,.5); min-width: 110px; }
.footer-row .value { color: #fff; font-weight: 500; transition: color .15s ease; }
.footer-row a.value:hover { color: var(--pink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 24px;
  font-size: 12px;
  opacity: .6;
}
.footer-bottom-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--pink) 100%);
}

/* ============ WHATSAPP FAB ============ */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.4), 0 4px 10px rgba(0,0,0,.1);
  z-index: 40;
  transition: transform .15s ease;
}
.fab:hover { transform: scale(1.05); }
.fab-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid #25D366;
  opacity: .5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============ ANIMATIONS ============ */
@media (prefers-reduced-motion: no-preference) {

  /* Reveal-on-scroll */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
    will-change: transform, opacity;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
  .reveal[data-delay="1"] { transition-delay: .08s; }
  .reveal[data-delay="2"] { transition-delay: .16s; }
  .reveal[data-delay="3"] { transition-delay: .24s; }
  .reveal[data-delay="4"] { transition-delay: .32s; }
  .reveal[data-delay="5"] { transition-delay: .40s; }
  .reveal[data-delay="6"] { transition-delay: .48s; }

  /* Hero entrance — staggered, no reveal class needed */
  .hero-copy > * {
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn .9s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-copy > *:nth-child(1) { animation-delay: .05s; }
  .hero-copy > *:nth-child(2) { animation-delay: .15s; }
  .hero-copy > *:nth-child(3) { animation-delay: .25s; }
  .hero-copy > *:nth-child(4) { animation-delay: .35s; }
  .hero-copy > *:nth-child(5) { animation-delay: .45s; }
  @keyframes heroIn {
    to { opacity: 1; transform: none; }
  }

  /* Headline underline draws in */
  .hero h1 .underline::after {
    transform-origin: left center;
    transform: scaleX(0);
    animation: drawLine .8s cubic-bezier(.2,.7,.2,1) .9s forwards;
  }
  @keyframes drawLine { to { transform: scaleX(1); } }

  /* Hero showcase floats */
  .hero-showcase {
    animation: floatY 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
    animation:
      heroIn .9s cubic-bezier(.2,.7,.2,1) .3s forwards,
      floatY 6s ease-in-out 1.2s infinite;
  }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* Sparkle in eyebrow */
  .eyebrow::before {
    display: inline-block;
    animation: sparkleSpin 3s ease-in-out infinite;
  }
  @keyframes sparkleSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.25); }
  }

  /* Chip subtle ripple on active */
  .chip.is-active {
    animation: chipPop .35s cubic-bezier(.2,.7,.2,1);
  }
  @keyframes chipPop {
    0% { transform: scale(.92); }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  /* Primary button sheen */
  .btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .btn-primary::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: -1;
  }
  .btn-primary:hover::after {
    animation: sheen 1s ease-out;
  }
  @keyframes sheen {
    to { left: 120%; }
  }

  /* Product card image zoom on hover */
  .product-card .product-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.25) 100%);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 1;
    pointer-events: none;
  }
  .product-card:hover .product-media::before { opacity: 1; }
  .product-media image-slot {
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
  }
  .product-card:hover .product-media image-slot { transform: scale(1.05); }

/* Video inside a product card (papelería showcase) */
.product-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--pink-50);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-video { transform: scale(1.03); }

  /* Step numbers gentle bounce on hover */
  .step:hover .step-num {
    animation: bounce .5s ease;
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    70% { transform: translateY(-2px); }
  }

  /* Step arrow nudges */
  .step-arrow {
    animation: nudge 2.4s ease-in-out infinite;
  }
  @keyframes nudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
  }
  @media (max-width: 960px) {
    .step-arrow { animation: nudgeV 2.4s ease-in-out infinite; }
    @keyframes nudgeV {
      0%, 100% { transform: rotate(90deg) translateX(0); }
      50% { transform: rotate(90deg) translateX(6px); }
    }
  }

  /* Gallery items - very subtle drift */
  .gallery-item {
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  }
  .gallery-item:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 18px 40px rgba(42,29,40,.18);
    z-index: 2;
  }

  /* Decorative floating blobs in hero */
  .hero::before {
    animation: blobA 14s ease-in-out infinite;
  }
  .hero::after {
    animation: blobB 16s ease-in-out infinite;
  }
  @keyframes blobA {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(40px,-30px) scale(1.1); }
  }
  @keyframes blobB {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-30px,40px) scale(1.08); }
  }

  /* Floating mini particles */
  .particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: .55;
    animation: floatParticle linear infinite;
  }
  @keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: .55; }
    90% { opacity: .55; }
    100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
  }

  /* Marquee */
  .marquee {
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    padding: 14px 0;
    border-top: 4px solid var(--pink);
    border-bottom: 4px solid var(--blue);
  }
  .marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 32s linear infinite;
    white-space: nowrap;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: .01em;
  }
  .marquee-item .dot {
    width: 8px; height: 8px;
    background: var(--pink);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .marquee-item:nth-child(even) .dot { background: var(--blue); }
  @keyframes marquee {
    to { transform: translateX(-50%); }
  }

  /* WhatsApp FAB float */
  .fab {
    animation: floatY 4s ease-in-out infinite;
  }

  /* H-section underline draws on reveal */
  .h-section.reveal::after {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .7s cubic-bezier(.2,.7,.2,1) .3s;
  }
  .h-section.h-section--center.reveal::after {
    transform-origin: center;
  }
  .h-section.reveal.is-in::after {
    transform: scaleX(1);
  }
}

/* ============ MOBILE ============ */
@media (max-width: 960px) {
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-showcase { aspect-ratio: 1.2/1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { transform: rotate(90deg); padding: 4px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-card { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  /* Prevenir zoom de iOS al hacer foco en inputs */
  .field input,
  .field textarea,
  .field select { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-row { justify-content: center; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .nav-links { display: none; position: absolute; top: 84px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 28px 24px; gap: 14px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav-links.is-open { display: flex; }
  .nav-burger { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; }
  .nav-burger:hover { background: var(--pink-50); }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .h-section::after { right: 12%; }
}

/* ===== CATÁLOGO FAB (botón flotante) ===== */
.fab-catalog {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #c95f97);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 24px -6px rgba(222,122,175,0.55), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none;
}
.fab-catalog:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(222,122,175,0.7), 0 6px 16px rgba(0,0,0,0.2);
  color: #fff;
}
.fab-catalog:active { transform: scale(0.96); }
.fab-catalog svg { width: 26px; height: 26px; }
.fab-catalog-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: #1a1a2e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 100;
}
.fab-catalog-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #1a1a2e;
}
.fab-catalog:hover .fab-catalog-tooltip,
.fab-catalog:focus-visible .fab-catalog-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 640px) {
  .fab-catalog { width: 50px; height: 50px; bottom: 82px; right: 18px; }
  .fab-catalog svg { width: 22px; height: 22px; }
  .fab-catalog-tooltip { display: none; }
}

/* ===== CATÁLOGO VIEWER (fullscreen modal con PDF.js) ===== */
.catalog-viewer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  animation: catalog-in .3s ease both;
}
@keyframes catalog-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.catalog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,20,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.catalog-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(20,20,30,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.catalog-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.catalog-title svg { opacity: 0.7; }
.catalog-counter {
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-left: 8px;
}
.catalog-actions {
  display: flex;
  gap: 8px;
}
.catalog-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
  text-decoration: none;
}
.catalog-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.05);
  color: #fff;
}
.catalog-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.flipbook {
  max-width: 100%;
  max-height: 100%;
}
.flipbook .page-wrapper canvas,
.flipbook .stf__item canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.catalog-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.catalog-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: cat-spin .8s linear infinite;
}
@keyframes cat-spin { to { transform: rotate(360deg); } }

/* Fade-in del libro al cargar */
.flipbook {
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.flipbook.is-ready {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Dots de navegación */
.catalog-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}
.catalog-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .3s ease;
}
.catalog-dot:hover { background: rgba(255,255,255,0.45); }
.catalog-dot.is-active {
  background: var(--pink);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(222,122,175,0.5);
}

/* Curl hint (pseudo-element en la primera página) */
.flip-page-hint {
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, transparent 40%, rgba(0,0,0,0.06) 45%, rgba(255,255,255,0.9) 50%);
  border-radius: 0 0 6px 0;
  pointer-events: none;
  animation: curl-hint 2s ease 0.8s both;
  z-index: 10;
}
@keyframes curl-hint {
  0%   { transform: translate(0, 0); opacity: 0; }
  20%  { transform: translate(-12px, -12px); opacity: 1; }
  60%  { transform: translate(-18px, -18px); opacity: 1; }
  100% { transform: translate(0, 0); opacity: 0; }
}
.catalog-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .15s, transform .15s;
  backdrop-filter: blur(6px);
}
.catalog-nav:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.08);
}
.catalog-prev { left: 20px; }
.catalog-next { right: 20px; }
.catalog-loading {
  position: absolute;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .catalog-body { padding: 10px; }
  .catalog-nav { width: 40px; height: 40px; }
  .catalog-prev { left: 8px; }
  .catalog-next { right: 8px; }
  .catalog-header { padding: 12px 16px; }
  .catalog-title span:first-of-type { display: none; }
}
