/* ================================================================
   Unidos en la Adversidad — v2
   Rediseño profesional: alto contraste, tipografía grande, impacto real
   Tipografía: Playfair Display (display) + DM Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:      #001B3D;
  --navy-mid:  #002D6B;
  --blue:      #0A4DA8;
  --blue-h:    #1059c4;
  --accent:    #4A9EFF;
  --white:     #FFFFFF;
  --off:       #F3F6FB;
  --off2:      #E8EEF8;
  --border:    #D5E0F0;
  --text:      #0D1B2E;
  --text-l:    #3A546F;
  --muted:     #7A96B2;

  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;

  --r4: 4px; --r8: 8px; --r12: 12px; --r16: 16px; --r24: 24px;

  --s1: 0 1px 4px rgba(0,27,61,.06);
  --s2: 0 6px 20px rgba(0,27,61,.12);
  --s3: 0 12px 40px rgba(0,27,61,.18);

  --nav: 72px;
  --mw:  1100px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
ul { list-style: none; }
p  { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 { font-family: var(--fd); line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap   { max-width: var(--mw); margin: 0 auto; padding: 0 2rem; }
.sec    { padding: 4rem 0; }
.sec-lg { padding: 5rem 0; }
.sec-sm { padding: 2rem 0; }
.bg-w   { background: var(--white); }
.bg-off { background: var(--off); }
.bg-n   { background: var(--navy); color: #fff; }
.bg-nm  { background: var(--navy-mid); color: #fff; }
.t-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
}
.bg-n .eyebrow, .bg-nm .eyebrow { color: var(--accent); }

/* ── Tipografía en oscuro — SIEMPRE blanco puro ─── */
.bg-n h1, .bg-n h2, .bg-n h3, .bg-n h4 { color: #fff; }
.bg-nm h1,.bg-nm h2,.bg-nm h3,.bg-nm h4 { color: #fff; }
.bg-n p, .bg-nm p { color: rgba(255,255,255,.88); }
.bg-n .lead, .bg-nm .lead { color: rgba(255,255,255,.88); }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-l);
  font-weight: 300;
}
.sec-desc { font-size: 1rem; color: var(--text-l); max-width: 620px; margin-bottom: 2rem; }
.txt-sm { font-size: .82rem; }
.txt-muted { color: var(--muted); }

/* ── Grids ──────────────────────────────────────────────────── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
@media(max-width:820px) { .g3,.g4 { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px) { .g2,.g3,.g4 { grid-template-columns: 1fr; } }

/* ── Botones ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .72rem 1.6rem; border-radius: var(--r8);
  font-family: var(--fb); font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all .2s; white-space: nowrap; line-height: 1; text-decoration: none;
}
.btn-xl { padding: 1rem 2.2rem; font-size: 1.05rem; border-radius: var(--r12); }
.btn-lg { padding: .85rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: .42rem .95rem; font-size: .82rem; }

.btn-p  { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-p:hover { background: var(--blue-h); border-color: var(--blue-h); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,77,168,.35); }

.btn-o  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-o:hover { background: var(--navy); color: #fff; }

.btn-ol { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ol:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }

.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); color: #fff; }

.btn-ic {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 1px solid var(--border); border-radius: var(--r4);
  padding: .32rem .7rem; cursor: pointer; font-size: .82rem;
  color: var(--text-l); font-family: var(--fb); transition: all .15s;
}
.btn-ic:hover { background: var(--off); color: var(--navy); }
.brow { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }

/* ── NAVEGACIÓN ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: var(--nav); display: flex; align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-in {
  max-width: var(--mw); margin: 0 auto; padding: 0 2rem;
  width: 100%; display: flex; align-items: center; gap: 1rem;
}
.nav-brand {
  display: flex; align-items: center; gap: .7rem;
  color: #fff; text-decoration: none; flex-shrink: 0; margin-right: auto;
}
/* Logo: fondo blanco redondeado para que el símbolo azul sea visible en nav oscuro */
.nav-logo-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 3px;
}
.nav-logo { width: 34px; height: 34px; object-fit: contain; display: block; }
.nav-nm {
  font-size: .83rem; font-weight: 600;
  color: #fff; line-height: 1.25; max-width: 160px;
}

