:root {
  /* Sav publicidad — índigo / lavanda / cian */
  --ink: #1e1a2e;
  --ink-soft: #3a3450;
  --muted: #6b6580;
  --paper: #f4f1f8;
  --mist: #eef6f8;
  --cream: #f7f5fb;
  --white: #ffffff;
  --line: rgba(61, 49, 133, 0.1);
  --primary: #3d3185;
  --primary-dark: #2f2668;
  --lavender: #a16ca7;
  --lavender-soft: #c9a3cc;
  --cyan: #7dbfce;
  --cyan-deep: #4fa0b4;
  --whatsapp: #25d366;
  --shadow: 0 16px 40px rgba(61, 49, 133, 0.1);
  --shadow-sm: 0 6px 18px rgba(61, 49, 133, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1120px;
  --header-h: 80px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.12rem; letter-spacing: -0.01em; }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 38rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn img {
  width: 18px;
  height: 18px;
  max-width: 18px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  background: transparent !important;
  border: 0;
  box-shadow: none !important;
  padding: 0;
  border-radius: 0;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(61, 49, 133, 0.28);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-wa {
  background: #128c7e;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.35);
  font-weight: 700;
}
.btn-wa:hover {
  background: #0f766a;
  filter: none;
}
.btn-wa img {
  /* keep icon visible on dark green */
  filter: brightness(0) invert(1);
}
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(61, 49, 133, 0.28);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-sm { padding: 9px 14px; font-size: 0.8rem; }

.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary) 55%, #5a3d8f);
  color: #e8e4f4;
  font-size: 0.8rem;
  line-height: 1.2;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}
.topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e8e4f4;
  white-space: nowrap;
}
.topbar-links a img {
  width: 14px;
  height: 14px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.topbar-links a:hover { color: #fff; }
.topbar-note { opacity: 0.85; white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 251, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  min-width: 0;
}
.brand-logo,
.brand img {
  width: auto;
  height: 58px;
  max-width: 124px;
  padding: 5px 9px;
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.site-footer .brand-logo,
.site-footer .brand img {
  height: 52px;
  max-width: 112px;
  background: #fff;
}
.brand > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
  color: var(--ink);
}
.brand small {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
  font-size: 0.7rem;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 550;
  font-size: 0.92rem;
  flex: 1;
  justify-content: center;
}
.nav a {
  position: relative;
  color: var(--ink-soft);
}
.nav a:hover { color: var(--primary); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transform: scaleX(0);
  transition: transform .2s;
}
.nav a:hover::after { transform: scaleX(1); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  transition: background .2s, border-color .2s;
}
.icon-btn img { width: 20px; height: 20px; display: block; }
.icon-btn:hover { border-color: var(--lavender-soft); background: #faf8ff; }
.icon-btn.wa-mobile {
  display: none;
  background: var(--whatsapp);
  border-color: transparent;
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.centro { text-align: center; }
.centro .lead { margin-inline: auto; }
.centro .section-head .lead a,
.section-head a {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 1px solid rgba(61, 49, 133, 0.25);
}

.hero {
  position: relative;
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(125, 191, 206, 0.22), transparent 60%),
    linear-gradient(170deg, #ebe6f6, var(--cream) 58%, #fff 100%);
  padding: clamp(2.2rem, 5vw, 4rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}
.hero-split::after { display: none; }
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero .eyebrow { color: var(--lavender); }
.hero h1 { max-width: 16ch; margin-bottom: 0.45em; }
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  background: linear-gradient(180deg, transparent 62%, rgba(125, 191, 206, 0.55) 62%);
}
.hero .lead-hero {
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.08rem;
  margin: 0 0 8px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.65rem;
}
.hero-bullets li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink-soft);
}
.tick {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cyan-deep);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-nota {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}
.hero-nota a {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 1px solid rgba(61, 49, 133, 0.25);
}

/* Nevera hero: solo ARRIBA (tope→freezer→arranque puerta) + imanes GRANDES 2×2 */
.nevera-hero {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.fridge-wrap-hero {
  position: relative;
  width: 100%;
  height: min(520px, 68vh);
  max-width: 420px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #2a2440 0%, #1a1528 100%);
  box-shadow: 0 24px 60px rgba(61, 49, 133, 0.28);
  border: 1px solid rgba(61, 49, 133, 0.16);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.fridge-wrap-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(to top, #1a1528 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
/* Más estrecha = se ve más refrigeradora hacia abajo */
.fridge-wrap-hero .fridge-stage {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(320px, 78%);
  max-width: none;
  margin: 0;
  padding: 10px 0 0;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.fridge-wrap-hero .fridge-bg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
}
/* Zona de imanes sobre la puerta visible */
.fridge-wrap-hero .fridge-surface {
  position: absolute;
  left: 18%;
  right: 16%;
  top: 28%;
  bottom: 10%;
  z-index: 3;
}
.fridge-wrap-hero .magnet {
  max-width: 28% !important;
  width: 24% !important;
}
.fridge-wrap-hero .globo {
  left: auto;
  right: 12px;
  top: 12px;
  bottom: auto;
  z-index: 6;
  pointer-events: none;
  font-size: 0.72rem;
  padding: 0.45rem 0.85rem;
}
.fridge-pager-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  padding: 0;
  width: 100%;
}
.fridge-pager-hero .btn {
  min-width: 44px;
  padding: 8px 12px;
}
.fridge-pager-hero .fridge-page-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  min-width: 7rem;
  text-align: center;
}
.nevera-hint-hero {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}
.nevera-hint-hero .linkish {
  background: none;
  border: 0;
  padding: 0;
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.globo {
  position: absolute;
  left: 8px;
  bottom: 6px;
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 800;
  font-size: 0.78rem;
  font-family: var(--font-display);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cyan);
  color: var(--primary);
  z-index: 4;
  pointer-events: none;
}

/* Barra de confianza */
.confianza {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary) 55%, #5a3d8f);
  color: #fff;
}
.confianza-grid {
  display: grid;
  gap: 1.1rem;
  padding: 1.5rem 0;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}
.conf {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.conf-n {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}
.conf b {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.magnet-reel {
  padding: 56px 0 40px;
  background: var(--white);
  overflow: hidden;
}
.magnet-reel .section-head { margin-bottom: 20px; }
.magnet-reel-viewport {
  overflow: hidden;
  margin-top: 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.magnet-reel-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.magnet-reel-track.is-ready {
  animation: magnet-reel var(--reel-duration, 42s) linear infinite;
}
.magnet-reel-group {
  display: flex;
  align-items: center;
  gap: var(--reel-gap, 28px);
  padding-right: var(--reel-gap, 28px);
}
.magnet-reel-item {
  flex: 0 0 auto;
  width: clamp(108px, 15vw, 148px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 10px 18px rgba(30, 26, 46, 0.22));
  transition: transform .25s ease, filter .25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.magnet-reel-item:nth-child(odd) { transform: rotate(-2.4deg); }
.magnet-reel-item:nth-child(even) { transform: rotate(2.1deg); }
.magnet-reel-item:nth-child(3n) { transform: rotate(-1.2deg); }
.magnet-reel-item:hover {
  transform: rotate(0deg) scale(1.08);
  filter: drop-shadow(0 14px 22px rgba(61, 49, 133, 0.28));
  z-index: 2;
}
.magnet-reel-item img {
  width: 100%;
  height: auto;
  background: transparent;
  border-radius: 6px;
}
.magnet-reel-viewport:hover .magnet-reel-track,
.magnet-reel-viewport:focus-within .magnet-reel-track {
  animation-play-state: paused;
}
.magnet-reel-cta {
  margin-top: 22px;
  text-align: center;
}
@keyframes magnet-reel {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--reel-distance, 50%)), 0, 0); }
}

.magnet-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
  box-sizing: border-box;
  overscroll-behavior: contain;
}
.magnet-lightbox[hidden] {
  display: none !important;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(20, 16, 36, 0.82);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.lightbox-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(92vw, 720px);
  max-height: min(90vh, 90dvh);
  padding: 44px 8px 12px;
  box-sizing: border-box;
  pointer-events: auto;
}
.lightbox-zoom-wrap {
  width: 100%;
  max-height: min(70vh, 72dvh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  cursor: zoom-in;
  border-radius: 14px;
}
.lightbox-zoom-wrap.is-zoomed {
  cursor: grab;
}
.lightbox-zoom-wrap.is-zoomed:active {
  cursor: grabbing;
}
.magnet-lightbox img {
  max-width: 100%;
  max-height: min(70vh, 72dvh);
  width: auto;
  height: auto;
  border-radius: 14px;
  background: transparent;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transform-origin: center center;
  transition: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
.lightbox-caption {
  margin: 0;
  color: #fff;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  text-align: center;
  padding: 0 8px;
}
.lightbox-zoom-hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }

body.lightbox-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

.cats { padding: 80px 0 48px; background: var(--cream); }
.section-head { margin-bottom: 32px; max-width: 40rem; }
.section-head.centro { max-width: 44rem; margin-inline: auto; margin-bottom: 32px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-grid-7 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.cat-card .media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}
.cat-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.cat-card:hover .media img { transform: scale(1.04); }
.cat-card .cap {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-card h3 { margin: 0 0 6px; color: var(--ink); }
.cat-card p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}
.cat-card .btn { align-self: flex-start; }

.why { padding: 72px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: linear-gradient(165deg, #faf8ff 0%, var(--mist) 100%);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--line);
  transition: transform .25s ease;
}
.why-card:hover { transform: translateY(-3px); }
.why-card .n {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--lavender));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.vehicles {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(125, 191, 206, 0.18), transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(161, 108, 167, 0.12), transparent 40%),
    var(--white);
}
.vehicles-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f4f7 0%, #f3eef8 100%);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.vehicles-media img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}
.vehicles-copy .lead { margin-bottom: 8px; }
.vehicles-cta { margin-top: 26px; }
.split ul { padding: 0; margin: 16px 0 0; list-style: none; }
.split li {
  padding: 9px 0 9px 28px;
  position: relative;
  color: var(--ink-soft);
}
.split li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lavender));
  position: absolute;
  left: 0;
  top: 15px;
}

