/* ============================================================
   ATALAYA · Landing — diseño mediterráneo
   Arena, atardecer y mar · Fraunces + Plus Jakarta Sans
   ============================================================ */
:root {
  --sand: #f7f0e3;
  --sand-2: #efe3cc;
  --paper: #fffaf0;
  --ink: #21303a;
  --ink-soft: #5d6a66;
  --line: #e3d6bd;
  --coral: #ef6a44;
  --coral-deep: #c84a2e;
  /* Coral para TEXTO PEQUEÑO (eyebrows, tags, orbit): coral-deep se queda corto
     de contraste sobre sand/sand-2 (4.14:1 / 3.69:1) y este aprueba en los tres
     fondos claros (6.06 / 5.40 / 6.60). Auditoría 2026-08-21. */
  --coral-texto: #9d3a20;
  --peach: #ffb98a;
  --gold: #d9a441;
  --olive: #6b7f3f;
  --berry: #b8446e;
  --wa: #1fa855;
  --teal: #0f6b64;
  --sea: #0b3f3c;
  --sea-deep: #082e2c;
  --cream: #f6ead8;
  --cream-soft: #cfe2dc;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 24px;
  --container: 1180px;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
}

body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grano sutil en toda la página */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: rgba(239, 106, 68, 0.3); }

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

a { color: inherit; text-decoration: none; }

/* Anillo doble: el halo cream mantiene el foco visible sobre fondos oscuros */
:focus-visible {
  outline: 3px solid var(--coral-deep);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(255, 250, 240, 0.9);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

/* ============ Cursor decorativo (solo puntero fino) ============ */
.cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease,
    background 0.25s ease, opacity 0.3s ease;
}
.cursor-ring.is-on { opacity: 0.7; }
.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  background: rgba(239, 106, 68, 0.1);
}
@media (pointer: fine) {
  .cursor-ring { display: block; }
}

/* ============ Botones ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn--primary {
  /* El gradiente arranca en coral-deep (no en coral): con texto blanco da
     4.69:1 en el extremo claro y 6.42:1 en el oscuro — AA en todo el botón.
     El coral vivo se queda para fondos y acentos, nunca bajo texto. */
  background: linear-gradient(120deg, var(--coral-deep) 0%, #a63b22 100%);
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(200, 74, 46, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(200, 74, 46, 0.65);
}
.btn--ghost {
  background: rgba(255, 250, 240, 0.55);
  border-color: rgba(33, 48, 58, 0.25);
  color: var(--ink);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--coral-deep);
  color: var(--coral-deep);
  transform: translateY(-2px);
}
.btn--cream {
  background: var(--cream);
  color: var(--sea-deep);
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.45);
}
.btn--cream:hover {
  transform: translateY(-2px);
  background: #fff;
}
.btn--small { padding: 10px 22px; font-size: 14px; min-height: 44px; }

/* ============ Nav ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(247, 240, 227, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(33, 48, 58, 0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__logo-dot { color: var(--coral); font-style: normal; }
.nav__logo--light { color: var(--cream); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links > a:not(.btn) {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav__links > a:not(.btn):hover { color: var(--coral-deep); }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: rgba(255, 250, 240, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 36px) 0 110px;
  overflow: hidden;
  isolation: isolate;
  /* Rejilla de puntos + brillos suaves; el canvas dibuja la red de nodos encima */
  background:
    radial-gradient(rgba(33, 48, 58, 0.055) 1px, transparent 1px) 0 0 / 28px 28px,
    radial-gradient(900px 620px at 84% 8%, rgba(15, 107, 100, 0.1), transparent 65%),
    radial-gradient(780px 560px at 4% 92%, rgba(239, 106, 68, 0.1), transparent 65%),
    var(--sand);
}
#bg3d {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.hero__content {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero__text { min-width: 0; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-texto);
  margin-bottom: 24px;
}
.hero__eyebrow span { color: var(--coral); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 66px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.hero__title em {
  font-weight: 600;
  color: var(--coral-deep);
}
.mask { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero__line { display: block; }
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: #33424d;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 1.5vw, 20px);
}
.stat { display: flex; align-items: baseline; gap: 8px; }
.stat__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
  color: var(--ink);
}
.stat__label { font-size: 13.5px; font-weight: 600; color: #33424d; }
.stat__sep { color: var(--coral); font-size: 14px; }

/* Collage de capturas reales */
.hero__visual { min-width: 0; }
.showcase {
  position: relative;
  margin-bottom: 9%;
}
.shot--hero-main { position: relative; z-index: 1; }
.shot--hero-float {
  position: absolute;
  z-index: 2;
  width: 58%;
  left: -9%;
  bottom: -16%;
  transform: rotate(-1.6deg);
  box-shadow: 0 30px 60px -28px rgba(33, 48, 58, 0.5);
}
.shot--hero-float:hover { transform: rotate(-1.6deg) translateY(-5px); }
.showcase .chip { position: absolute; z-index: 3; pointer-events: none; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -16px rgba(33, 48, 58, 0.35);
  white-space: nowrap;
}
.chip--1 { top: -20px; left: -26px; }
.chip--2 { right: -18px; top: 34%; }
.chip--3 { bottom: -54px; right: 4%; }
.chip--4 { left: -34px; bottom: 16%; }
.chip__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}
.chip__dot--teal { background: var(--teal); box-shadow: 0 0 0 4px rgba(15, 107, 100, 0.18); }
.chip__dot--coral { background: var(--coral); box-shadow: 0 0 0 4px rgba(239, 106, 68, 0.2); }
.chip__dot--gold { background: var(--gold); box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.2); }
.chip__dot--berry { background: var(--berry); box-shadow: 0 0 0 4px rgba(184, 68, 110, 0.18); }