.nav-ul { display: flex; align-items: center; list-style: none; }
.nav-ul > li { position: relative; }
.nav-ul > li > a,
.nav-ul > li > button {
  display: flex; align-items: center; gap: 3px;
  padding: .48rem .85rem; color: rgba(255,255,255,.82);
  font-size: .84rem; font-weight: 500;
  background: none; border: none; cursor: pointer; font-family: var(--fb);
  white-space: nowrap; transition: color .15s; border-radius: var(--r4);
}
.nav-ul > li > a:hover,
.nav-ul > li > button:hover { color: #fff; }
.nav-ul > li > a.act { color: #fff; background: rgba(255,255,255,.12); }

.dd-panel {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border-radius: var(--r12); box-shadow: var(--s3);
  min-width: 200px; padding: .4rem 0; z-index: 200;
  border: 1px solid var(--border);
}
.dd-panel.open { display: block; }
.dd-panel a {
  display: block; padding: .55rem 1.2rem; color: var(--text);
  font-size: .84rem; font-weight: 500; transition: background .15s;
}
.dd-panel a:hover { background: var(--off); color: var(--navy); }
.dd-arr { font-size: .6rem; opacity: .5; transition: transform .2s; }
.dd.open .dd-arr { transform: rotate(180deg); }

.nav-cta { margin-left: .5rem; flex-shrink: 0; }
.nav-tog {
  display: none; background: none; border: none; cursor: pointer;
  padding: 5px; flex-direction: column; gap: 5px; margin-left: auto;
}
.nav-tog span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .2s; }

@media(max-width:900px) {
  .nav-tog { display: flex; }
  .nav-cta { display: none; }
  .nav-ul {
    display: none; flex-direction: column; align-items: stretch;
    position: fixed; top: var(--nav); left: 0; right: 0;
    background: var(--navy); padding: .5rem 0 1rem;
    border-top: 1px solid rgba(255,255,255,.08);
    max-height: calc(100vh - var(--nav)); overflow-y: auto;
  }
  .nav-ul.open { display: flex; }
  .nav-ul > li > a,
  .nav-ul > li > button {
    padding: .8rem 1.6rem; border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    width: 100%; justify-content: space-between; font-size: .9rem;
  }
  .dd-panel {
    position: static; box-shadow: none; border: none; border-radius: 0;
    background: rgba(0,0,0,.25); padding: 0;
  }
  .dd-panel a { padding: .6rem 2.4rem; color: rgba(255,255,255,.75); font-size: .84rem; }
  .dd-panel a:hover { background: rgba(255,255,255,.06); color: #fff; }
}

/* ── SPA ────────────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }
main { padding-top: var(--nav); }

/* ── HERO — rediseño total ──────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: calc(100vh - var(--nav));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 4rem 0 3rem;
}

/* Fondo geométrico AA: círculo + triángulo */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  width: 680px; height: 680px;
  border: 80px solid rgba(74,158,255,.06);
  border-radius: 50%;
  right: -200px; top: -220px;
}
.hero-bg-circle2 {
  position: absolute;
  width: 300px; height: 300px;
  border: 2px solid rgba(74,158,255,.08);
  border-radius: 50%;
  right: 180px; bottom: -80px;
}
.hero-bg-tri {
  position: absolute;
  width: 0; height: 0;
  border-left: 220px solid transparent;
  border-right: 220px solid transparent;
  border-bottom: 380px solid rgba(74,158,255,.04);
  right: 40px; top: 60px;
}
.hero-bg-line {
  position: absolute;
  left: 0; bottom: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .25;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 3rem; align-items: center; width: 100%;
}
@media(max-width:800px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem 1rem; margin-bottom: 1.4rem;
  background: rgba(74,158,255,.12);
  border: 1px solid rgba(74,158,255,.3);
  border-radius: 100px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
}
.hero-badge svg { flex-shrink: 0; }

.hero h1 {
  color: #fff; margin-bottom: 1.3rem;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  display: block;
}
.hero .lead {
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-trust {
  display: flex; align-items: center; gap: .55rem;
  font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 1.4rem;
}
.hero-trust svg { flex-shrink: 0; }

/* Hero zoom card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r16);
  padding: 1.7rem;
  backdrop-filter: blur(4px);
}
@media(max-width:800px) { .hero-card { display: block; } }
.hc-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .5rem;
}
.hc-rows { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.3rem; }
.hc-row label {
  display: block; font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 3px;
}
.hc-row span, .hc-row a {
  font-size: .95rem; font-weight: 600; color: #fff;
}
.hc-row a { color: var(--accent); }
.hc-divider { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 1.3rem; }

/* ── STRIP ──────────────────────────────────────────────────── */
.strip {
  background: var(--blue);
  padding: 1rem 0;
}
.strip-in {
  display: flex; align-items: center;
  justify-content: center; gap: 2.2rem; flex-wrap: wrap;
}
.strip-it {
  display: flex; align-items: center; gap: .55rem;
  font-size: .95rem; color: #fff; font-weight: 500;
}
.strip-it svg { opacity: .9; flex-shrink: 0; }
.strip-sep { color: rgba(255,255,255,.3); font-size: 1.1rem; }
@media(max-width:540px) { .strip-sep { display: none; } .strip-in { gap: 1rem; } }

/* ── ZOOM CARD CENTRAL ─────────────────────────────────────── */
.z-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r24); overflow: hidden;
  box-shadow: var(--s3); max-width: 720px; margin: 0 auto;
}
.z-head {
  background: var(--navy-mid); padding: 1.6rem 2rem;
  display: flex; align-items: center; gap: 1.1rem;
}
.z-logo {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border-radius: var(--r12);
  display: flex; align-items: center; justify-content: center;
}
.z-logo img { width: 38px; height: 38px; object-fit: contain; filter: brightness(0) invert(1); }
.z-head-txt h2 { font-size: 1.3rem; color: #fff; margin-bottom: .2rem; }
.z-head-txt p  { font-size: .85rem; color: rgba(255,255,255,.6); margin: 0; }
.z-body { padding: 2rem; }
.z-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.6rem;
}
@media(max-width:500px) { .z-grid { grid-template-columns: 1fr; } }
.z-field label {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 5px;
}
.z-val  { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.z-link { font-size: .95rem; font-weight: 600; color: var(--blue); word-break: break-all; }
.z-pass-wrap { display: flex; align-items: center; gap: .5rem; }
.z-pass-h { letter-spacing: 5px; color: var(--muted); }
.z-pass-v { color: var(--navy); font-size: 1.05rem; font-weight: 600; }
.z-note {
  font-size: .87rem; color: var(--text-l);
  background: var(--off);
  border-left: 4px solid var(--blue);
  padding: .85rem 1.1rem; border-radius: 0 var(--r8) var(--r8) 0;
  margin-top: 1.2rem; line-height: 1.65;
}

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r16); padding: 1.7rem;
  box-shadow: var(--s1); transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--s2); transform: translateY(-3px); }

.card-ic {
  width: 52px; height: 52px;
  background: var(--off2); border-radius: var(--r12);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 1rem;
}
.card-tit { font-size: 1rem; color: var(--navy); margin-bottom: .35rem; font-family: var(--fd); font-weight: 700; }
.card-dsc { font-size: .9rem; color: var(--text-l); line-height: 1.65; }

/* STAT cards */
.stat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r16); padding: 1.5rem; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.stat:hover { box-shadow: var(--s2); transform: translateY(-2px); }
.stat-ic {
  width: 48px; height: 48px; background: var(--off2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin: 0 auto .7rem;
}
.stat-lbl {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .3rem;
}
.stat-val { font-size: 1rem; font-weight: 700; color: var(--navy); }

/* Disclaimer */
.disc {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #EEF4FF; border: 1px solid #C5D9F5;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r12) var(--r12) 0;
  padding: 1.1rem 1.3rem; margin-top: 1.5rem;
}
.disc svg { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.disc p { font-size: .85rem; color: var(--text-l); margin: 0; line-height: 1.7; }

/* ── AUDIENCIAS ──────────────────────────────────────────────── */
.aud-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 3rem; align-items: center;
}
.aud-grid.rev { grid-template-columns: 2fr 1fr; }
.aud-grid.rev .aud-vis { order: 2; }
@media(max-width:700px) {
  .aud-grid,.aud-grid.rev { grid-template-columns: 1fr; }
  .aud-grid.rev .aud-vis { order: 0; }
  .aud-vis { display: none; }
}
.aud-vis {
  display: flex; align-items: center; justify-content: center;
}
.aud-circle {
  width: 200px; height: 200px;
  border: 3px solid rgba(255,255,255,.22);
  background: radial-gradient(circle at center, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 52%, rgba(255,255,255,.01) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.aud-num {
  font-family: var(--fd); font-size: 4.5rem; font-weight: 800;
  color: rgba(255,255,255,.85); line-height: 1; user-select: none;
}
.aud-icon { width: 80px; height: 80px; color: rgba(255,255,255,.75); }

.aud-pts { display: flex; flex-direction: column; gap: .6rem; margin: 1.2rem 0 1.6rem; }
.aud-pts li {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .97rem; color: rgba(255,255,255,.88); line-height: 1.6;
}
.aud-check {
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-top: 2px;
}

/* ── INSTITUCIONES ──────────────────────────────────────────── */
.inst-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r24); padding: 2.2rem;
  box-shadow: var(--s2); max-width: 760px;
}
.inst-ic {
  width: 60px; height: 60px; background: var(--off2);
  border-radius: var(--r16); display: flex; align-items: center;
  justify-content: center; color: var(--blue); margin-bottom: 1.2rem;
}
.inst-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: .75rem; }
.inst-card > p { font-size: .97rem; color: var(--text-l); margin-bottom: 1rem; line-height: 1.75; }
.inst-pts { margin: 1rem 0 1.4rem; display: flex; flex-direction: column; gap: .4rem; }
.inst-pts li {
  display: flex; gap: .55rem; align-items: flex-start;
  font-size: .9rem; color: var(--text-l);
  padding: .38rem 0; border-bottom: 1px solid var(--border);
}
.inst-pts li svg { flex-shrink: 0; color: var(--blue); margin-top: 2px; }

