/* =========================================================
   Proyecta — Consultora de Talento Humano
   Sistema de diseño  ·  Paleta violeta + verde salvia
   ========================================================= */

:root {
  /* Marca */
  --violet-900: #3d1f42;
  --violet-700: #5a2d63;
  --violet:     #6e3a73;
  --violet-500: #8b5a92;
  --violet-300: #b892bd;
  --violet-100: #efe6f1;

  --green-700: #5f7a4f;
  --green:     #7c9469;
  --green-400: #9db08c;
  --green-100: #e9eee3;

  /* Neutros */
  --ink:      #2a2333;
  --ink-soft: #5b5566;
  --line:     #ece8ef;
  --paper:    #faf8f5;   /* tono papel de la marca */
  --white:    #ffffff;

  /* Gradientes / acentos */
  --grad-brand: linear-gradient(120deg, var(--violet) 0%, var(--violet-500) 55%, var(--green) 130%);
  --grad-soft:  linear-gradient(160deg, #f6f1f8 0%, #eef3ea 100%);

  /* Sistema */
  --radius:    18px;
  --radius-lg: 32px;
  --radius-xl: 46px;
  --shadow-sm: 0 6px 20px rgba(60, 30, 66, .06);
  --shadow:    0 18px 50px rgba(60, 30, 66, .12);
  --shadow-lg: 0 40px 90px rgba(60, 30, 66, .18);
  --container:  1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-script: 'Dancing Script', cursive;
}

/* ---------- Reset ligero ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.icon { width: 1.25em; height: 1.25em; stroke-width: 1.9; flex: none; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 92vw); margin-inline: auto; }
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 128px) 0; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -.02em; overflow-wrap: break-word; }
/* Evita que celdas de grid/flex se desborden por su contenido (causa clásica de scroll horizontal) */
.hero-grid > *, .about-grid > *, .cta-inner > *, .faq-grid > *, .contact-grid > *,
.serv-grid > *, .services-strip > *, .values-grid > *, .process-grid > *,
.jobs-grid > *, .testi-grid > *, .articles-grid > *, .mv-cards > *,
.hero-stats > *, .trust-row > *, .footer-grid > *, .coaching-programs > *,
.field-row > *, .serv-list > * { min-width: 0; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.35rem; }
.accent { color: var(--violet); }
.accent-g { color: var(--green-700); }
.script { font-family: var(--font-script); font-weight: 700; letter-spacing: 0; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--violet);
  padding: .45rem .9rem; border-radius: 100px;
  background: var(--violet-100);
}
.eyebrow.g { color: var(--green-700); background: var(--green-100); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 18px 0 14px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: .95rem;
  padding: .95rem 1.6rem; border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn .icon { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 12px 30px rgba(110, 58, 115, .35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(110, 58, 115, .45); }
.btn-ghost { background: #fff; color: var(--violet); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { border: 1.5px solid var(--violet-300); color: var(--violet); }
.btn-outline:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* Blobs decorativos */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; pointer-events: none; }
.blob-v { background: radial-gradient(circle, var(--violet-300), transparent 70%); }
.blob-g { background: radial-gradient(circle, var(--green-400), transparent 70%); }
.dots { position: absolute; z-index: 0; opacity: .5; color: var(--violet-300); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 18px 0;
}
.site-header.scrolled { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .5rem; flex: none; }
.brand-logo { height: 54px; width: auto; display: block; }
.site-header.scrolled .brand-logo { height: 48px; transition: height .35s; }
.brand-mark { height: 48px; width: auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b { font-size: 1.7rem; font-weight: 700; color: var(--violet); white-space: nowrap; }
.brand-word small { font-size: .56rem; letter-spacing: .13em; text-transform: uppercase; color: var(--green-700); font-weight: 600; margin-top: 3px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-weight: 600; font-size: .92rem; color: var(--ink); position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad-brand); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); align-items: center; justify-content: center; color: var(--violet); }
.nav-toggle .icon { width: 1.5em; height: 1.5em; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: 150px 0 90px; overflow: hidden; }
.hero .blob-v { width: 460px; height: 460px; top: -120px; left: -160px; }
.hero .blob-g { width: 420px; height: 420px; bottom: -160px; right: -140px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; z-index: 2; }
.hero h1 { margin: 22px 0 20px; }
.hero .lead { max-width: 30rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 32px; }
.hero-stats { display: flex; gap: 2.2rem; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-size: 2rem; font-weight: 800; color: var(--violet); line-height: 1; }
.hero-stats .lbl { font-size: .85rem; color: var(--ink-soft); margin-top: 4px; }

/* Composición disruptiva de imágenes (estilo HRConsultify) */
.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: 40px 40px 40px 120px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.3; background: var(--grad-soft);
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; background: #fff; border-radius: 20px;
  box-shadow: var(--shadow); padding: 16px 20px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
  animation: float 5s ease-in-out infinite;
}
.float-card .ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; color: #fff; flex: none; }
.float-card small { display: block; font-size: .72rem; color: var(--ink-soft); font-weight: 600; }
.float-card strong { font-size: 1.15rem; }
.float-card.top { top: 24px; left: -34px; }
.float-card.bottom { bottom: 40px; right: -28px; animation-delay: 1.5s; }
.float-badge {
  position: absolute; top: 30px; right: 24px; z-index: 3;
  background: var(--violet); color: #fff; font-weight: 700; font-size: .8rem;
  padding: .5rem 1rem; border-radius: 100px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .4rem;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Tira de confianza */
.trust { padding: 26px 0 6px; }
.trust p { text-align: center; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 22px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 5vw, 60px); align-items: center; }
.trust-row span { font-weight: 800; font-size: 1.25rem; color: var(--ink); opacity: .38; letter-spacing: -.02em; transition: opacity .3s; }
.trust-row span:hover { opacity: .8; }

