/* ===================================================================
   inicio.css — Cumplirse Landing Page
   All styles consolidated here to prevent FOUC (flash of unstyled content)
   =================================================================== */

/* ===== RESET GLOBAL ===== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

.container { margin: 0; padding: 0; }

/* ===== HEADER ===== */
header.h-navbar-tech {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4vw;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

header.h-navbar-tech.scrolled {
  background: rgba(10, 0, 30, 0.8);
  backdrop-filter: blur(10px);
}

.h-navbar-left-col img {
  height: 72px;
  width: auto;
}

.h-navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4vw;
  box-sizing: border-box;
}

.h-navbar-menu-new {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  overflow-x: auto;
  max-width: 100vw;
}

.h-navbar-menu-new a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: 0.3s;
}

.h-navbar-menu-new a:hover { color: #00ffd5; }

/* ===== HERO ===== */
:root {
  --bg1: #0a0015;
  --bg2: #19002b;
  --accent1: #d600ff;
  --accent2: #6a00ff;
  --accent3: #00ffd5;
  --text: #f7f4ff;
  --muted: #c8b6e6;
  --x-bg1:#0a0015; --x-bg2:#19002b;
  --x-fucsia:#d600ff; --x-morado:#6a00ff; --x-neon:#00ffd5;
  --x-text:#f5f1ff; --x-muted:#c8b6e6;
  --x-border:rgba(255,255,255,.08);
  --p-fucsia:#d600ff; --p-morado:#6a00ff; --p-neon:#00ffd5;
  --p-text:#1a1a1a; --p-muted:#555; --p-border:#e6e6ef;
  --f-fucsia:#d600ff; --f-morado:#6a00ff; --f-neon:#00ffd5;
  --f-text:#fff; --f-muted:#d6c9f6;
  --o-fucsia:#d600ff; --o-morado:#6a00ff; --o-neon:#00ffd5;
  --o-text:#1a1a1a; --o-muted:#666; --o-border:#e4e4ef;
  --v-fucsia:#d600ff; --v-morado:#6a00ff; --v-neon:#00ffd5;
  --v-bg:#080010; --v-text:#f4f2ff; --v-muted:#cfc9e6;
  --g-fucsia:#d600ff; --g-morado:#6a00ff; --g-neon:#00ffd5;
  --g-text:#1a1a1a; --g-muted:#666; --g-border:#e5e5ef;
  --t-fucsia:#d600ff; --t-morado:#6a00ff; --t-neon:#00ffd5;
  --t-bg:#060010; --t-text:#f7f4ff; --t-muted:#c4b9e8;
  --l-fucsia:#d600ff; --l-morado:#6a00ff; --l-neon:#00ffd5;
  --l-bg:#050011; --l-text:#f8f8ff; --l-muted:#c6bde8;
  --c-fucsia:#d600ff; --c-morado:#6a00ff; --c-neon:#00ffd5;
  --c-text:#1a1a1a; --c-muted:#666;
}

.hero3d.full {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(1000px 700px at 70% 20%, rgba(214,0,255,.25), transparent 70%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
  box-sizing: border-box;
  padding-top: 120px;
}

.hero3d__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

canvas#hero3d-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  display: block;
}

.hero3d__wrap {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 5vw;
}

.hero3d__left h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: var(--text);
  margin: 0;
}

.hero3d__accent {
  background: linear-gradient(90deg, var(--accent1), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(214,0,255,.35);
}

.hero3d__desc {
  margin: 1rem 0 2rem;
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
}

.hero3d__cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent1), var(--accent3));
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 14px;
  text-decoration: none;
  transition: .25s ease;
  box-shadow: 0 0 25px rgba(255,0,255,.3);
}

.hero3d__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255,0,255,.6);
}

