/* =========================================================
   Gema Parreño · Consultoría — Sistema "Binuza" (violeta)
   Consultoría corporativa moderna · acento violeta
   ========================================================= */

:root {
  /* Acento — paleta de marca (violeta suavizado + ciruela del logo actual) */
  --violet:      #7A55C7;
  --violet-600:  #6945B5;
  --violet-700:  #57379E;
  --violet-tint: #F0EAF8;
  --violet-tint2:#F7F4FB;
  --plum:        #A5549A;
  --grad:        linear-gradient(105deg, #A5549A, #5B4796);

  /* Neutros */
  --bg:        #FFFFFF;
  --bg-soft:   #F8F7FA;
  --bg-tint:   #F4F1F8;
  --ink:       #14122B;   /* titulares */
  --ink-2:     #4C4866;   /* texto */
  --muted:     #8A86A2;   /* secundario */
  --line:      #E9E7F3;
  --line-2:    #EFEDF7;

  /* Oscuro (footer / bandas) */
  --dark:      #141230;
  --dark-2:    #1C1942;
  --dark-card: #221E4A;

  /* Apoyo */
  --gold:      #F7B73C;   /* estrellas */
  --mint:      #18B981;   /* stat positivo ocasional */

  /* Tipografía */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;

  /* Métrica */
  --container: 1240px;
  --gutter: clamp(18px, 4.5vw, 56px);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 26px;
  --r-xl: 38px;
  --shadow-sm: 0 2px 10px rgba(20,18,43,0.05);
  --shadow:    0 22px 50px -24px rgba(20,18,43,0.20);
  --shadow-lg: 0 40px 80px -36px rgba(20,18,43,0.30);
  --shadow-violet: 0 18px 36px -14px rgba(122,85,199,0.40);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0; font-family: var(--font);
  font-size: 17px; line-height: 1.65; color: var(--ink-2);
  background: var(--bg); font-weight: 400;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--violet); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6.5vw, 84px); }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }
