/* Google Sans (variable, pesos 400–700). Montserrat queda como respaldo automático
   por si el CDN de Google Sans no carga en algún navegador. */
@font-face{
  font-family:'Google Sans Variable';
  font-style:normal;
  font-display:swap;
  font-weight:400 700;
  src:url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
}
:root{
  --font-title:'Google Sans Variable','Montserrat',sans-serif;
  --font-body:'Google Sans Variable','Montserrat',sans-serif;
  --bg:#ffffff;
  --surface:#eef4fb;
  --surface2:#e2edf9;
  --border:rgba(4,58,110,0.14);
  --accent:#0284c7;
  --accent2:#7c3aed;
  --accent3:#059669;
  --gold:#b45309;
  --white:#ffffff;
  --heading:#0a2540;
  --gray:#55647d;
  --light:#16243c;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--font-body);font-weight:400;background:var(--bg);color:var(--light);overflow-x:hidden;}
body.preloading{overflow:hidden;}

/* ── PRELOADER ── */
.preloader{
  position:fixed;inset:0;z-index:9999;
  display:flex;align-items:center;justify-content:center;
  background:var(--bg);
  transition:opacity .6s ease,visibility .6s ease;
}
.preloader.is-hidden{opacity:0;visibility:hidden;pointer-events:none;}
.preloader-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(4,58,110,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(4,58,110,.06) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse at 50% 50%,black 40%,transparent 85%);
}
.preloader-glow{
  position:absolute;top:0;left:0;
  width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(2,132,199,.16) 0%,transparent 70%);
  transform:translate(-300px,-300px);
  transition:transform .25s ease-out;
  pointer-events:none;
}
.preloader-content{
  position:relative;z-index:2;
  display:flex;flex-direction:column;align-items:center;gap:2rem;
  animation:preloaderIn .8s ease both;
}
@keyframes preloaderIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}
.preloader-logo{
  height:56px;width:auto;
  filter:drop-shadow(0 0 18px rgba(2,132,199,.25));
  animation:preloaderPulse 2.2s ease-in-out infinite;
}
@keyframes preloaderPulse{0%,100%{transform:scale(1);}50%{transform:scale(1.06);}}
.preloader-bar-track{
  width:220px;height:4px;border-radius:50px;
  background:var(--border);overflow:hidden;
}
.preloader-bar-fill{
  height:100%;width:0%;border-radius:50px;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  transition:width .25s ease-out;
}
.preloader-status{display:flex;align-items:center;gap:.7rem;font-family:var(--font-title);}
.preloader-pct{color:var(--heading);font-weight:800;font-size:.9rem;min-width:2.6em;}
.preloader-label{color:var(--gray);font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;}
@media(max-width:480px){
  .preloader-logo{height:44px;}
  .preloader-bar-track{width:180px;}
}

/* ── STEP CARD (marco sólido + insignia numerada) ──
   Se usa en toda la web: agregá la clase "gc-frame" a cualquier card existente
   y envolvé su contenido interno en un <div class="gc-inner">. El color rota
   entre 3 tonos (naranja / gris / azul noche) según la posición de la card.
   Para contenido secuencial (ej: Objetivos), sumá una insignia:
   <div class="gc-badge"><span class="gcb-label">Paso</span><span class="gcb-num">01</span></div> */
