/* ===========================================================
   LAVANDERA — Sistema visual
   Dark cinematográfico · acento ámbar (ember) · azul de apoyo
   Display: Fraunces  ·  UI/Texto: Hanken Grotesk
   =========================================================== */

:root {
  /* --- Superficie (oscuro cálido, OKLCH) --- */
  --bg:        oklch(0.168 0.012 64);
  --bg-deep:   oklch(0.135 0.010 62);
  --surface:   oklch(0.205 0.013 64);
  --surface-2: oklch(0.245 0.015 66);
  --line:      oklch(0.32 0.012 66);
  --line-soft: oklch(0.27 0.011 66);

  /* --- Tinta --- */
  --ink:       oklch(0.965 0.010 82);
  --ink-soft:  oklch(0.795 0.013 78);
  --ink-mute:  oklch(0.685 0.012 74);

  /* --- Acentos --- */
  --accent:       oklch(0.815 0.130 72);   /* ámbar-oro */
  --accent-soft:  oklch(0.735 0.140 48);   /* ámbar cálido (fin de degradado) */
  --accent-deep:  oklch(0.66 0.135 55);
  --accent-2:     oklch(0.745 0.110 232);  /* azul océano (apoyo) */
  --on-accent:    oklch(0.20 0.030 64);    /* tinta sobre ámbar */

  /* --- Tipografía --- */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Métrica --- */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --r-card: 16px;
  --r-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);     /* ease-out-quint */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* --- z-index escalado --- */
  --z-bg: 0;
  --z-base: 1;
  --z-float: 40;
  --z-nav: 60;
  --z-cursor: 90;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--on-accent); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4, .serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; }
.accent { color: var(--accent); }
.accent2 { color: var(--accent-2); }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--on-accent);
  padding: 12px 18px; border-radius: 0 0 12px 0; font-weight: 700; font-size: 14px;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 148px); }
.bg-surface { background: var(--surface); }

.sec-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 76px); }
.sec-head h2 { font-size: clamp(32px, 5vw, 60px); letter-spacing: -0.025em; }
.sec-head p { color: var(--ink-soft); font-size: clamp(16px, 1.6vw, 19px); margin-top: 20px; max-width: 54ch; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease), backdrop-filter .45s var(--ease);
}
.nav.scrolled {
  background: color-mix(in oklch, var(--bg-deep) 78%, transparent);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 12px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-item {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color .25s var(--ease);
}
.nav-item::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav-item:hover { color: var(--ink); }
.nav-item:hover::after { width: 100%; }
@media (max-width: 880px){ .nav-item { display: none; } }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 36px; height: 36px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; color: var(--ink); }
.logo-sub { font-family: var(--sans); font-size: 9.5px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }

/* ===========================================================
   BOTONES
   =========================================================== */