.bg-dark { background: var(--dark); color: #cfcbe6; }
.relative { position: relative; }
.center { text-align: center; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { margin: 0; color: var(--ink); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
.display { font-family: var(--font-display); font-size: clamp(46px, 6vw, 80px); line-height: 1.02; letter-spacing: 0; font-weight: 600; }
.h2 { font-family: var(--font-display); font-size: clamp(34px, 4.2vw, 54px); line-height: 1.08; letter-spacing: 0; font-weight: 600; }
.h3 { font-size: clamp(21px, 2.2vw, 27px); letter-spacing: -0.015em; font-weight: 700; }
.lead { font-size: clamp(17px, 1.35vw, 19px); line-height: 1.7; color: var(--ink-2); }
.muted { color: var(--muted); }
.measure { max-width: 56ch; }
.measure-sm { max-width: 46ch; }
.balance { text-wrap: balance; }
.vio { color: var(--plum); }
.display .vio, .h2 .vio { font-style: italic; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

/* eyebrow / section label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--violet); background: var(--violet-tint);
  padding: 8px 15px 8px 13px; border-radius: 999px; white-space: nowrap;
}
.eyebrow svg, .eyebrow i { width: 15px; height: 15px; stroke-width: 2.4; }
.eyebrow--plain { background: transparent; padding-left: 0; }
.bg-dark .eyebrow { background: rgba(108,77,246,0.20); color: #b9a7ff; }

.head { max-width: 640px; }
.head .h2 { margin-top: 16px; }
.head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font); font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em;
  padding: 14px 16px 14px 24px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .25s cubic-bezier(.2,.7,.3,1); white-space: nowrap;
}
.btn .bi {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.22); transition: transform .3s, background .3s;
}
.btn .bi svg, .btn .bi i { width: 16px; height: 16px; stroke-width: 2.4; }
.btn:hover .bi { transform: rotate(-45deg); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-violet); }
.btn-primary:hover { filter: brightness(1.07); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark .bi { background: rgba(255,255,255,0.16); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); padding: 14px 24px; }
.btn-outline:hover { border-color: var(--violet); color: var(--violet); }
.bg-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,0.25); }
.bg-dark .btn-outline:hover { border-color: #fff; color: #fff; }
.btn-white { background: #fff; color: var(--ink); padding: 14px 24px; }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { font-size: 16px; padding: 16px 18px 16px 28px; }
.link-more {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px;
  color: var(--ink); transition: gap .25s, color .25s;
}
.link-more .bi { width: 26px; height: 26px; border-radius: 50%; background: var(--violet-tint); color: var(--violet); display: grid; place-items: center; transition: background .25s, color .25s, transform .25s; }
.link-more .bi svg, .link-more .bi i { width: 14px; height: 14px; stroke-width: 2.6; }
.link-more:hover { color: var(--violet); }
.link-more:hover .bi { background: var(--violet); color: #fff; transform: rotate(-45deg); }

/* ---------- decorative shapes ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; pointer-events: none; z-index: 0; }
.blob-v { background: radial-gradient(circle, rgba(141,77,170,0.38), transparent 70%); }
.dots { position: absolute; pointer-events: none; z-index: 0;
  background-image: radial-gradient(var(--violet) 1.6px, transparent 1.6px);
  background-size: 18px 18px; opacity: 0.18; }
.ring { position: absolute; border: 1.5px dashed rgba(108,77,246,0.35); border-radius: 50%; pointer-events: none; z-index: 0; }

/* ---------- Image placeholders ---------- */
.ph { position: relative; overflow: hidden; background:
    repeating-linear-gradient(135deg, rgba(108,77,246,0.06) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--violet-tint), var(--bg-soft));
  border: 1px solid var(--line); display: flex; align-items: flex-end; }
.ph .ph-cap { font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted);
  background: rgba(255,255,255,0.82); backdrop-filter: blur(4px);
  padding: 7px 12px; border-radius: 0 10px 0 10px; margin: 0; }
.ph--person { aspect-ratio: 3/4; }
.ph--wide { aspect-ratio: 16/11; }
.ph--sq { aspect-ratio: 1/1; }
.r-lg { border-radius: var(--r-lg); }
.r-xl { border-radius: var(--r-xl); }

/* ---------- NAV ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .35s, box-shadow .35s; }
.nav-inner { max-width: var(--container); margin-inline: auto; padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.scrolled { background: rgba(255,255,255,0.9); backdrop-filter: saturate(160%) blur(14px); box-shadow: var(--shadow-sm); }
.brand { display: flex; flex-direction: column; line-height: 1; color: var(--ink); }
.brand b { font-family: var(--font-display); font-weight: 600; font-size: 25px; letter-spacing: 0.01em; color: inherit; }
.brand small { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--plum); margin-top: 4px; }
.brand--light { color: #fff; }
.brand--light small { color: #cbbcff; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink); padding: 9px 14px; border-radius: 999px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--violet); }
.nav-links a.active { color: var(--violet); background: var(--violet-tint); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-call { display: flex; align-items: center; gap: 11px; }
.nav-call .ci { width: 42px; height: 42px; border-radius: 50%; background: var(--violet-tint); color: var(--violet); display: grid; place-items: center; }
.nav-call .ci svg, .nav-call .ci i { width: 19px; height: 19px; }
.nav-call .ct small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; }
.nav-call .ct b { font-size: 15px; color: var(--ink); font-weight: 700; white-space: nowrap; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--ink); }
.nav-burger svg, .nav-burger i { width: 26px; height: 26px; }

.mobile-menu { position: fixed; inset: 0; z-index: 110; background: #fff; transform: translateX(100%);
  transition: transform .4s cubic-bezier(.7,0,.2,1); display: flex; flex-direction: column; padding: 22px var(--gutter); }
.mobile-menu.open { transform: none; }
.mm-top { display: flex; justify-content: space-between; align-items: center; }
.mm-close { background: var(--bg-soft); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 22px; cursor: pointer; color: var(--ink); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; margin-top: 6vh; }
.mobile-menu nav a { font-size: 26px; font-weight: 700; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--line); letter-spacing: -0.02em; }
.mobile-menu .mm-cta { margin-top: auto; justify-content: center; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(55% 75% at 88% 10%, rgba(165,84,154,0.09), transparent 65%),
  radial-gradient(45% 65% at 6% 88%, rgba(91,71,150,0.07), transparent 60%),
  linear-gradient(180deg, #FAF9FC, #fff 88%);
  padding-top: clamp(120px, 15vw, 168px); padding-bottom: clamp(50px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); align-items: center; position: relative; z-index: 2; }
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 22px; max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.avatars { display: flex; }
.avatars span { width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -12px; background: linear-gradient(150deg, var(--violet-tint), var(--plum)); box-shadow: var(--shadow-sm); }
.avatars span:first-child { margin-left: 0; }
.hero-trust .ht-txt b { color: var(--ink); font-weight: 800; }
.hero-trust .ht-txt { font-size: 14px; line-height: 1.35; }

.hero-media { position: relative; }
.hero-photo { position: relative; z-index: 2; border-radius: 50% 50% 46% 46% / 8% 8% 6% 6%; aspect-ratio: 4/4.4; }
.hero-photo.ph { border-radius: 280px 280px 28px 28px; }
.float-card { position: absolute; z-index: 4; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 13px 16px; display: flex; align-items: center; gap: 12px; }
.float-card .fc-ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--violet-tint); color: var(--violet); flex: 0 0 auto; }
.float-card .fc-ic svg, .float-card .fc-ic i { width: 20px; height: 20px; }
.float-card .fc-n { font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1; }
.float-card .fc-l { font-size: 12px; color: var(--muted); font-weight: 600; }
.float-card.bar { display: block; min-width: 210px; }
.float-card.bar .row { display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.float-card.bar .track { height: 7px; border-radius: 999px; background: var(--violet-tint); margin-top: 9px; overflow: hidden; }
.float-card.bar .fill { height: 100%; border-radius: 999px; background: var(--violet); }
.fc-tl { top: 8%; right: -2%; }
.fc-bl { bottom: 12%; left: -5%; }

/* ---------- ABOUT (collage + stat badge) ---------- */
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.collage { position: relative; }
.collage .c1 { width: 78%; border-radius: var(--r-lg); aspect-ratio: 4/5; }
.collage .c2 { position: absolute; right: 0; bottom: 8%; width: 52%; border-radius: var(--r); aspect-ratio: 1/1; border: 6px solid #fff; box-shadow: var(--shadow); }
.stat-badge { position: absolute; left: 4%; bottom: -6%; z-index: 5; background: var(--grad); color: #fff; border-radius: var(--r); padding: 16px 20px; box-shadow: var(--shadow-violet); }
.stat-badge .n { font-size: 34px; font-weight: 800; line-height: 1; }
.stat-badge .l { font-size: 12.5px; font-weight: 600; opacity: 0.92; margin-top: 4px; }
.feature-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 26px 0; }
.feature-inline { display: flex; gap: 13px; align-items: flex-start; }
.feature-inline .fi-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--violet-tint); color: var(--violet); display: grid; place-items: center; flex: 0 0 auto; }
.feature-inline .fi-ic svg, .feature-inline .fi-ic i { width: 23px; height: 23px; }
.feature-inline h4 { font-size: 16px; font-weight: 700; line-height: 1.25; }
.about-foot { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- STRIP (sectores) ---------- */
.strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
.strip-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); font-size: 15px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px; box-shadow: var(--shadow-sm); }
.strip-item svg, .strip-item i { width: 18px; height: 18px; color: var(--violet); }