/* Insignia circular giratoria */
.orbit {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 38px;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
}
.orbit svg {
  position: absolute;
  inset: 0;
  animation: orbitSpin 16s linear infinite;
}
.orbit__text text,
.orbit__text {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: var(--coral-texto);
}
.orbit__arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 19px;
  transition: transform 0.25s ease;
}
.orbit:hover .orbit__arrow { transform: translateY(4px); }
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

/* ============ Marquee ============ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--sand-2);
  overflow: hidden;
  padding: 20px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.marquee__track i { color: var(--coral); font-style: normal; font-size: 13px; }
/* -50% menos medio gap (36px/2) para que el bucle duplicado encaje sin salto */
@keyframes marquee {
  to { transform: translateX(calc(-50% - 18px)); }
}

/* ============ Secciones ============ */
.section { padding: clamp(84px, 11vw, 140px) 0; }
.section__head {
  max-width: 660px;
  margin-bottom: clamp(44px, 6vw, 76px);
}
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-texto);
  margin-bottom: 16px;
}
.section__tag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.section__tag--light { color: var(--peach); }
.section__tag--light::before { background: var(--peach); }
.section__tag--ink { color: #6b2c14; }
.section__tag--ink::before { background: #6b2c14; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.section__title em { font-weight: 600; color: var(--coral-deep); }
.section__sub { color: var(--ink-soft); font-size: clamp(15.5px, 1.4vw, 17.5px); }

/* ============ Bento / Cards ============ */
/* Rejilla de 6 columnas: destacadas ocupan 6, normales 3 y las pequeñas 2 */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.card {
  grid-column: span 3;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  overflow: hidden;
  box-shadow: 0 20px 45px -28px rgba(33, 48, 58, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  border-color: rgba(239, 106, 68, 0.45);
  box-shadow: 0 32px 60px -28px rgba(200, 74, 46, 0.35);
}
.card--featured {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}
.card--featured-alt { grid-template-columns: 1fr 1.05fr; }
.card--featured-alt .card__body { order: 2; }
.card--featured-alt .card__visual { order: 1; }
.card--third { grid-column: span 2; }
.card__body { position: relative; min-width: 0; }
.card__flag {
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--coral-deep), #a63b22);
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(200, 74, 46, 0.7);
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 27px; height: 27px; }
.card__icon--teal { color: var(--teal); background: rgba(15, 107, 100, 0.1); border: 1px solid rgba(15, 107, 100, 0.25); }
.card__icon--coral { color: var(--coral-deep); background: rgba(239, 106, 68, 0.1); border: 1px solid rgba(239, 106, 68, 0.3); }
.card__icon--gold { color: #9c731f; background: rgba(217, 164, 65, 0.13); border: 1px solid rgba(217, 164, 65, 0.35); }
.card__icon--sea { color: #1d5d8a; background: rgba(54, 124, 169, 0.12); border: 1px solid rgba(54, 124, 169, 0.3); }
.card__icon--olive { color: #566a2f; background: rgba(107, 127, 63, 0.12); border: 1px solid rgba(107, 127, 63, 0.32); }
.card__icon--berry { color: #9c2f59; background: rgba(184, 68, 110, 0.11); border: 1px solid rgba(184, 68, 110, 0.32); }
.card__title {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.2vw, 29px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.card__text { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 20px; }
.card__text strong { color: var(--ink); font-weight: 700; }
.card__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.card__chips li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--sand);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.card__link {
  font-weight: 700;
  font-size: 15px;
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__link span { transition: transform 0.25s ease; }
.card__link:hover span { transform: translateX(5px); }

/* ============ Mockup: plano (motor de reservas) ============ */
.card__visual { min-width: 0; }
.mock-floorplan .fp {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(rgba(33, 48, 58, 0.08) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(160deg, #fdf6e9, #f6ecd8);
  overflow: hidden;
}
.fp__zone {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}
.fp__table {
  position: absolute;
  display: grid;
  place-items: center;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  border: 1.8px solid;
  background: rgba(255, 250, 240, 0.85);
}
.fp__table--round { width: 52px; height: 52px; border-radius: 50%; }
.fp__table--rect { width: 78px; height: 44px; border-radius: 12px; }
.fp__table--vip { width: 120px; height: 54px; border-radius: 14px; }
.fp__table.is-free { border-color: #2f9e7d; box-shadow: 0 6px 16px -6px rgba(47, 158, 125, 0.5); }
.fp__table.is-pend { border-color: var(--gold); box-shadow: 0 6px 16px -6px rgba(217, 164, 65, 0.55); }
.fp__table.is-busy { border-color: #d95436; box-shadow: 0 6px 16px -6px rgba(217, 84, 54, 0.5); }
.fp__table.is-pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1.8px solid #d95436;
  animation: tablePulse 2s ease-out infinite;
}
@keyframes tablePulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}
.fp__legend {
  position: absolute;
  left: 12px;
  bottom: 10px;
  display: flex;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255, 250, 240, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(227, 214, 189, 0.7);
  border-radius: 999px;
  padding: 6px 12px;
}
.fp__legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex: none;
}
.dot--free { background: #2f9e7d; }
.dot--pend { background: var(--gold); }
.dot--busy { background: #d95436; }

/* ============ Mockup: display ============ */
.mock-display .dsh {
  border-radius: 18px;
  border: 1px solid rgba(8, 46, 44, 0.5);
  background: linear-gradient(160deg, #103338, #0a2326);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 50px -24px rgba(8, 46, 44, 0.6);
}
.dsh__bar { display: flex; align-items: center; gap: 6px; }
.dsh__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(246, 234, 216, 0.15);
}
.dsh__bar b {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 234, 216, 0.55);
}
.dsh__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dsh__kpi {
  background: rgba(246, 234, 216, 0.06);
  border: 1px solid rgba(246, 234, 216, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
}
.dsh__kpi b {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--cream);
}
.dsh__kpi span { font-size: 11px; color: rgba(246, 234, 216, 0.55); }
.mock-chart { width: 100%; height: 84px; border-radius: 10px; }
.dsh__rows { display: flex; flex-direction: column; gap: 8px; }
.dsh__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(246, 234, 216, 0.7);
  background: rgba(246, 234, 216, 0.05);
  border: 1px solid rgba(246, 234, 216, 0.1);
  border-radius: 10px;
  padding: 8px 12px;
}
.dsh__row b {
  margin-left: auto;
  font-size: 12.5px;
  color: var(--cream);
}

/* ============ Capturas reales ============ */
.section--shots { padding-top: 0; }
.shots__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.shots__tab {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  min-height: 44px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.shots__tab:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
  transform: translateY(-1px);
}
.shots__tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.shots__panel {
  display: none;
  grid-template-columns: 1.35fr 1fr;
  gap: 26px;
  align-items: start;
}
.shots__panel.is-active { display: grid; }
.shots__panel--single { grid-template-columns: minmax(0, 940px); justify-content: center; }
.shot {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px 10px 6px;
  box-shadow: 0 26px 55px -32px rgba(33, 48, 58, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shot:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 65px -32px rgba(200, 74, 46, 0.35);
}
.shot--side { transform: rotate(0.7deg); margin-top: 30px; }
.shot--side:hover { transform: rotate(0.7deg) translateY(-5px); }
.shot__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 10px;
}
.shot__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sand-2);
  border: 1px solid var(--line);
}
.shot__bar span {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.shot img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.shot figcaption {
  padding: 11px 6px 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ============ Sección mar (a medida + proceso) ============ */
.sea {
  position: relative;
  background:
    radial-gradient(900px 540px at 85% 10%, rgba(15, 107, 100, 0.55), transparent 60%),
    var(--sea);
  color: var(--cream);
}
.divider {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 76px);
  color: var(--sand);
}
.sea .section__title { color: var(--cream); }
.sea .section__title em { color: var(--peach); }
.sea .section__sub { color: var(--cream-soft); }
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
}
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 34px;
}
.checklist li {
  position: relative;
  padding-left: 36px;
  color: var(--cream-soft);
  font-size: 15.5px;
}
.checklist li strong { color: var(--cream); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--sea-deep);
  background: linear-gradient(120deg, var(--peach), var(--coral));
}
.split__visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.idea-card {
  background: rgba(246, 234, 216, 0.07);
  border: 1px solid rgba(246, 234, 216, 0.16);
  border-radius: 18px;
  padding: 20px 22px;
  font-size: 14.5px;
  color: var(--cream-soft);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.idea-card--1 { transform: rotate(-1.2deg); }
.idea-card--2 { transform: rotate(0.8deg) translateX(14px); border-color: rgba(255, 185, 138, 0.45); }
.idea-card--3 { transform: rotate(-0.6deg); border-color: rgba(127, 214, 194, 0.45); }
.idea-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* El oro VIVO (#d9a441) aquí se queda en 3,58:1 sobre el fondo real de la
     etiqueta (mar → tarjeta crema 7 % → oro 14 %) y esto es texto de 11 px, que
     necesita 4,5:1. Se usa el oro del MUNDO MAR, que es el mismo que llevan las
     piezas de marca en oscuro: 4,81:1 medido sobre ese fondo compuesto. Es la
     norma de la casa aplicada al otro mundo — cada acento tiene su gemelo de
     texto, y en el mar el gemelo se ACLARA en vez de oscurecerse. (2026-08-24) */
  color: #e8c46a;
  background: rgba(217, 164, 65, 0.14);
  border: 1px solid rgba(217, 164, 65, 0.4);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.idea-card__tag--build {
  color: var(--peach);
  background: rgba(255, 185, 138, 0.12);
  border-color: rgba(255, 185, 138, 0.4);
}
.idea-card__tag--done {
  color: #7fd6c2;
  background: rgba(127, 214, 194, 0.12);
  border-color: rgba(127, 214, 194, 0.4);
}
.idea-card__bar {
  margin-top: 12px;
  height: 6px;
  border-radius: 6px;
  background: rgba(246, 234, 216, 0.12);
  overflow: hidden;
}
.idea-card__bar i {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--peach), var(--coral));
}

/* Proceso dentro del mar */
.sea__proceso { padding: clamp(50px, 7vw, 90px) 0 clamp(70px, 9vw, 120px); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  background: rgba(246, 234, 216, 0.06);
  border: 1px solid rgba(246, 234, 216, 0.14);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 185, 138, 0.5);
  background: rgba(246, 234, 216, 0.09);
}
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  font-weight: 500;
  color: var(--peach);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.step__text { font-size: 14.5px; color: var(--cream-soft); }

/* ============ Contacto ============ */
.section--contact { padding-top: clamp(70px, 9vw, 110px); }
.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
  background: linear-gradient(125deg, #ffd2a6 0%, var(--peach) 38%, var(--coral) 100%);
  border-radius: 36px;
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  box-shadow: 0 36px 80px -38px rgba(200, 74, 46, 0.55);
}
.contact-panel__sun {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 230, 0.85), rgba(255, 247, 230, 0) 70%);
  pointer-events: none;
}
.contact-panel .section__title { color: #3a1d10; }
.contact-panel .section__title em { color: #6b2c14; }
.contact-panel .section__sub { color: #3a1d10; }
.contact__mail {
  color: #3a1d10;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form {
  position: relative;
  background: var(--paper);
  border-radius: 26px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 55px -28px rgba(58, 29, 16, 0.5);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__field { display: flex; flex-direction: column; gap: 7px; }
.form__field span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--sand);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
}
.form__field textarea { resize: vertical; min-height: 96px; }
.form__field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2321303a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: #6b6354; }
/* El anillo global de :focus-visible NO se anula aquí: es el único indicador
   que aprueba el 3:1 (el cambio de borde a coral da 2.7:1 y no basta solo). */
.form__field input:focus-visible,
.form__field select:focus-visible,
.form__field textarea:focus-visible {
  border-color: var(--coral-deep);
  background: #fffdf8;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--coral-deep);
  background: #fffdf8;
}
.form__submit { margin-top: 6px; }

/* ============ Footer ============ */
.footer {
  background: var(--sea-deep);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0 36px;
}
.footer__big {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  max-width: 800px;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.footer__cta {
  color: var(--peach);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.footer__cta:hover { color: var(--coral); }
.footer__cta span {
  display: inline-block;
  transition: transform 0.25s ease;
}
.footer__cta:hover span { transform: translateX(6px); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(246, 234, 216, 0.15);
  padding-top: 28px;
}
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream-soft);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--peach); }
.footer__copy { font-size: 13.5px; color: rgba(246, 234, 216, 0.78); }

/* ============ Utilidades de accesibilidad y scroll ============ */
.skip-link {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -160%);
  z-index: 4000;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.25s ease;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: 3px;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--coral) 55%, var(--coral-deep));
}