.btn {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 100px; border: none; cursor: pointer;
  position: relative; isolation: isolate; white-space: nowrap;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.btn-accent {
  background: var(--accent); color: var(--on-accent);
  box-shadow: 0 1px 0 oklch(0.9 0.08 80 / .4) inset;
}
.btn-accent:hover {
  transform: translateY(-2px);
  background: oklch(0.85 0.135 74);
  box-shadow: 0 14px 34px -12px oklch(0.7 0.14 60 / .6);
}

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-wa { background: #25D366; color: #07210f; }
.btn-wa .wa-ico { width: 20px; height: 20px; }
.btn-wa:hover { transform: translateY(-2px); background: #2ee06f; box-shadow: 0 14px 34px -12px rgba(37,211,102,.5); }
.btn-out { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-out:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 132px; padding-bottom: 92px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 8%, oklch(0.27 0.05 60 / .55), transparent 60%),
    radial-gradient(80% 70% at 0% 100%, oklch(0.24 0.04 250 / .35), transparent 65%),
    var(--bg-deep);
}
.hero-canvas { position: absolute; inset: 0; z-index: var(--z-bg); width: 100%; height: 100%; display: block; }
.hero-veil {
  position: absolute; inset: 0; z-index: var(--z-base);
  background: linear-gradient(to top, var(--bg) 2%, transparent 32%),
              radial-gradient(115% 80% at 18% 40%, transparent 40%, var(--bg-deep) 96%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: var(--z-base); width: 100%; }

.hero-status {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  padding: 8px 16px 8px 13px; border: 1px solid var(--line); border-radius: 100px;
  background: color-mix(in oklch, var(--surface) 60%, transparent);
  backdrop-filter: blur(6px);
}
.hero-status strong { color: var(--ink); font-weight: 600; }
.hero-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 oklch(0.815 0.13 72 / .6); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 oklch(0.815 0.13 72 / .55);} 70%{ box-shadow: 0 0 0 9px oklch(0.815 0.13 72 / 0);} 100%{ box-shadow:0 0 0 0 oklch(0.815 0.13 72/0);} }
#greet { color: var(--accent); font-weight: 600; }

.hero-title {
  font-size: clamp(44px, 8.4vw, 92px);
  letter-spacing: -0.032em; line-height: 1.0;
  margin-top: 26px; max-width: 16ch;
}
.hero-title em { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 400; }
.hero-title em.em2 { color: var(--ink); position: relative; }
.hero-title em.em2::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.05em; height: 0.07em;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .9s var(--ease) .9s;
}
.hero.in .hero-title em.em2::after { transform: scaleX(1); }

.hero-lead {
  font-size: clamp(17px, 1.9vw, 21px); color: var(--ink-soft);
  max-width: 50ch; margin-top: 28px; line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.hero-foot {
  margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line-soft);
  font-size: 13px; letter-spacing: .04em; color: var(--ink-mute); text-transform: uppercase; font-weight: 600;
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: var(--z-base); display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute);
}
.scroll-hint svg { width: 16px; height: 24px; color: var(--ink-soft); }
.scroll-hint .wheel { animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0%{ transform: translateY(0); opacity:1;} 60%{ transform: translateY(6px); opacity:0;} 100%{opacity:0;} }
@media (max-width: 880px){ .scroll-hint { display: none; } }

/* Hero: reveal de líneas */
.line { overflow: hidden; display: block; }
.line > span { display: inline-block; transform: translateY(112%); transition: transform 1s var(--ease); }
.hero.in .line > span { transform: translateY(0); }
.hero.in .line:nth-child(2) > span { transition-delay: .09s; }
.hero.in .line:nth-child(3) > span { transition-delay: .18s; }
.fade-up-hero { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.hero.in .fade-up-hero { opacity: 1; transform: none; }
.hero.in .d1 { transition-delay: .34s; }
.hero.in .d2 { transition-delay: .44s; }
.hero.in .d3 { transition-delay: .54s; }

/* ===========================================================
   PROOF STRIP
   =========================================================== */
.proof { padding-block: clamp(30px, 5vw, 52px); border-bottom: 1px solid var(--line-soft); }
.proof-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 40px; }
.proof-line { font-family: var(--serif); font-size: clamp(18px, 2.2vw, 25px); letter-spacing: -0.01em; max-width: 28ch; }
.proof-line .muted { color: var(--ink-mute); }
.proof-stack { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; }
.proof-stack li {
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 100px;
}

/* ===========================================================
   STATEMENT / MANIFIESTO
   =========================================================== */
.statement { padding-block: clamp(80px, 12vw, 168px); }
.statement .serif { font-size: clamp(27px, 4.4vw, 56px); line-height: 1.2; letter-spacing: -0.02em; max-width: 19ch; }
.statement .w { color: oklch(0.42 0.012 66); transition: color .5s var(--ease); }
.statement .w.lit { color: var(--ink); }
.statement .w.accent.lit { color: var(--accent); }
.statement .w.accent-2.lit { color: var(--accent-2); font-style: italic; font-family: var(--serif); }

/* ===========================================================
   TRABAJO / CASOS
   =========================================================== */