/* =========================================================
   SERVICIOS (píldoras superpuestas sobre hero)
   ========================================================= */
.services-strip {
  position: relative; z-index: 5;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(24px, 3vw, 40px);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.mini-serv { text-align: center; padding: 22px 14px; border-radius: 20px; transition: background .3s, transform .3s; }
.mini-serv:hover { background: var(--grad-soft); transform: translateY(-4px); }
.mini-serv .ic { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 17px; display: grid; place-items: center; background: var(--violet-100); color: var(--violet); }
.mini-serv:nth-child(even) .ic { background: var(--green-100); color: var(--green-700); }
.mini-serv h4 { font-size: 1rem; margin-bottom: 4px; }
.mini-serv p { font-size: .82rem; color: var(--ink-soft); }

/* Servicios detallados */
.serv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.serv-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.serv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.serv-card.wide { grid-column: span 2; }
.serv-card .media { position: relative; aspect-ratio: 16/8; overflow: hidden; }
.serv-card.wide .media { aspect-ratio: 16/6; }
.serv-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.serv-card:hover .media img { transform: scale(1.06); }
.serv-card .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--violet); font-weight: 700; font-size: .8rem;
  padding: .5rem .9rem; border-radius: 100px; display: flex; align-items: center; gap: .45rem;
}
.serv-card .body { padding: 26px 28px 30px; }
.serv-card .body h3 { margin-bottom: 10px; }
.serv-card .body p { color: var(--ink-soft); font-size: .96rem; }
.serv-list { margin-top: 16px; display: grid; gap: 10px; }
.serv-list li { display: flex; gap: 10px; font-size: .92rem; align-items: flex-start; }
.serv-list .icon { color: var(--green-700); margin-top: 3px; width: 1.05em; height: 1.05em; }
.serv-list strong { font-weight: 700; }
.serv-list.two { grid-template-columns: 1fr 1fr; }

/* =========================================================
   NOSOTROS / MISIÓN-VISIÓN
   ========================================================= */