.process {
  padding: 24px 0 80px;
  background: var(--cream);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 18px 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.process-step .n {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan-deep);
  margin-bottom: 10px;
}

/* Aplicaciones */
.usos {
  padding: 80px 0;
  background: var(--white);
}
.uso-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.uso {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.uso-ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: #ebe6f6;
}
.uso h3 { font-size: 1.05rem; }
.uso p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* Franja argumento */
.valla {
  background: linear-gradient(140deg, #241e3a, var(--primary) 55%, #4fa0b4);
  color: #fff;
  padding: 72px 0;
}
.valla .eyebrow-light {
  color: var(--cyan);
}
.valla .eyebrow-light::before {
  background: linear-gradient(90deg, var(--cyan), var(--lavender-soft));
}
.valla .lead { color: rgba(255, 255, 255, 0.9); }
.valla-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .valla-grid { grid-template-columns: 1fr 1fr; }
}
.datos {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}
.dato {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}
.dato b {
  display: block;
  font-size: 1.25rem;
  line-height: 1.15;
  color: var(--cyan);
  font-family: var(--font-display);
  margin-bottom: 6px;
}

/* Cotizador WhatsApp */
.cotiza {
  padding: 80px 0 64px;
  background: var(--cream);
}
.cotiza-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: start;
  max-width: 980px;
  margin-inline: auto;
}
.form-caja {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3.5vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.progreso {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}
.progreso i {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: var(--line);
  display: block;
}
.progreso i.on { background: var(--cyan-deep); }
.campo { margin-bottom: 1.1rem; }
.campo label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}
.campo .ayuda {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.8rem;
  display: block;
  margin-top: 2px;
}
.opciones {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 120px), 1fr));
}
.op { position: relative; }
.op input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
  min-height: 0;
  padding: 0;
  border: 0;
}
.op span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 72px;
  padding: 0.65rem 0.45rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  transition: border-color .15s, background .15s, color .15s;
  line-height: 1.3;
  color: var(--ink-soft);
}
.op em { font-style: normal; font-size: 1.25rem; }
.op input:checked + span {
  border-color: var(--primary);
  background: #ebe6f6;
  color: var(--primary);
}
.op input:focus-visible + span {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}
.dos {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .dos { grid-template-columns: 1fr 1fr; }
}
.resumen {
  position: sticky;
  bottom: 0;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 22px rgba(61, 49, 133, 0.28);
}
.resumen .precio {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--font-display);
  display: block;
}
.resumen small {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
  font-weight: 500;
  margin-top: 4px;
}
.resumen .btn { flex: 1; min-width: 190px; }
.aviso {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.9rem;
}
.aviso.is-ok { color: #166534; font-weight: 600; }

/* CTA final */
.final {
  background: linear-gradient(140deg, var(--cyan-deep), #3d8a9c);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.final .lead {
  color: rgba(255, 255, 255, 0.92);
  margin-inline: auto;
}
.final .btn-primary {
  background: #fff;
  color: var(--cyan-deep);
  box-shadow: none;
}
.final .btn-primary:hover { background: var(--mist); }

.styles { padding: 24px 0 80px; background: var(--white); }
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.style-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.style-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.style-card .media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}
.style-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.style-card:hover .media img { transform: scale(1.03); }
.style-card .txt {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.style-card .txt p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}
.style-card .btn { align-self: flex-start; margin-top: auto; }
.styles-more {
  margin: 28px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.styles-more a {
  color: var(--primary);
  font-weight: 700;
  margin-left: 6px;
  border-bottom: 1px solid rgba(61, 49, 133, 0.25);
}
.styles-more a:hover { color: var(--lavender); }

.ship {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(125, 191, 206, 0.45), transparent 42%),
    radial-gradient(ellipse at 85% 80%, rgba(161, 108, 167, 0.4), transparent 45%),
    linear-gradient(135deg, #2f2668 0%, #3d3185 48%, #4fa0b4 130%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ship::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  right: -60px;
  top: -80px;
}
.ship .wrap { position: relative; z-index: 1; }
.ship h2 { font-size: clamp(1.75rem, 3.5vw, 2.55rem); }
.ship p { margin: 0 auto; max-width: 34rem; color: rgba(255,255,255,.88); }

.faq { padding: 80px 0; background: var(--cream); }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 36px 18px 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--ink);
}
.faq-item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--lavender);
  font-size: 1.35rem;
}
.faq-item.open button::after { content: "–"; color: var(--primary); }
.faq-item .ans {
  display: none;
  color: var(--muted);
  padding: 0 8px 18px 0;
}
.faq-item.open .ans { display: block; }