.case {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; margin-top: clamp(56px, 8vw, 104px);
}
.case:first-of-type { margin-top: 0; }
.case.flip .case-media { order: 2; }
@media (max-width: 940px){
  .case, .case.flip { grid-template-columns: 1fr; gap: 32px; }
  .case.flip .case-media { order: 0; }
}

.case-media { display: flex; flex-direction: column; gap: 12px; }
.case-main {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -50px oklch(0.05 0.02 60 / .9);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.case-main:hover { transform: translateY(-6px); box-shadow: 0 56px 110px -48px oklch(0.05 0.02 60 / .95); }
.case-shot { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top center; background: var(--bg-deep); transition: transform 1.3s var(--ease); }
.case-main:hover .case-shot { transform: scale(1.035); }
.case-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: color-mix(in oklch, var(--bg-deep) 72%, transparent); backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 11.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px; color: var(--accent);
}
.case-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.case-strip img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top center;
  border-radius: 13px; border: 1px solid var(--line-soft); opacity: .9;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.case-strip img:hover { opacity: 1; transform: translateY(-3px); }

.case-kicker { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.case.flip .case-kicker { color: var(--accent-2); }
.case-info h3 { font-size: clamp(28px, 3.8vw, 44px); margin-top: 14px; letter-spacing: -0.02em; }
.case-info h3 em { color: var(--accent); }
.case-arc { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.beat { display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: start; }
.beat-k {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-mute); padding-top: 3px;
}
.beat p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.beat p strong { color: var(--ink); font-weight: 600; }
@media (max-width: 520px){ .beat { grid-template-columns: 1fr; gap: 4px; } }

.case-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.case-meta li {
  font-size: 12.5px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 13px; border-radius: 100px; background: var(--surface-2);
}
.case-role {
  margin-top: 22px; font-size: 13.5px; color: var(--ink-mute); display: flex; gap: 10px; flex-wrap: wrap;
}
.case-role span { color: var(--accent); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 11.5px; align-self: center; }
.text-link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 26px;
  font-weight: 600; color: var(--ink); border-bottom: 1.5px solid var(--accent); padding-bottom: 3px;
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.text-link:hover { gap: 15px; color: var(--accent); }

/* ===========================================================
   SERVICIOS
   =========================================================== */
.svc-list { display: flex; flex-direction: column; }
.svc {
  display: grid; grid-template-columns: 64px 1fr 240px; gap: 28px; align-items: start;
  padding: 34px 0; border-top: 1px solid var(--line-soft);
  transition: background .4s var(--ease);
}
.svc:last-child { border-bottom: 1px solid var(--line-soft); }
.svc-n { font-family: var(--serif); font-size: 24px; color: var(--accent); line-height: 1; padding-top: 4px; }
.svc.feat .svc-n { color: var(--accent); }
.svc-body h3 { font-size: clamp(22px, 2.6vw, 31px); letter-spacing: -0.02em; }
.svc-deliver { font-size: 13.5px; font-weight: 600; letter-spacing: .04em; color: var(--accent); margin-top: 8px; text-transform: uppercase; }
.svc.feat .svc-deliver { color: var(--accent); }
.svc-body > p:last-child { color: var(--ink-soft); font-size: 16px; margin-top: 14px; max-width: 52ch; }
.svc-body em { font-style: italic; color: var(--ink); }
.svc-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-content: start; }
.svc-tags li { font-size: 12.5px; color: var(--ink-soft); padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; }
.svc.feat { position: relative; }
.svc-feat-badge {
  position: absolute; top: 34px; right: 0;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-accent); background: var(--accent); padding: 5px 11px; border-radius: 100px;
}
@media (max-width: 860px){
  .svc { grid-template-columns: 44px 1fr; gap: 8px 18px; }
  .svc-tags { grid-column: 2; margin-top: 16px; }
  .svc-feat-badge { position: static; display: inline-block; margin: 0 0 4px; grid-column: 2; }
}

/* ===========================================================
   PROCESO
   =========================================================== */
.proc { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: none; }
@media (max-width: 880px){ .proc { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .proc { grid-template-columns: 1fr; } }
.proc-step {
  padding: 30px 26px 34px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--line-soft);
  transition: transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}
