*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Colores de la propuesta web / brandbook */
  --aubergine:   #2a103e;
  --purple:      #4729b0;
  --grape:       #7229bc;
  --lilac:       #9d7afd;
  --pink:        #f9daea;
  --graphite:    #2c2927;
  --gray:        #f2f0f2;
  --white:       #ffffff;
}
html { scroll-behavior: smooth; }
body { font-family: 'Figtree', sans-serif; background: var(--white); color: var(--graphite); overflow-x: hidden; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 56px 18px; height: 78px;
  background: transparent;
  border-bottom: none;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 400; color: rgba(249,218,234,0.65); letter-spacing: 0.03em; transition: color 0.2s; display: flex; align-items: center; gap: .35rem; }
.nav-links a::before { content: '>'; color: var(--lilac); font-weight: 700; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: linear-gradient(var(--pink) 0 0) transparent no-repeat left / 0% 100% !important; color: var(--pink) !important; border: 1.5px solid var(--pink); padding: 8px 20px; border-radius: 100px; font-weight: 700 !important; transition: background-size 0.4s ease, color 0.2s !important; }
.nav-cta::before { display: none; }
.nav-cta:hover { background-size: 100% 100% !important; color: var(--aubergine) !important; opacity: 1; }

/* ── HERO ── */
.hero {
  min-height: 88vh; background: var(--aubergine);
  display: flex; align-items: center;
  padding: 120px 56px 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/fondo-hero.svg') center center / cover no-repeat;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 72% 48%, rgba(114,41,188,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 15% 75%, rgba(71,41,176,0.10) 0%, transparent 55%);
  animation: glow 9s ease-in-out infinite alternate;
}
@keyframes glow { from { opacity:.65; } to { opacity:1; } }
.hero-content { position: relative; z-index: 2; max-width: 860px; margin-top: 48px; }
.hero-title-carousel { width: 100%; margin-bottom: 28px; }
.hero-title-track { display: grid; grid-template-columns: 1fr; }
.hero-title-slide {
  grid-column: 1; grid-row: 1;
  font-size: clamp(40px, 5vw, 66px); font-weight: 800; line-height: 1.25;
  color: var(--pink); margin: 0;
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}
.hero-title-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-title-slide.exit {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero-title-slide span { color: #f2f0f2; background-color: #9d7afd; padding: 0 6px; border-radius: 4px; }
.hero-services {
  position: absolute; right: 120px; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 11px; align-items: flex-end;
}
.hero-service-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.13em;
  color: rgba(249,218,234,0.38); border: 1px solid rgba(249,218,234,0.1);
  background: rgba(255,255,255,0.03); backdrop-filter: blur(4px);
  padding: 7px 18px; border-radius: 100px; white-space: nowrap;
}
.hero-service-tag:nth-child(1) { transform: translateX(0px); }
.hero-service-tag:nth-child(2) { transform: translateX(-28px); }
.hero-service-tag:nth-child(3) { transform: translateX(-10px); }
.hero-service-tag:nth-child(4) { transform: translateX(-36px); }
.hero-service-tag:nth-child(5) { transform: translateX(0px); }
.hero-service-tag:nth-child(6) { transform: translateX(-44px); }
.hero-service-tag:nth-child(7) { transform: translateX(-18px); }
.hero-service-tag:nth-child(8) { transform: translateX(-30px); }
.hero-sub {
  font-size: 16px; font-weight: 300; color: rgba(249,218,234,0.75);
  line-height: 1.68; max-width: 500px; margin-bottom: 36px;
  animation: fadeUp 0.9s 0.15s ease both;
}
.hero-sub strong { color: var(--lilac); font-weight: 600; }
.btn-primary {
  display: inline-block; font-size: 15px; font-weight: 700;
  background: linear-gradient(var(--pink) 0 0) transparent no-repeat left / 0% 100%;
  color: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 100px; padding: 13px 36px;
  transition: background-size 0.4s ease, color 0.2s, transform 0.15s;
  animation: fadeUp 0.9s 0.3s ease both;
}
.btn-primary:hover { background-size: 100% 100%; color: var(--aubergine); transform: translateY(-2px); }
.hero-logo-watermark {
  position: absolute; right: 0; top: 78px; bottom: 0;
  transform: translateX(50%);
  z-index: 1; pointer-events: none; opacity: 0.07;
}
.hero-logo-watermark img { height: 100%; width: auto; display: block; filter: brightness(4) saturate(0); }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(157,122,253,0.5); z-index: 2;
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.2s;
}
.scroll-hint:hover { color: var(--lilac); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ── POR QUÉ ARBUSTA — stats ── */
.stats-section {
  background: var(--aubergine); padding: 56px 56px 64px;
}
.stats-section-header {
  text-align: center; margin-bottom: 36px;
}
.stats-section-header .section-label { color: rgba(157,122,253,0.6); }
.stats-section-header h2 {
  font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--pink); margin-bottom: 0; line-height: 1.35;
}
.stats-section-header h2 span { color: rgba(249,218,234,0.55); font-weight: 300; }
.stats-inner { max-width: 900px; margin: 0 auto; }
/* fila principal: bloque izq agrupado + bloque der */
.stats-row {
  display: flex; justify-content: center; align-items: stretch; gap: 16px;
  margin-bottom: 28px; flex-wrap: wrap;
}
/* bloque izquierdo: 2 números lado a lado con tag y fuente compartidos */
.stat-group {
  background: rgba(157,122,253,0.07); border: 1px solid rgba(157,122,253,0.15);
  border-radius: 20px; padding: 28px 32px 24px;
  flex: 1 1 500px; text-align: center;
}
.stat-group-header {
  display: flex; justify-content: center; align-items: flex-start;
  margin-bottom: 20px;
}
.stat-group-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(157,122,253,0.55);
}
.stat-group-source {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(157,122,253,0.55); text-transform: uppercase;
}
.stat-group-nums {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.stat-group-item { text-align: center; }
.stat-group-num {
  font-size: clamp(48px, 4.5vw, 68px); font-weight: 900; color: var(--pink);
  line-height: 1; margin-bottom: 8px;
}
.stat-group-title {
  font-size: 15px; font-weight: 400; color: var(--pink); line-height: 1.45;
}
.stat-group-divider {
  width: 1px; background: rgba(157,122,253,0.2); align-self: stretch; margin: 0 4px;
}
/* bloque derecho: dato único */
.stat-solo {
  background: rgba(157,122,253,0.07); border: 1px solid rgba(157,122,253,0.15);
  border-radius: 20px; padding: 28px 28px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  flex: 1 1 220px;
}
.stat-solo-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(157,122,253,0.55); margin-bottom: auto;
}
.stat-solo-num {
  font-size: clamp(52px, 5vw, 74px); font-weight: 900; color: var(--pink);
  line-height: 1; margin: 16px 0 8px;
}
.stat-solo-title {
  font-size: 16px; font-weight: 400; color: var(--pink); line-height: 1.45; margin-bottom: 24px;
}
.stat-solo-source {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(157,122,253,0.55); text-transform: uppercase; margin-top: auto;
}
.stats-conclusion {
  text-align: center; max-width: 100%; margin: 24px auto 0;
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; color: var(--pink);
  line-height: 1.4; text-wrap: balance;
}
.stats-conclusion strong { font-weight: 700; color: var(--lilac); }