.gc-frame{
  position:relative;isolation:isolate;
  padding:8px;border-radius:16px;
  background:var(--gc-color,#f97316);
  box-shadow:0 6px 20px rgba(4,58,110,.1);
  transition:transform .3s,box-shadow .3s;
}
.gc-frame::before{
  content:'';position:absolute;inset:0;z-index:-1;
  border-radius:16px;background:#dbe3ee;
  transform:translate(-7px,-9px);
  transition:transform .3s;
}
.gc-frame:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(4,58,110,.18);}
.gc-frame:hover::before{transform:translate(-9px,-12px);}
.gc-frame:nth-child(3n+1){--gc-color:#f97316;}
.gc-frame:nth-child(3n+2){--gc-color:#64748b;}
.gc-frame:nth-child(3n){--gc-color:#0a2540;}
.gc-inner{
  background:#fff;border-radius:10px;height:100%;
  display:flex;flex-direction:column;overflow:hidden;
  position:relative;z-index:1;
}
.gc-badge{
  position:absolute;top:-16px;left:20px;z-index:2;
  width:52px;height:52px;border-radius:50%;
  background:var(--gc-color,#f97316);color:#fff;
  border:3px solid #fff;box-shadow:0 4px 10px rgba(4,58,110,.25);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.gc-badge .gcb-label{font-size:.44rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;opacity:.9;}
.gc-badge .gcb-num{font-family:var(--font-title);font-weight:800;font-size:1.05rem;line-height:1.1;}

/* ── SCROLLBAR ── */
::-webkit-scrollbar{width:6px;}
::-webkit-scrollbar-track{background:#f0f4f8;}
::-webkit-scrollbar-thumb{background:var(--accent);border-radius:3px;}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem 5%;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
}
.nav-logo{
  font-family:var(--font-title);font-weight:700;font-size:1.5rem;font-weight:800;
  color:var(--white);letter-spacing:0.02em;
  display:flex;align-items:center;gap:0.5rem;
}
.nav-logo .dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 12px var(--accent);
  animation:blink 2s infinite;
}
@keyframes blink{0%,100%{opacity:1;}50%{opacity:0.4;}}
.nav-links{display:flex;gap:1.8rem;list-style:none;align-items:center;}
.nav-links a{
  color:var(--gray);text-decoration:none;
  font-size:0.83rem;letter-spacing:0.06em;text-transform:uppercase;font-weight:500;
  transition:color .3s;
}
.nav-links a:hover{color:var(--accent);}
.nav-cta{
  display:inline-block;text-decoration:none;
  padding:.55rem 1.4rem;
  background:transparent;
  border:1px solid var(--accent);
  color:var(--accent);border-radius:6px;
  font-family:var(--font-body);font-weight:400;font-size:.82rem;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;cursor:pointer;
  transition:all .3s;
}
.nav-cta:hover{background:var(--accent);color:#fff;}

/* ── HERO ── */
#hero{
  min-height:100vh;display:flex;align-items:center;
  position:relative;overflow:hidden;
  padding:0 5%;
}
.hero-video{
  position:absolute;inset:0;z-index:0;
  width:100%;height:100%;object-fit:cover;
}
.hero-video-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(135deg,rgba(3,10,28,.86) 0%,rgba(6,22,56,.74) 55%,rgba(2,8,24,.88) 100%);
}
.hero-inner{
  position:relative;z-index:2;
  max-width:760px;margin:0 auto;width:100%;
  padding-top:5rem;
  text-align:center;
}
h1.hero-title{
  font-family:var(--font-title);font-weight:700;
  font-size:clamp(2.4rem,4.5vw,4rem);
  font-weight:800;line-height:1.08;
  color:#fff;
  animation:fadeUp .8s .15s ease both;
}
h1.hero-title .accent{
  background:linear-gradient(135deg,#38bdf8,#c084fc);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero-desc{
  color:rgba(255,255,255,.82);font-size:1.05rem;line-height:1.75;
  margin:1.3rem auto 0;max-width:540px;
  animation:fadeUp .8s .3s ease both;
}
.hero-btns{
  display:flex;gap:1rem;margin-top:2rem;flex-wrap:wrap;justify-content:center;
  animation:fadeUp .8s .45s ease both;
}
.btn-primary{
  padding:.85rem 2rem;
  background:linear-gradient(135deg,var(--accent),#0077b6);
  color:#fff;border:none;border-radius:8px;
  font-family:var(--font-body);font-weight:400;font-size:.9rem;font-weight:700;
  cursor:pointer;transition:all .3s;text-decoration:none;display:inline-block;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(2,132,199,.3);}
.btn-outline{
  padding:.85rem 2rem;background:transparent;
  border:1px solid rgba(255,255,255,.35);color:#fff;
  border-radius:8px;font-family:var(--font-body);font-weight:400;font-size:.9rem;
  cursor:pointer;transition:all .3s;text-decoration:none;display:inline-block;
}
.btn-outline:hover{border-color:#fff;background:rgba(255,255,255,.08);}
.hero-stat-row{
  display:flex;gap:2.5rem;margin-top:2.5rem;justify-content:center;
  border-top:1px solid rgba(255,255,255,.2);padding-top:2rem;
  animation:fadeUp .8s .6s ease both;
}
.h-stat .num{
  font-family:var(--font-title);font-weight:700;font-size:2rem;font-weight:800;
  background:linear-gradient(135deg,#38bdf8,#c084fc);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.h-stat .lbl{font-size:.75rem;color:rgba(255,255,255,.65);text-transform:uppercase;letter-spacing:.08em;margin-top:.1rem;}

/* ── ECOSISTEMA (cards grandes) ── */
#ecosistema{background:var(--bg);}
.eco-grid{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1.75rem;
  margin-top:3rem;
}
.eco-card{flex:1 1 300px;max-width:380px;}
.eco-card .gc-inner{padding:2.4rem;}
.eco-top{margin-bottom:1.6rem;}
.eco-icon{
  width:68px;height:68px;border-radius:18px;
  background:#f1f5f9;color:#475569;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.eco-icon svg{width:32px;height:32px;}
.eco-icon.icon-blue{background:rgba(2,132,199,.1);color:var(--accent);}
.eco-icon.icon-purple{background:rgba(124,58,237,.1);color:var(--accent2);}
.eco-icon.icon-green{background:rgba(5,150,105,.1);color:var(--accent3);}
.eco-icon.icon-gold{background:rgba(180,83,9,.1);color:var(--gold);}
.eco-icon.icon-teal{background:rgba(20,184,166,.1);color:#0d9488;}
.eco-title{
  font-family:var(--font-title);font-weight:700;font-size:1.3rem;font-weight:800;
  color:var(--heading);margin-bottom:.5rem;
}
.eco-desc{color:var(--gray);font-size:.95rem;line-height:1.6;}

/* ── DATOS DEL SECTOR ── */
#datos-sector{background:var(--bg);}
.datos-grid{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1.75rem;
  margin-top:3rem;
}
.dato-card{flex:1 1 300px;max-width:380px;cursor:pointer;text-decoration:none;color:inherit;display:block;}
.dato-card .gc-inner{
  padding:2.2rem;display:flex;flex-direction:column;align-items:flex-start;
}
.dato-icon{
  width:56px;height:56px;border-radius:14px;
  background:rgba(2,132,199,.1);color:var(--accent);
  display:flex;align-items:center;justify-content:center;margin-bottom:1.3rem;flex-shrink:0;
}
.dato-icon svg{width:26px;height:26px;}
.dato-title{
  font-family:var(--font-title);font-weight:700;font-size:1.1rem;font-weight:800;
  color:var(--heading);margin-bottom:.4rem;line-height:1.3;
}
.dato-meta{font-size:.72rem;color:var(--accent);text-transform:uppercase;letter-spacing:.05em;font-weight:600;margin-bottom:.9rem;}
.dato-desc{color:var(--gray);font-size:.88rem;line-height:1.6;margin-bottom:1.3rem;}
.dato-cta{color:var(--accent);font-weight:600;font-size:.85rem;}

/* ── MODAL DE INFORME (PDF) ── */
.pdf-modal-overlay{
  position:fixed;inset:0;z-index:500;
  background:rgba(4,10,26,.75);
  display:flex;align-items:center;justify-content:center;
  padding:2rem;
  opacity:0;visibility:hidden;
  transition:opacity .3s,visibility .3s;
}
.pdf-modal-overlay.active{opacity:1;visibility:visible;}
.pdf-modal{
  background:#fff;border-radius:16px;
  width:100%;max-width:960px;height:88vh;
  display:flex;flex-direction:column;overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
  transform:scale(.97);transition:transform .3s;
}
.pdf-modal-overlay.active .pdf-modal{transform:scale(1);}
.pdf-modal-header{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1rem 1.4rem;border-bottom:1px solid var(--border);flex-shrink:0;
}
.pdf-modal-title{font-family:var(--font-title);font-weight:700;font-size:1rem;color:var(--heading);}
.pdf-modal-actions{display:flex;align-items:center;gap:1rem;flex-shrink:0;}
.pdf-modal-open-btn{font-size:.82rem;color:var(--accent);font-weight:600;text-decoration:none;white-space:nowrap;}
.pdf-modal-open-btn:hover{text-decoration:underline;}
.pdf-modal-frame{flex:1;width:100%;border:none;background:var(--surface2);}
@media(max-width:700px){
  .pdf-modal-overlay{padding:0;}
  .pdf-modal{max-width:100%;height:100vh;border-radius:0;}
}

/* ── SECTION BASE ── */
.section{padding:5.5rem 5%;}
.section-inner{max-width:1200px;margin:0 auto;}
.sec-label{
  display:inline-block;font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent);font-weight:600;margin-bottom:.8rem;
}
.sec-title{
  font-family:var(--font-title);font-weight:700;
  font-size:clamp(1.8rem,3vw,2.6rem);font-weight:800;
  color:var(--heading);line-height:1.15;
}
.sec-title .grad{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.sec-sub{color:var(--gray);font-size:1rem;line-height:1.75;max-width:600px;margin-top:.9rem;}

/* ── OBJECTIVES ── */
#objectives{background:var(--surface);}
.obj-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;
  margin-top:3rem;
}
.obj-card .gc-inner{padding:2.2rem 2rem 2rem;}
.obj-verb{
  font-family:var(--font-title);font-weight:700;font-size:1.3rem;font-weight:800;
  color:var(--heading);margin-bottom:.6rem;
}
.obj-text{color:var(--gray);font-size:.9rem;line-height:1.7;}

/* ── SOCIOS ── */
#socios{background:var(--bg);}
.socios-header{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:1rem;margin-bottom:2.5rem;}
.socios-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;
}
.socio-card{aspect-ratio:1;text-decoration:none;cursor:pointer;}
.socio-card .gc-inner{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:1.4rem;gap:1.2rem;
}
.socio-logo-box{
  width:100%;height:88px;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.socio-logo-box img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;}
.socio-logo-fallback{font-size:.68rem;color:var(--gray);text-align:center;line-height:1.3;}
.socio-name{font-size:.85rem;color:var(--heading);text-align:center;line-height:1.3;font-weight:600;}

/* Card con logo destacado (más ancho y grande dentro de la card) */
.socio-card-lg .gc-inner{padding:.8rem;}
.socio-card-lg .socio-logo-box{height:120px;}
.socio-card-lg .socio-logo-box img{max-width:100%;width:100%;}

/* ── LICITACIONES: FORMULARIO DE INTERESADOS ── */
#mineria{
  background:linear-gradient(135deg,rgba(180,83,9,.05) 0%,rgba(2,132,199,.05) 100%);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.mineria-header{text-align:center;max-width:640px;margin:0 auto;}
.mineria-header .sec-sub{margin-left:auto;margin-right:auto;}
.mineria-form-wrap{max-width:560px;margin:3rem auto 0;}
.mineria-form-wrap .bolsa-form-card{padding:2.2rem;}
.mineria-form-note{color:var(--gray);font-size:.78rem;line-height:1.5;margin-top:1rem;text-align:center;}
.mineria-honeypot{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;pointer-events:none;}
.mineria-form-success{
  display:flex;flex-direction:column;align-items:center;gap:.8rem;
  text-align:center;padding:2rem 1rem;
}
.mineria-form-success span{font-size:2.4rem;}
.mineria-form-success p{color:var(--heading);font-size:.98rem;line-height:1.6;max-width:340px;}
.form-submit:disabled{opacity:.6;cursor:not-allowed;}
.form-submit-error{color:#dc2626;font-size:.8rem;line-height:1.5;margin-top:.8rem;text-align:center;}

/* ── NOTICIAS ── */
#noticias{background:var(--surface);}
.noticias-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;
  margin-top:2.5rem;
  align-items:start;
}
.noticia-card{
  cursor:pointer;
  display:block;text-decoration:none;color:inherit;
  height:100%;
}
.noticia-card .gc-inner{height:100%;display:flex;flex-direction:column;}
.noticia-img{
  width:100%;height:160px;background:var(--surface2);
  display:flex;align-items:center;justify-content:center;
  color:var(--gray);font-size:.8rem;position:relative;overflow:hidden;flex-shrink:0;
}
.noticia-img img{width:100%;height:100%;object-fit:cover;}
.noticia-img .img-placeholder{
  display:flex;flex-direction:column;align-items:center;gap:.4rem;
  color:rgba(4,58,110,.3);
}
.noticia-img .img-placeholder span{font-size:1.5rem;}
.noticia-img .img-placeholder p{font-size:.72rem;text-align:center;}
.noticia-tag{
  position:absolute;top:.7rem;left:.7rem;
  padding:.25rem .7rem;border-radius:50px;
  font-size:.68rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
}
.tag-tech{background:rgba(2,132,199,.12);color:var(--accent);}
.tag-evento{background:rgba(124,58,237,.12);color:#6d28d9;}
.tag-premio{background:rgba(180,83,9,.12);color:var(--gold);}
.tag-sector{background:rgba(5,150,105,.12);color:#047857;}
.noticia-body{padding:1.2rem;flex:1;}
.noticia-date{font-size:.73rem;color:var(--gray);margin-bottom:.5rem;}
.noticia-title{
  font-family:var(--font-title);font-weight:700;font-size:.95rem;
  color:var(--heading);line-height:1.3;margin-bottom:.6rem;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.noticia-desc{
  color:var(--gray);font-size:.83rem;line-height:1.6;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.noticia-footer{
  padding:.8rem 1.2rem;border-top:1px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;
}
.noticia-author{font-size:.75rem;color:var(--gray);}
.read-more{font-size:.75rem;color:var(--accent);font-weight:600;cursor:pointer;}

/* ── MODAL DE NOTICIA ── */
.noticia-modal-overlay{
  position:fixed;inset:0;z-index:500;
  background:rgba(4,10,26,.72);
  display:flex;align-items:center;justify-content:center;
  padding:2rem;
  opacity:0;visibility:hidden;
  transition:opacity .3s,visibility .3s;
}
.noticia-modal-overlay.active{opacity:1;visibility:visible;}
.noticia-modal{
  background:#fff;border-radius:20px;
  max-width:640px;width:100%;max-height:85vh;overflow-y:auto;
  position:relative;
  transform:translateY(20px) scale(.97);
  transition:transform .3s;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
}
.noticia-modal-overlay.active .noticia-modal{transform:translateY(0) scale(1);}
.noticia-modal-close{
  position:absolute;top:1rem;right:1rem;z-index:2;
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.9);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:1.05rem;color:var(--heading);
  transition:all .2s;
}
.noticia-modal-close:hover{background:#fff;color:var(--accent);border-color:var(--accent);}
.noticia-modal-img{
  width:100%;height:280px;background:var(--surface2);
  position:relative;overflow:hidden;border-radius:20px 20px 0 0;
  display:flex;align-items:center;justify-content:center;
}
.noticia-modal-img img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.noticia-modal-body{padding:2rem;}
.noticia-modal-meta{display:flex;align-items:center;gap:1rem;margin-bottom:1rem;flex-wrap:wrap;}
.noticia-modal-meta .noticia-tag{position:static;}
.noticia-modal-date{color:var(--gray);font-size:.82rem;}
.noticia-modal-title{
  font-family:var(--font-title);font-weight:700;font-size:1.4rem;font-weight:800;
  color:var(--heading);line-height:1.3;margin-bottom:1rem;
}
.noticia-modal-desc{color:var(--gray);font-size:.95rem;line-height:1.75;margin-bottom:1.5rem;}
.noticia-modal-footer{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
  padding-top:1.2rem;border-top:1px solid var(--border);
}
.noticia-modal-author{color:var(--gray);font-size:.85rem;}
.noticia-modal-link{color:var(--accent);font-weight:600;font-size:.88rem;text-decoration:none;}
.noticia-modal-link:hover{text-decoration:underline;}
body.modal-open{overflow:hidden;}
@media(max-width:600px){
  .noticia-modal-overlay{padding:0;align-items:flex-end;}
  .noticia-modal{max-width:100%;max-height:92vh;border-radius:20px 20px 0 0;}
  .noticia-modal-img{border-radius:20px 20px 0 0;height:200px;}
}

/* ── COMISIÓN DIRECTIVA ── */
#comision{background:var(--bg);}
.comision-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;
  margin-top:2.5rem;
}
.cd-card{text-align:center;}
.cd-avatar{
  width:112px;height:112px;border-radius:50%;
  margin:1.8rem auto 1rem;
  background:var(--surface2);
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
  box-shadow:0 6px 18px rgba(4,58,110,.18);
}
.cd-avatar img,.cd-avatar-photo{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.cd-avatar-placeholder{
  width:100%;height:100%;border-radius:50%;
  background:rgba(2,132,199,.08);
  display:flex;align-items:center;justify-content:center;
  font-size:2rem;color:rgba(2,132,199,.5);
}
.cd-body{padding:0 1.4rem 1.6rem;}
.cd-role{
  font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--accent);font-weight:600;margin-bottom:.4rem;
}
.cd-name{
  font-family:var(--font-title);font-weight:700;font-size:1rem;font-weight:700;
  color:var(--heading);margin-bottom:.3rem;
}
.cd-empresa{font-size:.8rem;color:var(--gray);margin-bottom:1rem;}
.cd-links{display:flex;justify-content:center;gap:.7rem;}
.cd-link{
  width:34px;height:34px;border-radius:8px;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;color:var(--gray);font-size:.85rem;
  transition:all .3s;
}
.cd-link:hover{border-color:var(--accent);color:var(--accent);background:rgba(2,132,199,.08);}

/* ── BENEFICIOS BANNER ── */
#beneficios{
  position:relative;overflow:hidden;
  min-height:460px;display:flex;align-items:center;
  background:linear-gradient(135deg,#03123a 0%,#0a2044 55%,#061a44 100%);
}
.beneficios-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 12% 15%,rgba(2,132,199,.28) 0%,transparent 55%),
    radial-gradient(ellipse at 88% 85%,rgba(124,58,237,.24) 0%,transparent 50%);
}
.beneficios-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse at 50% 50%,black 40%,transparent 85%);
}
.beneficios-inner{
  position:relative;z-index:2;
  max-width:1200px;margin:0 auto;width:100%;padding:5rem 5%;
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;
}
.beneficios-text .sec-label{font-size:.75rem;}
.beneficios-title{
  font-family:var(--font-title);font-weight:700;font-size:clamp(1.8rem,3.5vw,3rem);
  font-weight:800;color:var(--white);line-height:1.15;margin-bottom:1.2rem;
}
.beneficios-title span{
  background:linear-gradient(135deg,#38bdf8,#c084fc);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.beneficios-desc{color:rgba(255,255,255,.75);font-size:1rem;line-height:1.75;margin-bottom:2rem;}
.beneficios-features{display:grid;grid-template-columns:1fr 1fr;gap:.9rem;margin-bottom:2.2rem;}
.ben-feat{
  display:flex;flex-direction:column;gap:.7rem;
  padding:1.1rem;border-radius:12px;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  transition:all .3s;
}
.ben-feat:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.2);}
.ben-feat-icon{
  width:38px;height:38px;border-radius:10px;flex-shrink:0;
  background:rgba(255,255,255,.1);color:#7dd3fc;
  display:flex;align-items:center;justify-content:center;
}
.ben-feat-icon svg{width:19px;height:19px;}
.ben-feat-text{color:#e6eefc;font-size:.84rem;line-height:1.5;}
.beneficios-visual{display:flex;justify-content:center;}
.ben-card-stack{position:relative;width:380px;}
.ben-main-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;overflow:hidden;
  backdrop-filter:blur(16px);
  box-shadow:0 20px 60px rgba(0,0,0,.3);
}
.ben-window-header{
  display:flex;align-items:center;gap:.8rem;
  padding:.9rem 1.2rem;
  border-bottom:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
}
.ben-window-dots{display:flex;gap:.4rem;}
.ben-window-dot{width:9px;height:9px;border-radius:50%;}
.ben-window-url{font-size:.72rem;color:rgba(255,255,255,.5);flex:1;text-align:center;}
.ben-card-body{padding:1.6rem;}
.ben-card-title{
  font-family:var(--font-title);font-weight:700;font-size:1.2rem;font-weight:800;color:var(--white);margin-bottom:.5rem;
}
.ben-card-desc{color:rgba(255,255,255,.65);font-size:.85rem;line-height:1.6;margin-bottom:1.4rem;}
.ben-rows{display:flex;flex-direction:column;gap:.6rem;}
.ben-row{
  display:flex;align-items:center;gap:.8rem;
  padding:.65rem .8rem;border-radius:10px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
}
.ben-row-icon{
  width:30px;height:30px;border-radius:8px;flex-shrink:0;
  background:rgba(255,255,255,.08);color:#7dd3fc;
  display:flex;align-items:center;justify-content:center;
}
.ben-row-icon svg{width:16px;height:16px;}
.ben-row-label{color:#e6eefc;font-size:.85rem;font-weight:600;}
.ben-btn{
  display:inline-block;margin-top:1.4rem;width:100%;text-align:center;
  padding:.9rem;background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;border-radius:10px;font-weight:700;font-size:.95rem;
  text-decoration:none;transition:all .3s;
}
.ben-btn:hover{opacity:.85;transform:translateY(-2px);box-shadow:0 10px 30px rgba(2,132,199,.3);}

/* ── COWORK CASETIC ── */
#cowork{background:var(--surface);}
.cowork-layout{
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;
}
.cowork-gallery{display:flex;flex-direction:column;gap:1rem;}
.cowork-photo{
  width:100%;height:230px;object-fit:cover;
  border-radius:16px;border:1px solid var(--border);
  box-shadow:0 12px 30px rgba(4,58,110,.12);
}
.cowork-features{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem;margin-top:1.8rem;}
.cowork-feat{display:flex;align-items:center;gap:.8rem;}
.cowork-feat-icon{
  width:38px;height:38px;border-radius:10px;flex-shrink:0;
  background:rgba(2,132,199,.1);color:var(--accent);
  display:flex;align-items:center;justify-content:center;
}
.cowork-feat-icon svg{width:19px;height:19px;}
.cowork-feat span{font-size:.88rem;color:var(--gray);font-weight:500;}

/* ── COMUNICACIÓN ── */
#comunicacion{background:var(--surface);}
.com-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  margin-top:2.5rem;
}
.com-card{text-align:center;}
.com-card .gc-inner{padding:2rem;align-items:center;}
.com-avatar{
  width:72px;height:72px;border-radius:50%;margin:0 auto 1rem;
  background:rgba(2,132,199,.08);border:2px solid rgba(2,132,199,.2);
  display:flex;align-items:center;justify-content:center;font-size:1.8rem;
  position:relative;overflow:hidden;
}
.com-avatar img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.com-role{
  font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--accent);font-weight:600;margin-bottom:.4rem;
}
.com-name{
  font-family:var(--font-title);font-weight:700;font-size:1.05rem;font-weight:700;
  color:var(--heading);margin-bottom:.3rem;
}
.com-email-link{
  color:var(--gray);font-size:.85rem;text-decoration:none;
  display:block;margin-top:.5rem;transition:color .3s;
}
.com-email-link:hover{color:var(--accent);}
.com-btn{
  display:inline-block;margin-top:1rem;
  padding:.6rem 1.3rem;
  background:rgba(2,132,199,.08);
  border:1px solid rgba(2,132,199,.2);
  border-radius:8px;color:var(--accent);
  font-size:.8rem;font-weight:600;cursor:pointer;
  text-decoration:none;transition:all .3s;
}
.com-btn:hover{background:rgba(2,132,199,.12);}

/* ── BOLSA DE TRABAJO ── */
#bolsa{background:var(--bg);}
.bolsa-layout{
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;
  margin-top:2.5rem;
}
.bolsa-info{}
.bolsa-tags{display:flex;flex-wrap:wrap;gap:.6rem;margin:1.5rem 0;}
.skill-tag{
  padding:.35rem .9rem;border-radius:50px;font-size:.75rem;font-weight:500;
  background:rgba(124,58,237,.08);border:1px solid rgba(124,58,237,.18);color:#6d28d9;
}
.skill-tag.green{background:rgba(5,150,105,.08);border-color:rgba(5,150,105,.18);color:#047857;}
.skill-tag.blue{background:rgba(2,132,199,.08);border-color:rgba(2,132,199,.18);color:var(--accent);}
.skill-tag.gold{background:rgba(180,83,9,.08);border-color:rgba(180,83,9,.18);color:var(--gold);}
.bolsa-form-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;padding:2rem;
}
.bolsa-form-title{
  font-family:var(--font-title);font-weight:700;font-size:1.2rem;font-weight:700;
  color:var(--heading);margin-bottom:1.5rem;
  display:flex;align-items:center;gap:.6rem;
}
.form-group{margin-bottom:1.1rem;}
.form-label{display:block;font-size:.78rem;color:var(--gray);letter-spacing:.06em;text-transform:uppercase;margin-bottom:.5rem;font-weight:500;}
.form-input,.form-select,.form-textarea{
  width:100%;padding:.8rem 1rem;
  background:#fff;border:1px solid var(--border);
  border-radius:8px;color:var(--heading);
  font-family:var(--font-body);font-weight:400;font-size:.9rem;
  outline:none;transition:border .3s;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:var(--accent);}
.form-input::placeholder,.form-textarea::placeholder{color:rgba(85,100,125,.45);}
.form-select option{background:var(--surface);}
.form-textarea{resize:vertical;min-height:90px;}
.file-drop{
  border:2px dashed rgba(2,132,199,.25);
  border-radius:10px;padding:1.5rem;text-align:center;
  cursor:pointer;transition:all .3s;position:relative;
}
.file-drop:hover{border-color:var(--accent);background:rgba(2,132,199,.04);}
.file-drop input[type=file]{
  position:absolute;inset:0;opacity:0;cursor:pointer;width:100%;height:100%;
}
.file-drop-icon{font-size:1.8rem;margin-bottom:.4rem;}
.file-drop-text{font-size:.82rem;color:var(--gray);}
.file-drop-text span{color:var(--accent);font-weight:600;}
.form-submit{
  width:100%;padding:.9rem;
  background:linear-gradient(135deg,var(--accent2),var(--accent));
  color:#fff;border:none;border-radius:10px;
  font-family:var(--font-body);font-weight:400;font-size:.95rem;font-weight:700;
  cursor:pointer;transition:all .3s;margin-top:.5rem;
}
.form-submit:hover{opacity:.85;transform:translateY(-2px);box-shadow:0 10px 30px rgba(124,58,237,.3);}

/* ── FOOTER ── */
footer{
  background:#0a2044;
  border-top:1px solid rgba(255,255,255,.08);
  padding:4rem 5% 2rem;
}
.footer-inner{max-width:1200px;margin:0 auto;}
.footer-top{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;
  padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-f{
  font-family:var(--font-title);font-weight:700;font-size:1.4rem;font-weight:800;color:var(--white);
  display:flex;align-items:center;gap:.5rem;margin-bottom:1rem;
}
.footer-brand .logo-f .dot{width:8px;height:8px;border-radius:50%;background:var(--accent);box-shadow:0 0 8px var(--accent);}
.footer-brand p{color:rgba(255,255,255,.65);font-size:.86rem;line-height:1.7;max-width:280px;}
.footer-col h4{
  color:var(--white);font-size:.78rem;text-transform:uppercase;
  letter-spacing:.1em;margin-bottom:1.2rem;
}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:.65rem;}
.footer-col ul li a{color:rgba(255,255,255,.65);text-decoration:none;font-size:.86rem;transition:color .3s;}
.footer-col ul li a:hover{color:var(--accent);}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;padding-top:1.5rem;
}
.footer-bottom p,.footer-bottom a{color:rgba(255,255,255,.3);font-size:.78rem;text-decoration:none;}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);}}
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease;}
.reveal.visible{opacity:1;transform:none;}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .socios-grid{grid-template-columns:repeat(3,1fr);}
  .noticias-grid{grid-template-columns:repeat(2,1fr);}
  .comision-grid{grid-template-columns:repeat(2,1fr);}
  .cowork-layout{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem;}
}
@media(max-width:768px){
  nav .nav-links{display:none;}
  .obj-grid{grid-template-columns:1fr;}
  .socios-grid{grid-template-columns:repeat(2,1fr);}
  .noticias-grid{grid-template-columns:1fr;}
  .comision-grid{grid-template-columns:1fr 1fr;}
  .com-grid{grid-template-columns:1fr;}
  .bolsa-layout{grid-template-columns:1fr;}
  .beneficios-inner{grid-template-columns:1fr;}
  .beneficios-visual{display:none;}
  .cowork-features{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr;}
}
@media(max-width:480px){
  .socios-grid{grid-template-columns:repeat(2,1fr);}
  .comision-grid{grid-template-columns:1fr;}
  .hero-stat-row{flex-wrap:wrap;gap:1.5rem;}
  .beneficios-features{grid-template-columns:1fr;}
}