.contact { padding: 24px 0 96px; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.card {
  background: linear-gradient(180deg, #faf8ff, var(--cream));
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 12px 0 6px;
  color: var(--ink-soft);
  font-family: var(--font-display);
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(161, 108, 167, 0.18);
}
textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
.form-note.is-ok { color: #166534; font-weight: 600; }
.map {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 14px;
  margin-top: 14px;
}
.nap { color: var(--muted); }
.nap a { color: var(--primary); font-weight: 600; }
.nap a:hover { color: var(--lavender); }
.legal-name { font-size: 0.78rem; opacity: 0.75; }

.site-footer {
  background: linear-gradient(180deg, #241e3a, #1e1a2e);
  color: #c9c4d8;
  padding: 52px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.site-footer a:hover { color: var(--cyan); }
.legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #083b1a;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .42);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }

@media (max-width: 980px) {
  .cat-grid, .why-grid, .process-grid, .style-grid, .split, .contact-grid, .foot-grid, .cotiza-layout {
    grid-template-columns: 1fr 1fr;
  }
  .split, .contact-grid, .foot-grid, .cotiza-layout { grid-template-columns: 1fr; }
  .site-header { position: relative; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--cream);
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
    z-index: 50;
  }
  .header-actions .header-cta { display: none; }
  .icon-btn.wa-mobile { display: inline-flex; }
  .menu-toggle { display: grid; place-items: center; }
  .topbar-note { display: none; }
  .hero { min-height: 0; }
  .hero h1 { max-width: none; }
  .fridge-wrap-hero { height: min(460px, 60vh); max-width: 380px; }
  .fridge-wrap-hero .fridge-stage {
    width: min(300px, 80%);
    transform: translateX(-50%);
    padding-top: 8px;
  }
  .fridge-wrap-hero .magnet {
    max-width: 28% !important;
    width: 24% !important;
  }
}
@media (max-width: 640px) {
  .cat-grid, .why-grid, .process-grid, .style-grid { grid-template-columns: 1fr; }
  .topbar-links a:first-child { display: none; }
  .brand small { display: none; }
  .brand-logo, .brand img { height: 46px; max-width: 100px; padding: 3px 6px; }
  .cats, .why, .faq, .usos, .cotiza, .final, .valla { padding-block: 56px; }
  .magnet-reel { padding: 40px 0 28px; }
  .magnet-reel-item { width: 112px; }
  .fridge-wrap-hero { height: min(400px, 54vh); border-radius: 18px; max-width: 100%; }
  .fridge-wrap-hero .fridge-stage {
    width: min(280px, 82%);
    transform: translateX(-50%);
    padding-top: 8px;
  }
  .fridge-wrap-hero .magnet {
    max-width: 30% !important;
    width: 26% !important;
  }
  .fridge-wrap-hero .globo {
    right: 8px;
    top: 8px;
    font-size: 0.68rem;
    padding: 0.4rem 0.7rem;
  }
  .globo { left: 8px; bottom: 8px; font-size: 0.72rem; padding: 0.45rem 0.85rem; }
  .hero-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .magnet-reel-track,
  .magnet-reel-track.is-ready { animation: none; }
  .magnet-reel-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