/* ── QUIZ ───────────────────────────────────────────────────── */
.qwrap { max-width: 640px; margin: 0 auto; }
.qpbar { height: 5px; background: rgba(255,255,255,.12); border-radius: 3px; margin-bottom: 1.6rem; overflow: hidden; }
.qpfill { height: 100%; background: var(--accent); border-radius: 3px; transition: width .4s ease; }
.qcard {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r24); padding: 2.2rem; text-align: center;
}
.qnum { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.qtxt { font-family: var(--fd); font-size: clamp(1rem,2.3vw,1.2rem); color: #fff; margin-bottom: 2rem; line-height: 1.5; }
.qans { display: flex; gap: 1rem; justify-content: center; }
.qbtn {
  flex: 1; max-width: 160px; padding: 1rem; border-radius: var(--r12);
  font-size: 1rem; font-weight: 700; cursor: pointer; border: 2px solid transparent;
  font-family: var(--fb); transition: all .18s;
}
.qbtn-si { background: var(--blue); color: #fff; border-color: var(--blue); }
.qbtn-si:hover { background: var(--blue-h); transform: scale(1.04); }
.qbtn-no { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.qbtn-no:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.45); transform: scale(1.04); }
@media(max-width:440px) { .qans { flex-direction: column; align-items: center; } .qbtn { max-width: 100%; width: 100%; } }
.qres { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r24); padding: 2.2rem; text-align: center; }
.qscore { font-family: var(--fd); font-size: 4.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.qslbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: 1.2rem; }
.qrtit { font-family: var(--fd); font-size: 1.4rem; color: #fff; margin-bottom: .85rem; }
.qrmsg { color: rgba(255,255,255,.85); margin-bottom: 1.2rem; line-height: 1.8; font-size: 1rem; }
.qrinfo { background: rgba(10,77,168,.25); border: 1px solid rgba(74,158,255,.3); border-radius: var(--r16); padding: 1.4rem; margin: 1.2rem 0; }
.qrinfo p { font-size: .9rem; color: rgba(255,255,255,.82); margin-bottom: .5rem; }
.qrinfo strong { color: var(--accent); }
.qdisc { font-size: .75rem; color: rgba(255,255,255,.3); margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); line-height: 1.7; }
.qrestart { background: none; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.55); border-radius: var(--r8); padding: .5rem 1.4rem; cursor: pointer; font-size: .82rem; font-family: var(--fb); margin-top: 1.2rem; transition: all .15s; }
.qrestart:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── EVENTOS ────────────────────────────────────────────────── */
.ev-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r16); display: flex; overflow: hidden;
  box-shadow: var(--s1); transition: box-shadow .2s, transform .2s;
}
.ev-card:hover { box-shadow: var(--s2); transform: translateY(-2px); }
.ev-dt {
  background: var(--navy-mid); color: #fff;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 1rem 1rem; min-width: 74px; flex-shrink: 0;
}
.ev-day { font-size: 1.6rem; font-weight: 800; font-family: var(--fd); line-height: 1; }
.ev-dt svg { opacity: .8; }
.ev-mon { font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; opacity: .6; margin-top: 3px; }
.ev-body { padding: 1.2rem 1.4rem; flex: 1; }
.ev-body h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: .35rem; font-family: var(--fd); }
.ev-body p  { font-size: .88rem; color: var(--text-l); margin-bottom: .35rem; }
.ev-time    { font-size: .8rem; color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: .3rem; }

/* ── DESCARGAS ──────────────────────────────────────────────── */
.dl-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r16); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .7rem;
  box-shadow: var(--s1); transition: box-shadow .2s, transform .2s;
}
.dl-card:hover { box-shadow: var(--s2); transform: translateY(-2px); }
.dl-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.dl-tipo { background: var(--navy); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 100px; }
.dl-cat  { background: var(--off2); color: var(--blue); font-size: .62rem; font-weight: 600; padding: 3px 8px; border-radius: 100px; }
.dl-fecha { font-size: .73rem; color: var(--muted); }
.dl-size  { font-size: .73rem; color: var(--muted); }
.dl-tit { font-size: 1rem; font-weight: 700; color: var(--navy); font-family: var(--fd); display: flex; align-items: center; gap: .4rem; }
.dl-dsc { font-size: .88rem; color: var(--text-l); line-height: 1.65; }
.dl-acts { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .2rem; }

/* ── MULTIMEDIA / TESTIMONIOS ────────────────────────────────── */
.med-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r16); overflow: hidden; box-shadow: var(--s1); }
.med-emb { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: var(--navy); }
.med-emb iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.med-emb video  { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.med-body { padding: 1.1rem 1.3rem; }
.med-body h4 { font-size: .97rem; color: var(--navy); margin-bottom: .3rem; font-family: var(--fd); }
.med-body p  { font-size: .85rem; color: var(--text-l); }

.aud-card {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.3rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r16); box-shadow: var(--s1);
}
.aud-ic {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--off2); border-radius: var(--r12);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.aud-info { flex: 1; min-width: 0; }
.aud-info strong { display: block; font-size: .95rem; margin-bottom: .35rem; color: var(--navy); font-family: var(--fd); }
.aud-info p { font-size: .84rem; color: var(--text-l); margin-bottom: .5rem; }
.aud-info audio { width: 100%; }

/* ── CONTACTO ───────────────────────────────────────────────── */
.ctc-g { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media(max-width:660px) { .ctc-g { grid-template-columns: 1fr; } }
.ctc-blk {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r16); padding: 1.7rem;
}
.ctc-blk-tit {
  font-size: 1rem; color: #fff; margin-bottom: .35rem;
  display: flex; align-items: center; gap: .5rem; font-family: var(--fd);
}
.ctc-blk-tit svg { color: var(--accent); flex-shrink: 0; }
.ctc-blk-dsc { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 1.2rem; line-height: 1.6; }
.ctc-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r12); padding: 1rem; margin-bottom: .7rem;
}
.ctc-card h4 { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .2rem; }
.ctc-nm { font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: .6rem; }
.ctc-lks { display: flex; flex-wrap: wrap; gap: .4rem; }
.cl {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8rem; padding: 5px 12px; border-radius: 100px;
  font-weight: 600; border: 1px solid; transition: all .15s;
}
.cl-wa  { background: rgba(37,211,102,.1); color: #4ade80; border-color: rgba(37,211,102,.25); }
.cl-wa:hover { background: rgba(37,211,102,.2); }
.cl-em  { background: rgba(74,158,255,.12); color: var(--accent); border-color: rgba(74,158,255,.25); }
.cl-em:hover { background: rgba(74,158,255,.22); }
.ctc-em { text-align: center; margin-top: 2.2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); }
.ctc-em p { color: rgba(255,255,255,.55); margin-bottom: .4rem; font-size: .95rem; }
.email-lnk { font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.email-lnk:hover { color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.ft {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0 1.5rem; color: rgba(255,255,255,.55);
}
.ft-g { display: grid; grid-template-columns: minmax(260px,320px) minmax(0,1fr); gap: 2.5rem; margin-bottom: 2.2rem; align-items: start; }
@media(max-width:700px) { .ft-g { grid-template-columns: 1fr; gap: 1.5rem; } }
.ft-logo { display: flex; align-items: center; gap: .7rem; color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 1rem; }
.ft-logo img { width: 34px; height: 34px; object-fit: contain; filter: brightness(0) invert(1); }
.ft-brand p { font-size: .85rem; margin-bottom: .4rem; color: rgba(255,255,255,.55); }
.ft-brand a { color: var(--accent); font-size: .85rem; }
.ft-nav h4, .ft-leg h4 { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.28); margin-bottom: .9rem; font-family: var(--fb); }
.ft-nav ul { display: flex; flex-direction: column; gap: .4rem; }
.ft-nav a { color: rgba(255,255,255,.55); font-size: .85rem; transition: color .15s; }
.ft-nav a:hover { color: #fff; }
.ft-leg { min-height: 100%; }
.ft-leg p { font-size: .83rem; color: rgba(255,255,255,.42); line-height: 1.8; margin-bottom: .65rem; max-width: 760px; }
.ft-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .4rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.05); }
.ft-bot p { font-size: .73rem; color: rgba(255,255,255,.22); }