.proc-step:hover { transform: translateY(-6px); border-color: var(--line); background: var(--surface-2); }
.proc-n { font-family: var(--serif); font-size: 44px; color: oklch(0.815 0.13 72 / .28); line-height: 1; transition: color .5s var(--ease); }
.proc-step:hover .proc-n { color: var(--accent); }
.proc-step h3 { font-family: var(--sans); font-weight: 700; font-size: 18px; margin-top: 14px; letter-spacing: -0.01em; }
.proc-step p { font-size: 14.5px; color: var(--ink-soft); margin-top: 9px; }

/* ===========================================================
   PRECIOS
   =========================================================== */
.price-block { margin-top: clamp(48px, 6vw, 76px); }
.price-block:first-of-type { margin-top: 0; }
.price-block-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.price-block-head h3 { font-size: clamp(24px, 3.2vw, 34px); }
.price-block-head .tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px){ .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

.plan {
  background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--r-card);
  padding: 32px 28px 32px; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.bg-surface .plan { background: var(--bg); }
.plan:hover { transform: translateY(-5px); border-color: var(--line); }
.plan.featured {
  background: linear-gradient(168deg, oklch(0.255 0.045 62), oklch(0.205 0.025 60));
  border-color: oklch(0.5 0.1 64); position: relative;
  box-shadow: 0 30px 70px -40px oklch(0.7 0.13 60 / .45);
}
.plan-badge {
  align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--on-accent); background: var(--accent); padding: 6px 13px; border-radius: 100px; margin-bottom: 16px;
}
.plan h4 { font-family: var(--serif); font-size: 25px; letter-spacing: -0.01em; }
.plan-for { font-size: 14px; color: var(--ink-soft); margin-top: 8px; min-height: 2.8em; }
.plan-amt {
  font-family: var(--serif); font-size: 46px; color: var(--ink); margin-top: 20px; line-height: 1;
  display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.plan-amt .from { width: 100%; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.plan-amt .cur { font-family: var(--serif); font-size: 30px; color: var(--accent); }
.plan-amt .per { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--ink-mute); align-self: end; }
.plan-list { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 11px; }
.plan-list li { font-size: 14.5px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 11px; line-height: 1.45; }
.plan-list li::before {
  content: ""; width: 16px; height: 16px; flex: none; margin-top: 2px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.4' fill='none' stroke='%23231a10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat,
    var(--accent);
}
.plan-cta { margin-top: auto; width: 100%; }
.price-note { text-align: center; margin-top: 30px; font-size: 14px; color: var(--ink-mute); }
.price-note strong { color: var(--ink-soft); font-weight: 700; }
.price-note a { color: var(--accent); font-weight: 600; }
.price-note a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ===========================================================
   SOBRE MÍ
   =========================================================== */
.about-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 880px){ .about-grid { grid-template-columns: 1fr; } }
.about-text h2 { font-size: clamp(32px, 4.6vw, 54px); }
.about-lead { font-size: clamp(17px, 1.9vw, 21px); color: var(--ink); margin-top: 22px; max-width: 50ch; }
.about-text > p:not(.about-lead) { color: var(--ink-soft); margin-top: 16px; max-width: 50ch; }
.about-text strong { color: var(--ink); }
.about-points { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 32px; }
.about-points div { display: flex; flex-direction: column; }
.about-points strong { font-family: var(--serif); font-size: 28px; color: var(--accent); font-weight: 400; }
.about-points span { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }
.about-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 36px 32px;
}
.ac-quote { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 27px); line-height: 1.35; letter-spacing: -0.01em; }
.ac-quote em { color: var(--accent); }
.ac-author { margin-top: 24px; display: flex; flex-direction: column; gap: 3px; }
.ac-author strong { font-size: 15px; color: var(--ink); }
.ac-author span { font-size: 13.5px; color: var(--ink-mute); }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 880px){ .faq-grid { grid-template-columns: 1fr; } }
.faq-head { margin-bottom: 0; position: sticky; top: 110px; }
@media (max-width: 880px){ .faq-head { position: static; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 0;
  font-family: var(--serif); font-size: clamp(18px, 2vw, 22px); letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-ico { position: relative; width: 18px; height: 18px; flex: none; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .35s var(--ease), opacity .35s var(--ease); }
.faq-ico::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-ico::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; }
.faq-a p { color: var(--ink-soft); font-size: 16px; padding-bottom: 24px; max-width: 60ch; line-height: 1.6; }

/* ===========================================================
   CTA / CONTACTO
   =========================================================== */
.cta-card {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, oklch(0.30 0.06 60) 0%, oklch(0.22 0.045 50) 55%, oklch(0.26 0.05 250) 130%);
  border: 1px solid oklch(0.42 0.07 60);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(44px, 7vw, 88px) clamp(30px, 6vw, 76px);
}
.cta-glow {
  position: absolute; width: 540px; height: 540px; border-radius: 50%; top: -220px; right: -140px;
  background: radial-gradient(circle, oklch(0.82 0.13 72 / .25), transparent 68%); filter: blur(18px); pointer-events: none;
}
.cta-card h2 { font-size: clamp(34px, 5.6vw, 72px); max-width: 15ch; letter-spacing: -0.025em; }
.cta-card h2 .serif-it { color: var(--accent); }
.cta-card p { color: var(--ink-soft); font-size: clamp(17px, 1.9vw, 21px); margin-top: 22px; max-width: 48ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.cta-direct { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; padding-top: 32px; border-top: 1px solid oklch(0.5 0.04 60 / .4); }
.cta-direct a { display: flex; flex-direction: column; gap: 4px; transition: transform .3s var(--ease); }
.cta-direct a:hover { transform: translateY(-2px); }
.cta-direct .k { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.cta-direct .v { font-family: var(--serif); font-size: 23px; color: var(--ink); }

/* ===========================================================
   FOOTER
   =========================================================== */
.foot { padding: clamp(48px, 6vw, 72px) 0 40px; border-top: 1px solid var(--line-soft); }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; align-items: flex-start; }
.foot-tag { color: var(--ink-soft); font-size: 14.5px; max-width: 32ch; margin-top: 18px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h3 { font-family: var(--sans); font-size: 11.5px; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px; font-weight: 700; }
.foot-col a { display: block; font-size: 15px; color: var(--ink-soft); margin-bottom: 10px; transition: color .25s var(--ease); }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--ink-mute); }