/* ── TRACK RECORD ── */
.nosotros { background: url('assets/Fondo%20Arbusta%20Template%202.svg') center center / cover no-repeat; padding: 100px 56px; }
.nosotros-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.nosotros-text { display: flex; flex-direction: column; min-width: 0; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--purple); text-transform: uppercase; margin-bottom: 16px; display: block; }
.nosotros-text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--aubergine); line-height: 1.15; margin-bottom: 28px; }
.nosotros-text h2 span { color: var(--grape); }
.nosotros-stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 6px; margin-bottom: 36px;
  background: var(--gray); border-radius: 18px; padding: 36px 28px;
}
.nosotros-stat-num { font-size: 72px; font-weight: 900; color: var(--purple); line-height: 1; }
.nosotros-stat-label { font-size: 15px; color: #4a3060; line-height: 1.4; font-weight: 400; max-width: 200px; }
.btn-solid { display: inline-block; font-size: 14px; font-weight: 700; background: linear-gradient(var(--aubergine) 0 0) var(--lilac) no-repeat left / 0% 100%; color: var(--aubergine); border-radius: 100px; padding: 14px 32px; transition: background-size 0.4s ease, color 0.2s, transform 0.15s; }
.btn-solid:hover { background-size: 100% 100%; color: var(--pink); transform: translateY(-1px); }
/* carrusel inline */
.testi-inline-carousel { overflow: hidden; flex: 1; display: flex; flex-direction: column; }
.testi-inline-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); flex: 1; }
.testi-inline-card {
  flex: 0 0 100%; background: var(--gray); border-radius: 18px; padding: 36px 32px;
  box-sizing: border-box; display: flex; flex-direction: column; align-self: stretch;
}
.testi-inline-icon { font-size: 28px; color: var(--grape); opacity: 0.5; margin-bottom: 16px; line-height: 1; }
.testi-inline-quote { font-size: 15px; color: #4a3060; line-height: 1.75; font-weight: 300; font-style: italic; flex: 1; margin-bottom: 24px; }
.testi-inline-author { font-size: 14px; font-weight: 700; color: var(--aubergine); }
.testi-inline-company { font-size: 12px; font-weight: 700; color: var(--purple); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.08em; }
.testi-inline-dots { display: flex; gap: 8px; margin-top: 20px; }
.testi-inline-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(71,41,176,0.2); cursor: pointer; transition: all 0.2s;
}
.testi-inline-dot.active { background: var(--purple); width: 20px; border-radius: 3px; }
/* grid de logos */
.clientes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; min-width: 0;
}
.cliente-card {
  background: #f2f0f2; border-radius: 14px; padding: 20px;
  display: flex; align-items: center; justify-content: center;
  height: 110px; transition: background 0.2s;
}
.cliente-card:hover { background: #e8e5e8; }
.cliente-card img {
  max-height: 36px; max-width: 120px; width: auto; height: auto;
  object-fit: contain;
}
.cliente-card img.logo-lg {
  max-height: 60px; max-width: 160px;
}

/* ── SOLUCIONES + CASOS DE ÉXITO ── */
.soluciones { background: var(--aubergine); padding: 100px 56px; }
.soluciones-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
}
.sol-header { grid-column: 1; grid-row: 1; padding-bottom: 32px; }
.casos-header { grid-column: 2; grid-row: 1; padding-bottom: 32px; align-self: end; }
.soluciones-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: rgba(157,122,253,0.6); text-transform: uppercase; margin-bottom: 16px; display: block; }
.soluciones h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: var(--pink); margin-bottom: 0; line-height: 1.2; }
.soluciones h2 span { color: var(--lilac); }
.sol-grid {
  grid-column: 1; grid-row: 2;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 18px;
  align-self: start;
}
.casos-carousel-wrapper {
  grid-column: 2; grid-row: 2;
  aspect-ratio: 16 / 9;
  align-self: center;
  width: 100%;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.casos-carousel-controls {
  grid-column: 2; grid-row: 3;
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;
}
.sol-card {
  background: rgba(157,122,253,0.07); border: 1px solid rgba(157,122,253,0.15);
  border-radius: 20px; padding: 32px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.2s, transform 0.15s;
}
.sol-card:hover { background: rgba(157,122,253,0.13); transform: translateY(-3px); }
.sol-num { font-size: 13px; font-weight: 700; color: rgba(157,122,253,0.5); font-variant-numeric: tabular-nums; letter-spacing: 0.06em; }
.sol-card h3 { font-size: 16px; font-weight: 800; color: var(--lilac); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.3; }
.sol-card p { font-size: 13px; color: rgba(249,218,234,0.65); line-height: 1.65; font-weight: 300; flex: 1; }

/* ── CASOS DE ÉXITO (dentro de soluciones) ── */
.casos-carousel-track { flex: 1; display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.caso-exito-card {
  flex: 0 0 100%; box-sizing: border-box;
  background: url('assets/Fondo%20Arbusta%20Template%202.svg') center center / cover no-repeat;
  border: 1px solid rgba(71,41,176,0.1);
  border-radius: 20px; padding: 36px 32px;
}
.caso-exito-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; gap: 24px; }
.caso-exito-cliente { font-size: 18px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.06em; padding-top: 6px; }
.caso-exito-cliente img { max-height: 56px; max-width: 180px; width: auto; object-fit: contain; display: block; }
.logo-bg-pill { background: #e8e8ee; border-radius: 10px; padding: 8px 14px; display: inline-flex; align-items: center; }
.caso-exito-metric { font-size: clamp(15px, 1.6vw, 20px); font-weight: 900; color: var(--aubergine); line-height: 1.2; text-align: right; }
.caso-exito-desc { font-size: 14px; font-weight: 300; color: #4a3060; line-height: 1.75; }
.casos-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: none; border: none;
  color: rgba(157,122,253,0.45); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s; padding: 0;
}
.casos-btn:hover { color: var(--lilac); }
.casos-dots { display: flex; align-items: center; gap: 8px; }
.casos-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(157,122,253,0.25); cursor: pointer; transition: all 0.2s; }
.casos-dot.active { background: var(--lilac); width: 20px; border-radius: 3px; }

/* ── POR QUÉ ── */
.porque { background: var(--gray); padding: 100px 56px; }
.porque-inner { max-width: 1100px; margin: 0 auto; }
.porque-quote { font-size: clamp(18px, 2.2vw, 24px); font-weight: 600; color: var(--aubergine); max-width: 700px; margin-bottom: 56px; line-height: 1.5; }
.porque-quote strong { color: var(--grape); }
.porque-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pillar { background: var(--white); border-radius: 18px; padding: 32px 28px; }
.pillar-icon { font-size: 36px; margin-bottom: 16px; }
.pillar h3 { font-size: 18px; font-weight: 700; color: var(--aubergine); margin-bottom: 8px; }
.pillar p { font-size: 14px; font-weight: 300; color: #4a3060; line-height: 1.6; }

/* ── CASOS ── */
.casos { background: var(--white); padding: 100px 56px; }
.casos-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.casos-text h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--aubergine); margin-bottom: 16px; }
.casos-text p { font-size: 15px; font-weight: 300; color: #4a3060; margin-bottom: 28px; line-height: 1.6; }
.btn-outline { display: inline-block; font-size: 14px; font-weight: 700; background: linear-gradient(var(--purple) 0 0) transparent no-repeat left / 0% 100%; color: var(--purple); border: 2px solid var(--purple); border-radius: 100px; padding: 12px 28px; transition: background-size 0.4s ease, color 0.2s; }
.btn-outline:hover { background-size: 100% 100%; color: var(--white); }
.casos-cards { display: flex; flex-direction: column; gap: 16px; }
.caso-card { background: var(--gray); border-radius: 16px; padding: 28px; display: flex; align-items: center; gap: 28px; }
.caso-logo { width: 120px; flex-shrink: 0; }
.caso-logo img { max-height: 36px; width: auto; object-fit: contain; }
.caso-divider { width: 1px; height: 60px; background: rgba(71,41,176,0.15); flex-shrink: 0; }
.caso-label { font-size: 12px; font-weight: 400; color: #4a3060; margin-bottom: 4px; }
.caso-num { font-size: 40px; font-weight: 900; color: var(--purple); line-height: 1; }

/* ── TESTIMONIOS CARRUSEL ── */
.testimonios { background: var(--aubergine); padding: 100px 56px; overflow: hidden; }
.testimonios-header { text-align: center; margin-bottom: 56px; }
.testimonios-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: #f2f0f2; line-height: 1.2; }
.testimonios-header h2 span { color: var(--lilac); }
.carousel-track-wrapper { overflow: hidden; position: relative; }
.carousel-track {
  display: flex; gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
  background: rgba(157,122,253,0.07); border: 1px solid rgba(157,122,253,0.15);
  border-radius: 18px; padding: 36px 32px;
  flex: 0 0 calc(33.333% - 16px);
  display: flex; flex-direction: column; gap: 0;
  box-sizing: border-box;
}
.testi-icon { color: var(--lilac); font-size: 28px; margin-bottom: 20px; opacity: 0.5; line-height: 1; }
.testi-quote { font-size: 15px; color: #f2f0f2; line-height: 1.75; font-weight: 300; font-style: italic; flex: 1; margin-bottom: 28px; }
.testi-author { font-size: 14px; font-weight: 700; color: var(--pink); }
.testi-role { font-size: 12px; color: rgba(157,122,253,0.7); margin-top: 4px; font-weight: 300; }
.testi-company { font-size: 12px; font-weight: 700; color: var(--lilac); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(157,122,253,0.12); border: 1px solid rgba(157,122,253,0.3);
  color: var(--lilac); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.carousel-btn:hover { background: rgba(157,122,253,0.25); transform: scale(1.05); }
.carousel-dots { display: flex; align-items: center; gap: 8px; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(157,122,253,0.3); cursor: pointer; transition: all 0.2s;
}
.carousel-dot.active { background: var(--lilac); width: 20px; border-radius: 3px; }

/* ── CLIENTES ── */
.clientes { background: var(--white); padding: 80px 56px; }
.clientes-inner { max-width: 1100px; margin: 0 auto; }
.clientes h2 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; color: var(--aubergine); margin-bottom: 48px; }
.clientes-logos { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; background: rgba(71,41,176,0.08); border-radius: 18px; overflow: hidden; margin-bottom: 40px; }
.logo-cell { background: var(--white); padding: 28px 24px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.logo-cell:hover { background: var(--gray); }
.logo-cell img { max-height: 32px; max-width: 120px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: all 0.2s; }
.logo-cell:hover img { filter: grayscale(0%); opacity: 1; }
.clientes-cta { text-align: center; }

/* ── CTA FINAL ── */
.cta-final { background: var(--aubergine); padding: 120px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(157,122,253,0.13) 1.5px, transparent 1.5px); background-size: 30px 30px; }
.cta-inner { position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(26px, 4vw, 52px); font-weight: 300; font-style: italic; color: var(--pink); line-height: 1.3; max-width: 700px; margin: 0 auto 40px; font-family: Georgia, serif; }

/* ── CONTACTO ── */
.contacto { background: var(--aubergine) url('assets/fondo-hero.svg') center center / cover no-repeat; padding: 100px 56px; border-top: 1px solid rgba(157,122,253,0.1); }
.contacto-inner { max-width: 680px; margin: 0 auto; }
.contacto h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--pink); line-height: 1.1; margin-bottom: 10px; }
.contacto-sub { font-size: 15px; color: rgba(249,218,234,0.6); margin-bottom: 44px; line-height: 1.5; font-weight: 300; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: rgba(249,218,234,0.6); text-transform: uppercase; }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(157,122,253,0.2);
  border-radius: 10px; padding: 13px 16px;
  font-family: 'Figtree', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--pink); outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(249,218,234,0.25); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--lilac); background: rgba(255,255,255,0.09); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { display: flex; align-items: center; gap: 10px; background: linear-gradient(var(--pink) 0 0) transparent no-repeat left / 0% 100%; color: var(--pink); border: 2px solid var(--pink); border-radius: 100px; padding: 13px 36px; font-family: 'Figtree', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: background-size 0.4s ease, color 0.2s, transform 0.15s; animation: fadeUp 0.9s 0.3s ease both; }
