/* ==========================================================================
   MOVA · ESTUDIO WEB — estilos
   ========================================================================== */
:root {
  --wine: #5A1A2B;
  --wine-2: #7D2E3E;
  --wine-3: #4A1522;
  --night: #2A0F16;
  --gold: #C9A36B;
  --gold-2: #D8B98A;
  --sand: #E9DCCB;
  --cream: #F7F1E8;
  --paper: #FFFCF7;
  --ink: #2B1D20;
  --ink-2: #5C4B4E;
  --line: #E4D6C4;
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.22, .8, .26, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --logo: "Bodoni Moda", "Didot", Georgia, serif;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font: 400 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, p, ul, ol, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--gold); color: var(--wine-3); }

.wrap { width: min(1180px, 100% - 64px); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 36px); } }

.ic { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ic--lg { width: 30px; height: 30px; }
.gold-ic { color: var(--gold); display: block; margin: 0 auto 26px; }

/* ---------- Tipografía ---------- */
.logo-word { font-family: var(--logo); font-style: italic; font-weight: 500; letter-spacing: -.01em; line-height: 1; }
.display { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -.012em; }
.display em { font-style: italic; color: var(--wine-2); }
.display em.gold, .gold { color: var(--gold); }
.display--xl { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
.display--lg { font-size: clamp(2.1rem, 4vw, 3.3rem); }
.display--md { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
.display--sm { font-size: clamp(1.6rem, 2.4vw, 2rem); line-height: 1.15; }
.dark { color: var(--ink); }
.eyebrow { font: 600 11px/1.4 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--wine-2); margin-bottom: 18px; }
.eyebrow--gold { color: var(--gold); }
.lead { font-size: 1.08rem; line-height: 1.7; color: var(--ink-2); max-width: 36rem; margin-top: 26px; }
.lead--light { color: rgba(247, 241, 232, .82); }
.muted { color: var(--ink-2); }
.tiny { font-size: .78rem; }
.crumbs { font-size: .8rem; color: var(--ink-2); margin-bottom: 28px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--wine-2); }
.linkish { text-decoration: underline; text-underline-offset: 3px; text-align: left; }
.linkish:hover { color: var(--gold); }

/* ---------- Botones ---------- */
.btn {
  --bg: transparent; --fg: var(--ink); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  font: 600 .92rem/1 var(--sans); text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .45s var(--ease), color .35s, border-color .35s, box-shadow .45s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--fill, var(--gold)); transform: translateY(101%); transition: transform .5s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(42, 15, 22, .45); }