/* ── Misc ───────────────────────────────────────────────────── */
.nota-p { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.ld  { color: var(--muted); font-style: italic; font-size: .9rem; padding: 1rem 0; }
.emp { font-size: .9rem; color: var(--muted); padding: 1rem 0; }
.bg-n .ld, .bg-nm .ld { color: rgba(255,255,255,.32); }

/* Modal */
.modal-ov { position: fixed; inset: 0; background: rgba(0,0,0,.82); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-bx { background: #fff; border-radius: var(--r16); overflow: hidden; width: 100%; max-width: 880px; max-height: 90vh; display: flex; flex-direction: column; }
.modal-hd { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.3rem; background: var(--navy); color: #fff; }
.modal-hd strong { font-size: .9rem; }
.modal-cl { background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1; padding: 0 4px; }
.modal-bd { flex: 1; min-height: 60vh; }
.modal-bd iframe { width: 100%; height: 100%; border: none; min-height: 60vh; }
.modal-ft { padding: .5rem 1.2rem; background: var(--off); font-size: .72rem; color: var(--muted); text-align: center; }

/* Back to top */
.btt { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px; background: var(--navy-mid); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--s2); opacity: 0; pointer-events: none; transition: all .2s; z-index: 500; text-decoration: none; }
.btt.show { opacity: 1; pointer-events: all; }
.btt:hover { background: var(--blue); color: #fff; }

/* Autodiagnóstico: sin espacio excesivo superior */
#page-autodiagnostico .sec-lg { padding-top: 2.2rem; }
#page-autodiagnostico .t-center { margin-bottom: 1.2rem !important; }

/* Descargas: separador de categoría */
.dl-sep {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 0 .5rem; margin-top: 1.8rem;
  border-bottom: 2px solid var(--border);
}
.dl-sep:first-child { margin-top: 0; }
.dl-sep-ic { color: var(--blue); display: flex; }
.dl-sep-name {
  font-family: var(--fd); font-size: 1.1rem; font-weight: 700;
  color: var(--navy); flex: 1;
}
.dl-sep-count {
  font-size: .75rem; color: var(--muted); font-weight: 500;
  background: var(--off2); padding: 2px 10px; border-radius: 100px;
}
.dl-group { margin-top: 1rem; margin-bottom: .5rem; }

/* Formulario de contacto */
.ctc-form { margin-top: 2.2rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1); }
.ctc-form h3 {
  font-size: 1rem; color: #fff; margin-bottom: .35rem;
  display: flex; align-items: center; gap: .45rem; font-family: var(--fd);
}
.ctc-form h3 svg { color: var(--accent); }
.ctc-form-desc { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 1.2rem; }
.ctc-form-grid { display: grid; grid-template-columns: 1fr; gap: .9rem; }
.f-group { display: flex; flex-direction: column; gap: .35rem; }
.f-group label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.f-group input,
.f-group textarea {
  width: 100%; padding: .75rem 1rem; border-radius: var(--r8);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-family: var(--fb); font-size: .95rem;
  transition: border-color .2s;
  resize: none;
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: rgba(255,255,255,.3); }
.f-group input:focus,
.f-group textarea:focus {
  outline: none; border-color: var(--accent);
  background: rgba(255,255,255,.12);
}

/* WhatsApp flotante */
.wa-float {
  position: fixed; bottom: 5rem; right: 1.5rem;
  width: 52px; height: 52px;
  background: #25D366; color: #fff;
  border-radius: 50%; display: none; /* shown by JS when wa_grupo loaded */
  align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  z-index: 500; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
  color: #fff;
}
.wa-float-tip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff;
  font-size: .78rem; font-weight: 600;
  padding: .35rem .75rem; border-radius: var(--r8);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.wa-float:hover .wa-float-tip { opacity: 1; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
@media(prefers-reduced-motion:reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

.ctc-g-after { margin-top: 2rem; }
.ctc-form-card {
  margin-top: 0;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: var(--r16);
}
.ctc-form-top {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,360px);
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 1.2rem;
}
.ctc-form-mail {
  padding: 1rem 1.1rem;
  border-radius: var(--r12);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  text-align: right;
}
.ctc-form-mail span {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: .35rem;
}
@media(max-width:820px) {
  .ctc-form-top { grid-template-columns: 1fr; }
  .ctc-form-mail { text-align: left; }
}
@media(max-width:700px) {
  .ctc-form-card { padding: 1.2rem; }
}


/* Ajustes v5 */
.nav-logo-wrap{width:46px;height:42px;border-radius:12px;padding:.2rem}.nav-logo{width:42px;height:38px;object-fit:contain}.nav-nm{max-width:190px;line-height:1.1}
.hero{padding:5.2rem 0 2.5rem}.hero-inner-tight{align-items:center}.hero-trust-plain{display:block;padding-left:0;max-width:640px;line-height:1.55;color:rgba(255,255,255,.76);margin-top:1.35rem}.hero-trust-plain svg{display:none}.hero-card-actions{display:flex;flex-direction:column;gap:.85rem}.hero .lead{margin-bottom:0}
.strip{padding:.9rem 0}.sec-lg.inst-sec{padding-top:3rem}.inst-wrap{max-width:980px;margin:0 auto}.inst-top{text-align:center;margin-bottom:1.5rem}.inst-top .sec-desc{max-width:820px;margin:0 auto}.inst-card{max-width:980px;margin:0 auto}.inst-card>p,.inst-pts li{line-height:1.5}.aud-grid p,.aud-pts li{line-height:1.5}.card-aa-def{margin-top:1.5rem}.card-aa-def .card-dsc{line-height:1.65}.ft-brand p,.ft-brand a,.ft-leg p{font-size:.79rem;line-height:1.45}.ft-leg h4{margin-bottom:.7rem}.ft-bot p{font-size:.7rem}.ft-logo img{width:30px;height:28px;filter:none}.ft-logo div{width:40px !important;height:36px !important;background:transparent !important;padding:0 !important}.ft-g{gap:2.1rem}.
@media(max-width:800px){.hero{padding:4.7rem 0 2.2rem}.nav-logo-wrap{width:42px;height:38px}.nav-logo{width:38px;height:34px}.inst-top{text-align:left}.inst-top .sec-desc{margin:0 0 1.2rem}}

/* Footer ajuste incremental */
.ft{color:rgba(255,255,255,.88)}
.ft-g-social{align-items:flex-start;grid-template-columns:minmax(260px,1fr) minmax(320px,1.4fr)}
.ft-brand-clean .ft-logo-text{font-size:1.35rem;font-weight:800;line-height:1.1;color:#fff;margin-bottom:.9rem}
.ft-brand p,.ft-brand a,.ft-social-link,.ft-legal,.ft-copy{line-height:1.2;color:rgba(255,255,255,.9)}
.ft-brand p,.ft-brand a{font-size:.82rem}
.ft-social h4{margin:0 0 .95rem;color:#fff;font-size:.95rem;letter-spacing:.08em;text-transform:uppercase}
.ft-social-links{display:flex;gap:.8rem;flex-wrap:wrap}
.ft-social-link{display:inline-flex;align-items:center;gap:.65rem;padding:.72rem .95rem;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.04);text-decoration:none;font-size:.85rem;font-weight:700;transition:.2s ease}
.ft-social-link:hover{transform:translateY(-1px);background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.24)}
.ft-social-ic{width:36px;height:36px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.1);color:#fff;flex-shrink:0}
.ft-social-ic svg{width:18px;height:18px}
.ft-bot-stack{display:flex;flex-direction:column;gap:.45rem;padding-top:1.1rem;margin-top:1.35rem}
.ft-legal{font-size:.72rem;line-height:1.25;color:rgba(255,255,255,.72)}
.ft-copy{font-size:.72rem;line-height:1.2;color:rgba(255,255,255,.86)}
.ft-bot p{margin:0}
@media(max-width:800px){.ft-g-social{grid-template-columns:1fr;gap:1.2rem}.ft-social-links{gap:.65rem}.ft-social-link{width:100%;justify-content:flex-start}}


/* Ajuste incremental - inicio/nav */
.nav-logo-wrap{width:44px;height:44px;border-radius:50%;padding:2px;overflow:hidden}.nav-logo{width:40px;height:40px;object-fit:contain}
.nav-ul > li > a, .nav-ul > li > button{gap:.45rem}
.dd-tog{position:relative}
.dd-arr{font-size:.92rem;opacity:.95;font-weight:700;display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border-radius:999px;background:rgba(255,255,255,.1);margin-left:.15rem}
.dd.open .dd-arr{background:rgba(255,255,255,.18)}
.hero{padding:4.2rem 0 1.55rem}.hero-inner-tight{align-items:start}.hero .lead{margin-bottom:.6rem}.hero-trust-plain{margin-top:.75rem}.hero-card-actions{gap:1rem}.hero-card .btn + .btn{margin-top:.1rem}
@media(max-width:800px){.hero{padding:4rem 0 1.35rem}.nav-logo-wrap{width:40px;height:40px;padding:2px}.nav-logo{width:36px;height:36px}.dd-arr{width:22px;height:22px;font-size:1rem}}
.strip{display:none !important}


/* Ajuste incremental - quienes somos y secciones siguientes */
.eyebrow{font-size:.92rem;margin-bottom:.8rem}
.page:not(#page-home) .sec-lg{padding-top:2.45rem}
#page-jovenes .eyebrow, #page-mujeres .eyebrow, #page-adultos .eyebrow, #page-necesidades .eyebrow{font-size:.98rem}
@media(max-width:800px){.page:not(#page-home) .sec-lg{padding-top:2rem}.eyebrow{font-size:.84rem}#page-jovenes .eyebrow, #page-mujeres .eyebrow, #page-adultos .eyebrow, #page-necesidades .eyebrow{font-size:.9rem}}

/* Ajuste puntual: Autodiagnóstico */
#page-autodiagnostico .sec-lg { padding-top: 2rem; }
#page-autodiagnostico .eyebrow { font-size: 1rem; }
#page-autodiagnostico .t-center { margin-bottom: 1rem !important; }
#page-autodiagnostico .qpbar { display: none; }
#page-autodiagnostico .qnum { font-size: .86rem; letter-spacing: .12em; }
@media(max-width:800px){
  #page-autodiagnostico .sec-lg { padding-top: 1.8rem; }
  #page-autodiagnostico .eyebrow { font-size: .92rem; }
  #page-autodiagnostico .qnum { font-size: .78rem; }
}


/* Ajuste puntual: Contacto */
#page-contacto .sec-lg{padding-top:2rem}
#page-contacto .eyebrow{font-size:1rem}
#page-contacto .ctc-head{margin-bottom:1.35rem !important}
#page-contacto .ctc-head .lead{margin-bottom:0}
#page-contacto .ctc-form-card{padding:1.35rem 1.6rem 1.5rem}
#page-contacto .ctc-form-top{margin-bottom:.75rem}
#page-contacto .ctc-form-top-inline{display:block}
#page-contacto .ctc-inline-mail{display:flex;align-items:center;gap:.4rem;flex-wrap:wrap;margin-bottom:.1rem}
#page-contacto .ctc-inline-mail span,#page-contacto .ctc-inline-mail a{font-size:.78rem;line-height:1.15;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.62);font-weight:700}
#page-contacto .ctc-inline-mail a{color:var(--accent);text-decoration:none}
#page-contacto .ctc-form-grid{gap:.75rem}
#page-contacto .ctc-g-after{margin-top:1.35rem}
#page-contacto .ctc-blk-dsc{margin-bottom:.75rem}
@media(max-width:800px){#page-contacto .sec-lg{padding-top:1.8rem}#page-contacto .eyebrow{font-size:.92rem}#page-contacto .ctc-form-card{padding:1.15rem}#page-contacto .ctc-inline-mail span,#page-contacto .ctc-inline-mail a{font-size:.72rem}}


/* Ajuste acumulado final - inicio, footer y quienes somos */
.nav-logo-wrap{
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo{
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.nav-ul>li.dd>button.dd-tog{padding:.5rem .9rem;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#fff;border-radius:999px}
.nav-ul>li.dd>button.dd-tog:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.24)}
.dd-arr{width:24px;height:24px;font-size:1rem;background:rgba(255,255,255,.18);opacity:1;margin-left:.3rem}
.hero{min-height:auto;padding:2.8rem 0 .8rem}
.hero-inner-tight{gap:2rem;align-items:start}
.hero .lead{margin-bottom:.35rem}
.hero-trust-plain{margin-top:.55rem;line-height:1.4;max-width:620px}
.hero-card-actions{gap:1.15rem}
#page-inicio .sec-sm{padding-top:.65rem;padding-bottom:1.2rem}
.ft-brand p,.ft-brand a,.ft-social-link,.ft-legal,.ft-copy{line-height:1.15}

.ft-social-links{
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: nowrap;
}

.ft-social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .34rem .5rem;
  font-size: .72rem;
  border-radius: 10px;
  line-height: 1;
}

.ft-social-ic{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ft-social-ic svg{
  width: 11px;
  height: 11px;
}

.ft-bot-stack{gap:.28rem;padding-top:.8rem;margin-top:.95rem}
.ft-legal{font-size:.68rem;line-height:1.15}
.ft-copy{font-size:.68rem;line-height:1.15}
.page:not(#page-inicio) .sec-lg{padding-top:1.75rem}
.eyebrow{font-size:1rem;margin-bottom:.55rem}
#page-quienes .eyebrow{font-size:1.02rem}
@media(max-width:800px){
.nav-logo-wrap{
  width: 40px;
  height: 40px;
  padding: 0;
}

.nav-logo{
  width: 38px;
  height: 38px;
}

  .nav-ul>li.dd>button.dd-tog{border-radius:0;border-left:none;border-right:none;background:transparent}
  .dd-arr{width:24px;height:24px}
  .hero{padding:2.3rem 0 .7rem}
  #page-inicio .sec-sm{padding-top:.5rem;padding-bottom:1rem}
.ft-social-links{
  flex-wrap: wrap;
  gap: .4rem;
}
  .page:not(#page-inicio) .sec-lg{padding-top:1.45rem}
  .eyebrow{font-size:.92rem}
}
/* ===== Ajustes solicitados - marzo 2026 ===== */

/* Navegación */
.nav-logo-wrap{
  width: 44px;
  height: 44px;
  padding: 1px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo{
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-ul{
  gap: .35rem;
}

.nav-ul > li > a,
.nav-ul > li > button.dd-tog{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .55rem .95rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: .2s ease;
}

.nav-ul > li > a:hover,
.nav-ul > li > button.dd-tog:hover,
.nav-ul > li > a.act{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
  color: #fff;
}

.dd-arr{
  width: 22px;
  height: 22px;
  margin-left: .35rem;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  line-height: 1;
  opacity: 1;
}

/* Inicio */
.hero{
  min-height: auto;
  padding: 2.15rem 0 .45rem;
}

.hero-inner-tight{
  gap: 1.6rem;
  align-items: start;
}

.hero .lead{
  margin-bottom: .2rem;
}

.hero-trust-plain{
  margin-top: .45rem;
  line-height: 1.35;
  max-width: 620px;
}

.hero-card-actions{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card-actions .btn{
  width: 100%;
  justify-content: center;
}

#page-inicio .sec-sm{
  padding-top: .35rem;
  padding-bottom: 1rem;
}

/* Secciones internas */
.page:not(#page-inicio) .sec-lg{
  padding-top: 1.25rem;
}

.eyebrow{
  font-size: 1.08rem;
  margin-bottom: .45rem;
  line-height: 1.2;
}

#page-quienes .eyebrow,
#page-jovenes .eyebrow,
#page-mujeres .eyebrow,
#page-adultos .eyebrow,
#page-necesidades .eyebrow,
#page-escuelas .eyebrow,
#page-empresas .eyebrow,
#page-contacto .eyebrow{
  font-size: 1.1rem;
}

/* Quienes somos */
#page-quienes h2{
  margin-bottom: 1.15rem !important;
}

/* Jóvenes / Mujeres / Adultos / Necesidades */
.aud-grid p,
.aud-pts li{
  line-height: 1.45;
}

.aud-circle{
  border: 3px solid rgba(255,255,255,.85);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.aud-num,
.aud-icon{
  color: #fff !important;
  opacity: 1 !important;
}

.aud-icon{
  width: 86px;
  height: 86px;
}

/* Instituciones */
.inst-sec{
  padding-top: 1.25rem !important;
}

.inst-layout{
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
  gap: 2rem;
  align-items: start;
}

.inst-copy p{
  margin-bottom: 1rem;
  line-height: 1.45;
}

.inst-copy p:last-child{
  margin-bottom: 0;
}

.inst-card{
  max-width: none;
  padding: 1.7rem 1.7rem 1.5rem;
}

.inst-card h3{
  margin-bottom: .8rem;
}

.inst-card > p,
.inst-pts li{
  line-height: 1.35;
}

.inst-pts{
  margin: .8rem 0 0;
  gap: .15rem;
}

.inst-pts li{
  border-bottom: none;
  padding: .2rem 0;
}

/* Contacto */
#page-contacto .sec-lg{
  padding-top: 1.2rem !important;
}

#page-contacto .ctc-head{
  margin-bottom: 1rem !important;
}

#page-contacto .eyebrow{
  text-align: left;
}

/* Footer */
.ft-brand p,
.ft-brand a,
.ft-social-link,
.ft-legal,
.ft-copy{
  line-height: 1.05;
}

.ft-social-links{
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: nowrap;
}

.ft-social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .45rem .65rem;
  font-size: .76rem;
  border-radius: 12px;
}

.ft-social-ic{
  width: 26px;
  height: 26px;
}

.ft-social-ic svg{
  width: 13px;
  height: 13px;
}

.ft-bot-stack{
  gap: .2rem;
  padding-top: .75rem;
  margin-top: .85rem;
}

.ft-legal,
.ft-copy{
  line-height: 1.08;
}

/* Responsive */
@media (max-width: 800px){
  .nav-logo-wrap{
    width: 40px;
    height: 40px;
  }

  .nav-logo{
    width: 36px;
    height: 36px;
  }

  .nav-ul > li > a,
  .nav-ul > li > button.dd-tog{
    border-radius: 0;
    border-left: none;
    border-right: none;
    background: transparent;
    padding: .8rem 0;
    justify-content: space-between;
  }

  .hero{
    padding: 1.9rem 0 .4rem;
  }

  #page-inicio .sec-sm{
    padding-top: .3rem;
    padding-bottom: .9rem;
  }

  .page:not(#page-inicio) .sec-lg{
    padding-top: 1.05rem;
  }

  .eyebrow,
  #page-quienes .eyebrow,
  #page-jovenes .eyebrow,
  #page-mujeres .eyebrow,
  #page-adultos .eyebrow,
  #page-necesidades .eyebrow,
  #page-escuelas .eyebrow,
  #page-empresas .eyebrow,
  #page-contacto .eyebrow{
    font-size: .98rem;
  }

  .inst-layout{
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .ft-social-links{
    flex-wrap: wrap;
  }
}

/* ===== Corrección final de layout, logo y spacing ===== */

/* Rutas/imagen del logo ya corregidas en HTML; aquí solo su visual */
.nav-logo-wrap{
  width: 44px;
  height: 44px;
  padding: 1px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo{
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Reducir espacio superior global entre menú y contenido */
.page .sec-lg{
  padding-top: .95rem !important;
}

#page-contacto .sec-lg,
#page-quienes .sec-lg,
#page-jovenes .sec-lg,
#page-mujeres .sec-lg,
#page-adultos .sec-lg,
#page-necesidades .sec-lg,
#page-escuelas .sec-lg,
#page-empresas .sec-lg,
#page-eventos .sec-lg,
#page-descargas .sec-lg,
#page-experiencias .sec-lg{
  padding-top: .95rem !important;
}

.eyebrow{
  margin-bottom: .45rem !important;
}

/* Contacto */
#page-contacto .ctc-head{
  margin-bottom: .9rem !important;
}

#page-contacto .eyebrow{
  font-size: 1.08rem;
  text-align: left;
}

#page-contacto .ctc-form-top{
  margin-bottom: .6rem !important;
}

#page-contacto .ctc-inline-mail{
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

#page-contacto .ctc-inline-mail span,
#page-contacto .ctc-inline-mail a{
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}

#page-contacto .ctc-inline-mail a{
  color: var(--accent);
  text-decoration: none;
}

/* Esto ayuda a que el formulario no se vea “descompuesto” si antes quedó afectado por el HTML roto */
#page-contacto .ctc-form-card{
  padding: 1.35rem 1.5rem 1.45rem !important;
}

/* Escuelas y Empresas: mismo patrón visual que "Quiénes somos" */
.inst-sec{
  padding-top: .95rem !important;
}

.inst-wrap{
  max-width: 1180px;
  margin: 0 auto;
}

.inst-layout.side-like-quienes{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .9fr);
  gap: 2.4rem;
  align-items: start;
}

.inst-copy h2{
  margin-bottom: 1rem;
}

.inst-copy p{
  line-height: 1.55;
  margin-bottom: 1rem;
  color: var(--text);
}

.inst-copy p:last-child{
  margin-bottom: 0;
}

.inst-card-side{
  max-width: none;
  margin: 0;
  padding: 1.65rem 1.8rem;
}

.inst-card-side h3{
  margin-bottom: .9rem;
}

.inst-pts-clean{
  margin: 0;
  padding-left: 1.2rem;
  display: block;
}

.inst-pts-clean li{
  list-style: disc;
  display: list-item;
  border-bottom: none !important;
  padding: .14rem 0 !important;
  line-height: 1.35 !important;
}

.inst-pts-clean li svg{
  display: none !important;
}

/* Ajuste fino de títulos superiores en secciones */
#page-quienes .eyebrow,
#page-jovenes .eyebrow,
#page-mujeres .eyebrow,
#page-adultos .eyebrow,
#page-necesidades .eyebrow,
#page-escuelas .eyebrow,
#page-empresas .eyebrow,
#page-contacto .eyebrow{
  font-size: 1.05rem !important;
}