.btn-submit:hover { background-size: 100% 100%; color: var(--aubergine); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.form-success { text-align: center; padding: 60px 20px; display: none; }
.success-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(157,122,253,0.15); border: 1.5px solid var(--lilac); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--lilac); margin: 0 auto 18px; }
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--pink); margin-bottom: 8px; }
.form-success p { font-size: 15px; color: rgba(249,218,234,0.6); }

/* ── SOSTENIBILIDAD (con talento integrado) ── */
.sostenibilidad { background: var(--white); padding: 100px 56px; }
.sost-inner { max-width: 1100px; margin: 0 auto; }
.sost-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 60px; }
.sost-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--aubergine); line-height: 1.15; margin-bottom: 20px; }
.sost-text p { font-size: 15px; font-weight: 300; color: #4a3060; line-height: 1.7; margin-bottom: 14px; }
.sost-pillars { display: flex; flex-direction: column; gap: 16px; }
.sost-pillar { display: flex; gap: 16px; background: var(--gray); border-radius: 14px; padding: 22px; }
.sost-pillar-icon { font-size: 26px; flex-shrink: 0; }
.sost-pillar h4 { font-size: 15px; font-weight: 700; color: var(--aubergine); margin-bottom: 4px; }
.sost-pillar p { font-size: 13px; font-weight: 300; color: #4a3060; line-height: 1.55; }
/* talento integrado en sost */
.talento-banner {
  background: #fdf4ff; border-radius: 22px; padding: 52px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.talento-banner h3 { font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; color: var(--aubergine); line-height: 1.1; margin-bottom: 16px; }
.talento-divider { width: 40px; height: 3px; background: var(--lilac); margin-bottom: 16px; }
.talento-banner p { font-size: 15px; font-weight: 300; color: #4a3060; line-height: 1.7; margin-bottom: 28px; }
.talento-img { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--purple), var(--lilac)); display: flex; align-items: center; justify-content: center; }
.talento-placeholder { text-align: center; color: rgba(255,255,255,0.35); font-size: 13px; padding: 20px; }

/* ── EMPLEOS ── */
.empleos { background: var(--gray); padding: 100px 56px; }
.empleos-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.empleos-info h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--aubergine); line-height: 1.15; margin-bottom: 20px; }
.empleos-info > p { font-size: 15px; font-weight: 300; color: #4a3060; line-height: 1.7; margin-bottom: 12px; }
.empleos-pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.empleos-pillar { display: flex; gap: 14px; }
.ep-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.ep-body h4 { font-size: 15px; font-weight: 700; color: var(--aubergine); margin-bottom: 3px; }
.ep-body p { font-size: 13px; font-weight: 300; color: #4a3060; line-height: 1.55; }
.empleos-form-box { background: var(--white); border-radius: 20px; padding: 36px 32px; box-shadow: 0 8px 48px rgba(71,41,176,0.1); }
.empleos-form-box h3 { font-size: 22px; font-weight: 700; color: var(--aubergine); margin-bottom: 6px; }
.empleos-form-box .form-sub { font-size: 13px; font-weight: 300; color: #4a3060; margin-bottom: 28px; line-height: 1.5; }
.eform { display: flex; flex-direction: column; gap: 14px; }
.eform .fg { display: flex; flex-direction: column; gap: 6px; }
.eform .fg label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--purple); text-transform: uppercase; }
.eform input, .eform select, .eform textarea { background: var(--gray); border: 1px solid rgba(71,41,176,0.15); border-radius: 10px; padding: 12px 15px; font-family: 'Figtree', sans-serif; font-size: 14px; font-weight: 300; color: var(--aubergine); outline: none; width: 100%; transition: border-color 0.2s; }
.eform input:focus, .eform select:focus, .eform textarea:focus { border-color: var(--purple); background: var(--white); }
.eform input::placeholder, .eform textarea::placeholder { color: rgba(71,41,176,0.3); }
.eform select option { background: var(--white); color: var(--aubergine); }
.eform textarea { resize: vertical; min-height: 90px; }
.form-hint { font-size: 11px; color: rgba(71,41,176,0.4); margin-top: 3px; }
.btn-submit-emp { display: flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(var(--aubergine) 0 0) var(--purple) no-repeat left / 0% 100%; color: var(--white); border: none; border-radius: 100px; padding: 14px 32px; font-family: 'Figtree', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; width: 100%; transition: background-size 0.4s ease, transform 0.15s; }
.btn-submit-emp:hover { background-size: 100% 100%; transform: translateY(-1px); }
.btn-submit-emp:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.eform-success { text-align: center; padding: 40px 20px; display: none; }
.eform-success .si { width: 48px; height: 48px; border-radius: 50%; background: rgba(71,41,176,0.1); border: 1.5px solid var(--purple); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--purple); margin: 0 auto 14px; }
.eform-success h3 { font-size: 20px; font-weight: 700; color: var(--aubergine); margin-bottom: 6px; }
.eform-success p { font-size: 14px; font-weight: 300; color: #4a3060; }

/* ── FOOTER ── */
footer { background: #150826; padding: 40px 56px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(249,218,234,0.3); transition: color 0.2s; }
.footer-links a:hover { color: rgba(249,218,234,0.8); }
.footer-copy { font-size: 12px; color: rgba(249,218,234,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px 14px; }
  .nav-links { display: none; }
  .hero-services { display: none; }
  .nosotros,.soluciones,.porque,.casos,.testimonios,.clientes,.cta-final,.contacto,.sostenibilidad,.empleos { padding: 70px 20px; }
  .hero { padding: 110px 20px 70px; }
  .stats-section { padding: 48px 20px 56px; }
  .stats-panel { padding: 36px 28px; }
  .stats-single,.stats-pair,.nosotros-inner,.casos-inner,.sost-top,.talento-banner,.empleos-inner { grid-template-columns: 1fr; gap: 36px; }
  .soluciones-inner { grid-template-columns: 1fr; }
  .sol-header,.casos-header,.sol-grid,.casos-carousel-wrapper,.casos-carousel-controls { grid-column: 1; grid-row: auto; }
  .casos-header { padding-bottom: 16px; align-self: start; }
  .sol-grid { margin-bottom: 48px; }
  .casos-carousel-wrapper { aspect-ratio: 16 / 9; align-self: auto; }
  .sol-grid,.porque-pillars,.testi-grid { grid-template-columns: 1fr 1fr; }
  .clientes-logos { grid-template-columns: repeat(3,1fr); }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .sol-grid,.porque-pillars,.testi-grid { grid-template-columns: 1fr; }
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── NAV ACTIVE ── */
.nav-active { color: var(--white) !important; }

/* ── PAGE HERO (páginas internas) ── */
.page-hero {
  background: var(--aubergine); padding: 160px 56px 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0830 0%, #2a103e 40%, #3b1580 70%, #1a0830 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  color: var(--pink); line-height: 1.1; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--lilac); }
.page-hero p {
  font-size: 18px; font-weight: 300; color: rgba(249,218,234,0.75); line-height: 1.65;