@media(max-width: 900px){
  .hero3d__wrap { grid-template-columns: 1fr; text-align: center; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS — GLOBAL
   ============================================================ */
@media screen and (min-width: 1024px) {
  .h-navbar-container { padding: 6px 5vw; }
  .h-navbar-left-col img { height: 72px; }
  .h-navbar-menu-new a { font-size: 11px; }
  .hero3d__left h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
  .hero3d__desc { font-size: 1.05rem; }
  .hero3d__cta { padding: 0.9rem 1.8rem; font-size: 0.95rem; }
}

@media screen and (min-width: 1280px) {
  .h-navbar-container { max-width: 1200px; padding: 6px 4vw; }
  .h-navbar-left-col img { height: 72px; }
  .h-navbar-menu-new { gap: 18px; }
  .h-navbar-menu-new a { font-size: 12px; }
  .hero3d__wrap { max-width: 1150px; gap: 4vw; }
  .hero3d__left h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
  .hero3d__desc { font-size: 1.1rem; max-width: 550px; }
  .hero3d__cta { padding: 1rem 2rem; font-size: 1rem; }
}

@media screen and (min-width: 1366px) {
  .h-navbar-container { max-width: 1280px; padding: 6px 4vw; }
  .h-navbar-left-col img { height: 72px; }
  .h-navbar-menu-new { gap: 20px; }
  .h-navbar-menu-new a { font-size: 12px; margin-right: 2px; }
  .hero3d.full { padding-top: 110px; }
  .hero3d__wrap { max-width: 1200px; }
  .hero3d__left h1 { font-size: clamp(2.5rem, 5.2vw, 4.2rem); }
  .hero3d__desc { font-size: 1.12rem; }
}

@media screen and (min-width: 1440px) {
  .h-navbar-container { max-width: 1350px; padding: 6px 4vw; }
  .h-navbar-left-col img { height: 72px; }
  .h-navbar-menu-new { gap: 22px; }
  .h-navbar-menu-new a { font-size: 13px; }
  .hero3d.full { padding-top: 120px; }
  .hero3d__wrap { max-width: 1280px; gap: 5vw; }
  .hero3d__left h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
  .hero3d__desc { font-size: 1.18rem; max-width: 580px; }
  .hero3d__cta { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
}

@media screen and (min-width: 1600px) {
  .h-navbar-container { max-width: 1500px; padding: 6px 5vw; }
  .h-navbar-left-col img { height: 72px; }
  .h-navbar-menu-new { gap: 24px; }
  .h-navbar-menu-new a { font-size: 14px; }
  .hero3d__wrap { max-width: 1400px; }
  .hero3d__left h1 { font-size: clamp(3rem, 5.8vw, 4.8rem); }
  .hero3d__desc { font-size: 1.22rem; max-width: 600px; }
  .hero3d__cta { padding: 1.15rem 2.4rem; font-size: 1.1rem; }
}

@media screen and (min-width: 1920px) {
  .h-navbar-container { max-width: 1700px; padding: 6px 5vw; }
  .h-navbar-left-col img { height: 72px; }
  .h-navbar-menu-new { gap: 28px; }
  .h-navbar-menu-new a { font-size: 15px; }
  .hero3d.full { padding-top: 130px; }
  .hero3d__wrap { max-width: 1600px; }
  .hero3d__left h1 { font-size: clamp(3.2rem, 6vw, 5.2rem); }
  .hero3d__desc { font-size: 1.3rem; max-width: 650px; }
  .hero3d__cta { padding: 1.2rem 2.6rem; font-size: 1.15rem; border-radius: 16px; }
}

@media screen and (min-width: 2560px) {
  .h-navbar-container { max-width: 2200px; padding: 6px 6vw; }
  .h-navbar-left-col img { height: 72px; }
  .h-navbar-menu-new { gap: 35px; }
  .h-navbar-menu-new a { font-size: 18px; }
  .hero3d.full { padding-top: 160px; }
  .hero3d__wrap { max-width: 2000px; gap: 6vw; }
  .hero3d__left h1 { font-size: clamp(4rem, 6.5vw, 6.5rem); }
  .hero3d__desc { font-size: 1.6rem; max-width: 800px; }
  .hero3d__cta { padding: 1.5rem 3.2rem; font-size: 1.4rem; border-radius: 20px; }
}

@media screen and (min-width: 3840px) {
  .h-navbar-container { max-width: 3000px; padding: 8px 8vw; }
  .h-navbar-left-col img { height: 72px; }
  .h-navbar-menu-new { gap: 50px; }
  .h-navbar-menu-new a { font-size: 26px; }
  .hero3d.full { padding-top: 200px; }
  .hero3d__wrap { max-width: 2800px; gap: 8vw; }
  .hero3d__left h1 { font-size: clamp(5rem, 7vw, 9rem); }
  .hero3d__desc { font-size: 2.2rem; max-width: 1100px; }
  .hero3d__cta { padding: 2rem 4.5rem; font-size: 2rem; border-radius: 28px; }
}

@media screen and (max-height: 800px) and (min-width: 1024px) {
  .hero3d.full { padding-top: 60px; height: auto; min-height: 100vh; }
  .h-navbar-container { padding: 6px 4vw; }
  .h-navbar-left-col img { height: 58px; }
  .h-navbar-menu-new a { font-size: 11px; }
  .hero3d__left h1 { font-size: clamp(2rem, 4vw, 3rem); }
  .hero3d__desc { font-size: 0.95rem; margin: 0.8rem 0 1.5rem; }
  .hero3d__cta { padding: 0.8rem 1.6rem; font-size: 0.9rem; }
}

header.h-navbar-tech { padding: 0; background: transparent; }

@media(max-width: 700px){
  header.h-navbar-tech { flex-direction: column; align-items: flex-start; padding: 16px 2vw; }
  .h-navbar-menu-new { width: 100%; gap: 10px; margin-top: 10px; justify-content: flex-start; overflow-x: auto; }
}

/* ═══ COLOR BALANCE — preserve original defaults (overridden below) ═══ */

/* ═══ COLOMBIA MAP ═══ */
.col-map-section {
  background: #06000f;
  border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.col-map-header {
  max-width: 860px; margin: 0 auto;
  padding: clamp(52px,7vw,90px) min(5vw,60px) 44px;
  text-align: center;
}
.col-map-eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #00ffd5; border: 1px solid rgba(0,255,213,.25);
  padding: 4px 14px; border-radius: 999px; margin-bottom: 16px;
}
.col-map-title {
  font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 800;
  color: #fff; margin: 0 0 14px; line-height: 1.15;
}
.col-map-sub {
  color: rgba(255,255,255,.45); font-size: .95rem;
  line-height: 1.65; margin: 0 auto 36px; max-width: 600px;
}
.col-map-stats {
  display: inline-flex; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden;
}
.col-map-stat {
  padding: 16px 32px; border-right: 1px solid rgba(255,255,255,.08);
}
.col-map-stat:last-child { border-right: none; }
.col-map-stat span {
  display: block; font-size: 1.7rem; font-weight: 800; color: #d600ff; line-height: 1;
}
.col-map-stat small {
  display: block; font-size: .68rem; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .06em; margin-top: 4px;
}
.col-map-frame-wrap {
  position: relative; width: 100%; line-height: 0;
}
.col-map-color-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(135deg,rgba(106,0,255,.22) 0%,rgba(214,0,255,.12) 40%,rgba(0,255,213,.10) 70%,rgba(106,0,255,.18) 100%);
  mix-blend-mode: color;
}
.col-map-gmap {
  display: block; width: 100%; height: 400px; border: 0;
  filter: grayscale(1) brightness(.7) contrast(1.15);
}
@media (max-width: 600px) {
  .col-map-stats { flex-direction: column; }
  .col-map-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .col-map-stat:last-child { border-bottom: none; }
  .col-map-gmap { height: 300px; }
}

/* ═══ FOOTER ═══ */
.ft-root {
  background: #000; color: rgba(255,255,255,.65);
  font-family: 'Poppins', sans-serif; border-top: 1px solid rgba(255,255,255,.06);
}

.ft-top { border-bottom: 1px solid rgba(255,255,255,.06); padding: 32px min(5vw,60px); }
.ft-top-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.ft-logo { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .8; }
.ft-tagline { font-size: .82rem; color: rgba(255,255,255,.35); flex: 1; font-style: italic; }
.ft-social { display: flex; gap: 8px; }
.ft-social-link {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: 6px;
  display: grid; place-items: center; color: rgba(255,255,255,.5);
  font-size: .7rem; font-weight: 700; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.ft-social-link:hover { border-color: #d600ff; color: #d600ff; }

.ft-grid-wrap { padding: 52px min(5vw,60px) 40px; }
.ft-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 40px;
}
.ft-col h5 {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin: 0 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-col ul { list-style: none; padding: 0; margin: 0; }
.ft-col ul li { margin-bottom: 9px; }
.ft-col ul li a {
  color: rgba(255,255,255,.45); text-decoration: none; font-size: .82rem;
  transition: color .2s;
}
.ft-col ul li a:hover { color: #00ffd5; }
.ft-address { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.6; }

.ft-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.ft-badge {
  font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  border: 1px solid rgba(0,255,213,.2); color: rgba(0,255,213,.6);
  background: rgba(0,255,213,.04);
}

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px min(5vw,60px) 28px;
}
.ft-bottom-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; padding-bottom: 12px;
}
.ft-bottom-left { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: .75rem; color: rgba(255,255,255,.3); }
.ft-bottom-sep { color: rgba(255,255,255,.15); }
.ft-bottom-right { display: flex; gap: 16px; }
.ft-bottom-right a { font-size: .75rem; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.ft-bottom-right a:hover { color: rgba(255,255,255,.65); }
.ft-regulated {
  max-width: 1300px; margin: 0 auto; font-size: .68rem;
  color: rgba(255,255,255,.2); line-height: 1.6; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.04);
}

@media (max-width: 768px) {
  .ft-top-inner { flex-direction: column; align-items: flex-start; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ft-bottom-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .ft-grid { grid-template-columns: 1fr; }
}

/* ═══ SP STRIP ═══ */
.sp-strip {
  background: #111;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 22px min(5vw,48px);
}
.sp-strip__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px 40px;
}
.sp-stat { text-align: center; }
.sp-num {
  display: block; font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 800; color: #fff; line-height: 1;
}
.sp-label { font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; }
.sp-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); flex-shrink: 0; }
@media (max-width: 700px) { .sp-divider { display: none; } }

/* ═══ XMSG TRANSVERSAL ═══ */
.xmsg-transversal{
  position:relative; isolation:isolate; overflow:hidden;
  padding: clamp(56px, 8vw, 110px) min(5vw, 48px);
  background: #111;
  border-top: 1px solid rgba(255,255,255,.06);
}

.xmsg-wrap{ max-width:1200px; margin:0 auto; }

.xmsg-eyebrow{
  display:inline-block; color:rgba(255,255,255,.45);
  font:600 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing:.14em; text-transform:uppercase;
  padding:.5rem .75rem; border:1px solid rgba(255,255,255,.12); border-radius:999px;
}

.xmsg-title{
  margin:12px 0 10px;
  font:800 clamp(26px,4.8vw,48px)/1.07 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:#fff; letter-spacing:-.02em;
}
.xmsg-accent{ color:#fff; font-style:italic; }

.xmsg-copy{
  color:rgba(255,255,255,.5);
  font:300 clamp(15px,2.1vw,18px)/1.65 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  max-width:72ch; margin:0 0 22px;
}

.xmsg-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(20px, 4vw, 48px);
  align-items:start;
}

.xmsg-bullets{ list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.xmsg-bullet{
  display:flex; gap:14px; align-items:flex-start;
  padding:16px 18px; border:1px solid rgba(255,255,255,.08); border-radius:12px;
  color:rgba(255,255,255,.8); background: rgba(255,255,255,.03);
}
.xmsg-bullet-num{
  flex:0 0 28px; height:28px; width:28px; border-radius:50%;
  display:grid; place-items:center;
  font-size:.7rem; font-weight:800; letter-spacing:.02em;
  color:rgba(255,255,255,.3); border:1px solid rgba(255,255,255,.1);
  flex-shrink:0; margin-top:1px;
}

.xmsg-card{
  position:relative;
  padding:24px; border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  overflow:hidden;
}
.xmsg-card-badge{
  display:inline-block; margin-bottom:12px;
  padding:4px 12px; border-radius:999px;
  background:rgba(255,255,255,.08); color:rgba(255,255,255,.6);
  font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  border:1px solid rgba(255,255,255,.12);
}
.xmsg-card-title{
  margin:0 0 8px; color:#fff;
  font:700 clamp(18px,3.4vw,22px)/1.25 system-ui,-apple-system,Segoe UI,Roboto,Arial;
}
.xmsg-card-text{ color:rgba(255,255,255,.45); margin:0 0 20px; font-size:.9rem; line-height:1.6; font-weight:300; }

.xmsg-progress{ margin: 10px 0 18px; }
.xmsg-progress-bar{
  width:100%; height:6px; border-radius:999px; position:relative; overflow:hidden;
  background:rgba(255,255,255,.08);
}
.xmsg-progress-fill{
  position:absolute; left:0; top:0; bottom:0; width:0%;
  background:#fff;
  border-radius:999px;
  transition: width .9s cubic-bezier(.2,.8,.2,1);
}
.xmsg-progress-meta{
  display:flex; align-items:center; justify-content:space-between; margin-top:8px;
  color:rgba(255,255,255,.4); font-size:13px;
}
.xmsg-progress-val{ color:#fff; font-weight:700; }

.xmsg-cta{
  display:block; margin-top:6px;
  padding:13px 20px; border-radius:12px; text-decoration:none; font-weight:700;
  color:#111; background:#fff; text-align:center;
  transition: opacity .18s ease;
}
.xmsg-cta:hover{ opacity:.9; }
.xmsg-legal{ color:rgba(255,255,255,.25); font-size:.72rem; margin-top:10px; text-align:center; }

@media (max-width: 980px){ .xmsg-grid{ grid-template-columns:1fr; } }

@media screen and (min-width: 1024px) {
  .xmsg-wrap { max-width: 1000px; }
  .xmsg-title { font-size: clamp(24px, 4vw, 38px); }
  .xmsg-copy { font-size: clamp(14px, 1.8vw, 16px); }
  .xmsg-card { padding: 20px; }
  .xmsg-card-title { font-size: clamp(16px, 2.8vw, 20px); }
}
@media screen and (min-width: 1280px) {
  .xmsg-wrap { max-width: 1100px; }
  .xmsg-grid { gap: clamp(24px, 4vw, 40px); }
}
@media screen and (min-width: 1440px) {
  .xmsg-wrap { max-width: 1200px; }
  .xmsg-title { font-size: clamp(28px, 4.5vw, 48px); }
  .xmsg-copy { font-size: clamp(15px, 2vw, 18px); }
  .xmsg-card { padding: 24px; }
  .xmsg-cta { padding: 14px 22px; }
}
@media screen and (min-width: 1920px) {
  .xmsg-wrap { max-width: 1400px; }
  .xmsg-title { font-size: clamp(32px, 5vw, 55px); }
  .xmsg-copy { font-size: 1.2rem; }
  .xmsg-bullet { padding: 18px 20px; }
  .xmsg-card { padding: 28px; }
  .xmsg-cta { padding: 16px 26px; font-size: 1.1rem; }
}
@media screen and (min-width: 2560px) {
  .xmsg-wrap { max-width: 1800px; }
  .xmsg-title { font-size: clamp(40px, 5.5vw, 70px); }
  .xmsg-copy { font-size: 1.5rem; max-width: 90ch; }
  .xmsg-bullet { padding: 22px 26px; font-size: 1.2rem; }
  .xmsg-icn { width: 44px; height: 44px; }
  .xmsg-card { padding: 36px; border-radius: 24px; }
  .xmsg-card-title { font-size: clamp(24px, 4vw, 36px); }
  .xmsg-cta { padding: 20px 32px; font-size: 1.3rem; border-radius: 18px; }
}

/* ═══ PERFIL SECTION ═══ */
.perfil-section {
  background:#fff;
  padding:clamp(60px,8vw,120px) min(5vw,60px);
  position:relative;
}

.perfil-wrap {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:48px;
  max-width:1300px;
  margin:0 auto;
}

.perfil-card {
  background:#fff;
  border:1px solid var(--p-border);
  border-radius:18px;
  padding:32px 28px 40px;
  box-shadow:0 16px 40px -20px rgba(0,0,0,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.perfil-card:hover {
  transform:translateY(-4px);
  box-shadow:0 20px 48px -16px rgba(0,0,0,0.12);
}

.perfil-eyebrow {
  display:inline-block; color:rgba(0,0,0,.45);
  font:600 11px/1 system-ui; letter-spacing:.14em; text-transform:uppercase;
  padding:.45rem .85rem; border:1px solid rgba(0,0,0,.12); border-radius:999px;
  margin-bottom:4px;
}

.perfil-tag {
  display:inline-block; font-size:.7rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  padding:3px 10px; border-radius:6px;
  background:rgba(0,0,0,.06); color:#444;
  margin-bottom:6px;
}
.perfil-tag--green { background:rgba(0,0,0,.06); color:#444; }

.perfil-header {
  border-bottom:1px solid var(--p-border);
  margin-bottom:20px;
  padding-bottom:12px;
}

.perfil-title {
  font-size:clamp(1.5rem,2.5vw,2rem);
  font-weight:800;
  margin:0 0 2px;
  color:#1a1a1a;
}

.perfil-subtitle {
  color:#777;
  font-weight:300;
  margin-top:4px;
  font-size:14px;
  line-height:1.4;
}

.perfil-heading {
  font-weight:700;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:18px 0 10px;
  padding:4px 0;
  color:#999;
}
.perfil-heading--pain { color:#b0392b; }
.perfil-heading--gain { color:#1a7a4a; }

.perfil-list { list-style:none; padding:0; margin:0; }

.perfil-list li {
  position:relative;
  padding-left:16px;
  margin-bottom:11px;
  line-height:1.55;
  color:#555;
  font-size:.93rem;
  font-weight:300;
}

.perfil-list li::before {
  content:'';
  position:absolute;
  left:0; top:10px;
  width:6px; height:6px;
  border-radius:50%;
  background:#bbb;
}

.perfil-list--gain li::before { background:#1a7a4a; }

.perfil-resultado {
  display:flex; align-items:center; gap:8px;
  margin:18px 0 16px;
  padding:12px 16px;
  background:#f5f5f7;
  border:1px solid #e8e8ec;
  border-radius:10px;
  font-size:.85rem; font-weight:600; color:#333;
}
.perfil-resultado svg { width:18px; height:18px; flex-shrink:0; color:#555; }

.perfil-cta {
  display:inline-block;
  margin-top:20px;
  padding:12px 26px;
  border-radius:12px;
  background:#111;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  transition: opacity .2s ease;
}

.perfil-cta:hover { opacity:.8; }

@media(max-width:768px){ .perfil-wrap{gap:32px;} .perfil-card{padding:24px 22px;} }

@media screen and (min-width: 1024px) {
  .perfil-wrap { max-width: 900px; gap: 36px; }
  .perfil-card { padding: 30px 26px; }
}
@media screen and (min-width: 1440px) {
  .perfil-wrap { max-width: 1000px; gap: 45px; }
  .perfil-card { padding: 36px 30px; }
  .perfil-cta { padding: 14px 30px; }
}
@media screen and (min-width: 1920px) {
  .perfil-wrap { max-width: 1200px; gap: 55px; }
  .perfil-card { padding: 42px 36px; border-radius: 28px; }
  .perfil-cta { padding: 16px 34px; font-size: 1.1rem; }
}
@media screen and (min-width: 2560px) {
  .perfil-wrap { max-width: 1600px; gap: 70px; }
  .perfil-card { padding: 55px 48px; border-radius: 36px; }
  .perfil-cta { padding: 20px 42px; font-size: 1.35rem; border-radius: 20px; }
}

/* ═══ FLOW SECTION ═══ */
.flow-section {
  background: radial-gradient(800px 500px at 80% 10%, rgba(24,1,29,.25), transparent 70%),
              linear-gradient(180deg, #6a00ff, #100022 80%);
  padding: clamp(70px,8vw,140px) min(6vw,80px);
  position: relative;
  color: #fff;
  overflow: hidden;
}

.flow-wrap { max-width: 1200px; margin: 0 auto; text-align: center; }

.flow-title {
  font: 800 clamp(1.8rem,4.2vw,3.2rem)/1.1 'Poppins',sans-serif;
  color: #fff; margin: 0;
}
.flow-accent { color: #d600ff; }
.flow-subtitle {
  color: #d6c9f6;
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 50px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 40px;
  position: relative;
}

.flow-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 22px 36px;
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px -20px rgba(214,0,255,0.4);
}

.flow-icon {
  background: #d600ff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 40px rgba(214,0,255,.35);
}

.flow-step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }

.flow-step-text {
  font-size: 1rem;
  color: #d6c9f6;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
}

.flow-cta-wrap { margin-top: 60px; }
.flow-cta {
  background: #d600ff;
  color: #fff;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 12px 40px -14px rgba(214,0,255,0.4);
  transition: all .25s ease;
}
.flow-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 50px -16px rgba(214,0,255,0.6); }

@media(max-width: 768px){ .flow-subtitle{margin-bottom:30px;} .flow-steps{gap:28px;} }

@media screen and (min-width: 1024px) {
  .flow-wrap { max-width: 1000px; }
  .flow-step { padding: 26px 20px 32px; }
  .flow-icon { width: 55px; height: 55px; font-size: 1.4rem; }
  .flow-cta { padding: 14px 30px; }
}
@media screen and (min-width: 1440px) {
  .flow-wrap { max-width: 1150px; }
  .flow-step { padding: 32px 24px 38px; }
  .flow-icon { width: 62px; height: 62px; font-size: 1.5rem; }
  .flow-cta { padding: 16px 36px; font-size: 1.05rem; }
}
@media screen and (min-width: 1920px) {
  .flow-wrap { max-width: 1350px; }
  .flow-step { padding: 38px 28px 44px; border-radius: 24px; }
  .flow-icon { width: 70px; height: 70px; font-size: 1.7rem; }
  .flow-cta-wrap { margin-top: 70px; }
  .flow-cta { padding: 18px 42px; font-size: 1.15rem; border-radius: 18px; }
}
@media screen and (min-width: 2560px) {
  .flow-wrap { max-width: 1800px; }
  .flow-steps { gap: 55px; }
  .flow-step { padding: 50px 40px 58px; border-radius: 30px; }
  .flow-icon { width: 90px; height: 90px; font-size: 2.2rem; margin-bottom: 22px; }
  .flow-cta-wrap { margin-top: 90px; }
  .flow-cta { padding: 24px 55px; font-size: 1.5rem; border-radius: 22px; }
}

/* ═══ ONBOARDING ═══ */
.onb-section {
  background: #f7f7f9;
  border-top: 1px solid #eee;
  padding: clamp(80px,9vw,130px) min(5vw,60px);
  text-align: center;
  color: #1a1a1a;
}

.onb-wrap { max-width: 680px; margin: 0 auto; }

.onb-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: #aaa; margin: 0 0 16px; display: block;
}

.onb-title {
  font-size: clamp(1.5rem,3.2vw,2rem);
  font-weight: 700; color: #111;
  margin: 0 0 12px; line-height: 1.25;
}

.onb-sub {
  font-size: .9rem; font-weight: 300;
  color: #888; margin: 0 0 32px; line-height: 1.65;
}

/* Botones de acción */
.onb-btn, .onb-cta {
  display: inline-block;
  background: #111; color: #fff;
  border: none; border-radius: 8px;
  padding: 13px 30px; font-weight: 600; font-size: .92rem;
  cursor: pointer; transition: background .2s;
  font-family: 'Poppins', sans-serif; text-decoration: none;
}
.onb-btn:hover, .onb-cta:hover { background: #333; }

/* Formulario */
.onb-form { max-width: 640px; margin: 0 auto; }

.onb-progress { margin-bottom: 36px; }
.onb-bar {
  height: 3px; background: #e0e0e0; border-radius: 999px; overflow: hidden;
  margin-bottom: 10px;
}
.onb-bar span {
  display: block; height: 100%; width: 0%;
  border-radius: 999px;
  background: #111;
  transition: width .4s ease;
}
.onb-step {
  font-size: .72rem; font-weight: 400;
  color: #aaa; letter-spacing: .06em;
  text-transform: uppercase; margin: 0;
}

.onb-question {
  font-size: 1.1rem; font-weight: 600; color: #111;
  margin-bottom: 22px; line-height: 1.45; text-align: left;
}

.onb-options {
  display: flex; flex-direction: column; gap: 8px; align-items: stretch;
}
.onb-options button {
  background: #fff; border: 1px solid #e0e0e0;
  border-radius: 10px; padding: 13px 18px;
  text-align: left; cursor: pointer;
  color: #333; transition: border-color .2s, background .2s;
  font-size: .9rem; font-weight: 400; line-height: 1.45;
  font-family: 'Poppins', sans-serif;
}
.onb-options button:hover { border-color: #bbb; background: #fafafa; }
.onb-options button.selected {
  background: #111; color: #fff;
  border-color: #111;
}

.onb-next {
  display: inline-block; margin-top: 24px;
  background: #111; color: #fff;
  border: none; border-radius: 8px;
  padding: 12px 28px; font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: background .2s;
  font-family: 'Poppins', sans-serif;
}
.onb-next:hover { background: #333; }

/* Resultado */
.onb-result { margin-top: 0; }
.onb-card {
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 14px; padding: 36px 32px;
  box-shadow: 0 4px 24px -8px rgba(0,0,0,.08);
  max-width: 640px; margin: 0 auto; text-align: left;
}
.onb-result-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #aaa; margin: 0 0 10px; display: block;
}
.onb-card h3 { color: #111; font-size: 1.2rem; font-weight: 700; margin: 0 0 10px; }
.onb-card p { color: #666; font-size: .88rem; font-weight: 300; margin: 0 0 16px; line-height: 1.65; }
.onb-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.onb-card li {
  padding: 8px 0 8px 18px; margin: 0;
  font-size: .87rem; font-weight: 300; color: #555;
  border-bottom: 1px solid #f0f0f0; position: relative; line-height: 1.5;
}
.onb-card li:last-child { border-bottom: none; }
.onb-card li::before {
  content: '–'; position: absolute; left: 0; top: 8px;
  color: #bbb; font-weight: 400;
}

.hidden { display: none; }

@media screen and (min-width: 1024px) { .onb-wrap { max-width: 660px; } }
@media screen and (min-width: 1440px) { .onb-wrap { max-width: 700px; } }
@media screen and (min-width: 1920px) {
  .onb-wrap { max-width: 800px; }
  .onb-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
  .onb-card { padding: 44px 40px; }
}
@media screen and (min-width: 2560px) {
  .onb-wrap { max-width: 1000px; }
  .onb-card { padding: 56px 52px; border-radius: 18px; }
  .onb-next, .onb-btn, .onb-cta { padding: 16px 38px; font-size: 1.1rem; }
}

/* ═══ VALOR SECTION ═══ */
.valor-section {
  background: radial-gradient(800px 600px at 70% 10%, rgba(214,0,255,.15), transparent 70%),
              linear-gradient(180deg,#080010 0%, #0f0020 100%);
  color:#f4f2ff;
  padding: clamp(80px,10vw,140px) min(5vw,60px);
  text-align:center;
  position:relative;
  overflow:hidden;
}

.valor-title {
  font-size:clamp(1.8rem,4vw,2.5rem);
  font-weight:800;
  color:#d600ff;
  margin-bottom:10px;
}

.valor-sub {
  color:#cfc9e6;
  font-size:1.1rem;
  margin-bottom:60px;
}

.valor-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap:32px;
  justify-content:center;
  margin-bottom:60px;
}

.valor-card {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:30px 24px;
  text-align:center;
  transition:.3s ease;
  box-shadow:0 0 0 rgba(0,0,0,0);
}

.valor-card:hover {
  transform:translateY(-8px);
  box-shadow:0 10px 40px -10px rgba(214,0,255,.3);
  border-color:rgba(214,0,255,.3);
}

.valor-icon {
  width:52px; height:52px;
  margin:0 auto 16px;
  display:grid; place-items:center;
  background:rgba(214,0,255,.12);
  border-radius:14px;
  color:#d600ff;
}
.valor-icon svg { width:26px; height:26px; }

.valor-card h3 { font-size:1.2rem; font-weight:700; margin-bottom:10px; }
.valor-card p { font-size:0.95rem; color:#cfc9e6; line-height:1.5; }

.valor-cta {
  display:inline-block;
  background:#d600ff;
  color:#fff;
  font-weight:700;
  padding:16px 36px;
  border-radius:14px;
  text-decoration:none;
  transition:.25s ease;
  box-shadow:0 0 25px rgba(214,0,255,.25);
}
.valor-cta:hover { transform:translateY(-3px); box-shadow:0 0 40px rgba(214,0,255,.5); }

@media (max-width:700px){ .valor-card {padding:24px 20px;} }

@media screen and (min-width: 1024px) {
  .valor-wrap { max-width: 1000px; margin: 0 auto; }
  .valor-grid { gap: 26px; }
  .valor-card { padding: 26px 20px; }
}
@media screen and (min-width: 1440px) {
  .valor-wrap { max-width: 1150px; }
  .valor-grid { gap: 32px; }
  .valor-card { padding: 32px 26px; }
}
@media screen and (min-width: 1920px) {
  .valor-wrap { max-width: 1400px; }
  .valor-grid { gap: 40px; }
  .valor-card { padding: 38px 30px; border-radius: 24px; }
  .valor-icon { width: 60px; height: 60px; }
  .valor-icon svg { width: 30px; height: 30px; }
  .valor-cta { padding: 18px 42px; font-size: 1.15rem; border-radius: 18px; }
}
@media screen and (min-width: 2560px) {
  .valor-wrap { max-width: 1800px; }
  .valor-grid { gap: 55px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
  .valor-card { padding: 50px 42px; border-radius: 30px; }
  .valor-icon { width: 72px; height: 72px; margin-bottom: 20px; }
  .valor-icon svg { width: 36px; height: 36px; }
  .valor-cta { padding: 24px 55px; font-size: 1.5rem; border-radius: 22px; }
}

/* ═══ GAMIFICACIÓN ═══ */
.gami-section {
  background: #0a0015;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #f0eeff;
  padding: clamp(80px,9vw,130px) min(5vw,60px);
  text-align: center;
}

.gami-wrap { max-width: 1060px; margin: 0 auto; }

.gami-header { margin-bottom: 52px; }

.gami-eyebrow {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 14px;
}

.gami-title {
  font-size: clamp(1.6rem,3.5vw,2.2rem);
  font-weight: 700; color: #fff;
  margin: 0 0 10px; line-height: 1.2;
}

.gami-sub {
  font-size: .9rem; font-weight: 300;
  color: rgba(255,255,255,.4);
  max-width: 480px; margin: 0 auto; line-height: 1.7;
}

.gami-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 44px;
}

.gami-card {
  background: #0a0015;
  padding: 32px 26px;
  text-align: left;
  transition: background .2s;
}
.gami-card:hover { background: rgba(255,255,255,.03); }

.gami-num {
  display: block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; color: rgba(255,255,255,.2);
  margin-bottom: 14px;
}

.gami-card h3 {
  font-size: .95rem; font-weight: 600;
  color: #fff; margin: 0 0 8px; line-height: 1.3;
}
.gami-card p {
  font-size: .83rem; font-weight: 300;
  color: rgba(255,255,255,.4); line-height: 1.65; margin: 0;
}

.gami-cta {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-weight: 500; font-size: .88rem;
  padding: 11px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: .2s ease;
}
.gami-cta:hover { border-color: rgba(255,255,255,.45); color: #fff; }

@media (max-width:700px){
  .gami-grid { grid-template-columns: 1fr; }
  .gami-card { padding: 24px 20px; }
}

@media screen and (min-width: 1024px) { .gami-wrap { max-width: 1000px; } }
@media screen and (min-width: 1440px) { .gami-wrap { max-width: 1100px; } }
@media screen and (min-width: 1920px) {
  .gami-wrap { max-width: 1300px; }
  .gami-card { padding: 40px 32px; }
}
@media screen and (min-width: 2560px) {
  .gami-wrap { max-width: 1700px; }
  .gami-card { padding: 52px 44px; }
  .gami-card h3 { font-size: 1.15rem; }
  .gami-card p { font-size: 1rem; }
}

/* ═══ TRUST SECTION ═══ */
.trust-section {
  background: #fff;
  color: #1a1a1a;
  padding: clamp(80px,9vw,130px) min(5vw,60px);
  text-align: center;
}

.trust-wrap { max-width: 1100px; margin: 0 auto; }

.trust-header { margin-bottom: 48px; }

.trust-eyebrow {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: #aaa; margin-bottom: 14px;
}

.trust-title {
  font-size: clamp(1.6rem,3.5vw,2.2rem);
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.2;
}

.trust-sub {
  font-size: .9rem; font-weight: 300;
  color: #999; margin: 0 auto;
  max-width: 500px; line-height: 1.65;
}

/* Sectores — solo texto separado por · */
.trust-sectors {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 6px 0;
  margin-bottom: 56px;
}
.trust-sectors span {
  font-size: .78rem; font-weight: 400;
  color: #bbb; padding: 0 14px;
  border-right: 1px solid #e0e0e0;
  line-height: 1;
}
.trust-sectors span:last-child { border-right: none; }

/* Testimonios */
.trust-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 20px;
  text-align: left;
}

.trust-card {
  background: #f9f9fb;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  gap: 20px;
  transition: box-shadow .2s, transform .2s;
}
.trust-card:hover {
  box-shadow: 0 8px 28px -8px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.trust-card__quote {
  font-size: .92rem; font-weight: 300;
  color: #444; line-height: 1.7;
  margin: 0; font-style: italic;
  flex: 1;
}

.trust-card__footer {
  display: flex; flex-direction: column; gap: 14px;
}

.trust-card__author {
  display: flex; align-items: center; gap: 10px;
}
.trust-card__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: #1a1a1a;
  display: grid; place-items: center;
  font-size: .68rem; font-weight: 700; color: #fff;
  letter-spacing: .03em;
}
.trust-card__author strong {
  display: block; color: #111; font-size: .85rem; font-weight: 600;
}
.trust-card__author span {
  color: #aaa; font-size: .75rem; font-weight: 300;
}

.trust-card__result {
  font-size: .75rem; font-weight: 500;
  color: #555;
  padding: 7px 12px;
  border-radius: 6px;
  background: #f0f0f2;
  border: 1px solid #e4e4e6;
  display: inline-block;
}

@media (max-width:700px){
  .trust-card { padding: 22px 20px; }
  .trust-sectors span { font-size: .72rem; padding: 0 10px; }
}

@media screen and (min-width: 1024px) { .trust-wrap { max-width: 1000px; } }
@media screen and (min-width: 1440px) { .trust-wrap { max-width: 1100px; } }
@media screen and (min-width: 1920px) {
  .trust-wrap { max-width: 1300px; }
  .trust-testimonials { gap: 28px; }
  .trust-card { padding: 34px 30px; }
}
@media screen and (min-width: 2560px) {
  .trust-wrap { max-width: 1700px; }
  .trust-testimonials { gap: 40px; }
  .trust-card { padding: 44px 40px; border-radius: 20px; }
}

/* ═══ FAQ ═══ */
.faq-section {
  background:#fff;
  color:#1a1a1a;
  padding:clamp(80px,10vw,140px) min(5vw,60px);
  text-align:center;
  position:relative;
  overflow:hidden;
}

.faq-title {
  font-size:clamp(1.8rem,4vw,2.5rem);
  font-weight:800;
  color:#1a1a1a;
  margin-bottom:10px;
}

.faq-sub { color:#999; font-size:.95rem; font-weight:300; margin-bottom:50px; }

.faq-grid { max-width:900px; margin:0 auto; text-align:left; }

.faq-item {
  border:1px solid #ebebeb;
  border-radius:14px;
  margin-bottom:10px;
  overflow:hidden;
  background:#fff;
  transition:.25s ease;
  box-shadow:none;
  position: relative;
}

.faq-item.active {
  border-color:#ddd;
  box-shadow:0 4px 16px -6px rgba(0,0,0,.08);
}

.faq-question {
  width:100%;
  background:none;
  border:none;
  padding:18px 22px;
  font-size:1rem;
  font-weight:500;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  color:#1a1a1a;
  transition:.2s ease;
  text-align:left;
}

.faq-question span { color:#1a1a1a; }

.faq-chevron {
  flex-shrink:0;
  width:18px; height:18px;
  color:#aaa;
  transition:transform .3s ease;
}
.faq-item.active .faq-chevron { transform:rotate(180deg); color:#6a00ff; }

.faq-answer { max-height:0; overflow:hidden; transition: max-height .35s ease, padding .3s ease; }
.faq-item.active .faq-answer { max-height:300px; padding:0 22px 20px; }

.faq-answer p { color:#777; font-size:.93rem; font-weight:300; line-height:1.7; margin:0; }

.faq-item::before {
  content:"";
  position:absolute;
  left:0; top:0;
  width:4px; height:0%;
  background: linear-gradient(180deg,#6a00ff,#d600ff);
  border-radius:0 4px 4px 0;
  transition:height .4s ease;
}
.faq-item.active::before {height:100%;}

@media (max-width:700px){ .faq-question{font-size:1rem; padding:16px 18px;} }

@media screen and (min-width: 1024px) {
  .faq-wrap { max-width: 800px; margin: 0 auto; }
  .faq-question { font-size: 1rem; padding: 18px 22px; }
}
@media screen and (min-width: 1440px) {
  .faq-wrap { max-width: 900px; }
  .faq-sub { font-size: 1.1rem; margin-bottom: 50px; }
  .faq-question { font-size: 1.1rem; padding: 20px 24px; }
}
@media screen and (min-width: 1920px) {
  .faq-wrap { max-width: 1100px; }
  .faq-sub { font-size: 1.2rem; margin-bottom: 65px; }
  .faq-item { border-radius: 20px; }
  .faq-question { font-size: 1.2rem; padding: 24px 28px; }
  .faq-answer p { font-size: 1.1rem; }
}
@media screen and (min-width: 2560px) {
  .faq-wrap { max-width: 1400px; }
  .faq-sub { font-size: 1.5rem; margin-bottom: 85px; }
  .faq-item { border-radius: 26px; }
  .faq-question { font-size: 1.5rem; padding: 32px 38px; }
  .faq-answer p { font-size: 1.35rem; padding: 0 38px 26px; }
  .faq-item::before { width: 7px; }
}

/* ═══ LEAD SECTION ═══ */
.lead-section {
  background: #0a0015;
  border-top: 1px solid rgba(255,255,255,.06);
  color:#f8f8ff;
  padding:clamp(80px,9vw,130px) min(5vw,60px);
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.lead-wrap { max-width:680px; position:relative; z-index:2; }

.lead-eyebrow {
  display:inline-block; font-size:.7rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.35);
  margin-bottom:16px;
}

.lead-title {
  font-size:clamp(1.6rem,3.5vw,2.2rem);
  font-weight:700;
  color:#fff;
  margin:0 0 10px;
  line-height:1.2;
}

.lead-sub {
  font-size:.9rem;
  font-weight:300;
  color:rgba(255,255,255,.38);
  margin:0 auto 36px;
  line-height:1.7;
  max-width:500px;
}

/* Doc cards */
.lead-docs {
  display:flex; flex-direction:column; gap:8px;
  margin-bottom:32px; text-align:left;
}
.lead-doc {
  padding:12px 16px; border-radius:8px;
  border:1px solid rgba(255,255,255,.07);
  background:transparent;
}
.lead-doc--active {
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
}
.lead-doc strong {
  display:block; font-size:.85rem; font-weight:500;
  color:rgba(255,255,255,.75); margin-bottom:2px;
}
.lead-doc span {
  font-size:.75rem; font-weight:300;
  color:rgba(255,255,255,.3);
}

.lead-form { display:flex; flex-direction:column; align-items:center; gap:10px; width:100%; }

.lead-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  width:100%;
}

.lead-form input, .lead-form select {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  padding:12px 14px;
  color:#fff;
  font-size:.88rem;
  font-weight:300;
  width:100%;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
.lead-form input::placeholder { color:rgba(255,255,255,.25); font-weight:300; }
.lead-form input:focus, .lead-form select:focus {
  outline:none; border-color:rgba(255,255,255,.25);
}
.lead-form select option { background:#0a0015; color:#fff; }

.lead-consent {
  display:flex; align-items:flex-start; gap:8px;
  font-size:.75rem; font-weight:300;
  color:rgba(255,255,255,.28);
  text-align:left; width:100%;
  line-height:1.6;
}
.lead-consent input[type="checkbox"] {
  accent-color:rgba(255,255,255,.5);
  margin:2px 0 0; flex-shrink:0;
  width:13px; height:13px;
}

.lead-btn {
  background:#fff;
  border:none; color:#0a0015;
  font-weight:700; font-size:.9rem;
  padding:13px 36px;
  border-radius:8px;
  cursor:pointer;
  transition:.2s ease;
  font-family:'Poppins',sans-serif;
  margin-top:4px;
}
.lead-btn:hover { background:rgba(255,255,255,.88); transform:translateY(-1px); }

.lead-stat {
  font-size:.72rem; font-weight:300;
  color:rgba(255,255,255,.2);
  margin:8px 0 0;
}

@media(max-width:700px){
  .lead-grid { grid-template-columns:1fr; }
}

@media screen and (min-width: 1024px) { .lead-wrap { max-width: 720px; } }
@media screen and (min-width: 1440px) { .lead-wrap { max-width: 760px; } }
@media screen and (min-width: 1920px) {
  .lead-wrap { max-width: 860px; }
  .lead-btn { padding: 15px 44px; font-size: 1rem; }
}
@media screen and (min-width: 2560px) {
  .lead-wrap { max-width: 1100px; }
  .lead-btn { padding: 18px 56px; font-size: 1.2rem; }
}

/* ═══ CLOSING SECTION ═══ */
.closing-section {
  position:relative;
  background:#fff;
  color:#1a1a1a;
  padding:clamp(100px,12vw,160px) min(5vw,60px);
  text-align:center;
  overflow:hidden;
}

.closing-wrap { position:relative; z-index:2; max-width:800px; margin:0 auto; }

.closing-badge {
  display:inline-block; margin-bottom:18px;
  padding:6px 18px; border-radius:999px;
  background:rgba(214,0,255,.08); border:1px solid rgba(214,0,255,.25);
  color:#d600ff; font-size:.78rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
}

.closing-title {
  font-size:clamp(1.8rem,4vw,2.5rem);
  font-weight:800;
  color:#1a1a1a;
  margin-bottom:14px;
  line-height:1.15;
}

.closing-sub { color:#666; font-size:1.05rem; margin-bottom:36px; line-height:1.7; }
.closing-micro { margin-top:16px; color:rgba(0,0,0,.35); font-size:.8rem; }

.closing-btn {
  display:inline-block;
  background:#d600ff;
  color:#fff;
  font-weight:700;
  padding:16px 38px;
  border-radius:14px;
  text-decoration:none;
  transition:.3s ease;
  box-shadow:0 0 25px rgba(214,0,255,.25);
}
.closing-btn:hover { transform:translateY(-3px); box-shadow:0 0 40px rgba(214,0,255,.45); }

#closingCanvas {
  position:absolute; top:0; left:0;
  width:100%; height:100%; z-index:1;
}

.floating-cta {
  position:fixed; bottom:20px; right:20px;
  background:#fff; border:1px solid rgba(214,0,255,.2);
  box-shadow:0 6px 25px -8px rgba(214,0,255,.3);
  border-radius:14px; padding:14px 20px;
  display:flex; align-items:center; gap:12px;
  z-index:50; transition:.4s ease;
  opacity:0; transform:translateY(30px);
}
.floating-cta a {
  background:#d600ff; color:#fff; text-decoration:none;
  padding:10px 20px; border-radius:10px; font-weight:600; font-size:.95rem;
}
.floating-cta p { margin:0; color:#1a1a1a; font-weight:500; }
.floating-cta.show { opacity:1; transform:translateY(0); }

@media(max-width:700px){ .floating-cta{flex-direction:column; right:10px; left:10px;} }

@media screen and (min-width: 1024px) {
  .closing-wrap { max-width: 800px; }
  .closing-btn { padding: 14px 32px; }
}
@media screen and (min-width: 1440px) {
  .closing-wrap { max-width: 900px; }
  .closing-btn { padding: 16px 38px; font-size: 1.05rem; }
}
@media screen and (min-width: 1920px) {
  .closing-wrap { max-width: 1100px; }
  .closing-sub { font-size: 1.25rem; margin-bottom: 50px; }
  .closing-btn { padding: 18px 44px; font-size: 1.2rem; border-radius: 18px; }
}
@media screen and (min-width: 2560px) {
  .closing-wrap { max-width: 1400px; }
  .closing-sub { font-size: 1.6rem; margin-bottom: 70px; }
  .closing-btn { padding: 26px 60px; font-size: 1.6rem; border-radius: 24px; }
}


/* ════════════════════════════════════════════════════════════════
   TEMA CLARO — OVERRIDE DEFINITIVO v3
   Hero, footer y mapa permanecen oscuros. Todo lo demás: blanco.
════════════════════════════════════════════════════════════════ */

/* ── Animaciones de entrada CSS-only (reemplaza el JS con opacity:0) ── */
.reveal-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.22,.9,.36,1), transform .65s cubic-bezier(.22,.9,.36,1);
}
.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ── */
header.h-navbar-tech { padding: 0; }
.h-navbar-left-col img { height: 72px !important; }
.h-navbar-container { padding: 6px 4vw !important; }
@media (max-width: 600px) {
  .h-navbar-left-col img { height: 54px !important; }
}

/* ── Social Proof Strip ── */
.sp-strip {
  background: #f6f5fa !important;
  border-top: 1px solid #eceaf4 !important;
  border-bottom: 1px solid #eceaf4 !important;
}
.sp-num { color: #111 !important; }
.sp-label { color: #888 !important; }
.sp-divider { background: #dddae8 !important; }

/* ── Mensaje Transversal ── */
.xmsg-transversal {
  background: #f7f5fc !important;
  border-top: 1px solid #eceaf4 !important;
}
.xmsg-eyebrow { color: #9e96b8 !important; border-color: rgba(0,0,0,.09) !important; }
.xmsg-title { color: #111 !important; }
.xmsg-accent { color: #d600ff !important; font-style: normal !important; }
.xmsg-copy { color: #555 !important; }
.xmsg-copy-strong { color: #111 !important; font-weight: 700; }
.xmsg-bullet { background: #fff !important; border-color: #e6e0f8 !important; color: #333 !important; }
.xmsg-bullet strong { color: #111 !important; }
.xmsg-bullet-num { color: #cfc6e8 !important; border-color: rgba(0,0,0,.08) !important; }
/* Tarjeta lateral oscura como punto focal */
.xmsg-card { background: #130025 !important; border-color: rgba(214,0,255,.28) !important; }
.xmsg-card-badge { background: rgba(214,0,255,.18) !important; border-color: rgba(214,0,255,.3) !important; color: #df80ff !important; }
.xmsg-card-title { color: #fff !important; }
.xmsg-card-text { color: rgba(255,255,255,.5) !important; }
.xmsg-progress-bar { background: rgba(255,255,255,.08) !important; }
.xmsg-progress-fill { background: #d600ff !important; }
.xmsg-progress-meta { color: rgba(255,255,255,.38) !important; }
.xmsg-progress-val { color: #fff !important; }
.xmsg-kpi { color: #d600ff !important; }
.xmsg-cta { background: #d600ff !important; color: #fff !important; }
.xmsg-legal { color: rgba(255,255,255,.25) !important; }

/* ── Perfiles (ya blanco, fix animación) ── */
.perfil-section { background: #fff !important; }
.perfil-card {
  opacity: 1;
  transform: translateY(0);
  background: #fff !important;
  border-color: #eae6f4 !important;
}
.perfil-card.reveal-card { opacity: 0; transform: translateY(32px); }
.perfil-card.reveal-card.revealed { opacity: 1; transform: translateY(0); }
.perfil-title { color: #1a1a1a !important; }
.perfil-subtitle { color: #777 !important; }
.perfil-tag { color: #555 !important; background: rgba(0,0,0,.05) !important; }
.perfil-eyebrow { color: rgba(0,0,20,.45) !important; border-color: rgba(0,0,0,.1) !important; }
.perfil-list li { color: #555 !important; }
.perfil-list li::before { background: #ccc !important; }
.perfil-list--gain li::before { background: #1a7a4a !important; }
.perfil-resultado { background: #f5f5f7 !important; border-color: #e8e8ec !important; color: #333 !important; }
.perfil-cta { background: #111 !important; color: #fff !important; }

/* ── Flow (3 pasos) ── */
.flow-section {
  background: linear-gradient(160deg, #f3f0ff 0%, #ebe5ff 100%) !important;
  color: #1a1a1a !important;
}
.flow-title { color: #1a1a1a !important; }
.flow-accent { color: #d600ff !important; }
.flow-subtitle { color: #7b6fa8 !important; }
.flow-step {
  background: #fff !important;
  border-color: #ddd6f2 !important;
  box-shadow: 0 6px 24px -8px rgba(106,0,255,.1) !important;
  opacity: 1;
  transform: translateY(0);
}
.flow-step.reveal-card { opacity: 0; transform: translateY(32px); }
.flow-step.reveal-card.revealed { opacity: 1; transform: translateY(0); }
.flow-step:hover {
  box-shadow: 0 16px 40px -12px rgba(214,0,255,.22) !important;
  border-color: rgba(214,0,255,.28) !important;
}
.flow-step-title { color: #1a1a1a !important; }
.flow-step-text { color: #6a5f8a !important; }
.flow-cta-note { color: #9a90c0 !important; font-size: .8rem; margin-top: 12px; }

/* ── Onboarding ── */
.onb-section { background: #f8f7fc !important; border-top: 1px solid #eceaf4 !important; }
.onb-label { color: #aaa !important; }
.onb-title { color: #111 !important; }
.onb-sub { color: #888 !important; }

/* ── Sistema de Valor ── */
.valor-section { background: #fff !important; color: #1a1a1a !important; }
.valor-title { color: #1a1a1a !important; }
.valor-sub { color: #777 !important; }
.valor-card {
  background: #f8f6fd !important;
  border-color: #ece6f8 !important;
  box-shadow: 0 2px 14px -4px rgba(106,0,255,.07) !important;
}
.valor-card:hover {
  box-shadow: 0 14px 38px -10px rgba(214,0,255,.2) !important;
  border-color: rgba(214,0,255,.28) !important;
}
.valor-card h3 { color: #1a1a1a !important; }
.valor-card p { color: #777 !important; }
.valor-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(214,0,255,.13);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -.04em;
  font-family: 'Poppins', sans-serif;
}
.valor-cta { background: #111 !important; box-shadow: none !important; }
.valor-cta:hover { background: #333 !important; transform: translateY(-2px); }

/* ── Gamificación ── */
.gami-section {
  background: #fff !important;
  border-top: 1px solid #eceaf4 !important;
  color: #1a1a1a !important;
}
.gami-eyebrow { color: #c0b8d8 !important; }
.gami-title { color: #111 !important; }
.gami-sub { color: #888 !important; }
.gami-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr)) !important;
  gap: 16px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.gami-card {
  background: #fff !important;
  border: 1px solid #eae6f5 !important;
  border-left: 3px solid #d600ff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 14px -4px rgba(106,0,255,.07) !important;
  padding: 28px 24px !important;
  text-align: left !important;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease !important;
}
.gami-card:hover {
  background: #fff !important;
  box-shadow: 0 10px 32px -8px rgba(214,0,255,.18) !important;
  border-color: rgba(214,0,255,.3) !important;
  border-left-color: #d600ff !important;
  transform: translateY(-3px);
}
.gami-num {
  display: block !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  letter-spacing: -.04em !important;
  color: rgba(214,0,255,.15) !important;
  margin-bottom: 14px !important;
  line-height: 1 !important;
}
.gami-card h3 { color: #111 !important; font-size: 1rem !important; font-weight: 600 !important; }
.gami-card p { color: #777 !important; font-size: .87rem !important; }
.gami-cta { border-color: rgba(0,0,0,.12) !important; color: #555 !important; }
.gami-cta:hover { border-color: #d600ff !important; color: #d600ff !important; }

/* ── Testimonios ── */
.trust-section { background: #f7f5fc !important; color: #1a1a1a !important; }
.trust-eyebrow { color: #c0b8d8 !important; }
.trust-title { color: #111 !important; }
.trust-sub { color: #999 !important; }
.trust-sectors span { color: #c8c2dc !important; border-right-color: #e8e4f2 !important; }
.trust-card {
  background: #fff !important;
  border: 1px solid #eae5f5 !important;
  box-shadow: 0 2px 14px -4px rgba(106,0,255,.07) !important;
}
.trust-card:hover {
  box-shadow: 0 12px 36px -8px rgba(214,0,255,.15) !important;
  border-color: rgba(214,0,255,.22) !important;
  transform: translateY(-4px);
}
.trust-card__quote { color: #444 !important; }
.trust-card__author strong { color: #111 !important; }
.trust-card__author span { color: #aaa !important; }
.trust-card__avatar { background: #1a1a1a !important; color: #fff !important; }
.trust-card__result {
  background: rgba(214,0,255,.06) !important;
  border-color: rgba(214,0,255,.14) !important;
  color: #9333c8 !important;
}

/* ── FAQ ── */
.faq-section { background: #fff !important; color: #1a1a1a !important; }
.faq-title { color: #111 !important; }
.faq-sub { color: #999 !important; }
.faq-item { background: #fff !important; border-color: #ebebeb !important; }
.faq-item.active { border-color: #e0dae8 !important; }
.faq-question { color: #1a1a1a !important; }
.faq-question span { color: #1a1a1a !important; }
.faq-chevron { color: #bbb !important; }
.faq-item.active .faq-chevron { color: #d600ff !important; }
.faq-answer p { color: #777 !important; }

/* ── Lead / Captura ── */
.lead-section {
  background: #f5f3fb !important;
  border-top: 1px solid #eceaf4 !important;
  color: #1a1a1a !important;
}
.lead-eyebrow { color: #c0b8d8 !important; }
.lead-title { color: #111 !important; }
.lead-sub { color: #888 !important; }
.lead-doc { border-color: rgba(0,0,0,.07) !important; background: transparent !important; }
.lead-doc--active { background: rgba(214,0,255,.04) !important; border-color: rgba(214,0,255,.18) !important; }
.lead-doc strong { color: #333 !important; }
.lead-doc span { color: #999 !important; }
.lead-form input, .lead-form select {
  background: #fff !important;
  border-color: rgba(0,0,0,.12) !important;
  color: #1a1a1a !important;
}
.lead-form input::placeholder { color: #bbb !important; }
.lead-form input:focus, .lead-form select:focus { border-color: #d600ff !important; box-shadow: 0 0 0 3px rgba(214,0,255,.08) !important; outline: none; }
.lead-form select option { background: #fff !important; color: #1a1a1a !important; }
.lead-consent { color: #999 !important; }
.lead-consent input[type="checkbox"] { accent-color: #d600ff !important; }
.lead-btn { background: #d600ff !important; color: #fff !important; border: none !important; }
.lead-btn:hover { background: #bf00e8 !important; transform: translateY(-1px); }
.lead-stat { color: #ccc !important; }