.btn:active { transform: translateY(0) scale(.98); }
.btn .ic { transition: transform .45s var(--ease); }
.btn:hover .ic { transform: translateX(4px); }
.btn[disabled] { opacity: .45; pointer-events: none; }
.btn--cream { --bg: var(--cream); --fg: var(--wine-3); --fill: var(--gold); }
.btn--ghost-light { --fg: var(--cream); --bd: rgba(247, 241, 232, .5); --fill: var(--cream); }
.btn--ghost-light:hover { color: var(--wine-3); border-color: var(--cream); }
.btn--outline { --fg: var(--wine-3); --bd: var(--wine-2); --fill: var(--wine); background: transparent; }
.btn--outline:hover { color: var(--cream); }
.btn--wine { --bg: var(--wine); --fg: var(--cream); --fill: var(--wine-2); }
.btn--pill { --bg: var(--wine); --fg: var(--cream); --fill: var(--wine-2); min-height: 46px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn-row--center { justify-content: center; }
.btn-col { display: grid; gap: 12px; margin-top: 26px; }

/* ---------- Chips / etiquetas ---------- */
.chip { display: inline-block; padding: 6px 12px; border-radius: 999px; font: 700 10px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.chip--light { background: var(--paper); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.chip--gold { background: var(--gold); color: var(--wine-3); }
.chip--cream { background: rgba(247, 241, 232, .92); color: var(--wine-3); }
.ibox { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--sand); color: var(--wine); flex: none; }
.ibox--wine { background: var(--wine); color: var(--cream); }
.ibox--gold { background: var(--gold); color: var(--wine-3); }
.ibox--lg { width: 52px; height: 52px; }

/* ==========================================================================
   ENCABEZADO
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  transition: background .5s, box-shadow .5s, color .5s, transform .5s var(--ease);
  color: var(--ink);
}
.header__inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none; margin-right: auto; }
.brand .logo-word { font-size: 2rem; }
.brand__sub { font: 600 9.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.nav { display: flex; gap: 30px; }
.nav a { position: relative; white-space: nowrap; text-decoration: none; font-size: .88rem; font-weight: 500; padding: 8px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); transform-origin: left; }
.nav a.is-current { color: var(--wine-2); }
.header.is-scrolled { background: rgba(247, 241, 232, .88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.header.is-hidden { transform: translateY(-100%); }
/* Encabezado claro sobre fondo vino */
body[data-view="inicio"] .header:not(.is-scrolled),
body[data-view="mapa"] .header:not(.is-scrolled) { color: var(--cream); }
body[data-view="inicio"] .header:not(.is-scrolled) .header__cta,
body[data-view="mapa"] .header:not(.is-scrolled) .header__cta { --bg: var(--cream); --fg: var(--wine-3); --fill: var(--gold); }
body[data-view="inicio"] .header:not(.is-scrolled) .nav a.is-current { color: var(--gold); }
body[data-view="mapa"] .header.is-scrolled { background: rgba(74, 21, 34, .9); color: var(--cream); box-shadow: none; }
body[data-view="mapa"] .nav, body[data-view="mapa"] .header__cta { display: none; }

.burger { display: none; width: 50px; height: 50px; border-radius: 50%; border: 1px solid currentColor; position: relative; z-index: 60; }
.burger span { position: absolute; left: 15px; right: 15px; height: 1.5px; background: currentColor; transition: transform .5s var(--ease), top .5s var(--ease); }
.burger span:first-child { top: 20px; } .burger span:last-child { top: 28px; }
body.menu-open .burger span:first-child { top: 24px; transform: rotate(45deg); }
body.menu-open .burger span:last-child { top: 24px; transform: rotate(-45deg); }
body.menu-open .header { color: var(--cream); background: transparent; box-shadow: none; backdrop-filter: none; }

.mmenu {
  position: fixed; inset: 0; z-index: 45; background: radial-gradient(120% 80% at 50% 0%, #6a2234, var(--wine-3) 60%, var(--night));
  display: flex; flex-direction: column; justify-content: space-between; padding: 130px 22px 34px;
  clip-path: circle(0 at calc(100% - 50px) 42px); visibility: hidden;
  transition: clip-path .8s var(--ease-io), visibility 0s .8s;
}
body.menu-open .mmenu { clip-path: circle(150% at calc(100% - 50px) 42px); visibility: visible; transition: clip-path .8s var(--ease-io); }
.mmenu__nav { display: grid; justify-items: center; gap: 16px; }
.mmenu__nav a { font: 400 clamp(2rem, 8vw, 2.4rem)/1.1 var(--serif); color: var(--cream); text-decoration: none; opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .6s var(--ease), color .3s; }
.mmenu__nav a.is-current, .mmenu__nav a:hover { color: var(--gold); }
.mmenu__rule { width: 90px; height: 1px; background: rgba(247, 241, 232, .35); margin: 18px 0; transform: scaleX(0); transition: transform .8s var(--ease) .3s; }
body.menu-open .mmenu__rule { transform: scaleX(1); }
body.menu-open .mmenu__nav a { opacity: 1; transform: none; }
body.menu-open .mmenu__nav a:nth-of-type(1) { transition-delay: .18s; }
body.menu-open .mmenu__nav a:nth-of-type(2) { transition-delay: .24s; }
body.menu-open .mmenu__nav a:nth-of-type(3) { transition-delay: .30s; }
body.menu-open .mmenu__nav a:nth-of-type(4) { transition-delay: .36s; }
body.menu-open .mmenu__nav a:nth-of-type(5) { transition-delay: .42s; }
body.menu-open .mmenu__nav a:nth-of-type(6) { transition-delay: .48s; }
.mmenu__actions { display: grid; gap: 12px; opacity: 0; transform: translateY(20px); transition: opacity .5s .5s, transform .6s var(--ease) .5s; }
body.menu-open .mmenu__actions { opacity: 1; transform: none; }
body.menu-open { overflow: hidden; }

/* ==========================================================================
   VENTANAS + TRANSICIÓN
   ========================================================================== */
html.js .view { display: none; }
html.js .view.is-active { display: block; }
.view { padding-top: var(--header-h); }
.view[data-view="inicio"], .view--bare { padding-top: 0; }

.curtain { position: fixed; inset: 0; z-index: 100; pointer-events: none; display: grid; place-items: center; }
.curtain__panel { position: absolute; inset: 0; background: var(--wine); transform: translateY(100%); border-radius: 50% 50% 0 0 / 12% 12% 0 0; }
.curtain__brand { position: relative; display: grid; justify-items: center; gap: 12px; color: var(--cream); opacity: 0; transform: translateY(20px); }
.curtain__brand .logo-word { font-size: clamp(3.4rem, 9vw, 5.6rem); }
.curtain__sub { font: 600 10px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.curtain.is-in { pointer-events: all; }
.curtain.is-in .curtain__panel { transform: translateY(0); border-radius: 0; transition: transform .62s var(--ease-io), border-radius .62s var(--ease-io); }
.curtain.is-in .curtain__brand { opacity: 1; transform: none; transition: opacity .4s .25s, transform .6s var(--ease) .2s; }
.curtain.is-out .curtain__panel { transform: translateY(-100%); border-radius: 0 0 50% 50% / 0 0 12% 12%; transition: transform .75s var(--ease-io), border-radius .75s var(--ease-io); }
.curtain.is-out .curtain__brand { opacity: 0; transform: translateY(-24px); transition: opacity .3s, transform .5s var(--ease); }
/* Pantalla de bienvenida (con red de seguridad CSS) */
.curtain.is-splash .curtain__panel { transform: none; border-radius: 0; animation: splashOut .9s var(--ease-io) 1.35s forwards; }
.curtain.is-splash .curtain__brand { opacity: 1; transform: none; animation: splashBrand 1.35s var(--ease) both; }
@keyframes splashBrand {
  0% { opacity: 0; transform: translateY(24px); letter-spacing: .08em; }
  45%, 80% { opacity: 1; transform: none; letter-spacing: 0; }
  100% { opacity: 0; transform: translateY(-16px); }
}
@keyframes splashOut { to { transform: translateY(-100%); border-radius: 0 0 50% 50% / 0 0 14% 14%; } }
html:not(.js) .curtain { display: none; }

/* Revelado al hacer scroll */
html.js .rv { opacity: 0; transform: translateY(30px); }
html.js .rv.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
/* Titulares palabra por palabra (seguro: visible si JS no corre) */
[data-split] { opacity: 1; transform: none; }
[data-split] .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
[data-split] .w > span { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease); transition-delay: calc(var(--i) * 38ms + 80ms); }
[data-split].in .w > span { transform: none; }

/* ==========================================================================
   INICIO
   ========================================================================== */
.hero {
  background:
    radial-gradient(60% 70% at 85% 30%, rgba(125, 46, 62, .55), transparent 70%),
    radial-gradient(40% 50% at 0% 100%, rgba(42, 15, 22, .5), transparent 70%),
    var(--wine);
  color: var(--cream); padding: calc(var(--header-h) + 60px) 0 70px; overflow: hidden; position: relative;
}
.hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(247,241,232,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(247,241,232,.035) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(90deg, transparent, #000 60%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero__facts { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 48px; margin-top: 46px; padding-top: 28px; border-top: 1px solid rgba(247, 241, 232, .18); }
.hero__facts strong { display: block; font: 400 1.9rem/1.1 var(--serif); color: var(--gold); }
.hero__facts span { font-size: .78rem; color: rgba(247, 241, 232, .7); }

/* Ilustración del hero */
.art { position: relative; aspect-ratio: 1 / 1.02; border-radius: 26px; background: var(--wine-3); overflow: hidden;
  background-image: linear-gradient(rgba(247,241,232,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(247,241,232,.05) 1px, transparent 1px); background-size: 28px 28px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6), inset 0 0 0 1px rgba(247,241,232,.08); }
.art__curve { position: absolute; left: 4%; top: 2%; width: 62%; height: 18%; overflow: visible; }
.art__curve path { fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-dasharray: 520; stroke-dashoffset: 520; animation: draw 2.4s var(--ease) 1.6s forwards; }
.art__curve circle { fill: var(--gold); }
@keyframes draw { to { stroke-dashoffset: 0; } }
.art__browser { position: absolute; left: 5%; top: 14%; width: 74%; background: var(--sand); border-radius: 14px; padding: 12px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.art__bar { display: flex; align-items: center; gap: 8px; padding: 2px 4px 10px; }
.art__bar span { font: 600 .82rem var(--serif); color: var(--wine-3); margin-right: auto; }
.art__bar i { width: 18px; height: 4px; border-radius: 4px; background: #CDB79C; }
.art__hero { background: var(--wine); border-radius: 10px; padding: 18px 16px 16px; }
.art__select { position: relative; display: inline-block; border: 1.5px dashed var(--gold); padding: 6px 10px; color: var(--cream); font: 400 clamp(.95rem, 1.6vw, 1.35rem)/1.1 var(--serif); }
.art__select em { display: block; color: var(--gold); font-style: italic; }
.art__select b { position: absolute; width: 7px; height: 7px; background: var(--cream); border: 1px solid var(--gold); }
.art__select b:nth-of-type(1) { left: -4px; top: -4px; } .art__select b:nth-of-type(2) { right: -4px; top: -4px; }
.art__select b:nth-of-type(3) { left: -4px; bottom: -4px; } .art__select b:nth-of-type(4) { right: -4px; bottom: -4px; }
.art__btn { width: 42%; height: 12px; border-radius: 10px; background: var(--cream); margin-top: 14px; box-shadow: inset 0 0 0 3px var(--cream), inset 0 0 0 6px var(--wine-2); }
.art__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.art__cards div { height: 58px; border-radius: 8px; background: #DDCCB5; position: relative; }
.art__cards div::before { content: ""; position: absolute; left: 10px; top: 10px; width: 14px; height: 14px; border-radius: 4px; background: var(--wine); }
.art__cards div::after { content: ""; position: absolute; left: 10px; right: 14px; bottom: 12px; height: 12px; background: linear-gradient(#8a6b5c 0 3px, transparent 3px 7px, #B8875A 7px 10px, transparent 0); border-radius: 2px; }
.art__cursor { position: absolute; width: 22px; height: 22px; right: 16%; bottom: 20%; fill: var(--cream); stroke: var(--wine-3); stroke-width: 1.5; animation: cursor 6s var(--ease-io) infinite; }
@keyframes cursor { 0%, 100% { transform: translate(0, 0); } 30% { transform: translate(-120px, -70px); } 45% { transform: translate(-120px, -70px) scale(.85); } 55% { transform: translate(-120px, -70px); } 80% { transform: translate(-40px, 10px); } }
.art__palette { position: absolute; right: 4%; top: 4%; background: var(--sand); border-radius: 10px; padding: 8px; width: 26%; }
.art__palette div { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.art__palette i { height: 26px; border-radius: 3px; }
.art__palette small, .art__type small { display: block; font: 600 6.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--wine-3); margin-top: 7px; }
.art__type { position: absolute; right: 4%; top: 20%; width: 26%; border: 1px solid rgba(247,241,232,.4); background: var(--wine); border-radius: 10px; padding: 10px; color: var(--cream); }
.art__type span { font: 400 2rem/1 var(--serif); } .art__type em { font: italic .8rem var(--serif); color: var(--gold); margin-left: 6px; }
.art__type small { color: rgba(247,241,232,.7); border-top: 1px solid rgba(247,241,232,.3); padding-top: 5px; }
.art__chips { position: absolute; right: 4%; top: 38%; width: 17%; display: grid; gap: 7px; }
.art__chips li { background: var(--sand); border-radius: 5px; padding: 6px 7px; font: 500 7px/1 var(--sans); color: var(--wine-3); }
.art__chips li.c2 { background: var(--wine-2); color: var(--cream); } .art__chips li.c3 { background: var(--gold); }
.art__spec { position: absolute; right: 3%; bottom: 3%; width: 22%; background: var(--sand); border-radius: 8px; padding: 10px; transform: rotate(4deg); color: var(--wine-3); }
.art__spec b { font: 400 2.8rem/1 var(--serif); color: var(--wine); display: block; }
.art__spec span { font: .6rem/1.2 var(--serif); position: absolute; right: 10px; top: 12px; text-align: right; }
.art__spec small { font-size: .55rem; letter-spacing: .2em; }
.art__glass { position: absolute; left: 4%; bottom: 4%; width: 52%; padding: 16px; border-radius: 14px; text-decoration: none; color: var(--cream);
  background: rgba(247, 241, 232, .14); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(247, 241, 232, .25);
  transition: background .4s, transform .5s var(--ease); z-index: 2; }
.art__glass:hover { background: rgba(247, 241, 232, .24); }
.art__glass small { font: 600 8.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.art__glass strong { display: block; font: 400 1.2rem/1.2 var(--serif); margin: 6px 0; }
.art__glass span { font-size: .72rem; opacity: .8; }
.float-a { animation: floatA 7s ease-in-out infinite; }
.float-b { animation: floatB 8s ease-in-out infinite; }
.float-c { animation: floatC 9s ease-in-out infinite; }
.art__spec.float-c { animation-name: floatSpec; }
@keyframes floatA { 50% { transform: translateY(-10px); } }
@keyframes floatB { 50% { transform: translateY(8px); } }
@keyframes floatC { 50% { transform: translate(-6px, -8px); } }
@keyframes floatSpec { 0%, 100% { transform: rotate(4deg); } 50% { transform: rotate(2deg) translateY(-8px); } }

/* Cita */
.quote { text-align: center; padding: 110px 0 60px; max-width: 900px; }
.quote__text { font: 400 clamp(1.7rem, 3.4vw, 2.6rem)/1.3 var(--serif); color: var(--ink); }
.quote__text em { color: var(--wine-2); font-style: italic; }
.quote .muted { margin-top: 24px; font-size: .9rem; }

/* Secciones */
.section { padding: 90px 0; }
.section--tight { padding-top: 30px; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; }
.sec-head > div { max-width: 640px; }
.sec-head--end { align-items: flex-end; }
.sec-head__note { max-width: 300px; color: var(--ink-2); font-size: .92rem; }
.sec-head__note a { color: var(--wine-2); }

.benefits { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.benefit { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px 26px; transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .4s; }
.benefit h3 { font: 400 1.45rem/1.15 var(--serif); margin: 22px 0 12px; }
.benefit p { font-size: .88rem; color: var(--ink-2); }
.benefit .ibox { transition: background .4s, color .4s, transform .6s var(--ease); }
.benefit:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -30px rgba(90, 26, 43, .45); border-color: var(--gold-2); }
.benefit:hover .ibox { background: var(--wine); color: var(--cream); transform: rotate(-8deg); }

/* Comparador */
.imagine { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.imagine__copy p:not(.eyebrow) { margin-top: 22px; color: var(--ink-2); }
.compare { position: relative; border-radius: var(--radius); overflow: hidden; background: #ECE5DB; min-height: 330px; user-select: none; --pos: 50%; touch-action: pan-y; }
.compare__side { position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.compare__side p { font-size: .82rem; }
.compare__before { color: var(--ink-2); }
.compare__before > * { width: calc(50% - 48px); }
.compare__after { background: var(--wine); color: rgba(247,241,232,.8); clip-path: inset(0 0 0 var(--pos)); padding-left: calc(50% + 24px); }
.compare__side .chip { align-self: flex-start; width: auto; }
.oldweb { background: #fff; border-radius: 6px; padding: 12px; box-shadow: 0 1px 0 #d8d0c4; flex: 1; }
.oldweb__bar { display: flex; gap: 6px; margin-bottom: 10px; } .oldweb__bar i { height: 6px; flex: 1; background: #D8D2CA; } .oldweb__bar i:first-child { flex: 3; background: #C3BAB0; }
.oldweb__img { height: 45%; background: #D8D2CA; }
.oldweb__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.oldweb__cols i { display: block; height: 5px; background: #DDD7CF; margin-bottom: 7px; }
.newweb { background: var(--sand); border-radius: 10px; padding: 8px; flex: 1; display: flex; flex-direction: column; gap: 8px; width: 100%; }
.newweb__hero { flex: 1; min-height: 120px; border-radius: 6px; background-size: cover; background-position: center; position: relative; padding: 16px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 10px; }
.newweb__hero::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, rgba(74,21,34,.8), rgba(74,21,34,.25)); }
.newweb__hero > * { position: relative; }
.newweb__hero strong { font: 400 1.3rem/1.1 var(--serif); color: var(--cream); max-width: 12ch; }
.newweb__btn { background: var(--cream); color: var(--wine-3); font: 700 .62rem/1 var(--sans); padding: 7px 11px; border-radius: 999px; animation: pulseBtn 2.8s ease-in-out infinite; }
@keyframes pulseBtn { 50% { box-shadow: 0 0 0 6px rgba(201, 163, 107, .35); } }
.newweb__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; } .newweb__cards i { height: 34px; background: #DCCBB4; border-radius: 5px; }
.compare__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 0; display: grid; place-items: center; pointer-events: none; z-index: 2; }
.compare__handle::before { content: ""; position: absolute; top: 0; bottom: 0; width: 2px; background: var(--cream); left: -1px; }
.compare__handle { grid-auto-flow: column; }
.compare__handle .ic { position: relative; width: 14px; height: 14px; color: var(--wine-3); }
.compare__handle::after { content: ""; position: absolute; width: 44px; height: 44px; border-radius: 50%; background: var(--paper); box-shadow: 0 8px 20px rgba(0,0,0,.25); left: -22px; top: calc(50% - 22px); z-index: -1; transition: transform .3s var(--ease); }
.compare:hover .compare__handle::after, .compare.is-drag .compare__handle::after { transform: scale(1.12); }
.compare__handle .ic:first-of-type { left: -7px; } .compare__handle .ic:last-of-type { left: -7px; }
.compare__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; z-index: 3; }
.compare.is-anim .compare__after, .compare.is-anim .compare__handle { transition: clip-path .9s var(--ease-io), left .9s var(--ease-io); }

/* Pasos */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step__top { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.num { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--wine); color: var(--cream); font: 400 1.05rem/1 var(--serif); flex: none; }
.step__line { flex: 1; height: 1px; background: var(--wine-2); opacity: .5; transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease) .4s; }
.step.in .step__line { transform: scaleX(1); }
.step h3 { font: 400 1.5rem/1.15 var(--serif); margin-bottom: 12px; }
.step p { font-size: .88rem; color: var(--ink-2); margin-bottom: 16px; }
.pill-time { display: inline-flex; align-items: center; gap: 8px; background: var(--sand); border-radius: 999px; padding: 7px 14px; font-size: .75rem; font-weight: 600; }
.pill-time .ic { width: 14px; height: 14px; }

/* CTA */
.cta-wrap { padding-bottom: 90px; }
.cta-wrap--pull { margin-top: -1px; padding-top: 90px; }
.cta { position: relative; overflow: hidden; border-radius: 28px; background: linear-gradient(160deg, var(--wine) 0%, var(--wine-3) 100%); color: var(--cream); text-align: center; padding: 80px 32px 88px; isolation: isolate; }
.cta h2 { max-width: 760px; margin-inline: auto; }
.cta__deco { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(247,241,232,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(247,241,232,.035) 1px, transparent 1px); background-size: 40px 40px; }
.cta__deco > i { position: absolute; top: 34px; width: 40px; height: 40px; border-radius: 8px; background: rgba(247,241,232,.18); animation: floatB 7s ease-in-out infinite; }
.cta__deco > i:nth-child(1) { left: 6%; } .cta__deco > i:nth-child(2) { left: calc(6% + 52px); background: rgba(201,163,107,.28); animation-delay: -1s; }
.cta__deco > i:nth-child(3) { left: calc(6% + 104px); animation-delay: -2s; } .cta__deco > i:nth-child(4) { left: calc(6% + 156px); background: rgba(42,15,22,.3); animation-delay: -3s; }
.cta__deco svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta__deco path { fill: none; stroke: rgba(201,163,107,.45); stroke-width: 1.4; stroke-dasharray: 1400; stroke-dashoffset: 1400; transition: stroke-dashoffset 2.6s var(--ease) .3s; }
.cta.in .cta__deco path { stroke-dashoffset: 0; }
.cta__deco circle { fill: rgba(201,163,107,.6); }
.cta__deco b { position: absolute; right: 5%; bottom: -30px; font: 400 9rem/1 var(--serif); color: rgba(247,241,232,.06); }
.cta__frame { position: absolute; right: 5%; top: 34px; width: 150px; height: 100px; border: 1px solid rgba(247,241,232,.14); border-radius: 10px; background: linear-gradient(rgba(247,241,232,.07) 0 0) 12px 12px / calc(100% - 24px) 26px no-repeat, linear-gradient(rgba(247,241,232,.07) 0 0) 12px 50px / 60% 20px no-repeat; }
.cta--photo { background: linear-gradient(160deg, rgba(90,26,43,.9), rgba(42,15,22,.92)), var(--bg) center / cover; }

/* ==========================================================================
   PÁGINAS INTERNAS
   ========================================================================== */
.page-hero { padding: 70px 0 60px; }
.page-hero .display { max-width: 900px; }
.page-hero--split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }

/* Nosotros */
.about-art { position: relative; aspect-ratio: 1.32; border-radius: 26px; background: var(--wine); overflow: hidden;
  background-image: linear-gradient(rgba(247,241,232,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(247,241,232,.06) 1px, transparent 1px); background-size: 26px 26px; }
.about-art__ring { position: absolute; left: 50%; top: 50%; width: 76%; aspect-ratio: 1; translate: -50% -50%; border: 1.5px dashed rgba(201,163,107,.45); border-radius: 50%; animation: spin 40s linear infinite; }
@keyframes spin { to { rotate: 360deg; } }
.spark { position: absolute; color: var(--gold); animation: twinkle 3s ease-in-out infinite; }
.spark.s1 { left: 16%; top: 18%; font-size: 1.6rem; } .spark.s2 { left: 10%; top: 48%; font-size: .9rem; animation-delay: -1s; } .spark.s3 { right: 14%; top: 70%; color: var(--cream); animation-delay: -2s; }
@keyframes twinkle { 50% { opacity: .3; transform: scale(.7) rotate(20deg); } }
.laptop { position: absolute; left: 22%; top: 24%; width: 56%; }
.laptop__screen { background: var(--night); border-radius: 10px 10px 0 0; padding: 8px; }
.laptop__screen > * { background: var(--sand); }
.laptop__dots { display: flex; gap: 4px; padding: 6px 8px; border-radius: 6px 6px 0 0; } .laptop__dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--wine); }
.laptop__hero { margin: 0 8px; background: var(--wine); color: var(--cream); padding: 12px; border-radius: 6px; font: 400 clamp(.8rem, 1.3vw, 1.05rem)/1.2 var(--serif); }
.laptop__hero strong { display: block; font-weight: 400; } .laptop__hero em { color: var(--gold); }
.laptop__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 8px; border-radius: 0 0 6px 6px; }
.laptop__cards i { height: 22px; background: #DCCBB4; border-radius: 4px; }
.laptop__base { height: 12px; margin: 0 -8%; background: var(--sand); border-radius: 0 0 14px 14px; }
.bubble { position: absolute; font: 600 clamp(.58rem, .9vw, .7rem)/1.3 var(--sans); padding: 10px 12px; border-radius: 12px; max-width: 28%; color: var(--wine-3); }
.bubble--cream { background: var(--paper); right: 7%; top: 14%; }
.bubble--gold { background: var(--gold); left: 7%; bottom: 12%; }
.bubble::after { content: ""; position: absolute; width: 12px; height: 12px; background: inherit; bottom: -5px; transform: rotate(45deg); }
.bubble--cream::after { left: 18px; } .bubble--gold::after { right: 18px; }

.promises { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.promises__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.promise { border-top: 1px solid var(--line); padding: 22px 0 28px; }
.promise h3 { display: flex; align-items: center; gap: 12px; font: 400 1.45rem/1.2 var(--serif); }
.promise h3 .ic { color: var(--wine-2); }
.promise p { font-size: .86rem; color: var(--ink-2); margin: 6px 0 0 30px; }

.band { padding: 100px 0; }
.band--wine { background: var(--wine); color: var(--cream); }
.band--night { background: var(--night); color: var(--cream); }
.talk { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.talk__head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; font: 600 10px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: rgba(247,241,232,.6); padding-bottom: 14px; border-bottom: 1px solid rgba(247,241,232,.2); }
.talk__row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; padding: 20px 0; border-bottom: 1px solid rgba(247,241,232,.14); align-items: baseline; }
.talk__row s { font-size: .86rem; color: rgba(247,241,232,.55); text-decoration: none; background: linear-gradient(currentColor, currentColor) 0 55% / 0 1px no-repeat; transition: background-size .8s var(--ease) .5s; }
.talk__row.in s { background-size: 100% 1px; }
.talk__row p { font: 400 1.3rem/1.3 var(--serif); }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.role__card { position: relative; aspect-ratio: 1.4; border-radius: var(--radius); background: var(--wine); color: var(--cream); display: grid; place-items: center; transition: transform .6s var(--ease), background .5s; overflow: hidden; }
.role__card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at var(--mx, 50%) var(--my, 50%), rgba(201,163,107,.28), transparent 70%); opacity: 0; transition: opacity .4s; }
.role:hover .role__card { transform: translateY(-6px); background: var(--wine-2); }
.role:hover .role__card::after { opacity: 1; }
.role__card .ic { width: 50px; height: 50px; stroke-width: 1.3; transition: transform .6s var(--ease); }
.role:hover .role__card .ic { transform: scale(1.12); }
.role__n { position: absolute; left: 20px; top: 16px; font: 400 1.3rem var(--serif); color: var(--gold); }
.role h3 { font: 400 1.45rem/1.2 var(--serif); margin: 18px 0 8px; }
.role p { font-size: .86rem; color: var(--ink-2); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; }
.stat { border-left: 1px solid rgba(247,241,232,.18); padding: 12px 30px; }
.stat strong { display: block; font: 400 clamp(3rem, 5vw, 4.2rem)/1 var(--serif); color: var(--gold); margin-bottom: 18px; font-variant-numeric: tabular-nums; }
.stat p { font-size: .9rem; color: rgba(247,241,232,.85); }
.stat small { display: block; margin-top: 14px; font: 600 9.5px/1.3 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: rgba(247,241,232,.5); }

/* Lo que mejoramos */
.improvements { display: grid; gap: 14px; }
.imp { display: grid; grid-template-columns: 90px 44px 1fr auto; gap: 26px; align-items: center; padding: 26px 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.imp--alt { background: var(--sand); border-color: transparent; }
.imp:hover { transform: translateX(8px); box-shadow: -8px 0 0 var(--gold), 0 20px 40px -30px rgba(90,26,43,.5); }
.imp__n { font: 400 2.6rem/1 var(--serif); color: #B8875A; }
.imp h3 { font: 400 1.6rem/1.15 var(--serif); margin-bottom: 6px; }
.imp p { font-size: .88rem; color: var(--ink-2); max-width: 30rem; }
.tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; max-width: 290px; }
.tags li { background: var(--cream); border-radius: 999px; padding: 6px 12px; font-size: .72rem; display: inline-flex; gap: 6px; }
.imp--alt .tags li { background: var(--paper); }
.tags li::before { content: "✓"; color: var(--wine-2); font-size: .7rem; }

.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 30px; }
.tab { padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(247,241,232,.4); color: var(--cream); font-size: .82rem; font-weight: 500; transition: background .35s, color .35s, border-color .35s, transform .35s var(--ease); }
.tab:hover { border-color: var(--cream); transform: translateY(-2px); }
.tab.is-on { background: var(--cream); color: var(--wine-3); border-color: var(--cream); }
.tabs--light .tab { border-color: rgba(125,46,62,.35); color: var(--ink); }
.tabs--light .tab:hover { border-color: var(--wine-2); }
.tabs--light .tab.is-on { background: var(--wine); color: var(--cream); border-color: var(--wine); }

.sector { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sector[hidden] { display: none; }
.sector__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1.45; }
.sector__img img { width: 100%; height: 100%; object-fit: cover; }
.sector.is-on .sector__img img { animation: kenIn 1.3s var(--ease) both; }
.sector.is-on .sector__body > * { animation: fadeUp .8s var(--ease) both; }
.sector.is-on .sector__body > *:nth-child(2) { animation-delay: .08s; } .sector.is-on .sector__body > *:nth-child(3) { animation-delay: .16s; }
.sector.is-on .sector__body > *:nth-child(4) { animation-delay: .24s; } .sector.is-on .sector__body > *:nth-child(5) { animation-delay: .32s; }
@keyframes kenIn { from { transform: scale(1.12); clip-path: inset(0 0 0 100% round 22px); } to { transform: scale(1); clip-path: inset(0 0 0 0 round 22px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.sector blockquote { font: italic 400 clamp(1.4rem, 2.3vw, 1.9rem)/1.3 var(--serif); padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid rgba(247,241,232,.2); }
.tools { counter-reset: t; display: grid; gap: 12px; margin-bottom: 28px; }
.tools li { counter-increment: t; display: flex; gap: 14px; font-size: .92rem; }
.tools li::before { content: counter(t); font: 400 1.2rem/1 var(--serif); color: var(--gold); min-width: 12px; }

/* Proceso */
.timeline { position: relative; display: grid; gap: 46px; margin: 20px 0 80px; }
.timeline::before { content: ""; position: absolute; left: 29px; top: 30px; bottom: 30px; width: 2px; background: var(--sand); }
.timeline::after { content: ""; position: absolute; left: 29px; top: 30px; width: 2px; height: calc((100% - 60px) * var(--prog, 0)); background: var(--gold); transition: height .2s linear; }
.tl { display: grid; grid-template-columns: 60px 1fr 180px; gap: 30px; align-items: center; position: relative; z-index: 1; }
.tl__dot { width: 60px; height: 60px; border-radius: 50%; background: var(--wine); color: var(--cream); display: grid; place-items: center; font: 400 1.3rem var(--serif); box-shadow: 0 0 0 8px var(--cream); transition: transform .6s var(--ease), background .4s; }
.tl:hover .tl__dot { transform: scale(1.08); background: var(--wine-2); }
.tl__body small { font: 700 10px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--wine-2); }
.tl__body h3 { font: 400 2rem/1.1 var(--serif); margin: 8px 0 6px; }
.tl__body p { color: var(--ink-2); font-size: .92rem; max-width: 34rem; }
.tl__time { background: var(--sand); border-radius: var(--radius-sm); padding: 16px 18px; transition: transform .5s var(--ease), background .4s; }
.tl:hover .tl__time { transform: translateY(-4px); background: #E3D2BC; }
.tl__time small { font-size: .72rem; color: var(--ink-2); }
.tl__time strong { display: block; font: 400 1.5rem/1.15 var(--serif); }

.payments { background: var(--paper); border: 1px solid var(--line); border-radius: 28px; padding: 44px 48px 48px; }
.payments__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 30px; }
.payments__head > p { max-width: 280px; font-size: .88rem; color: var(--ink-2); }
.paybar { display: flex; border-radius: 16px; overflow: hidden; min-height: 104px; }
.paybar__seg { flex: 0 0 0%; padding: 22px 20px; color: var(--cream); overflow: hidden; white-space: nowrap; transition: flex-basis 1.2s var(--ease-io); }
.payments.in .paybar__seg { flex-basis: calc(var(--w) * 1%); }
.payments.in .paybar__seg:nth-child(2) { transition-delay: .2s; } .payments.in .paybar__seg:nth-child(3) { transition-delay: .4s; }
.paybar__seg:nth-child(1) { background: var(--wine); } .paybar__seg:nth-child(2) { background: var(--wine-2); } .paybar__seg:nth-child(3) { background: #C9A36B; color: var(--wine-3); }
.paybar__seg strong { display: block; font: 400 2rem/1 var(--serif); margin-bottom: 8px; }
.paybar__seg span { font-size: .78rem; }

/* Planes */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 24px; align-items: center; }
.plan { background: var(--paper); border: 1px solid var(--line); border-radius: 26px; padding: 44px 32px 34px; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.plan:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -36px rgba(90,26,43,.5); }
.plan--featured { background: var(--wine); color: var(--cream); border-color: var(--wine); padding-block: 30px 44px; }
.plan h3 { font: 400 2rem/1.1 var(--serif); margin: 16px 0 12px; }
.plan__desc { font-size: .86rem; color: var(--ink-2); padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.plan--featured .plan__desc { color: rgba(247,241,232,.75); border-color: rgba(247,241,232,.2); }
.plan__price { padding: 18px 0; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.plan--featured .plan__price { border-color: rgba(247,241,232,.2); }
.plan__price small, .plan__price span { font-size: .74rem; color: var(--ink-2); display: block; }
.plan--featured .plan__price small, .plan--featured .plan__price span { color: rgba(247,241,232,.7); }
.plan__price strong { display: block; font: 400 2.6rem/1.1 var(--serif); color: var(--wine); margin: 6px 0 2px; }
.plan--featured .plan__price strong { color: var(--gold); }
.checks { display: grid; gap: 12px; margin-bottom: 28px; }
.checks li { position: relative; padding-left: 26px; font-size: .88rem; }
.checks li::before { content: ""; position: absolute; left: 2px; top: 5px; width: 10px; height: 6px; border-left: 1.6px solid var(--wine-2); border-bottom: 1.6px solid var(--wine-2); transform: rotate(-45deg); }
.plan--featured .checks li::before { border-color: var(--gold); }

.support { display: flex; align-items: center; gap: 22px; background: var(--sand); border-radius: var(--radius); padding: 26px 30px; margin-top: 50px; }
.support h3 { font: 400 1.7rem/1.15 var(--serif); }
.support p { font-size: .86rem; color: var(--ink-2); }
.support__tag { margin-left: auto; text-align: right; }
.support__tag strong { display: block; font: 400 2.2rem/1 var(--serif); color: var(--wine); }
.support__tag small { font-size: .72rem; color: var(--ink-2); }
.promo { display: flex; align-items: center; gap: 16px; border: 1.5px dashed #C9B196; border-radius: var(--radius); padding: 22px 28px; margin-top: 24px; font-size: .94rem; }
.promo .ic { color: var(--wine); width: 22px; height: 22px; }
.promo strong { color: var(--wine); }

.compare-plans { display: grid; grid-template-columns: 1.55fr 1fr; gap: 30px; margin-top: 60px; align-items: start; }
.ctable { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; }
.ctable table { width: 100%; border-collapse: collapse; font-size: .82rem; min-width: 480px; }
.ctable th { text-align: left; font: 700 10px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--wine-2); padding: 20px 16px; border-bottom: 1px solid var(--line); }
.ctable td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-2); }
.ctable td:first-child { color: var(--ink); width: 36%; }
.ctable td:last-child { color: var(--wine); font-weight: 600; }
.ctable tr:last-child td { border-bottom: 0; }
.ctable tbody tr { transition: background .3s; }
.ctable tbody tr:hover { background: #F8F0E4; }
.yes { color: var(--wine-2); }

.calc { position: sticky; top: calc(var(--header-h) + 20px); background: var(--night); color: var(--cream); border-radius: var(--radius); padding: 30px 26px; }
.calc h3 { margin-bottom: 26px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; font-size: .78rem; font-weight: 600; }
.field input, .field select { width: 100%; height: 50px; border-radius: 12px; border: 1px solid var(--line); background: #fff; padding: 0 14px; font: 500 .95rem var(--sans); color: var(--ink); transition: border-color .3s, box-shadow .3s; }
.field input:focus, .field select:focus { outline: 0; border-color: var(--wine-2); box-shadow: 0 0 0 4px rgba(125,46,62,.14); }
.field--dark { font-weight: 500; color: rgba(247,241,232,.7); }
.field--dark input, .field--dark select { background: rgba(247,241,232,.08); border-color: rgba(247,241,232,.2); color: var(--cream); }
.field--dark select option { color: var(--ink); }
.field--dark input:focus, .field--dark select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,163,107,.18); }
.field__err { display: none; font-style: normal; font-weight: 500; font-size: .74rem; color: #A1283F; }
.field.is-bad input { border-color: #A1283F; animation: shake .4s; }
.field.is-bad .field__err { display: block; }
@keyframes shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.toggle { display: flex; align-items: center; gap: 12px; font-size: .82rem; color: rgba(247,241,232,.8); cursor: pointer; }
.toggle input { position: absolute; opacity: 0; }
.toggle__ui { width: 40px; height: 22px; border-radius: 999px; background: rgba(247,241,232,.2); position: relative; transition: background .3s; flex: none; }
.toggle__ui::after { content: ""; position: absolute; left: 3px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--cream); transition: transform .4s var(--ease); }
.toggle input:checked + .toggle__ui { background: var(--gold); }
.toggle input:checked + .toggle__ui::after { transform: translateX(18px); }
.toggle input:focus-visible + .toggle__ui { outline: 2px solid var(--gold); outline-offset: 2px; }
.calc__result { display: flex; align-items: baseline; gap: 14px; border-top: 1px solid rgba(247,241,232,.18); margin-top: 22px; padding-top: 22px; }
.calc__result strong { font: 400 4rem/1 var(--serif); color: var(--gold); display: inline-block; }
.calc__result strong.bump { animation: bump .5s var(--ease); }
@keyframes bump { 40% { transform: translateY(-8px) scale(1.12); } }
.calc__result p { font-size: .9rem; }
.calc__note { font-size: .78rem; color: rgba(247,241,232,.6); margin: 10px 0 22px; min-height: 1.2em; }

/* Ideas */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 18px; }
.idea { text-align: left; display: grid; gap: 12px; transition: opacity .5s, transform .6s var(--ease); }
.idea--wide { grid-column: span 2; }
.idea__img { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: .82; }
.idea--wide .idea__img { aspect-ratio: auto; height: 100%; min-height: 0; }
.idea__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; }
.idea__img .chip { position: absolute; left: 14px; top: 14px; }
.idea__img::after { content: "Ver concepto"; position: absolute; inset: auto 14px 14px auto; background: var(--cream); color: var(--wine-3); font: 600 .75rem/1 var(--sans); padding: 10px 14px; border-radius: 999px; opacity: 0; transform: translateY(10px); transition: opacity .4s, transform .5s var(--ease); }
.idea:hover .idea__img img { transform: scale(1.07); filter: saturate(1.1); }
.idea:hover .idea__img::after { opacity: 1; transform: none; }
.idea__cap { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; font: 400 1.35rem/1.2 var(--serif); }
.idea__cap .ic { width: 16px; margin-top: 6px; transition: transform .45s var(--ease); }
.idea:hover .idea__cap .ic { transform: translateX(5px); }
.idea.is-out { display: none; }
.idea.is-pop { animation: popIn .6s var(--ease) both; }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(.97); } }
.gallery.is-filtered .idea { grid-column: auto; }
.gallery.is-filtered .idea .idea__img { aspect-ratio: 1.1; height: auto; }

/* Hablemos */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ccard { border-radius: var(--radius); padding: 30px; background: var(--paper); border: 1px solid var(--line); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.ccard:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -34px rgba(90,26,43,.55); }
.ccard--wine { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.ccard h3 { font: 400 2rem/1.1 var(--serif); margin: 22px 0 10px; }
.ccard p { font-size: .88rem; margin-bottom: 24px; opacity: .85; }
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; margin-top: 90px; }
.faq-wrap .muted { margin-top: 18px; font-size: .9rem; }
.faq-wrap .muted a { color: var(--wine-2); }
.faq { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; font: 400 1.45rem/1.25 var(--serif); transition: color .3s; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover, .qa[open] summary { color: var(--wine-2); }
.qa__ic { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--wine-2); display: grid; place-items: center; flex: none; transition: transform .5s var(--ease), background .3s, color .3s; color: var(--wine-2); }
.qa__ic .ic { width: 16px; }
.qa[open] .qa__ic { transform: rotate(135deg); background: var(--wine); color: var(--cream); }
.qa__a { overflow: hidden; }
.qa__a p { padding-bottom: 24px; font-size: .9rem; color: var(--ink-2); max-width: 44rem; }
.qa__a a { color: var(--wine-2); font-weight: 600; }

/* Mapa de ideas */
.mapa { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 100vh; min-height: 100svh; background: var(--wine); }
.mapa__left { position: relative; color: var(--cream); padding: calc(var(--header-h) + 50px) 6% 60px max(32px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.mapa__left::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--bg) center / cover; animation: slowZoom 20s ease-in-out infinite alternate; }
.mapa__left::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(90,26,43,.9), rgba(74,21,34,.78)); }
@keyframes slowZoom { to { transform: scale(1.12); } }
.mapa__list { display: grid; gap: 22px; margin-top: 40px; }
.mapa__list li { display: flex; gap: 18px; align-items: flex-start; }
.mapa__list li > span { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; font: 400 1rem var(--serif); flex: none; }
.mapa__list h3 { font: 400 1.45rem/1.2 var(--serif); }
.mapa__list p { font-size: .82rem; color: rgba(247,241,232,.7); }
.mapa__right { display: grid; place-items: center; padding: calc(var(--header-h) + 30px) max(32px, calc((100vw - 1180px) / 2)) 60px 5%; }
.mform { width: min(460px, 100%); background: var(--cream); border-radius: 26px; padding: 36px 30px 28px; box-shadow: 0 40px 80px -40px rgba(0,0,0,.6); }
.mform h2 { margin-bottom: 22px; }
.mform .btn { margin-top: 6px; }
.mform__legal { margin-top: 16px; font-size: .74rem; color: var(--ink-2); }
.mform__legal .ic { width: 13px; height: 13px; vertical-align: -2px; margin-right: 6px; }
.mform__legal .linkish:hover { color: var(--wine-2); }
.mform__done { text-align: center; display: grid; gap: 14px; justify-items: center; animation: fadeUp .7s var(--ease) both; }
.mform__done[hidden] { display: none; }
.mform__done p { color: var(--ink-2); font-size: .92rem; margin-bottom: 8px; }
.done-check { width: 70px; height: 70px; border-radius: 50%; background: var(--wine); color: var(--cream); display: grid; place-items: center; animation: popIn .7s var(--ease) both; }
.done-check .ic { width: 30px; height: 30px; stroke-dasharray: 30; stroke-dashoffset: 30; animation: drawCheck .6s .35s var(--ease) forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
body[data-view="mapa"] .footer, body[data-view="mapa"] .wa-float { display: none; }

/* ==========================================================================
   PIE
   ========================================================================== */
.footer { background: var(--night); color: rgba(247,241,232,.85); padding: 60px 0 30px; font-size: .82rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(247,241,232,.12); }
.brand--light { color: var(--cream); }
.footer__claim { font: italic 400 1.35rem/1.3 var(--serif); color: var(--cream); margin-top: 18px; }
.footer ul { display: grid; gap: 9px; }
.footer a, .footer .linkish { text-decoration: none; transition: color .3s; }
.footer a:hover, .footer .linkish:hover { color: var(--gold); }
.footer .eyebrow { margin-bottom: 14px; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: .74rem; color: rgba(247,241,232,.55); }
.footer__bottom span { display: inline-flex; align-items: center; gap: 6px; }
.footer__bottom .ic { width: 13px; }

/* WhatsApp flotante */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 40; display: inline-flex; align-items: center; gap: 10px; height: 54px; padding: 0 22px 0 18px; border-radius: 999px; background: var(--gold); color: var(--wine-3); text-decoration: none; font: 600 .86rem var(--sans); box-shadow: 0 16px 34px -12px rgba(42,15,22,.5); transition: transform .5s var(--ease), box-shadow .5s, opacity .5s; transform: translateY(120px); opacity: 0; }
.wa-float.is-on { transform: none; opacity: 1; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(42,15,22,.6); }
.wa-float__ring { position: absolute; inset: 0; border-radius: inherit; border: 2px solid var(--gold); animation: ring 2.6s var(--ease) infinite; pointer-events: none; }
@keyframes ring { 0% { opacity: .8; transform: scale(1); } 100% { opacity: 0; transform: scale(1.25, 1.5); } }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; visibility: hidden; }
.modal.is-open { visibility: visible; }
.modal__scrim { position: absolute; inset: 0; background: rgba(42,15,22,.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .45s; }
.modal.is-open .modal__scrim { opacity: 1; }
.modal__box { position: relative; width: min(620px, 100%); max-height: calc(100vh - 40px); max-height: calc(100svh - 40px); overflow: auto; background: var(--cream); border-radius: 26px; padding: 40px 34px 32px; opacity: 0; transform: translateY(40px) scale(.97); transition: opacity .45s, transform .6s var(--ease); }
.modal.is-open .modal__box { opacity: 1; transform: none; }
.modal__box.is-wide { width: min(920px, 100%); padding: 0; }
.modal__x { position: absolute; right: 16px; top: 16px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); z-index: 2; transition: transform .4s var(--ease), background .3s; }
.modal__x:hover { transform: rotate(90deg); background: var(--sand); }
.modal .display { margin-bottom: 10px; }
.legal p { font-size: .9rem; color: var(--ink-2); margin-top: 14px; }
.legal a { color: var(--wine-2); }
.imodal { display: grid; grid-template-columns: 1.1fr 1fr; }
.imodal__img { position: relative; min-height: 380px; }
.imodal__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: kenIn 1.1s var(--ease) both; }
.imodal__img .chip { position: absolute; left: 16px; top: 16px; }
.imodal__txt { padding: 44px 34px 34px; }
.imodal__txt p:not(.eyebrow) { color: var(--ink-2); font-size: .92rem; }
.sched { display: grid; gap: 18px; margin: 24px 0 14px; }
.sched__days { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 8px; }
.sched__slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.sched button { border: 1px solid var(--line); background: var(--paper); border-radius: 12px; padding: 10px 6px; font-size: .8rem; line-height: 1.25; transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease); }
.sched button:hover { border-color: var(--wine-2); transform: translateY(-2px); }
.sched button.is-on { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.sched__days button b { display: block; font: 400 1.35rem/1.1 var(--serif); }
.sched__days button small { font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; }
.sched__slots button { animation: fadeUp .45s var(--ease) both; }
.sched__pick { font-size: .86rem; color: var(--ink-2); margin-bottom: 16px; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 110; max-width: min(440px, calc(100% - 40px)); background: var(--night); color: var(--cream); padding: 14px 20px; border-radius: 14px; font-size: .86rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,.5); transform: translate(-50%, 140%); opacity: 0; transition: transform .6s var(--ease), opacity .4s; pointer-events: none; }
.toast.is-on { transform: translate(-50%, 0); opacity: 1; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* Escritorio compacto: se conserva la composición del PDF */
.m-only { display: none; }
@media (max-width: 1140px) {
  .header__inner { gap: 22px; }
  .nav { gap: 20px; }
  .nav a { font-size: .84rem; }
}
@media (max-width: 1040px) {
  .brand__sub { display: none; }
  .nav { gap: 14px; }
  .nav a { font-size: .8rem; }
  .header__cta { min-height: 40px; padding: 0 16px; font-size: .8rem; }
  .benefits { gap: 12px; }
  .benefit { padding: 20px 14px 22px; }
  .benefit h3 { font-size: 1.25rem; }
  .imp { grid-template-columns: 64px 44px 1fr auto; gap: 18px; padding: 22px; }
  .imp__n { font-size: 2.1rem; }
  .tags { max-width: 230px; }
  .compare-plans { grid-template-columns: 1.35fr 1fr; gap: 20px; }
  .ctable table { min-width: 0; }
  .ctable th, .ctable td { padding: 12px 10px; }
  .hero__grid, .page-hero--split, .imagine, .promises, .talk, .faq-wrap { gap: 36px; }
  .hero__facts { gap: 28px; }
  .stat { padding: 12px 20px; }
}

/* Celular / tableta: versión móvil del PDF (págs. 9 y 10) */
@media (max-width: 860px) {
  :root { --header-h: 76px; }
  .d-only { display: none !important; }
  .m-only { display: revert; }
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .header__inner { gap: 12px; }

  .hero { min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; padding: calc(var(--header-h) + 40px) 0 44px;
    background: linear-gradient(180deg, rgba(42,15,22,.05) 0%, rgba(42,15,22,.35) 45%, rgba(42,15,22,.8) 100%), url(../img/hero-movil.webp) center top / cover no-repeat, var(--wine-3); }
  .hero::after { display: none; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); width: calc(100% - 44px); }
  .hero .display--xl { font-size: clamp(2.6rem, 13vw, 3.8rem); }
  .hero .eyebrow { font-size: 12px; letter-spacing: .16em; }
  .hero .lead { font-size: 1.12rem; margin-top: 18px; }
  .hero .btn-row { display: grid; gap: 14px; margin-top: 30px; }
  .hero .btn-row .btn { width: 100%; min-height: 60px; font-size: 1rem; }

  .page-hero--split, .imagine, .promises, .talk, .faq-wrap, .sector, .mapa { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 26px; }
  .team, .stats { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .stat { border-left: 0; border-top: 1px solid rgba(247,241,232,.18); padding: 26px 0 0; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 30px; }

  /* Inicio celular: lista de mejoras sin descripción */
  .benefits { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .benefit { display: flex; align-items: center; gap: 18px; padding: 20px 20px; }
  .benefit h3 { margin: 0; font-size: 1.45rem; }
  .benefit p { display: none; }
  .view[data-view="inicio"] .section { padding: 60px 0; }
  .quote { padding: 70px 0 20px; }

  .m-stats { padding: 70px 0; }
  .m-stats .wrap { display: grid; gap: 50px; }
  .m-stat strong { display: block; font: 400 3.6rem/1 var(--serif); color: var(--gold); margin-bottom: 14px; }
  .m-stat p { font-size: 1rem; color: rgba(247,241,232,.9); }
  .m-stat p span { color: rgba(247,241,232,.55); }
  .m-plans .display { margin-bottom: 26px; }
  .m-plan { display: grid; gap: 8px; background: var(--wine); color: var(--cream); text-decoration: none; border-radius: var(--radius); padding: 28px 30px; margin-bottom: 20px; transition: transform .5s var(--ease); }
  .m-plan:active { transform: scale(.98); }
  .m-plan small { font: 700 11px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
  .m-plan strong { font: 400 2rem/1.1 var(--serif); }
  .m-plan b { font: 400 2.4rem/1.1 var(--serif); color: var(--gold); }
  .m-plan span { font-size: .9rem; opacity: .85; }
  .m-plans .btn { min-height: 60px; font-size: 1rem; }

  .footer { padding: 44px 0 110px; }
  .footer__m { display: grid; gap: 12px; }
  .footer__m .logo-word { font-size: 2.6rem; }
  .footer__m p { font-size: .95rem; }
  .footer__m-legal { color: rgba(247,241,232,.6); }

  .gallery { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: minmax(0, 480px); }
  .imp { grid-template-columns: 60px 44px 1fr; }
  .imp .tags { grid-column: 3; justify-content: flex-start; max-width: none; }
  .compare-plans { grid-template-columns: minmax(0, 1fr); }
  .calc { position: static; }
  .mapa__left { padding: calc(var(--header-h) + 40px) 24px 50px; }
  .mapa__right { padding: 40px 18px 60px; }
  .imodal { grid-template-columns: minmax(0, 1fr); }
  .imodal__img { min-height: 240px; }
  .tl { grid-template-columns: 60px 1fr; }
  .tl__time { grid-column: 2; justify-self: start; display: flex; gap: 10px; align-items: baseline; padding: 10px 16px; }
  .tl__time strong { font-size: 1.2rem; }
  .wa-float { right: 16px; bottom: 16px; width: 64px; height: 64px; padding: 0; justify-content: center; }
  .wa-float__txt { display: none; }
  .wa-float .ic { width: 24px; height: 24px; }
  .toast { bottom: 96px; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .btn-row .btn { width: 100%; }
  .btn { white-space: normal; max-width: 100%; text-align: center; }
  img, svg, video { max-width: 100%; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .promises__grid { grid-template-columns: minmax(0, 1fr); }
  .talk__row, .talk__head { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .talk__head span:last-child { display: none; }
  .imp { grid-template-columns: 44px 1fr; gap: 14px 16px; padding: 22px 20px; }
  .imp__n { grid-column: 1 / -1; font-size: 1.8rem; }
  .imp .tags { grid-column: 1 / -1; }
  .payments { padding: 30px 22px; }
  .payments__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .paybar { flex-direction: column; }
  .paybar__seg { flex-basis: auto; transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease-io); }
  .payments.in .paybar__seg { flex-basis: auto; transform: none; }
  .support { flex-wrap: wrap; }
  .support__tag { margin-left: 0; text-align: left; }
  .gallery { grid-template-columns: minmax(0, 1fr); }
  .idea--wide { grid-column: auto; }
  .idea--wide .idea__img, .idea__img { aspect-ratio: 1.3; }
  .contact-cards { grid-template-columns: minmax(0, 1fr); }
  .cta { padding: 64px 22px 70px; border-radius: 22px; }
  .cta__frame, .cta__deco b { display: none; }
  .modal__box { padding: 34px 20px 24px; }
  .tl { gap: 18px; }
  .qa summary { font-size: 1.25rem; }
}

/* Solo efectos intrusivos (bucles de movimiento) se reducen */
@media (prefers-reduced-motion: reduce) {
  .float-a, .float-b, .float-c, .art__cursor, .about-art__ring, .mapa__left::before, .wa-float__ring, .cta__deco > i { animation: none !important; }
}


/* ==========================================================================
   Ajustes para WordPress (logo en imagen, páginas internas, contenido del editor)
   ========================================================================== */
.brand .custom-logo { display: block; height: auto; max-height: 46px; width: auto; max-width: 180px; }
.footer .brand .custom-logo { max-height: 40px; }
.curtain__brand .custom-logo { max-height: 64px; margin: 0 auto; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.wp-main { padding: calc(var(--header-h) + 56px) 0 90px; min-height: 70vh; }
.wp-content { max-width: 820px; }
.wp-content .display { margin-bottom: 28px; }
.entry { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.entry > * + * { margin-top: 1.1em; }
.entry h2, .entry h3 { font-family: var(--serif); font-weight: 500; line-height: 1.2; margin-top: 1.6em; }
.entry h2 { font-size: 2rem; } .entry h3 { font-size: 1.5rem; }
.entry a { color: var(--wine-2); text-decoration: underline; text-underline-offset: 3px; }
.entry ul, .entry ol { padding-left: 1.3em; }
.entry img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.entry blockquote { border-left: 3px solid var(--gold); padding-left: 18px; font-family: var(--serif); font-style: italic; font-size: 1.3rem; }
.wp-list article + article { margin-top: 38px; padding-top: 38px; border-top: 1px solid var(--line); }
.wp-list h2 a { text-decoration: none; }
.wp-list .meta { font-size: .85rem; color: var(--ink-2); margin-bottom: 10px; }
.wp-pager { display: flex; gap: 12px; margin-top: 48px; flex-wrap: wrap; }
.alignwide { max-width: 1100px; } .alignfull { max-width: none; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption-text, .wp-element-caption { font-size: .85rem; color: var(--ink-2); }
/* Barra de administración de WordPress (solo con sesión iniciada) */
.admin-bar .header { top: 32px; }
.admin-bar .mmenu { top: 32px; }
@media (max-width: 782px) { .admin-bar .header, .admin-bar .mmenu { top: 46px; } }
@media (max-width: 600px) { #wpadminbar { position: fixed; } }