/* ── WHATSAPP FLOTANTE ── */
.wa-float{
  position:fixed;right:1.6rem;bottom:1.6rem;z-index:300;
  width:58px;height:58px;border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.35),0 0 0 rgba(37,211,102,.5);
  transition:transform .25s ease,box-shadow .25s ease;
  animation:waPulse 2.4s infinite;
}
.wa-float:hover{transform:scale(1.08);}
.wa-float svg{width:30px;height:30px;}
@keyframes waPulse{
  0%{box-shadow:0 8px 24px rgba(0,0,0,.35),0 0 0 0 rgba(37,211,102,.55);}
  70%{box-shadow:0 8px 24px rgba(0,0,0,.35),0 0 0 14px rgba(37,211,102,0);}
  100%{box-shadow:0 8px 24px rgba(0,0,0,.35),0 0 0 0 rgba(37,211,102,0);}
}
@media(max-width:480px){
  .wa-float{right:1.1rem;bottom:1.1rem;width:52px;height:52px;}
  .wa-float svg{width:27px;height:27px;}
}

/* ── VIDEO DESTACADO ── */
.video-section{
  position:relative;overflow:hidden;
  min-height:520px;display:flex;align-items:center;justify-content:center;
  padding:6rem 5%;
}
.video-bg{
  position:absolute;inset:0;z-index:0;
  width:100%;height:100%;object-fit:cover;
}
.video-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(3,10,28,.55) 0%,rgba(3,10,28,.78) 100%);
}
.video-content{position:relative;z-index:2;max-width:700px;text-align:center;}
.video-title{
  font-family:var(--font-title);font-weight:700;font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:800;color:#fff;line-height:1.2;margin:.8rem 0 1rem;
}
.video-title .grad-light{
  background:linear-gradient(135deg,#38bdf8,#c084fc);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.video-desc{color:rgba(255,255,255,.82);font-size:1.02rem;line-height:1.7;}
.video-mute-btn{
  position:absolute;bottom:1.5rem;right:1.5rem;z-index:3;
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.3);
  backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;
  color:#fff;cursor:pointer;transition:all .3s;
}
.video-mute-btn:hover{background:rgba(255,255,255,.22);}
.video-mute-btn svg{width:20px;height:20px;}
.video-mute-btn .icon-unmuted{display:none;}
.video-mute-btn.is-unmuted .icon-muted{display:none;}
.video-mute-btn.is-unmuted .icon-unmuted{display:block;}
@media(max-width:480px){
  .video-section{min-height:420px;padding:4.5rem 5%;}
  .video-mute-btn{bottom:1.1rem;right:1.1rem;width:40px;height:40px;}
}