.about { background: var(--grad-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.about-media { position: relative; }
.about-media .m1 { border-radius: 36px 36px 120px 36px; overflow: hidden; box-shadow: var(--shadow); }
.about-media .m2 {
  position: absolute; width: 46%; bottom: -30px; right: -22px;
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.about-media .badge-exp {
  position: absolute; top: -22px; left: -22px; z-index: 3;
  background: var(--grad-brand); color: #fff; border-radius: 22px;
  padding: 18px 22px; box-shadow: var(--shadow); text-align: center;
}
.about-media .badge-exp .num { font-size: 1.9rem; font-weight: 800; line-height: 1; }
.about-media .badge-exp small { font-size: .72rem; opacity: .9; }
.mv-cards { display: grid; gap: 18px; margin-top: 30px; }
.mv-card { background: #fff; border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); display: flex; gap: 18px; }
.mv-card .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; flex: none; color: #fff; }
.mv-card.v .ic { background: var(--violet); }
.mv-card.m .ic { background: var(--green); }
.mv-card h3 { margin-bottom: 6px; }
.mv-card p { font-size: .95rem; color: var(--ink-soft); }

/* =========================================================
   VALORES / FILOSOFÍA
   ========================================================= */
.values-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 60px; }
.value {
  flex: 1 1 320px; max-width: 366px;
  background: #fff; border-radius: var(--radius); padding: 34px 30px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .35s var(--ease), border-color .35s;
}
.value:hover { transform: translateY(-8px); border-color: var(--violet-300); }
.value .ic { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: var(--violet-100); color: var(--violet); }
.value:nth-child(even) .ic { background: var(--green-100); color: var(--green-700); }
.value h4 { font-size: 1.15rem; margin-bottom: 12px; }
.value p { font-size: .88rem; color: var(--ink-soft); line-height: 1.65; }
.philosophy { background: var(--violet-900); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 64px); position: relative; overflow: hidden; }
.philosophy .blob-v { width: 340px; height: 340px; top: -120px; right: -80px; opacity: .35; }
.philosophy .quote-mark { font-family: var(--font-script); font-size: 6rem; line-height: .5; color: var(--violet-300); opacity: .5; }
.philosophy p { font-size: clamp(1.15rem, 2vw, 1.6rem); font-weight: 500; max-width: 50rem; position: relative; z-index: 2; }
.philosophy .tag-you { color: var(--green-400); }

/* =========================================================
   PROCESO
   ========================================================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding: 30px 24px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step .n { font-family: var(--font-script); font-size: 3rem; color: var(--violet-300); line-height: .8; }
.step .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; margin: 8px 0 16px; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--ink-soft); }
.step:not(:last-child)::after { content: ""; position: absolute; top: 54px; right: -16px; width: 22px; height: 2px; background: var(--violet-300); z-index: 2; }

/* =========================================================
   VACANTES
   ========================================================= */
.jobs { background: var(--grad-soft); }
.jobs-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip {
  padding: .6rem 1.25rem; border-radius: 100px; font-weight: 600; font-size: .9rem;
  background: #fff; color: var(--ink-soft); border: 1px solid var(--line); transition: all .25s;
}
.chip.active, .chip:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.job-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); overflow: hidden; align-self: start;
  transition: box-shadow .3s, border-color .3s;
}
.job-card:hover { box-shadow: var(--shadow); border-color: var(--violet-300); }
.job-card.open { box-shadow: var(--shadow); border-color: var(--violet-300); }
.job-head { display: flex; align-items: center; gap: 16px; padding: 22px 24px; cursor: pointer; user-select: none; }
.job-head:focus-visible { outline: 2px solid var(--violet); outline-offset: -2px; border-radius: var(--radius); }
.job-head-main { flex: 1; min-width: 0; }
.job-card .logo-sq { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--violet-100); color: var(--violet); flex: none; }
.job-card .type { display: inline-block; font-size: .73rem; font-weight: 700; color: var(--green-700); background: var(--green-100); padding: .3rem .75rem; border-radius: 100px; margin-bottom: 7px; }
.job-card h3 { font-size: 1.14rem; }
.job-toggle { width: 38px; height: 38px; border-radius: 50%; background: var(--violet-100); color: var(--violet); display: grid; place-items: center; flex: none; transition: transform .35s var(--ease), background .3s, color .3s; }
.job-card.open .job-toggle { transform: rotate(45deg); background: var(--violet); color: #fff; }
.job-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.job-body-inner { display: flex; flex-direction: column; gap: 14px; padding: 4px 24px 24px; }
.job-body-inner::before { content: ""; height: 1px; background: var(--line); margin-bottom: 6px; }
.job-card .desc { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; }
.job-card .meta { display: flex; flex-wrap: wrap; gap: 10px 16px; color: var(--ink-soft); font-size: .84rem; }
.job-card .meta span { display: flex; align-items: flex-start; gap: 6px; }
.job-card .meta .icon { margin-top: 2px; width: 1em; height: 1em; }
.job-card .reqs-block { display: grid; gap: 9px; }
.job-card .reqs-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--violet); }
.job-card .reqs { display: grid; gap: 7px; }
.job-card .reqs li { display: flex; gap: 8px; align-items: flex-start; font-size: .86rem; color: var(--ink); }
.job-card .reqs .icon { color: var(--green-700); margin-top: 3px; width: 1em; height: 1em; }
.job-card .apply { align-self: flex-start; margin-top: 4px; padding: .7rem 1.3rem; border-radius: 100px; background: var(--grad-brand); color: #fff; font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: 8px; transition: transform .3s, box-shadow .3s; }
.job-card .apply:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(110,58,115,.35); }
.jobs-empty { text-align: center; color: var(--ink-soft); padding: 40px; display: none; }