.nav__links > a.is-current:not(.btn) { color: var(--coral-deep); }

/* ============ WhatsApp ============ */
.ico-wa { width: 20px; height: 20px; fill: currentColor; flex: none; }
.btn--wa { color: #14713b; border-color: rgba(20, 113, 59, 0.3); }
.btn--wa:hover { color: #0f5c30; border-color: var(--wa); }
.faq__wa { margin-top: 22px; }

.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  /* No es var(--wa): #1fa855 con texto blanco da 3.09:1. Este verde da 4.77:1
     y el hover 5.42:1; el verde vivo queda para puntos y bordes sin texto. */
  background: #128442;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 16px 34px -12px rgba(20, 113, 59, 0.65);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.94);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s,
    background 0.25s ease, box-shadow 0.25s ease;
}
.wa-fab.is-visible { opacity: 1; visibility: visible; transform: none; }
.wa-fab:hover { background: #0f7a3d; box-shadow: 0 20px 40px -12px rgba(20, 113, 59, 0.75); }
.wa-fab .ico-wa { width: 26px; height: 26px; }
.wa-fab::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.3); opacity: 0; }
}

/* ============ Mockup: factura (VeriFactu) ============ */
.mock-invoice .inv {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #fffdf7, #f8f0df);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 24px 50px -30px rgba(33, 48, 58, 0.45);
}
.inv__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.inv__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.inv__num {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
}
.inv__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #1f7a5c;
  background: rgba(47, 158, 125, 0.12);
  border: 1px solid rgba(47, 158, 125, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
}
.inv__client {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 10px 13px;
}
.inv__client span {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.inv__client b { font-size: 14.5px; color: var(--ink); }
.inv__client small { display: block; font-size: 12px; color: var(--ink-soft); }
.inv__lines { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.inv__lines li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(227, 214, 189, 0.7);
  padding-bottom: 6px;
}
.inv__lines i { font-style: normal; font-size: 12px; color: #8a8375; }
.inv__lines b { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.inv__totals { display: flex; flex-direction: column; gap: 5px; }
.inv__totals > div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}
.inv__totals b { font-variant-numeric: tabular-nums; color: var(--ink); }
.inv__total {
  border-top: 1.5px solid var(--line);
  padding-top: 7px;
  margin-top: 2px;
}
.inv__total span { font-weight: 700; color: var(--ink); }
.inv__total b { font-family: var(--font-display); font-size: 20px; color: var(--coral-deep); }
.inv__foot {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(33, 48, 58, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
}
.inv__qr { width: 58px; height: 58px; flex: none; border-radius: 5px; }
.inv__foot-text b {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.inv__foot-text span { font-size: 11.5px; line-height: 1.4; color: var(--ink-soft); }

/* ============ Mockup: cashless ============ */
.mock-cashless .csh {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #fffdf7, #f6ecd8);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 50px -30px rgba(33, 48, 58, 0.4);
}
.csh__band {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  padding: 16px 18px;
  color: #fff3f7;
  background: linear-gradient(115deg, #63213f 0%, var(--berry) 55%, #e8795d 100%);
  box-shadow: 0 18px 34px -20px rgba(99, 33, 63, 0.9);
}
.csh__nfc { width: 26px; height: 26px; flex: none; opacity: 0.85; }
.csh__band-info { margin-right: auto; min-width: 0; }
.csh__band-info span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}
.csh__band-info b { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.csh__state {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 5px 11px;
  border-radius: 999px;
  flex: none;
}
.csh__topup { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.csh__topup span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 2px;
}
.csh__topup i {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--sand);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}
.csh__topup i.is-on {
  color: #7a1f45;
  background: rgba(184, 68, 110, 0.12);
  border-color: rgba(184, 68, 110, 0.5);
}
.csh__moves { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.csh__moves li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  background: rgba(255, 250, 240, 0.8);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 9px 12px;
}
.csh__moves b {
  margin-left: auto;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.csh__moves b.is-plus { color: #1f7a5c; }
.csh__dept { width: 9px; height: 9px; border-radius: 3px; flex: none; }
.csh__dept--bar { background: var(--berry); }
.csh__dept--food { background: var(--gold); }
.csh__dept--merch { background: var(--teal); }
.csh__dept--top { background: #2f9e7d; }
.csh__deps { display: flex; flex-wrap: wrap; gap: 6px; }
.csh__deps span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
}

/* ============ Mockup: conteo de inventario ============ */
/* isolate: mantiene la nota de papel (z-index -1) detrás del panel pero
   delante del fondo de la tarjeta */
.mock-count { isolation: isolate; }
.mock-count .cnt {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #fffdf7, #f6ecd8);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 50px -30px rgba(33, 48, 58, 0.4);
}
.cnt__paper {
  position: absolute;
  z-index: -1;
  top: -30px;
  right: -22px;
  width: 128px;
  padding: 12px 14px 14px;
  background: #fdf3d3;
  border: 1px solid #e6d49b;
  border-radius: 4px;
  transform: rotate(6deg);
  box-shadow: 0 12px 24px -14px rgba(33, 48, 58, 0.5);
  font-family: var(--font-display);
  font-style: italic;
  color: #8a7a4f;
  opacity: 0.95;
}
.cnt__paper span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: #6f6039;
}
.cnt__paper em { display: block; font-size: 12.5px; line-height: 1.7; text-decoration: line-through; }
.cnt__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.cnt__head b { font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.cnt__head span { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); }
.cnt__rows { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cnt__rows li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-soft);
  background: rgba(255, 250, 240, 0.85);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 8px 10px;
}
.cnt__rows li > span { flex: 1; min-width: 0; }
.cnt__rows i {
  font-style: normal;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px solid var(--line);
  flex: none;
}
.cnt__rows b {
  min-width: 26px;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.cnt__rows li.is-low { border-color: rgba(217, 84, 54, 0.45); background: rgba(217, 84, 54, 0.07); }
.cnt__rows li.is-low b { color: #b23c22; }
.cnt__alert {
  position: relative;
  font-size: 12.5px;
  font-weight: 600;
  color: #8c3a1f;
  background: rgba(239, 106, 68, 0.1);
  border: 1px solid rgba(239, 106, 68, 0.35);
  border-radius: 11px;
  padding: 9px 12px 9px 32px;
}
.cnt__alert::before {
  content: "!";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff7ed;
  background: var(--coral);
}
.cnt__bar { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-soft); }
.cnt__bar b { font-weight: 700; color: var(--ink); }
.cnt__bar-track {
  flex: 1;
  height: 7px;
  border-radius: 7px;
  background: rgba(33, 48, 58, 0.09);
  overflow: hidden;
}
.cnt__bar-track i {
  display: block;
  height: 100%;
  width: 78%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--olive), #93a95c);
}

/* ============ Sectores ============ */
.section--sectors {
  background: var(--sand-2);
  border-block: 1px solid var(--line);
}
.sectors {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.sector:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 106, 68, 0.45);
  box-shadow: 0 28px 55px -30px rgba(200, 74, 46, 0.4);
}
.sector__ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.sector__ico svg { width: 23px; height: 23px; }
.sector__ico--gold { color: #9c731f; background: rgba(217, 164, 65, 0.13); border: 1px solid rgba(217, 164, 65, 0.35); }
.sector__ico--coral { color: var(--coral-deep); background: rgba(239, 106, 68, 0.1); border: 1px solid rgba(239, 106, 68, 0.3); }
.sector__ico--teal { color: var(--teal); background: rgba(15, 107, 100, 0.1); border: 1px solid rgba(15, 107, 100, 0.25); }
.sector__ico--berry { color: #9c2f59; background: rgba(184, 68, 110, 0.11); border: 1px solid rgba(184, 68, 110, 0.32); }
.sector__ico--olive { color: #566a2f; background: rgba(107, 127, 63, 0.12); border: 1px solid rgba(107, 127, 63, 0.32); }
.sector__ico--sea { color: #1d5d8a; background: rgba(54, 124, 169, 0.12); border: 1px solid rgba(54, 124, 169, 0.3); }
.sector__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.sector__text { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; }
.sector__apps { display: flex; flex-wrap: wrap; gap: 7px; }
.sector__apps span {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral-deep);
  background: rgba(239, 106, 68, 0.09);
  border: 1px solid rgba(239, 106, 68, 0.28);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ============ Quiénes somos ============ */
.section--story {
  background:
    radial-gradient(760px 480px at 88% 4%, rgba(217, 164, 65, 0.12), transparent 62%),
    var(--paper);
}
.section--story .section__head { max-width: 820px; }
.story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 78px);
  align-items: start;
  margin-bottom: clamp(52px, 7vw, 84px);
}
.story__text { display: flex; flex-direction: column; gap: 18px; }
.story__text p { font-size: 16px; color: #3d4a50; }
.story__lead {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 23px) !important;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink) !important;
  padding-left: 24px;
  border-left: 3px solid var(--coral);
}
.story__text em { color: var(--coral-deep); }
.story__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px !important;
  color: var(--ink) !important;
  margin-top: 6px;
}
.story__sign span { color: var(--coral); }

.timeline {
  list-style: none;
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold), var(--coral) 55%, var(--teal));
  opacity: 0.45;
}
.tl { position: relative; padding-bottom: 26px; }
.tl:last-child { padding-bottom: 0; }
.tl::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 2.5px solid var(--coral);
}
.tl--now::before { background: var(--coral); box-shadow: 0 0 0 5px rgba(239, 106, 68, 0.18); }
.tl__year {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 4px;
}
.tl__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}
.tl__text { font-size: 14.5px; color: var(--ink-soft); }