/* ---------- SERVICES ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.svc-card::after { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--violet); transition: width .35s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { width: 100%; }
.svc-ic { width: 64px; height: 64px; border-radius: 16px; background: var(--violet-tint); color: var(--violet); display: grid; place-items: center; margin-bottom: 22px; transition: background .3s, color .3s; }
.svc-ic svg, .svc-ic i { width: 30px; height: 30px; stroke-width: 1.8; }
.svc-card:hover .svc-ic { background: var(--violet); color: #fff; }
.svc-card h3 { font-size: 20px; font-weight: 700; }
.svc-card .svc-li { margin: 14px 0 18px; display: grid; gap: 10px; }
.svc-card .svc-li li { display: flex; gap: 9px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.svc-card .svc-li svg, .svc-card .svc-li i { width: 17px; height: 17px; color: var(--violet); flex: 0 0 auto; margin-top: 2px; }
.svc-card .svc-price { font-size: 13px; font-weight: 700; color: var(--violet); margin-bottom: 16px; }
.svc-card .svc-price span { color: var(--muted); font-weight: 600; }

/* ---------- WHY (stats + feature card) ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 5vw, 80px); align-items: center; }
.why-stats { display: flex; gap: 38px; margin-top: 26px; }
.why-stats .n { font-size: clamp(34px, 4vw, 46px); font-weight: 800; color: var(--violet); line-height: 1; }
.why-stats p { margin: 8px 0 0; font-size: 14px; max-width: 22ch; }
.feature-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 12px; }
.feature-row { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: var(--r); transition: background .3s; }
.feature-row + .feature-row { border-top: 1px solid var(--line-2); }
.feature-row:hover { background: var(--violet-tint2); }
.feature-row .fr-ic { width: 54px; height: 54px; border-radius: 14px; background: var(--violet-tint); color: var(--violet); display: grid; place-items: center; flex: 0 0 auto; }
.feature-row .fr-ic svg, .feature-row .fr-ic i { width: 26px; height: 26px; }
.feature-row h4 { font-size: 18px; font-weight: 700; }
.feature-row p { margin: 7px 0 0; font-size: 14.5px; }

/* ---------- PROCESS ---------- */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.proc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; position: relative; transition: transform .3s, box-shadow .3s; }
.proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.proc-n { font-size: 15px; font-weight: 800; color: var(--violet); background: var(--violet-tint); width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px; }
.proc-card h3 { font-size: 19px; font-weight: 700; }
.proc-card p { margin: 10px 0 0; font-size: 14.5px; }
.proc-step-k { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }

/* ---------- CASOS (numbered list + panel) ---------- */
.casos-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.caso-list { display: grid; }
.caso { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 24px 8px;
  border-top: 1px solid var(--line); cursor: pointer; transition: padding .3s, background .3s; }
.caso:last-child { border-bottom: 1px solid var(--line); }
.caso .cn { font-size: 14px; font-weight: 800; color: var(--muted); }
.caso h3 { font-size: clamp(18px, 1.9vw, 23px); font-weight: 700; color: var(--ink); transition: color .25s; }
.caso .cgo { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: all .3s; }
.caso .cgo svg, .caso .cgo i { width: 17px; height: 17px; }
.caso:hover, .caso.active { padding-left: 18px; }
.caso:hover h3, .caso.active h3 { color: var(--violet); }
.caso:hover .cn, .caso.active .cn { color: var(--violet); }
.caso:hover .cgo, .caso.active .cgo { background: var(--violet); border-color: var(--violet); color: #fff; transform: rotate(-45deg); }
.caso-panel { position: sticky; top: 100px; background: linear-gradient(135deg, #A5549A, #5B4796); color: #fff; border-radius: var(--r-xl); padding: clamp(28px, 3.5vw, 44px); box-shadow: var(--shadow-violet); overflow: hidden; min-height: 320px; }
.caso-panel .cp-q { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
.caso-panel .cp-said { font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; line-height: 1.2; margin: 14px 0 22px; letter-spacing: -0.02em; }
.caso-panel .cp-k { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; margin-bottom: 8px; display: block; }
.caso-panel .cp-real { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.92); }
.caso-panel .cp-quote { position: absolute; right: 18px; top: 8px; font-size: 120px; line-height: 1; font-weight: 800; opacity: 0.14; font-family: Georgia, serif; }

/* ---------- BAND (foto + overlay) ---------- */
.band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(56px, 9vw, 120px) clamp(24px, 5vw, 80px); text-align: center; }
.band .band-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, #2a2358, #141230); }
.band .band-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,48,0.62), rgba(20,18,48,0.78)); }
.band > * { position: relative; z-index: 2; }
.band .h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.play { width: 76px; height: 76px; border-radius: 50%; background: #fff; color: var(--violet); display: grid; place-items: center; margin: 0 auto 18px; box-shadow: 0 0 0 0 rgba(255,255,255,0.5); animation: pulse 2.4s infinite; }
.play svg, .play i { width: 28px; height: 28px; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,0.45)} 70%{box-shadow:0 0 0 22px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-contact { background: var(--grad); color: #fff; border-radius: var(--r-lg); padding: 26px; margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.faq-contact .fq-ic { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.18); display: grid; place-items: center; flex: 0 0 auto; }
.faq-contact small { opacity: 0.85; font-size: 13px; }
.faq-contact b { font-size: 20px; font-weight: 800; }
.acc { display: grid; gap: 14px; }
.acc-item { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc-item.open { box-shadow: var(--shadow); border-color: transparent; }
.acc-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%;
  text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: var(--font);
  font-size: 17px; font-weight: 700; color: var(--ink); }
.acc-item.open .acc-q { color: var(--violet); }
.acc-ic { width: 30px; height: 30px; border-radius: 50%; background: var(--violet-tint); color: var(--violet); display: grid; place-items: center; flex: 0 0 auto; transition: transform .3s, background .3s, color .3s; }
.acc-ic svg, .acc-ic i { width: 16px; height: 16px; }
.acc-item.open .acc-ic { background: var(--violet); color: #fff; transform: rotate(180deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-a-inner { padding: 0 24px 22px; font-size: 15px; color: var(--ink-2); line-height: 1.6; max-width: 60ch; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; overflow: hidden; background: var(--dark); border-radius: 0; text-align: center; padding-block: clamp(56px, 8vw, 100px); }
.cta-final .h2 { color: #fff; max-width: 18ch; margin: 0 auto 30px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--dark); color: #b3aecd; padding-block: clamp(40px, 6vw, 72px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer h4 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 22px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer a { font-size: 14.5px; color: #b3aecd; transition: color .2s, padding .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer li > a:hover { color: #fff; padding-left: 3px; }
.footer .f-about p { font-size: 14.5px; max-width: 34ch; margin: 18px 0; line-height: 1.6; }
.f-soc { display: flex; gap: 10px; }
.f-soc a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; }
.f-soc a:hover { background: var(--violet); padding: 0; }
.f-soc svg, .f-soc i { width: 17px; height: 17px; }
.f-news { display: flex; gap: 13px; align-items: center; }
.f-news .ph { width: 56px; height: 56px; border-radius: 10px; flex: 0 0 auto; }
.f-news small { color: var(--violet); font-weight: 600; font-size: 12px; }
.f-news a { color: #fff; font-size: 14px; font-weight: 600; line-height: 1.35; }
.footer-bar { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-block: 24px; font-size: 13.5px; }
.footer-bar a:hover { color: #fff; }
.foot-contact { display: grid; grid-template-columns: repeat(3,auto); gap: 30px; padding-block: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-contact .fcx { display: flex; align-items: center; gap: 13px; }
.foot-contact .fcx .ci { width: 46px; height: 46px; border-radius: 50%; background: rgba(108,77,246,0.25); color: #b9a7ff; display: grid; place-items: center; flex: 0 0 auto; }
.foot-contact small { font-size: 12.5px; color: #9d98bb; }
.foot-contact b { color: #fff; font-weight: 700; font-size: 15px; }

/* ---------- FORM ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea { font-family: var(--font); font-size: 15px; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid transparent; border-radius: 12px; padding: 14px 16px; width: 100%; transition: border-color .2s, background .2s; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); background: #fff; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--violet); flex: 0 0 auto; }
.form-ok { display: none; background: var(--violet-tint); border-radius: 12px; padding: 15px 18px; color: var(--violet-700); font-weight: 600; font-size: 14.5px; }
.form-ok.show { display: block; }

/* ---------- page hero ---------- */
.page-hero { position: relative; overflow: hidden; background:
  radial-gradient(50% 80% at 85% 0%, rgba(165,84,154,0.08), transparent 60%),
  radial-gradient(40% 70% at 10% 100%, rgba(91,71,150,0.06), transparent 60%),
  #FAF9FC;
  padding-top: clamp(120px, 15vw, 168px); padding-bottom: clamp(44px, 6vw, 80px); text-align: center; }
.breadcrumb { display: inline-flex; gap: 9px; align-items: center; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.breadcrumb a:hover { color: var(--violet); }
.page-hero .display { margin-top: 18px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.08s}.reveal[data-d="2"]{transition-delay:.16s}.reveal[data-d="3"]{transition-delay:.24s}.reveal[data-d="4"]{transition-delay:.32s}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} .play{animation:none} }

/* ---------- grids util ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,32px); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.stack { display: grid; gap: 18px; }

/* ---------- TESTIMONIOS ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 2.6vw, 34px); transition: box-shadow .3s, transform .3s, border-color .3s; overflow: hidden; }
.tst-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.tst-mark { position: absolute; top: 14px; right: 24px; font-family: Georgia, serif; font-size: 92px; line-height: 1; color: var(--violet-tint); font-weight: 800; pointer-events: none; }
.tst-stars { display: flex; gap: 3px; margin-bottom: 16px; position: relative; }
.tst-stars svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); stroke-width: 1; }
.tst-quote { font-size: 16.5px; line-height: 1.6; color: var(--ink); font-weight: 500; position: relative; }
.tst-author { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-2); }
.tst-av { width: 50px; height: 50px; border-radius: 50%; background: var(--grad); flex: 0 0 auto; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 18px; }
.tst-author b { display: block; font-size: 15.5px; color: var(--ink); font-weight: 700; }
.tst-author small { color: var(--muted); font-size: 13px; }
.tst-g { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; font-size: 12px; font-weight: 600; color: var(--muted); }
.tst-g svg { width: 14px; height: 14px; color: var(--violet); }
@media (max-width: 940px){ .tst-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ---------- hero shape extra ---------- */
.hero-bg-shape { position: absolute; z-index: 1; width: 112%; aspect-ratio: 1 / 1.08; left: -6%; top: 4%;
  background: linear-gradient(160deg, var(--plum), var(--violet)); opacity: 0.12;
  border-radius: 46% 54% 48% 52% / 56% 50% 50% 44%; pointer-events: none; }
.shape-sq { position: absolute; z-index: 3; border-radius: 9px; background: var(--violet); pointer-events: none; }
.shape-sq.hollow { background: transparent; border: 2.5px solid var(--violet); }

/* ---------- responsive ---------- */
@media (max-width: 1080px){
  .nav-links{display:none} .nav-call .ct{display:none} .nav-burger{display:block}
  .svc-grid{grid-template-columns:repeat(2,1fr)} .proc-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr} 
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr; gap:48px} .hero-media{max-width:440px; margin-inline:auto}
  .about-grid,.why-grid,.casos-grid,.faq-grid{grid-template-columns:1fr; gap:40px}
  .caso-panel{position:static}
  .foot-contact{grid-template-columns:1fr}
}
@media (max-width: 620px){
  body{font-size:16px}
  .svc-grid,.proc-grid,.grid-3,.grid-2{grid-template-columns:1fr}
  .feature-pair{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .why-stats{gap:24px}
  .float-card{display:none}
  .stat-badge{left:50%; transform:translateX(-50%)}
}

/* ---------- Refinos de accesibilidad (sin cambio visual) ---------- */
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 6px; }
.bg-dark :focus-visible, .cta-final :focus-visible, .footer :focus-visible { outline-color: #b9a7ff; }
.caso:focus-visible { outline-offset: -2px; }