/* ===========================================================
   WHATSAPP FLOTANTE
   =========================================================== */
.wa-float {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: var(--z-float);
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366;
  animation: ring 2.6s var(--ease) infinite; pointer-events: none;
}
@keyframes ring { 0%{ transform: scale(1); opacity:.6;} 100%{ transform: scale(1.7); opacity:0;} }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 38px -8px rgba(37,211,102,.7); }

/* ===========================================================
   SCROLL REVEAL + CURSOR
   =========================================================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-up.in { opacity: 1; transform: none; }
[data-delay="1"]{ transition-delay: .09s; }
[data-delay="2"]{ transition-delay: .18s; }
[data-delay="3"]{ transition-delay: .27s; }

.cursor-dot { position: fixed; top: 0; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); pointer-events: none; z-index: var(--z-cursor); transform: translate(-50%,-50%); transition: opacity .3s; }
.cursor-ring { position: fixed; top: 0; left: 0; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid oklch(0.815 0.13 72 / .6); pointer-events: none; z-index: var(--z-cursor); transform: translate(-50%,-50%); transition: width .3s var(--ease), height .3s var(--ease), opacity .3s, background .3s, border-color .3s; }
.cursor-ring.hover { width: 60px; height: 60px; background: oklch(0.815 0.13 72 / .08); border-color: var(--accent); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ===========================================================
   NAV BURGER + MENÚ MÓVIL
   =========================================================== */
.nav-burger {
  display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: color-mix(in oklch, var(--bg-deep) 96%, transparent);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  display: flex; align-items: center;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .4s var(--ease), visibility .4s var(--ease), transform .4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 4px; width: 100%; padding: 90px var(--pad) 40px; }