@media (max-width: 800px){
  .nav-logo-wrap{
    width: 40px;
    height: 40px;
  }

  .nav-logo{
    width: 36px;
    height: 36px;
  }

  .page .sec-lg{
    padding-top: .8rem !important;
  }

  .inst-layout.side-like-quienes{
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  #page-contacto .ctc-inline-mail span,
  #page-contacto .ctc-inline-mail a{
    font-size: .92rem;
  }
}

/* ===== Ajustes finos de navegación, footer y alineaciones ===== */

/* Menú más compacto al 50% y evita sensación de carga hacia la derecha */
.nav-in{
  gap: 1rem;
}

.nav-brand{
  flex: 0 0 auto;
}

.nav-ul{
  gap: .45rem;
}

.nav-cta{
  margin-left: .35rem;
}

/* Footer: interlineado compacto y mejor contraste */
.ft-brand-clean{
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.ft-brand-clean p,
.ft-brand-clean a{
  margin: 0;
  line-height: 1.02 !important;
}

.ft-bot-stack{
  gap: .35rem;
}

.ft-legal{
  color: rgba(255,255,255,.82) !important;
  line-height: 1.22 !important;
}

.ft-copy{
  color: rgba(255,255,255,.92) !important;
  line-height: 1.15 !important;
}

.ft-social-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.ft-autocta{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
  min-width: 220px;
}

.ft-autocta span{
  color: rgba(255,255,255,.95);
  font-weight: 700;
  line-height: 1.1;
}

.ft-follow{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
}

/* Nosotros: subir el cuadro derecho para alinear con el inicio del texto izquierdo */
.card-aa-def{
  margin-top: .2rem !important;
}

/* Escuelas / Empresas: layout lateral y alineación fina */
.inst-layout.inst-layout-side{
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
  gap: 2.4rem;
  align-items: start;
}

.inst-copy p{
  line-height: 1.5;
  margin-bottom: 1rem;
}

.inst-copy p:last-child{
  margin-bottom: 0;
}

.inst-card-side{
  max-width: none;
  margin: 0;
  padding: 1.55rem 1.7rem;
}

.inst-card-side h3{
  margin-bottom: .8rem;
}

.inst-pts-clean{
  margin: 0;
  padding-left: 1.15rem;
  display: block;
}

.inst-pts-clean li{
  list-style: disc;
  display: list-item;
  border-bottom: none !important;
  padding: .14rem 0 !important;
  line-height: 1.28 !important;
}

.inst-pts-clean li svg{
  display: none !important;
}

/* Alineación específica pedida */
.inst-card-school{
  margin-top: 3.15rem;
}

.inst-card-company{
  margin-top: 3.15rem;
}

/* Espaciado general superior */
.page:not(#page-inicio) .sec-lg{
  padding-top: 1.15rem !important;
}

@media (max-width: 980px){
  .inst-layout.inst-layout-side{
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .inst-card-school,
  .inst-card-company{
    margin-top: 0;
  }

  .ft-social-top{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 800px){
  .page:not(#page-inicio) .sec-lg{
    padding-top: .95rem !important;
  }

  .ft-brand-clean{
    gap: .12rem;
  }

  .ft-brand-clean p,
  .ft-brand-clean a{
    line-height: 1 !important;
  }
}

/* ===== Footer organizado en 3 columnas + franja legal completa ===== */

.site-footer{
  padding-top: 1.6rem !important;
}

.ft-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Columna izquierda */
.ft-brand{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ft-brand h3,
.ft-brand p,
.ft-brand a{
  margin: 0;
}

.ft-brand h3{
  margin-bottom: .45rem;
}

.ft-brand p,
.ft-brand a{
  line-height: 1.02 !important;
}

.ft-brand p + p,
.ft-brand p + a,
.ft-brand a + p{
  margin-top: .18rem;
}

/* Columna central */
.ft-social{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.ft-follow{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}

.ft-follow h4{
  margin: 0;
}

.ft-social-links{
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}

/* Columna derecha */
.ft-autocta{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .65rem;
}

.ft-autocta span{
  margin: 0;
  line-height: 1.05;
}

/* Franja legal inferior a todo el ancho */
.ft-bot-stack{
  display: block;
  width: 100%;
  margin-top: 1.2rem !important;
  padding-top: .9rem !important;
  border-top: 1px solid rgba(255,255,255,.10);
}

.ft-legal,
.ft-copy{
  display: block;
  width: 100%;
  text-align: center;
}

.ft-legal{
  margin: 0 0 .45rem 0;
  color: rgba(255,255,255,.82) !important;
  line-height: 1.2 !important;
}

.ft-copy{
  margin: 0;
  color: rgba(255,255,255,.92) !important;
  line-height: 1.1 !important;
}

/* Evita que el bloque superior se vea muy separado del contenido */
.site-footer .wrap{
  padding-top: 0 !important;
}

/* Responsive */
@media (max-width: 980px){
  .ft-grid{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ft-brand,
  .ft-social,
  .ft-autocta{
    align-items: flex-start;
  }

  .ft-bot-stack{
    margin-top: 1rem !important;
  }
}

/* ===== Footer final funcional sobre HTML actual ===== */

.ft{
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.8rem 0 1rem !important;
  color: rgba(255,255,255,.88);
}

.ft .wrap{
  max-width: var(--mw);
  margin: 0 auto;
}

.ft-g.ft-g-3{
  display: grid !important;
  grid-template-columns: minmax(260px,1fr) minmax(260px,1fr) minmax(220px,.85fr) !important;
  gap: 2.2rem !important;
  align-items: start !important;
  margin-bottom: 0 !important;
}

/* Columna izquierda */
.ft-brand{
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.ft-brand-clean{
  gap: 0 !important;
}

.ft-logo.ft-logo-text{
  display: block !important;
  color: #fff !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  margin: 0 0 .45rem 0 !important;
}

.ft-brand p,
.ft-brand a{
  margin: 0 !important;
  font-size: .82rem !important;
  line-height: 1.02 !important;
  color: rgba(255,255,255,.96) !important;
}

.ft-brand p + p,
.ft-brand p + a,
.ft-brand a + p{
  margin-top: .12rem !important;
}

.ft-brand a{
  text-decoration: none;
  color: #fff !important;
}

/* Columna central */
.ft-social-col{
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.ft-social-col h4{
  margin: 0 0 .65rem 0 !important;
  font-family: var(--fd) !important;
  font-size: .98rem !important;
  line-height: 1 !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ft-social-links{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .6rem !important;
  align-items: center !important;
}

.ft-social-link{
  display: inline-flex !important;
  align-items: center !important;
  gap: .5rem !important;
  padding: .52rem .8rem !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.04) !important;
  border-radius: 14px !important;
  color: #fff !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.ft-social-ic{
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.09) !important;
  color: #fff !important;
  flex-shrink: 0 !important;
}

.ft-social-ic svg{
  width: 14px !important;
  height: 14px !important;
}

/* Columna derecha */
.ft-autocta-col{
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: .7rem !important;
}

.ft-autocta-col span{
  margin: 0 !important;
  color: #fff !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
}

/* Franja legal completa */
.ft-bot.ft-bot-stack{
  display: block !important;
  width: 100% !important;
  margin-top: 1rem !important;
  padding-top: .85rem !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
}

.ft-legal,
.ft-copy{
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ft-legal{
  margin: 0 0 .4rem 0 !important;
  color: rgba(255,255,255,.82) !important;
  font-size: .72rem !important;
  line-height: 1.22 !important;
}

.ft-copy{
  margin: 0 !important;
  color: rgba(255,255,255,.92) !important;
  font-size: .72rem !important;
  line-height: 1.1 !important;
}

@media (max-width: 980px){
  .ft-g.ft-g-3{
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  .ft-autocta-col,
  .ft-social-col,
  .ft-brand{
    align-items: flex-start !important;
  }
}


/* ===== Footer final corregido ===== */

.ft{
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.15rem 0 .65rem !important;
  color: rgba(255,255,255,.9);
}

.ft .wrap{
  max-width: var(--mw);
  margin: 0 auto;
}

/* 3 secciones reales */
.ft-g.ft-g-3{
  display: grid !important;
  grid-template-columns: minmax(260px,1fr) minmax(260px,1fr) minmax(210px,.8fr) !important;
  gap: 1.4rem !important;
  align-items: start !important;
  margin: 0 !important;
}

/* Izquierda */
.ft-brand{
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.ft-brand-clean{
  gap: 0 !important;
}

.ft-logo.ft-logo-text{
  display: block !important;
  color: #fff !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  margin: 0 0 .32rem 0 !important;
}

.ft-brand p,
.ft-brand a{
  margin: 0 !important;
  color: #fff !important;
  font-size: .78rem !important;
  line-height: 1.02 !important;
  text-decoration: none !important;
}

.ft-brand p + p,
.ft-brand p + a,
.ft-brand a + p{
  margin-top: .08rem !important;
}

/* Centro */
.ft-social-col{
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.ft-social-col h4{
  margin: 0 0 .5rem 0 !important;
  color: #fff !important;
  font-family: var(--fd) !important;
  font-size: .95rem !important;
  line-height: 1 !important;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.ft-social-links{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .5rem !important;
  align-items: center !important;
}

.ft-social-link{
  display: inline-flex !important;
  align-items: center !important;
  gap: .45rem !important;
  padding: .45rem .7rem !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.04) !important;
  border-radius: 14px !important;
  color: #fff !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.ft-social-ic{
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.09) !important;
  color: #fff !important;
  flex-shrink: 0 !important;
}

.ft-social-ic svg{
  width: 12px !important;
  height: 12px !important;
}

/* Derecha */
.ft-autocta-col{
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: .55rem !important;
}

.ft-autocta-col span{
  margin: 0 !important;
  color: var(--accent) !important;
  font-family: var(--fi) !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: 2.25rem !important;
  line-height: .9 !important;
  letter-spacing: -.02em !important;
  text-wrap: balance;
}

/* Franja legal completa abajo */
.ft-bot.ft-bot-stack{
  display: block !important;
  width: 100% !important;
  margin-top: .8rem !important;
  padding-top: .55rem !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
}

.ft-legal,
.ft-copy{
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ft-legal{
  margin: 0 0 .25rem 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: .68rem !important;
  line-height: 1.18 !important;
}

.ft-copy{
  margin: 0 !important;
  color: rgba(255,255,255,.84) !important;
  font-size: .68rem !important;
  line-height: 1.08 !important;
}

@media (max-width: 980px){
  .ft-g.ft-g-3{
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .ft-autocta-col span{
    font-size: 1.8rem !important;
  }
}

/* ===== Footer ajuste fino final ===== */

.ft{
  padding: .9rem 0 .5rem !important;
}

.ft-g.ft-g-3{
  display: grid !important;
  grid-template-columns: minmax(260px,1fr) minmax(360px,1.05fr) minmax(220px,.8fr) !important;
  gap: 1rem 1.4rem !important;
  align-items: start !important;
}

/* Columna izquierda */
.ft-logo.ft-logo-text,
.ft-social-col h4,
.ft-autocta-col span{
  font-family: var(--fs) !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  margin: 0 0 .35rem 0 !important;
}

/* Color azul para títulos solicitados */
.ft-logo.ft-logo-text,
.ft-social-col h4{
  color: var(--accent) !important;
}

/* Decidete mismo estilo/base visual que los otros títulos */
.ft-autocta-col span{
  color: var(--accent) !important;
  font-style: normal !important;
  text-transform: none !important;
}

/* Texto izquierdo sin interlineado visible */
.ft-brand-clean{
  gap: 0 !important;
}

.ft-brand p,
.ft-brand a{
  margin: 0 !important;
  font-size: .78rem !important;
  line-height: 1 !important;
}

.ft-brand p + p,
.ft-brand p + a,
.ft-brand a + p{
  margin-top: .04rem !important;
}

/* Columna central: que quepan en una sola línea */
.ft-social-col{
  min-width: 0 !important;
}

.ft-social-links{
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: .45rem !important;
  align-items: center !important;
}

.ft-social-link{
  padding: .42rem .62rem !important;
  gap: .4rem !important;
  font-size: .76rem !important;
  white-space: nowrap !important;
}

.ft-social-ic{
  width: 22px !important;
  height: 22px !important;
}

.ft-social-ic svg{
  width: 11px !important;
  height: 11px !important;
}

/* Columna derecha */
.ft-autocta-col{
  gap: .45rem !important;
  align-items: flex-start !important;
}

/* Menos espacio antes de la franja legal */
.ft-bot.ft-bot-stack{
  margin-top: .55rem !important;
  padding-top: .45rem !important;
}

/* Franja legal compacta */
.ft-legal{
  margin: 0 0 .18rem 0 !important;
  line-height: 1.12 !important;
}

.ft-copy{
  line-height: 1.05 !important;
}

/* Responsive */
@media (max-width: 1100px){
  .ft-g.ft-g-3{
    grid-template-columns: minmax(240px,1fr) minmax(320px,1fr) minmax(190px,.8fr) !important;
    gap: .9rem 1rem !important;
  }

  .ft-social-link{
    padding: .38rem .55rem !important;
    font-size: .72rem !important;
  }
}

@media (max-width: 980px){
  .ft-g.ft-g-3{
    grid-template-columns: 1fr !important;
  }

  .ft-social-links{
    flex-wrap: wrap !important;
  }
}


/* ===== Mostrar "Acceso a la reunión" en móvil debajo del texto ===== */
@media (max-width: 800px){
  .hero-inner{
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    align-items: start !important;
  }

  .hero-copy{
    order: 1;
  }

  .hero-card{
    display: block !important;
    order: 2;
    width: 100%;
    max-width: 100%;
    margin-top: .85rem;
    padding: 1.2rem;
  }

  .hero-card-actions{
    gap: .85rem !important;
  }

  .hero-card .btn{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 800px){
  .hc-rows{
    gap: .7rem;
    margin-bottom: 1rem;
  }

  .hc-label{
    margin-bottom: .9rem;
  }
}

/* ===== Fix móvil hero-card marzo 2026 ===== */
@media (max-width: 800px){
  #page-inicio .hero{
    padding: 1.8rem 0 .8rem !important;
  }

  #page-inicio .hero-inner,
  #page-inicio .hero-inner-tight{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    align-items: start !important;
  }

  #page-inicio .hero-copy{
    order: 1 !important;
  }

  #page-inicio .hero-card{
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: .9rem 0 0 !important;
    padding: 1.15rem !important;
  }

  #page-inicio .hc-rows{
    gap: .7rem !important;
    margin-bottom: 1rem !important;
  }

  #page-inicio .hc-label{
    margin-bottom: .9rem !important;
  }

  #page-inicio .hero-card-actions{
    display: flex !important;
    flex-direction: column !important;
    gap: .8rem !important;
  }

  #page-inicio .hero-card .btn,
  #page-inicio .hero-card-actions .btn{
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ===== Fix hero móvil: mostrar hero-card debajo del texto ===== */
@media (max-width: 800px) {
  #page-inicio .hero {
    min-height: unset !important;
    height: auto !important;
    overflow: visible !important;
    align-items: flex-start !important;
    padding-bottom: 2rem !important;
  }

  #page-inicio .hero > .wrap {
    width: 100% !important;
    padding-top: 0 !important;
  }
}