/* =========================================================
   Dcontenido · estilos
   Paleta tomada del logo: durazno → rosa → magenta → violeta → azul
   ========================================================= */
:root {
  /* marca */
  --peach: #e3976f;
  --pink: #ea6f8b;
  --magenta: #b568a6;
  --violet: #694f9b;
  --blue: #5d93ce;
  --grad: linear-gradient(90deg, #e3976f 0%, #ea6f8b 26%, #b568a6 48%, #694f9b 72%, #5d93ce 100%);
  --grad-diag: linear-gradient(120deg, #e3976f 0%, #ea6f8b 26%, #b568a6 48%, #694f9b 72%, #5d93ce 100%);

  /* neutros */
  --ink: #1e1838;
  --ink-2: #2a2349;
  --paper: #fbf9f7;
  --paper-2: #f3eff5;
  --muted: #6f6a7d;
  --line: rgba(30, 24, 56, 0.12);

  --font-display: "Nunito", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;

  --gutter: clamp(16px, 4vw, 56px);
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }
strong { font-weight: 600; }
::selection { background: var(--pink); color: #fff; }

/* ---------- utilidades ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.08em; /* evita que se corte la cursiva */
}
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
/* trazo redondeado como los del logo */
.section-label::before {
  content: "";
  width: 28px; height: 6px; border-radius: 6px;
  background: var(--grad);
}
.section-label.light { color: #f3c6b0; }

.h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6.2vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.h2 em { font-weight: 900; }
.lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--muted); max-width: 44ch; margin-top: 24px; }

.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: 15px;
  border: 1.5px solid var(--bg);
  cursor: pointer;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .4s var(--ease), border-color .4s var(--ease);
  font-family: var(--font-body);
}
.btn::before {
  content: ""; position: absolute; inset: -2px; z-index: -1;
  background: var(--grad);
  transform: translateY(101%);
  border-radius: inherit;
  transition: transform .5s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { border-color: transparent; color: #fff; }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn-light { --bg: #fff; --fg: var(--ink); }
.btn-small { padding: 10px 20px; font-size: 14px; }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 14px; left: 50%; z-index: 50;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 24px));
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 10px 10px 10px 24px;
  border-radius: 999px;
  background: rgba(251, 249, 247, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease);
}
.nav.is-hidden { transform: translate(-50%, -130%); }
.logo { display: inline-flex; align-items: center; }
.nav .logo img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 30px; font-weight: 500; font-size: 14px; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 3px; width: 100%; border-radius: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--ink); cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: #fff; transition: transform .4s var(--ease); }
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 24px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  padding: 100px var(--gutter) 40px;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .7s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 40px) 40px); visibility: visible; }
.mobile-menu a:not(.btn) { font-family: var(--font-display); font-weight: 900; font-size: 42px; letter-spacing: -0.02em; }
.mobile-menu .btn { align-self: flex-start; margin-top: 20px; --bg: transparent; border-color: transparent; background: var(--grad); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px var(--gutter) 90px;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 88% 12%, rgba(93,147,206,.16), transparent 70%),
    radial-gradient(50% 45% at 70% 95%, rgba(234,111,139,.14), transparent 70%),
    var(--paper);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.6);
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 0 rgba(234,111,139,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(234,111,139,0); } 100% { box-shadow: 0 0 0 0 rgba(234,111,139,0); } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(54px, 10.6vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-title .word { display: inline-block; }
.hero-title .italic { font-style: italic; }
.accent-pill {
  background: var(--grad);
  color: #fff;
  border-radius: 0.5em; /* redondeado como el logo */
  padding: 0 0.22em 0.04em;
  line-height: 1;
}
.hero-sub {
  display: flex; justify-content: flex-start; align-items: flex-end; gap: 32px clamp(32px, 6vw, 90px); flex-wrap: wrap;
  margin-top: 44px;
}
.hero-sub p { max-width: 38ch; font-size: clamp(16px, 1.35vw, 19px); color: #48425a; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-float {
  position: absolute; z-index: 1;
  border-radius: 26px; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(30,24,56,.35);
}
.hero-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-float--1 { width: clamp(150px, 17vw, 280px); aspect-ratio: 4/5; top: 14%; right: 6%; rotate: 5deg; }
.hero-float--2 { width: clamp(110px, 12vw, 200px); aspect-ratio: 1; top: 50%; right: 25%; rotate: -7deg; }
.hero-float--3 { width: clamp(130px, 14vw, 230px); aspect-ratio: 4/3; bottom: 8%; right: 4%; rotate: -3deg; }

/* formas de marca */
.shape { position: absolute; z-index: 0; pointer-events: none; }
.shape-pill { height: 26px; border-radius: 26px; background: var(--grad); opacity: .9; }
.shape-pill--1 { width: 200px; top: 17%; right: 27%; rotate: -28deg; }
.shape-pill--2 { width: 120px; top: 44%; right: 2%; rotate: 62deg; height: 20px; opacity: .6; }
.shape-ring { width: 92px; height: 92px; top: 78%; right: 17%; }
.shape-ring::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 200deg, var(--peach), var(--pink), var(--magenta), var(--violet), var(--blue), var(--peach));
  -webkit-mask: radial-gradient(circle, transparent 29px, #000 30px);
          mask: radial-gradient(circle, transparent 29px, #000 30px);
}
.shape-ring i { position: absolute; inset: 0; margin: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--magenta); }