.mobile-menu-inner > a:not(.btn) {
  font-family: var(--serif); font-size: clamp(30px, 9vw, 46px); letter-spacing: -0.02em; color: var(--ink);
  padding: 10px 0; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  transition: color .25s var(--ease), padding-left .3s var(--ease);
}
.mobile-menu-inner > a:not(.btn) span { color: var(--accent); opacity: 0; transform: translateX(-8px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.mobile-menu-inner > a:not(.btn):hover { color: var(--accent); padding-left: 8px; }
.mobile-menu-inner > a:not(.btn):hover span { opacity: 1; transform: none; }
.mobile-menu-cta { margin-top: 26px; justify-content: center; }
.mobile-menu-wa { margin-top: 16px; text-align: center; font-size: 15px; font-weight: 600; color: var(--accent); }
body.menu-open { overflow: hidden; }
@media (max-width: 880px){
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ===========================================================
   HERO MICROTRUST
   =========================================================== */
.hero-microtrust { margin-top: 18px; font-size: 13.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hero-microtrust span { color: var(--accent); }

/* ===========================================================
   GARANTÍAS
   =========================================================== */
.guarantees { padding-block: clamp(40px, 6vw, 64px); border-top: 1px solid var(--line-soft); }
.guarantees-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px){ .guarantees-inner { grid-template-columns: 1fr; gap: 22px; } }
.guar { display: grid; grid-template-columns: 28px 1fr; gap: 16px; align-items: start; }
.guar svg { width: 26px; height: 26px; color: var(--accent); margin-top: 2px; }
.guar strong { display: block; font-size: 16px; color: var(--ink); letter-spacing: -0.01em; }
.guar span { display: block; font-size: 14px; color: var(--ink-soft); margin-top: 5px; line-height: 1.45; }

/* ===========================================================
   ABOUT CARD (escasez + CTA)
   =========================================================== */
.about-card { display: flex; flex-direction: column; align-items: flex-start; }
.ac-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.ac-head { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.015em; margin-top: 14px; line-height: 1.1; }
.ac-head em { font-style: italic; }
.ac-note { font-size: 14.5px; color: var(--ink-soft); margin-top: 16px; line-height: 1.5; }
.about-card .btn { margin-top: 26px; }

/* ===========================================================
   TESTIMONIOS
   =========================================================== */
.testi-head { max-width: 800px; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px){ .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 34px 32px; display: flex; flex-direction: column;
}
.stars { color: var(--accent); font-size: 16px; letter-spacing: 3px; }
.testi-card blockquote {
  font-family: var(--serif); font-size: clamp(19px, 2.2vw, 24px); line-height: 1.4; letter-spacing: -0.01em;
  margin-top: 18px; color: var(--ink);
}
.testi-card blockquote em { color: var(--accent); font-style: italic; }
.testi-card figcaption { margin-top: 24px; display: flex; flex-direction: column; gap: 3px; }
.testi-card figcaption strong { font-family: var(--sans); font-size: 15px; color: var(--ink); font-weight: 700; }
.testi-card figcaption span { font-size: 13.5px; color: var(--ink-mute); }

/* ===========================================================
   CONTACTO — grid + formulario brief
   =========================================================== */
.cta-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
@media (max-width: 880px){ .cta-grid { grid-template-columns: 1fr; } }
.cta-left { position: relative; z-index: 1; }

.brief {
  position: relative; z-index: 1;
  background: color-mix(in oklch, var(--bg-deep) 55%, transparent);
  border: 1px solid oklch(0.5 0.04 60 / .5); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; gap: 16px;
}
.brief-title { font-family: var(--serif); font-size: 21px; color: #fff; margin: 0; letter-spacing: -0.01em; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: #e8eef0; letter-spacing: .01em; }
.field .opt { color: var(--ink-mute); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: #fff;
  background: oklch(0.22 0.02 250 / .55); border: 1.5px solid oklch(0.55 0.04 230 / .4); border-radius: 12px;
  padding: 12px 14px; width: 100%; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: oklch(0.72 0.02 230 / .8); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: oklch(0.24 0.02 250 / .7);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23e8a23e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 36px;
}
.field select option { color: #111; }
.brief-submit { margin-top: 4px; justify-content: center; }
.brief-note { font-size: 12.5px; color: var(--ink-mute); margin: 0; line-height: 1.45; }

/* ===========================================================
   SELECTOR DE IDIOMA
   =========================================================== */
.lang-switch { display: inline-flex; gap: 2px; border: 1px solid var(--line); border-radius: 100px; padding: 3px; }
.lang-btn {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .02em;
  color: var(--ink-mute); background: transparent; border: none; cursor: pointer;
  padding: 5px 9px; border-radius: 100px; transition: color .25s var(--ease), background .25s var(--ease);
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { color: var(--on-accent); background: var(--accent); }
.lang-switch-m { align-self: flex-start; margin-top: 24px; }
.lang-switch-m .lang-btn { font-size: 14px; padding: 8px 14px; }
/* Selector de idioma visible en la barra superior (solo móvil) */
.lang-switch-top { display: none; }
@media (max-width: 880px){
  .lang-switch-top { display: inline-flex; }
  .lang-switch-top .lang-btn { padding: 5px 8px; font-size: 11px; }
}
@media (max-width: 380px){
  .lang-switch-top { padding: 2px; gap: 0; }
  .lang-switch-top .lang-btn { padding: 4px 5px; font-size: 10px; }
}

/* ===========================================================
   LOGO — ajuste responsive ("Lavandera Design")
   =========================================================== */
.logo-name { white-space: nowrap; }
@media (max-width: 480px){
  .logo-name { font-size: 18px; }
  .logo-sub { display: none; }
}

/* ===========================================================
   TABLA COMPARATIVA DE PRECIOS
   =========================================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.ptable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
.ptable { width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0; }
.ptable th, .ptable td { padding: 13px 18px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.ptable thead th { vertical-align: bottom; text-align: center; padding-top: 4px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.ptable thead th.ptable-corner { text-align: left; }
.ptable-corner span { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.ptable th[scope="row"] { font-family: var(--sans); font-weight: 500; font-size: 14.5px; color: var(--ink-soft); text-align: left; width: 34%; }
.ptable tbody td { text-align: center; font-size: 14px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }

.pt-tier { display: block; font-family: var(--serif); font-size: 20px; color: var(--ink); letter-spacing: -0.01em; }
.pt-from { display: block; margin-top: 12px; font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.pt-price { display: block; font-family: var(--serif); font-size: 31px; color: var(--ink); line-height: 1.05; font-variant-numeric: tabular-nums; }
.pt-pill { display: inline-block; margin-bottom: 9px; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--on-accent); background: var(--accent); padding: 3px 9px; border-radius: 100px; }

/* columna destacada */
.ptable .pt-hl { background: oklch(0.815 0.13 72 / .07); }
.ptable thead th.pt-hl { background: oklch(0.815 0.13 72 / .12); border-top-left-radius: 14px; border-top-right-radius: 14px; }
.ptable-cta td.pt-hl { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; }
.ptable-cta th, .ptable-cta td { border-bottom: none; padding-top: 22px; }

/* check / cross */
.ptable td.yes::after, .ptable td.no::after {
  content: ""; display: inline-block; width: 22px; height: 22px;
  background-repeat: no-repeat; background-position: center; background-size: 22px 22px;
}
.ptable td.yes::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' fill='none' stroke='%23e8a23e' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.ptable td.no::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7l10 10M17 7L7 17' fill='none' stroke='%237a6f60' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E"); opacity: .8; }

/* ===========================================================
   REDUCED MOTION
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .fade-up, .fade-up-hero { opacity: 1 !important; transform: none !important; }
  .line > span { transform: none !important; }
  .hero-title em.em2::after { transform: scaleX(1) !important; }
  .statement .w { color: var(--ink); }
  .cursor-dot, .cursor-ring { display: none; }
}