/* =========================================================
   CLIENTES / TESTIMONIOS
   ========================================================= */
/* Grilla de logos de clientes */
.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.logo-tile {
  flex: 0 0 170px; width: 170px; height: 112px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; padding: 14px 20px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.logo-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.logo-tile img { max-width: 100%; max-height: 76px; width: auto; height: auto; object-fit: contain; display: block; }
@media (max-width: 480px) { .logo-tile { flex-basis: 44%; width: 44%; height: 100px; } .logo-tile img { max-height: 64px; } }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: #fff; border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px;
}
.testi .stars { display: flex; gap: 3px; color: #f0a92b; }
.testi .stars .icon { width: 1.05em; height: 1.05em; fill: currentColor; stroke: none; }
.testi p { font-size: .96rem; color: var(--ink); }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); color: #fff; font-weight: 700; flex: none; }
.testi .who strong { display: block; font-size: .95rem; }
.testi .who small { color: var(--ink-soft); font-size: .82rem; }

/* =========================================================
   ARTÍCULOS
   ========================================================= */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column;
}
.article:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.article .thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.article .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.article:hover .thumb img { transform: scale(1.07); }
.article .cat { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--violet); font-weight: 700; font-size: .74rem; padding: .35rem .8rem; border-radius: 100px; }
.article .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article .date { font-size: .8rem; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.article h3 { font-size: 1.15rem; }
.article p { font-size: .9rem; color: var(--ink-soft); }
.article .more { margin-top: auto; color: var(--violet); font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq-q .icon { transition: transform .3s; color: var(--violet); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding-bottom: 22px; color: var(--ink-soft); font-size: .95rem; }

/* =========================================================
   CTA + CONTACTO
   ========================================================= */
.cta-band { position: relative; }
.cta-inner {
  background: var(--grad-brand); border-radius: var(--radius-lg); color: #fff;
  padding: clamp(40px, 6vw, 80px); overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
}
.cta-inner .blob-g { width: 360px; height: 360px; bottom: -160px; left: -80px; opacity: .4; }
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { opacity: .92; max-width: 34rem; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 2; }
.cta-actions .btn-ghost { justify-content: center; }
.cta-actions .btn-outline { border-color: rgba(255,255,255,.6); color: #fff; justify-content: center; }
.cta-actions .btn-outline:hover { background: #fff; color: var(--violet); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 64px); }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-row { display: flex; gap: 16px; align-items: center; background: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-sm); min-width: 0; }
.contact-row .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--violet-100); color: var(--violet); flex: none; }
.contact-row > div { min-width: 0; }
.contact-row small { color: var(--ink-soft); font-size: .8rem; }
.contact-row strong { font-size: 1.02rem; overflow-wrap: anywhere; }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: #fff; color: var(--violet); box-shadow: var(--shadow-sm); transition: all .3s; }
.socials a:hover { background: var(--violet); color: #fff; transform: translateY(-4px); }

.contact-form { background: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 42px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: .9rem 1.1rem; border: 1.5px solid var(--line); border-radius: 14px;
  font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--paper); transition: border .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px var(--violet-100); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 6px; }
.form-ok { display: none; margin-top: 14px; padding: 14px 18px; border-radius: 14px; background: var(--green-100); color: var(--green-700); font-weight: 600; font-size: .9rem; align-items: center; gap: 10px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--violet-900); color: #cfc3d4; padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand-logo { height: 60px; filter: brightness(0) invert(1); opacity: .96; }
.footer .brand-mark { height: 52px; filter: brightness(0) invert(1); opacity: .95; }
.footer .brand-word b { color: #fff; }
.footer .brand-word small { color: var(--green-400); }
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer p { font-size: .9rem; opacity: .8; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { font-size: .9rem; opacity: .8; transition: opacity .25s, padding .25s; }
.footer ul a:hover { opacity: 1; padding-left: 4px; color: #fff; }
.footer .socials a { background: rgba(255,255,255,.08); color: #fff; }
.footer .socials a:hover { background: var(--green); }
.membership { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 46px; flex-wrap: wrap; }
.membership .mem-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #cfc3d4; font-weight: 700; }
.mem-logo { background: #fff; border-radius: 14px; padding: 12px 20px; display: inline-flex; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.mem-logo:hover { transform: translateY(-3px); }
.mem-logo img { height: 48px; width: auto; display: block; }
.footer-bottom { margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; opacity: .75; }

/* WhatsApp flotante */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .3s; animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float .icon { width: 1.9em; height: 1.9em; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* =========================================================
   MODAL DE POSTULACIÓN
   ========================================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(42, 35, 51, .62); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity .3s var(--ease);
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.show { opacity: 1; }
.modal {
  background: #fff; border-radius: var(--radius-lg); width: min(560px, 100%);
  max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.97); transition: transform .35s var(--ease);
}
.modal-overlay.show .modal { transform: none; }
.modal-header { padding: 28px 30px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.modal-eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--violet); }
.modal-header h3 { font-size: 1.4rem; margin: 6px 0 8px; }
.modal-vacante { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--green-700); background: var(--green-100); padding: .4rem .9rem; border-radius: 100px; }
.modal-vacante .icon { width: 1.05em; height: 1.05em; }
.modal-close { width: 40px; height: 40px; border-radius: 50%; background: var(--paper); color: var(--ink); display: grid; place-items: center; flex: none; transition: background .25s, color .25s; }
.modal-close:hover { background: var(--violet); color: #fff; }
.modal-body { padding: 22px 30px 30px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.file-drop {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  border: 1.5px dashed var(--violet-300); border-radius: 14px; padding: 16px 18px;
  background: var(--violet-100); color: var(--violet); font-weight: 600; font-size: .9rem;
  transition: background .25s, border-color .25s;
}
.file-drop:hover { background: #fff; border-color: var(--violet); }
.file-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-drop .icon { width: 1.5em; height: 1.5em; flex: none; }
.file-drop.has-file { border-style: solid; border-color: var(--green); background: var(--green-100); color: var(--green-700); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; font-size: .86rem; color: var(--ink-soft); cursor: pointer; }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--violet); flex: none; }
.form-msg { display: none; margin-top: 14px; padding: 14px 18px; border-radius: 14px; font-weight: 600; font-size: .9rem; align-items: center; gap: 10px; }
.form-msg .icon { flex: none; }
.form-ok { background: var(--green-100); color: var(--green-700); }
.form-err { background: #fdECEC; color: #c0392b; }
.form-msg.show { display: flex; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   SOCIAS / EQUIPO
   ========================================================= */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 840px; margin: 0 auto; }
.socia-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px; text-align: center; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; min-width: 0; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.socia-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.socia-photo { width: 124px; height: 124px; border-radius: 50%; padding: 5px; background: var(--grad-brand); box-shadow: var(--shadow-sm); }
.socia-photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid #fff; background: var(--violet-900); }
.socia-card h3 { margin-top: 20px; }
.socia-role { display: inline-flex; margin-top: 10px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--violet); background: var(--violet-100); padding: .4rem .95rem; border-radius: 100px; }
.socia-card p { color: var(--ink-soft); font-size: .93rem; margin-top: 14px; }
.socia-actions { margin-top: 24px; display: flex; gap: 10px; align-items: center; }
.socia-wa { width: 50px; height: 50px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 8px 20px rgba(37,211,102,.35); transition: transform .3s var(--ease); }
.socia-wa:hover { transform: translateY(-4px); }
.socia-wa .icon { width: 1.5em; height: 1.5em; }

/* =========================================================
   COACHING (sección propia)
   ========================================================= */
.coaching-sec { background: var(--paper); }
.coaching-panel {
  background: linear-gradient(135deg, var(--violet-900) 0%, var(--violet-700) 55%, var(--green-700) 135%);
  border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 82px);
  color: #fff; position: relative; overflow: hidden;
}
.coaching-panel .blob-v { width: 380px; height: 380px; top: -140px; right: -60px; opacity: .35; }
.coaching-panel .blob-g { width: 340px; height: 340px; bottom: -160px; left: -80px; opacity: .35; }
.coaching-top { max-width: 680px; margin: 0 auto 52px; text-align: center; position: relative; z-index: 2; }
.coaching-top h2 { margin: 16px 0 14px; color: #fff; }
.coaching-top p { opacity: .9; font-size: 1.05rem; }
.coaching-top .hl { color: var(--green-400); }
.coaching-programs { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; position: relative; z-index: 2; }
.cprogram {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .35s var(--ease), background .35s;
}
.cprogram:hover { transform: translateY(-8px); background: rgba(255,255,255,.14); }
.cprogram .ic { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; background: rgba(255,255,255,.14); color: #fff; margin-bottom: 4px; }
.cprogram:nth-child(2) .ic { background: var(--green); }
.cprogram:nth-child(3) .ic { background: var(--violet-500); }
.cprogram h3 { font-size: 1.22rem; color: #fff; }
.cprogram p { opacity: .85; font-size: .93rem; }
.cprogram .ctag { margin-top: auto; align-self: flex-start; font-size: .74rem; font-weight: 700; padding: .4rem .95rem; border-radius: 100px; background: rgba(255,255,255,.16); color: #fff; letter-spacing: .02em; }
.eyebrow.on-dark { background: rgba(255,255,255,.14); color: #fff; }

/* Eyebrows / subtítulos ocultos por ahora (a pedido) */
.eyebrow { display: none !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  /* Menú móvil / hamburguesa (evita que 7 ítems se amontonen en pantallas medianas) */
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 84vw); height: 100vh; height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: .35rem; background: #fff; padding: 96px 26px 30px;
    box-shadow: var(--shadow-lg); z-index: 90; overflow-y: auto;
    transform: translateX(105%); transition: transform .4s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { width: 100%; padding: 14px 4px; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .site-header { z-index: 120; } /* el header (con la X) queda por encima del panel */
  .nav-toggle { display: grid; position: relative; z-index: 130; }

  .hero-grid, .about-grid, .faq-grid, .contact-grid, .cta-inner { grid-template-columns: 1fr; }
  .services-strip { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid, .testi-grid, .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .cta-inner { text-align: center; }
  .cta-actions { max-width: 320px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-media { max-width: 480px; }
}
@media (max-width: 760px) {
  .nav-cta .btn { display: none; }
  .serv-grid, .jobs-grid, .field-row, .team-grid { grid-template-columns: 1fr; }
  .serv-card.wide { grid-column: span 1; }
  .serv-list.two { grid-template-columns: 1fr; }
  .services-strip { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .testi-grid, .articles-grid, .coaching-programs { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-visual .float-card.top { left: 0; }
  .hero-visual .float-card.bottom { right: 0; }
  .about-media .m2 { right: 0; }
}