.values {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.value:hover { transform: translateY(-4px); border-color: rgba(239, 106, 68, 0.45); }
.value__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  margin-bottom: 15px;
  color: var(--teal);
  background: rgba(15, 107, 100, 0.1);
  border: 1px solid rgba(15, 107, 100, 0.25);
}
.value__ico svg { width: 22px; height: 22px; }
.value__title {
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 600;
  margin-bottom: 7px;
}
.value__text { font-size: 14px; color: var(--ink-soft); }

/* ============ Planes ============ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 20px 45px -30px rgba(33, 48, 58, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.plan:hover { transform: translateY(-5px); border-color: rgba(239, 106, 68, 0.4); }
.plan--featured {
  border-color: rgba(239, 106, 68, 0.5);
  box-shadow: 0 32px 70px -34px rgba(200, 74, 46, 0.5);
  transform: translateY(-10px);
}
.plan--featured:hover { transform: translateY(-15px); }
.plan__flag {
  position: absolute;
  top: -13px;
  left: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--coral-deep), #a63b22);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 20px -10px rgba(200, 74, 46, 0.7);
}
.plan__name {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 8px;
}
.plan__for { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.plan__price {
  border-block: 1px solid var(--line);
  padding: 14px 0;
  margin-bottom: 20px;
}
.plan__price b {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
}
.plan__price span { font-size: 13px; color: var(--ink-soft); }
.plan__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}
.plan__list li {
  position: relative;
  padding-left: 27px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff7ed;
  background: var(--teal);
}
.plan__cta { margin-top: auto; width: 100%; }
.plans__note {
  margin-top: 30px;
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ============ FAQ ============ */
.section--faq {
  background: var(--sand-2);
  border-block: 1px solid var(--line);
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.faq__head { margin-bottom: 0; position: sticky; top: calc(var(--nav-h) + 24px); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.qa {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 4px 22px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.qa[open] {
  border-color: rgba(239, 106, 68, 0.45);
  box-shadow: 0 22px 45px -30px rgba(200, 74, 46, 0.45);
}
.qa summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 40px 18px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -8px;
  border-right: 2.2px solid var(--coral-deep);
  border-bottom: 2.2px solid var(--coral-deep);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.qa[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.qa summary:hover { color: var(--coral-deep); }
.qa__body { padding: 0 0 20px; }
.qa__body p { font-size: 15px; color: var(--ink-soft); }
.qa__body p + p { margin-top: 10px; }
.qa__body strong { color: var(--ink); }
.qa__body em { color: var(--coral-deep); }

/* ============ Vías de contacto ============ */
.contact-ways {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 26px 0 18px;
}
.way {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 13px 16px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.way:hover { transform: translateX(4px); background: rgba(255, 253, 248, 0.92); }
.way__ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  flex: none;
  color: #6b2c14;
  background: rgba(255, 247, 230, 0.85);
}
.way__ico svg { width: 21px; height: 21px; }
.way--wa .way__ico { color: #12703a; }
.way__text { min-width: 0; }
.way__text b { display: block; font-size: 14.5px; color: #3a1d10; }
.way__text small { font-size: 13px; color: #6b3a25; }
.contact__meta { font-size: 13.5px; font-weight: 600; color: #4a2413; }

/* ============ Extras del formulario ============ */
.form__field span small { font-weight: 500; color: var(--ink-soft); }
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  color: var(--ink-soft);
  cursor: pointer;
}
.form__consent input {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  flex: none;
  accent-color: var(--coral-deep);
  cursor: pointer;
}
.form__consent a { color: var(--coral-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.form__msg { font-size: 14.5px; font-weight: 600; color: var(--teal); }
.form__msg.is-error { color: var(--coral-deep); }
.form__alt { font-size: 13.5px; color: var(--ink-soft); text-align: center; }
.form__alt a { color: #14713b; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============ Footer ampliado ============ */
.footer__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 34px;
  padding-bottom: 36px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col--brand { gap: 14px; }
.footer__about { font-size: 14px; color: var(--cream-soft); max-width: 320px; }
.footer__ctitle {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 2px;
}
.footer__col a:not(.nav__logo) {
  font-size: 14px;
  color: var(--cream-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer__col a:not(.nav__logo):hover { color: var(--peach); }

/* ============ Página legal ============ */
.legal-page { padding: calc(var(--nav-h) + 60px) 0 90px; }
.legal { max-width: 780px; margin-inline: auto; }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.legal__intro { color: var(--ink-soft); margin-bottom: 40px; }
.legal__block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  margin-bottom: 24px;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.legal__block h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 16px;
}
.legal__block h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin: 24px 0 8px;
}
.legal__block p,
.legal__block li { font-size: 15px; color: var(--ink-soft); }
.legal__block p + p { margin-top: 12px; }
.legal__block ul { margin: 10px 0 0 20px; display: flex; flex-direction: column; gap: 7px; }
.legal__block a { color: var(--coral-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal__todo {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: #8c3a1f;
  background: rgba(239, 106, 68, 0.12);
  border: 1px dashed rgba(239, 106, 68, 0.55);
  border-radius: 8px;
  padding: 2px 8px;
}
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  /* El wordmark «atalaya·» es un 45 % más ancho que el anterior y entre 769 y
     783 px empujaba la barra a dos líneas. Se baja el cuerpo justo donde
     aprieta; por debajo de 768 entra la hamburguesa y deja de importar. */
  .nav__logo { font-size: 26px; }

  /* Con seis enlaces la barra necesita algo menos de aire antes del menú móvil */
  .nav__links { gap: 18px; }
  .nav__links > a:not(.btn) { font-size: 14px; }

  .card--featured,
  .card--featured-alt { grid-template-columns: 1fr; }
  .card--featured-alt .card__body { order: 1; }
  .card--featured-alt .card__visual { order: 2; }
  .card--third { grid-column: span 3; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; gap: 44px; }
  .plans { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; }
  .faq__head { position: static; margin-bottom: 8px; }
  .split,
  .contact-panel { grid-template-columns: 1fr; }
  .hero__content { grid-template-columns: 1fr; gap: 52px; }
  .hero__visual { max-width: 560px; }
  .orbit { display: none; }
  .idea-card--2 { transform: rotate(0.8deg); }
  .shots__panel { grid-template-columns: 1fr; }
  .shot--side { transform: none; margin-top: 0; }
  .shot--side:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 24px 26px;
    background: rgba(247, 240, 227, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }
  .nav-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__links > a:not(.btn) {
    padding: 13px 4px;
    font-size: 17px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .nav__cta { margin-top: 16px; justify-content: center; min-height: 48px; }
  .nav-open { overflow: hidden; height: 100svh; }

  /* Cabecera sin menú desplegable (páginas legales): solo logo y CTA */
  .nav--simple .nav__links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav--simple .nav__links > a:not(.btn) { display: none; }
  .nav--simple .nav__cta { margin-top: 0; }

  .hero { padding: calc(var(--nav-h) + 20px) 0 72px; }
  .showcase .chip { display: none; }
  .showcase { margin-bottom: 6%; }
  .shot--hero-float { left: -8px; }

  .bento { grid-template-columns: 1fr; }
  .card,
  .card--third,
  .card--featured { grid-column: span 1; }
  .card { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .idea-card--2 { transform: rotate(0.8deg); }
  .contact-panel { border-radius: 28px; }

  .sectors { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 30px; }
  .contact-ways { grid-template-columns: 1fr; }
  .cnt__paper { display: none; }
  .wa-fab { right: 16px; bottom: 16px; }
  .wa-fab__label { display: none; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 36px); }
  .hero__title { font-size: clamp(38px, 10.5vw, 46px); }
  .shot--hero-float { display: none; }
  .showcase { margin-bottom: 0; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 12px; }
  .stat__sep { display: none; }
  .stat { flex-basis: 100%; }
  .fp__table--round { width: 42px; height: 42px; font-size: 10.5px; }
  .fp__table--rect { width: 62px; height: 38px; font-size: 10.5px; }
  .fp__table--vip { width: 96px; height: 44px; }
  .marquee__track span { font-size: 15.5px; }
  .footer__cta { white-space: normal; }
  .contact-panel { padding: 26px 18px; }

  .story__lead { padding-left: 16px; }
  .sector, .value, .plan { padding: 24px 20px; }
  .qa { padding: 2px 18px; }
  .qa summary { font-size: 16.5px; }
  .inv__foot { flex-direction: column; align-items: flex-start; }
  .csh__band { flex-wrap: wrap; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
  .orbit svg { animation: none; }
  .cursor-ring { display: none; }
}


/* ============ Mock TPV Comandero (tarjeta de soluciones) ============
   Mismo lenguaje que los otros mocks: papel cálido, radio 18, datos falsos.
   La animación del chip «En cola → Impreso» es EL momento vendible (la comanda
   saliendo sola en cocina); con reduced-motion se queda en el estado final. */
.mock-tpv .tpv {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #fffdf7, #f8f0df);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 50px -30px rgba(33, 48, 58, 0.45);
}
.tpv__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 10px;
}
.tpv__head b { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.tpv__head span { font-size: 12.5px; color: var(--ink-soft); }
.tpv__ronda-cab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.tpv__ronda-cab > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tpv__estado {
  position: relative;
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.tpv__estado.is-fuera { color: #1d5c46; background: rgba(47, 158, 125, 0.16); }
.tpv__estado.is-cola { color: #7a5a14; background: rgba(217, 164, 65, 0.2); }
.tpv__estado.is-cola .tpv__despues {
  position: absolute;
  inset: 3px 10px;
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .tpv__estado.is-cola { animation: tpvFondo 6s ease-in-out infinite; }
  .tpv__estado.is-cola .tpv__antes { animation: tpvAntes 6s ease-in-out infinite; }
  .tpv__estado.is-cola .tpv__despues { animation: tpvDespues 6s ease-in-out infinite; }
}
@media (prefers-reduced-motion: reduce) {
  /* Sin animación se enseña el desenlace bueno: la comanda YA impresa. */
  .tpv__estado.is-cola { color: #1d5c46; background: rgba(47, 158, 125, 0.16); }
  .tpv__estado.is-cola .tpv__antes { visibility: hidden; }
  .tpv__estado.is-cola .tpv__despues { opacity: 1; }
}
@keyframes tpvFondo {
  0%, 42% { color: #7a5a14; background: rgba(217, 164, 65, 0.2); }
  50%, 100% { color: #1d5c46; background: rgba(47, 158, 125, 0.16); }
}
@keyframes tpvAntes { 0%, 42% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes tpvDespues { 0%, 42% { opacity: 0; } 50%, 100% { opacity: 1; } }
.tpv__ronda ul { list-style: none; display: grid; gap: 5px; }
.tpv__ronda li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
}
.tpv__ronda li span { color: var(--ink-soft); }
.tpv__ronda li b { font-variant-numeric: tabular-nums; font-weight: 600; }
.tpv__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.tpv__total span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tpv__total b {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.tpv__partes {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-soft);
}
.tpv__partes b { font-variant-numeric: tabular-nums; color: var(--ink); }
.tpv__partes-track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--sand-2);
  overflow: hidden;
}
.tpv__partes-track i {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #2f9e7d);
}
.tpv__ticket {
  align-self: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: 5px 12px;
}

/* ============ Franja «Y se hablan entre ellas» ============ */
.interop {
  margin-top: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(24px, 3.5vw, 40px);
}
.interop__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  margin-bottom: 18px;
}
.interop__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
.interop__list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-left: 3px solid var(--coral);
  padding-left: 14px;
}
.interop__list b { display: block; color: var(--ink); margin-bottom: 4px; }
@media (max-width: 860px) {
  .interop__list { grid-template-columns: 1fr; }
}

/* ============ Refuerzo bajo el botón del formulario ============ */
.form__refuerzo {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============ Impresión ============
   Lo único que alguien imprime de esto son los planes o la FAQ: texto oscuro
   sobre blanco y fuera todo el atrezzo. */
@media print {
  body { background: #fff; color: #000; }
  body::after,
  .cursor-ring,
  .scroll-progress,
  #bg3d,
  .nav,
  .orbit,
  .marquee,
  .wa-fab,
  .hero__visual,
  .card__visual,
  .footer__big { display: none !important; }
  .sea, .footer, .contact-panel { background: #fff !important; color: #000 !important; }
  a { text-decoration: underline; }
}