.scroll-hint {
  position: absolute; left: var(--gutter); bottom: 28px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.scroll-hint i { width: 2px; height: 40px; border-radius: 2px; background: var(--line); position: relative; overflow: hidden; }
.scroll-hint i::after { content: ""; position: absolute; inset: 0; background: var(--grad-diag); animation: drip 1.8s var(--ease) infinite; }
@keyframes drip { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

/* ---------- EXPAND (imagen que crece) ---------- */
.expand { position: relative; height: 100vh; height: 100svh; }
.expand-media {
  position: relative; width: 100%; height: 100%;
  overflow: hidden;
  clip-path: inset(14% 22% 14% 22% round 40px);
  will-change: clip-path;
}
.expand-media > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.35); will-change: transform; }
.expand-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gutter);
  padding-bottom: clamp(40px, 8vh, 90px);
  background: linear-gradient(180deg, rgba(30,24,56,0) 30%, rgba(30,24,56,.82) 100%);
  color: #fff;
}
.expand-kicker { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: #f3c6b0; font-weight: 600; margin-bottom: 14px; }
.expand-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 7.4vw, 120px); line-height: .96; letter-spacing: -0.035em;
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--grad); color: #fff;
  padding: 24px 0; overflow: hidden;
  rotate: -2deg; margin: 70px -20px 0;
  position: relative; z-index: 3;
}
.marquee-track { display: flex; width: max-content; }
.marquee-group { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.marquee span { font-family: var(--font-display); font-weight: 900; font-size: clamp(30px, 4.4vw, 62px); letter-spacing: -0.02em; white-space: nowrap; }
/* separador: la "o" con punto del logo */
.marquee b { width: 30px; height: 30px; border-radius: 50%; border: 6px solid #fff; position: relative; flex: none; }
.marquee b::after { content: ""; position: absolute; inset: 0; margin: auto; width: 6px; height: 6px; border-radius: 50%; background: #fff; }

/* ---------- MANIFIESTO ---------- */
.manifesto { padding: clamp(110px, 18vh, 200px) var(--gutter); max-width: 1400px; margin: 0 auto; }
.manifesto-text {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4.4vw, 66px); line-height: 1.12; letter-spacing: -0.025em;
}
.manifesto-text .w { opacity: .14; }
.manifesto-answer {
  margin-top: 48px; max-width: 34ch;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.4vw, 34px); line-height: 1.25; letter-spacing: -0.015em; color: var(--muted);
}
.manifesto-answer strong { font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- PORTAFOLIO ---------- */
.work { padding: 0 0 clamp(120px, 18vh, 220px); }
.work-head, .work-grid { max-width: 1400px; margin: 0 auto; padding: 0 var(--gutter); }
.work-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: 70px; }
.work-head .lead { margin-top: 0; }
.work-cats {
  max-width: 1400px; margin: 0 auto 110px; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.work-cat {
  border-radius: var(--radius); padding: 34px 32px 38px;
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px; min-height: 360px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.work-cat:hover { transform: translateY(-8px); box-shadow: 0 40px 60px -30px rgba(30,24,56,.3); }
.work-cat-num { align-self: flex-start; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--paper-2); color: var(--violet); }
.work-cat h3 { font-family: var(--font-display); font-weight: 900; font-size: clamp(44px, 4.4vw, 64px); letter-spacing: -0.03em; line-height: 1; margin-top: auto; }
.work-cat-lead { font-family: var(--font-display); font-weight: 800; font-size: 21px; line-height: 1.2; }
.work-cat p:not(.work-cat-lead) { color: var(--muted); }
.work-cat--marcas { background: var(--ink); color: #fff; border-color: var(--ink); }
.work-cat--marcas h3 { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .06em; }
.work-cat--marcas p:not(.work-cat-lead) { color: #b3aec4; }
.work-cat--marcas .work-cat-num { background: rgba(255,255,255,.1); color: #f3c6b0; }
.work-cat--webs { background: var(--grad-diag); color: #fff; border-color: transparent; }
.work-cat--webs .work-cat-num { background: rgba(255,255,255,.2); color: #fff; }
.web-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.web-list li { font-size: 13px; font-weight: 500; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); }
.work-sub { max-width: 1400px; margin: 0 auto 30px; padding: 0 var(--gutter); }
.work-sub .section-label { margin: 0; }
.work-head .btn { flex: none; }

.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 36px); align-items: start; }
.work-col { display: flex; flex-direction: column; gap: clamp(16px, 2.4vw, 36px); }
.work-col:nth-child(2) { margin-top: 160px; }
.work-card { position: relative; }
.work-card .img-wrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1800/1390; background: var(--paper-2); }
.work-card img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transform-origin: center; }
.work-card figcaption {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 6px 0;
}
.work-card figcaption strong { font-family: var(--font-display); font-weight: 900; font-size: clamp(19px, 1.6vw, 24px); letter-spacing: -0.01em; }
.work-card figcaption span {
  font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted); white-space: nowrap;
}

.work-strip { margin-top: clamp(80px, 12vh, 140px); overflow: hidden; }
.work-strip-track { display: flex; width: max-content; }
.work-strip-group { display: flex; gap: 18px; padding-right: 18px; }
.work-strip figure { width: clamp(220px, 22vw, 320px); flex: none; }
.work-strip img { width: 100%; aspect-ratio: 1800/1390; object-fit: cover; border-radius: 20px; }
.work-strip figcaption { font-size: 13px; font-weight: 500; color: var(--muted); padding: 10px 4px 0; }

/* ---------- MÉTODO (horizontal) ---------- */
.method { background: var(--ink); color: #fff; overflow: hidden; position: relative; }
.method-pin {
  position: relative;
  height: 100vh; height: 100svh;
  display: flex; align-items: center;
}
.method-intro { flex: 0 0 min(460px, 36vw); margin-right: clamp(20px, 4vw, 70px); }
.method-intro .lead { color: #b3aec4; }
.method-progress { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 40px; height: 4px; background: rgba(255,255,255,.12); border-radius: 4px; overflow: hidden; }
.method-progress span { display: block; height: 100%; width: 100%; background: var(--grad); border-radius: 4px; transform: scaleX(0); transform-origin: left; }
.method-track { display: flex; align-items: center; gap: 28px; padding: 0 var(--gutter); will-change: transform; }
.step {
  flex: 0 0 clamp(300px, 34vw, 500px);
  background: var(--ink-2); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.step-img { aspect-ratio: 16/11; overflow: hidden; }
.step-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.25); will-change: transform; }
.step-body { padding: 26px 30px 34px; }
.step-num {
  font-family: var(--font-display); font-weight: 900; font-size: 15px;
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-diag); color: #fff;
}
.step h3 { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 2.5vw, 36px); letter-spacing: -0.02em; margin: 14px 0 8px; }
.step p { color: #c0bbcf; }

/* ---------- SERVICIOS ---------- */
.services { padding: clamp(110px, 18vh, 200px) var(--gutter); max-width: 1400px; margin: 0 auto; position: relative; }
.services-head { margin-bottom: 60px; }
.service-list { border-top: 1px solid var(--line); }
.service {
  display: grid; grid-template-columns: 70px 1.2fr 1fr 40px; align-items: center; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  position: relative; cursor: default; isolation: isolate;
  transition: padding .5s var(--ease), color .4s var(--ease);
}
.service::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 22px;
  background: var(--ink); transform: scaleY(0); transform-origin: bottom;
  transition: transform .5s var(--ease), border-radius .5s;
}
.service:hover { color: #fff; padding-left: 26px; padding-right: 26px; }
.service:hover::before { transform: scaleY(1); }
.service-num { font-family: var(--font-display); font-weight: 900; font-size: 18px; }
.service-num { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.service h3 { font-family: var(--font-display); font-weight: 900; font-size: clamp(23px, 2.6vw, 38px); letter-spacing: -0.02em; line-height: 1.08; }
.service p { color: var(--muted); transition: color .4s; }
.service:hover p { color: #c0bbcf; }
.service-arrow { font-size: 24px; justify-self: end; transition: transform .4s var(--ease), color .4s; }
.service:hover .service-arrow { transform: rotate(45deg); color: var(--peach); }
.service-cursor {
  position: fixed; top: 0; left: 0; z-index: 30; pointer-events: none;
  width: 300px; aspect-ratio: 4/3; border-radius: 22px; overflow: hidden;
  opacity: 0; scale: .6;
  box-shadow: 0 30px 60px -20px rgba(30,24,56,.5);
}
.service-cursor img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- BAND (parallax bg) ---------- */
.band { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.band-img { position: absolute; inset: -20% 0; }
.band-img img { width: 100%; height: 100%; object-fit: cover; }
.band-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(30,24,56,.92) 20%, rgba(105,79,155,.72) 65%, rgba(234,111,139,.55));
}
.band-content {
  position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto;
  padding: 100px var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat { border-top: 1px solid rgba(255,255,255,.3); padding-top: 24px; }
.stat-num { font-family: var(--font-display); font-weight: 900; font-size: clamp(64px, 8vw, 128px); line-height: .9; letter-spacing: -0.04em; }
.stat-unit { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2vw, 30px); margin-left: 8px; color: #f3c6b0; }
.stat p { margin-top: 12px; color: #ddd8e8; font-size: 17px; }
.stat p strong { color: #f3c6b0; font-weight: 600; }

/* ---------- PLANES ---------- */
.plans { padding: clamp(110px, 18vh, 200px) var(--gutter); max-width: 1400px; margin: 0 auto; }
.plans-head { margin-bottom: 70px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: #fff; border-radius: var(--radius); padding: 36px 32px;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: 0 40px 60px -30px rgba(30,24,56,.3); }
.plan-tag { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.plan h3 { font-family: var(--font-display); font-weight: 900; font-size: 38px; letter-spacing: -0.02em; margin: 6px 0 16px; }
.plan-price { font-family: var(--font-display); font-weight: 900; font-size: 66px; line-height: 1; letter-spacing: -0.03em; }
.plan-price span { font-size: 30px; vertical-align: top; margin-right: 2px; }
.plan-price small { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan-desc { margin: 16px 0 26px; color: var(--muted); }
.plan ul { display: grid; gap: 12px; margin-bottom: 34px; flex: 1; font-size: 15px; }
.plan li { padding-left: 32px; position: relative; }
.plan li::before {
  content: "✓"; position: absolute; left: 0; top: 2px;
  width: 21px; height: 21px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
  background: var(--paper-2); color: var(--violet);
}
.plan .btn { justify-content: center; }
.plan--featured {
  color: #fff;
  border: 2px solid transparent;
  background: linear-gradient(var(--ink), var(--ink)) padding-box, var(--grad-diag) border-box;
}
.plan--featured .plan-tag { color: #f3c6b0; }
.plan--featured .plan-desc, .plan--featured .plan-price small { color: #b3aec4; }
.plan--featured li::before { background: var(--grad-diag); color: #fff; }
.plan--featured .btn { --bg: transparent; border-color: transparent; background: var(--grad); }
.plan--featured .btn::before { background: #fff; }
.plan--featured .btn:hover { color: var(--ink); }
.plan .plan-desc { font-size: 17px; flex: 1; margin-bottom: 40px; }
.plan h3 { font-size: clamp(34px, 3vw, 44px); }
.plan-icon {
  align-self: flex-end; font-family: var(--font-display); font-weight: 900; font-size: 15px;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper-2); color: var(--violet);
}
.plan--featured .plan-icon { background: var(--grad-diag); color: #fff; }
.plans-cta { margin-top: 44px; display: flex; justify-content: center; }
.plans-note { margin-top: 28px; color: var(--muted); font-size: 14px; text-align: center; }
.plans-note a { color: var(--violet); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- DIAGNÓSTICO ---------- */
.diag {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  padding: clamp(110px, 18vh, 190px) var(--gutter);
  text-align: center;
}
.diag::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 60% at 10% 100%, rgba(234,111,139,.35), transparent 70%),
    radial-gradient(45% 60% at 95% 0%, rgba(93,147,206,.35), transparent 70%);
}
.diag-inner { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.diag .lead { color: #c0bbcf; margin: 26px auto 40px; }
.diag-ring { top: 16%; left: 8%; width: 120px; height: 120px; }
.diag-ring::before { -webkit-mask: radial-gradient(circle, transparent 38px, #000 39px); mask: radial-gradient(circle, transparent 38px, #000 39px); }
.diag-ring i { width: 20px; height: 20px; }
.diag-pill { width: 200px; bottom: 16%; right: 6%; rotate: -30deg; }
.btn-grad { --bg: transparent; border-color: transparent; background: var(--grad); padding: 18px 32px; font-size: 16px; }
.btn-grad::before { background: #fff; }
.btn-grad:hover { color: var(--ink); }

/* ---------- NOSOTROS ---------- */
.about {
  padding: clamp(110px, 18vh, 200px) var(--gutter); max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start;
}
.about-body { display: flex; flex-direction: column; gap: 28px; padding-top: 40px; }
.about-body > p { color: var(--muted); font-size: 17px; }
.about-body strong { color: var(--ink); }
.about-lead { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2vw, 28px) !important; line-height: 1.3; color: var(--ink) !important; }
.about-card {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  align-self: flex-start;
}
.about-mono {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--grad-diag); color: #fff;
  font-family: var(--font-display); font-weight: 900; font-size: 19px;
}
.about-name { font-family: var(--font-display); font-weight: 900; font-size: 21px; line-height: 1.1; }
.about-role { font-size: 14px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq {
  padding: 0 var(--gutter) clamp(110px, 18vh, 200px); max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start;
}
.faq-head { position: sticky; top: 120px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(18px, 1.6vw, 23px); letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; flex: 0 0 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px; font-weight: 400;
  border: 1px solid var(--line); transition: transform .4s var(--ease), background .3s, color .3s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--grad-diag); color: #fff; border-color: transparent; }
.faq-list details p { padding: 0 50px 26px 0; color: var(--muted); max-width: 60ch; }

/* ---------- CTA ---------- */
.cta { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.cta-media {
  position: absolute; inset: 0;
  clip-path: circle(12% at 50% 50%);
  will-change: clip-path;
}
.cta-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.3); }
.cta-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(30,24,56,.93) 30%, rgba(105,79,155,.78) 75%, rgba(234,111,139,.6)); }
.cta-content {
  position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto;
  padding: 120px var(--gutter);
  display: flex; flex-direction: column; align-items: flex-start; gap: 48px;
}
.cta-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(50px, 8vw, 132px); line-height: .95; letter-spacing: -0.04em; max-width: 13ch; }
.cta-title em { display: inline-block; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-actions .btn { padding: 18px 30px; font-size: 16px; }
.btn-wa { --bg: #25d366; --fg: #0b3d20; }
.btn-wa::before { background: #fff; }
.btn-wa:hover { color: #0b3d20; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: #fff; padding: 90px var(--gutter) 34px; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--grad); }
.footer-top { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 50px; flex-wrap: wrap; padding-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-tagline { color: #b3aec4; font-size: 15px; letter-spacing: .06em; }
.logo-big img { width: clamp(260px, 38vw, 560px); height: auto; }
.footer-cols { display: flex; gap: clamp(40px, 6vw, 100px); flex-wrap: wrap; }
.footer-cols div { display: flex; flex-direction: column; gap: 10px; }
.footer-h { font-size: 12px; text-transform: uppercase; letter-spacing: .16em; color: #f3c6b0; font-weight: 600; margin-bottom: 6px; }
.footer-cols a { color: #d4cfe0; transition: color .3s; }
.footer-cols a:hover { color: var(--pink); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #9a94ad; }
.to-top:hover { color: #fff; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-links, .nav > .btn { display: none; }
  .nav-toggle { display: block; }
  .nav { padding: 6px 6px 6px 18px; }
  .hero-float--2, .shape-pill--2 { display: none; }
  .hero-float--1 { top: 12%; right: 4%; }
  .hero-float--3 { bottom: 4%; }
  .work-col:nth-child(2) { margin-top: 80px; }
  .method-pin { height: auto; padding: 110px 0; }
  .method-intro { flex: none; margin: 0 0 20px; }
  .method-progress { display: none; }
  .method-track { flex-direction: column; align-items: stretch; }
  .step { flex: none; }
  .service { grid-template-columns: 44px 1fr 30px; gap: 14px; }
  .service p { grid-column: 2 / 3; }
  .service-arrow { grid-row: 1; grid-column: 3; }
  .service-cursor { display: none; }
  .band-content { grid-template-columns: 1fr 1fr; gap: 30px; }
  .work-cats { grid-template-columns: 1fr; }
  .work-cat { min-height: 0; }
  .about { grid-template-columns: 1fr; gap: 20px; }
  .about-body { padding-top: 0; }
  .diag-ring { display: none; }
  .plan-grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
}
@media (max-width: 560px) {
  body { font-size: 15px; }
  .nav .logo img { height: 22px; }
  .hero { padding-top: 120px; }
  .hero-float, .shape { display: none; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { justify-content: center; padding: 16px 18px; }
  .work-head .btn { width: 100%; justify-content: center; }
  .expand-media { clip-path: inset(18% 8% 18% 8% round 28px); }
  .work-grid { grid-template-columns: 1fr; }
  .work-col:nth-child(2) { margin-top: 0; }
  .work-card figcaption strong { font-size: 18px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .stat-num { font-size: 56px; }
  .about-card { border-radius: 24px; }
  .plan { padding: 30px 24px; }
  .faq-list details p { padding-right: 0; }
}

/* ---------- movimiento reducido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .expand-media, .cta-media { clip-path: none !important; }
  .expand-media > img, .cta-media img, .step-img img { transform: none !important; }
  .manifesto-text .w { opacity: 1 !important; }
}
