/* ==========================================================================
   HireBit — Landing page
   ========================================================================== */

:root{
  --navy: #0B1E3D;
  --navy-soft: #12274A;
  --navy-2: #1B3763;
  --blue: #2E9BF0;
  --blue-light: #6EC6FF;
  --bg-light: #EEF3FA;
  --white: #FFFFFF;
  --text-dark: #0B1E3D;
  --text-muted: #55647F;
  --text-on-dark-muted: #A9BEDD;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px -20px rgba(11,30,61,0.25);
  --font: 'Poppins', sans-serif;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-snap-type: y mandatory;
}

body{
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height:1.65;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }

a{ text-decoration:none; color:inherit; }

ul{ list-style:none; }

h1,h2,h3{ font-weight:800; line-height:1.15; letter-spacing:-0.01em; }
h2{ font-size:clamp(1.5rem, 2.6vw, 2.2rem); margin-bottom:.9rem; }
h3{ font-size:1.15rem; margin-bottom:.5rem; font-weight:700; }

.on-dark{ color:var(--white); }
.on-dark-sub{ color:var(--text-on-dark-muted); }

/* ---------- utility ---------- */
.tag{
  display:inline-block;
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--blue);
  margin-bottom:.9rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.6rem;
  border-radius:100px;
  font-weight:600;
  font-size:.98rem;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  border:2px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color:var(--white);
  box-shadow: 0 14px 30px -10px rgba(46,155,240,0.55);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 20px 36px -8px rgba(46,155,240,0.6); }
.btn-ghost{ border-color:rgba(11,30,61,0.18); color:var(--text-dark); }
.btn-ghost:hover{ border-color:var(--blue); color:var(--blue); transform:translateY(-3px); }
.btn.full{ width:100%; }

/* ---------- progress bar ---------- */
.progress-bar{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--blue),var(--blue-light));
  z-index:999;
}

/* ---------- nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:500;
  padding:16px 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.scrolled{
  background:rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow:0 8px 30px -18px rgba(11,30,61,0.35);
  padding:10px 0;
}
.nav-inner{
  max-width:1180px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo{ display:flex; align-items:center; gap:8px; font-weight:700; font-size:1.65rem; color:var(--white); transition:color .3s; flex-shrink:0; }
.nav.scrolled .nav-logo{ color:var(--navy); }
.nav-logo img{ height:50px; width:auto; }
.nav-logo b{ color:var(--blue); }

.nav-links{ display:flex; align-items:center; gap:1.35rem; }
.nav-links a{
  font-size:.91rem; font-weight:500; color:rgba(255,255,255,0.85);
  position:relative; padding:6px 0; transition:color .3s;
  white-space:nowrap;
}
.nav.scrolled .nav-links a{ color:var(--text-muted); }
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--blue); transition:width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a:hover, .nav-links a.active{ color:var(--blue); }
.nav-links a.nav-cta{
  background:var(--blue); color:var(--white) !important; padding:.62rem 1.25rem;
  border-radius:100px; font-weight:600;
}
.nav-links a.nav-cta::after{ display:none; }
.nav-links a.nav-cta:hover{ background:var(--navy); }
.nav-links a.nav-cta-ghost{
  background:var(--white); color:var(--navy) !important;
  border:1.5px solid rgba(11,30,61,0.12);
}
.nav.scrolled .nav-links a.nav-cta-ghost{ border-color:rgba(11,30,61,0.18); }
.nav-links a.nav-cta-ghost:hover{ background:var(--bg-light); }

.nav-burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-burger span{ width:24px; height:2px; background:var(--white); transition:.3s; }
.nav.scrolled .nav-burger span{ background:var(--navy); }

/* ---------- hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:2.4rem;
  padding:88px 24px 32px;
  background: radial-gradient(circle at 15% 20%, #123262 0%, var(--navy) 55%), var(--navy);
  overflow:hidden;
  isolation:isolate;
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
.hero-blob{
  position:absolute; border-radius:50%; filter:blur(60px); opacity:.55; z-index:-1;
}
.blob-1{ width:420px; height:420px; background:radial-gradient(circle, var(--blue) 0%, transparent 70%); top:-120px; right:-100px; }
.blob-2{ width:340px; height:340px; background:radial-gradient(circle, var(--blue-light) 0%, transparent 70%); bottom:-140px; left:20%; }

.hero-inner{
  max-width:1180px; margin:0 auto; width:100%; position:relative; z-index:2;
  display:flex; align-items:center; gap:3.5rem;
}
.hero-content{ flex:1 1 480px; max-width:600px; min-width:0; }
.eyebrow{ color:var(--blue-light); font-weight:600; letter-spacing:.08em; text-transform:uppercase; font-size:.85rem; margin-bottom:.9rem; }
.hero-title{ color:var(--white); font-size:clamp(2.3rem, 5vw, 3.6rem); }
.hero-title .reveal-line{ display:block; overflow:hidden; }
.hero-title .accent{ color:var(--blue-light); }
.hero-sub{ color:var(--text-on-dark-muted); font-size:1.1rem; margin:1.1rem 0 1.6rem; max-width:520px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:1rem; }
.hero-cta .btn-ghost{ border-color:rgba(255,255,255,0.3); color:var(--white); }
.hero-cta .btn-ghost:hover{ border-color:var(--blue-light); color:var(--blue-light); }

/* ---------- composición de tarjetas UI (hero, datos de ejemplo) ---------- */
.hero-visual{
  flex:1 1 380px; max-width:460px; height:340px; align-self:center;
  position:relative;
}
.mock-card{
  position:absolute; background:var(--white); border-radius:16px;
  box-shadow:0 24px 48px -20px rgba(0,0,0,0.35); padding:1.1rem 1.2rem;
  opacity:0; animation:mockFadeIn .7s ease forwards;
}
.mock-card-back{
  top:6%; left:0; width:220px; transform:rotate(-6deg); animation-delay:.15s;
}
.mock-card-front{
  top:32%; left:34%; width:230px; transform:rotate(3deg); animation-delay:.4s;
}
@keyframes mockFadeIn{ from{ opacity:0; } to{ opacity:1; } }
.mock-row{ display:flex; align-items:center; gap:.6rem; margin-bottom:.8rem; }
.mock-icon-chip{
  width:34px; height:34px; border-radius:10px; background:var(--bg-light);
  color:var(--blue); font-size:.8rem; font-weight:700; font-family:monospace;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.mock-avatar{
  width:34px; height:34px; border-radius:50%; background:var(--blue);
  color:var(--white); font-size:.78rem; font-weight:700;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.mock-title{ font-size:.85rem; font-weight:700; color:var(--text-dark); }
.mock-sub{ font-size:.72rem; color:var(--text-muted); margin-top:.1rem; }
.mock-pills{ display:flex; gap:.4rem; margin-bottom:.7rem; }
.mock-pill{
  font-size:.65rem; font-weight:600; color:var(--blue); background:var(--bg-light);
  padding:.25rem .55rem; border-radius:100px;
}
.mock-footnote{ font-size:.68rem; color:var(--text-muted); }
.mock-skeleton{ display:flex; flex-direction:column; gap:.4rem; margin-bottom:.9rem; }
.mock-skeleton span{ display:block; height:6px; border-radius:4px; background:var(--bg-light); }
.mock-skeleton span.short{ width:55%; }
.mock-chart{ display:flex; align-items:flex-end; gap:.4rem; height:44px; }
.mock-chart span{ flex:1; background:var(--blue); border-radius:4px 4px 0 0; opacity:.35; }
.mock-chart span:nth-child(4){ opacity:1; }

.mock-badge{
  position:absolute; bottom:-32%; right:2%; width:190px;
  background:var(--white); border-radius:16px; box-shadow:0 20px 40px -18px rgba(0,0,0,0.3);
  padding:.9rem 1rem; display:flex; align-items:center; gap:.7rem; transform:rotate(-2deg);
  opacity:0; animation:mockFadeIn .7s ease forwards; animation-delay:.65s;
}
.mock-ring{
  width:38px; height:38px; border-radius:50%; flex-shrink:0;
  background:conic-gradient(var(--blue) 0% 92%, var(--bg-light) 92% 100%);
}
.mock-badge-num{ font-size:1rem; font-weight:800; color:var(--text-dark); }
.mock-badge-label{ font-size:.66rem; color:var(--text-muted); line-height:1.3; max-width:100px; }

/* ---------- barra de métricas (estilo AngelList) ---------- */
.hero-stats-bar{
  max-width:1180px; margin:0 auto; width:100%; position:relative; z-index:2;
  display:flex; flex-direction:column; gap:1.6rem;
}
.hero-stats-divider{
  height:1px; width:100%; max-width:600px;
  background:rgba(255,255,255,0.14);
}
.hero-stats-row{ display:flex; gap:0; }
.hero-stats-bar .stat{
  flex:1; text-align:left; padding:0 2rem 0 0; max-width:280px;
}
.stat-number{ font-size:1.9rem; font-weight:800; color:var(--blue-light); }
.stat-suffix{ font-size:1rem; font-weight:700; color:var(--blue-light); margin-left:2px; }
.stat p{ font-size:.8rem; color:var(--text-on-dark-muted); margin-top:.3rem; max-width:220px; }

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border:2px solid rgba(255,255,255,0.5); border-radius:20px;
  display:flex; justify-content:center; padding-top:8px; z-index:2;
}
.scroll-cue span{ width:4px; height:8px; border-radius:3px; background:var(--blue-light); animation:scrollcue 1.6s infinite; }
@keyframes scrollcue{ 0%{ opacity:1; transform:translateY(0); } 70%{ opacity:0; transform:translateY(14px); } 100%{ opacity:0; } }

/* ---------- sections ---------- */
.section{
  min-height:100vh;
  padding:100px 24px;
  position:relative;
  display:flex;
  align-items:center;
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
.section.light{ background:var(--bg-light); }
.section.dark{ background:var(--navy); }
.section-inner{ max-width:1180px; margin:0 auto; width:100%; }

.two-col{ display:grid; grid-template-columns:1.1fr .9fr; gap:3rem; align-items:center; }
.two-col.reverse{ grid-template-columns:.9fr 1.1fr; }
.two-col.reverse .col-media{ order:-1; }

.col-text h2{ max-width:520px; }
.col-text p{ color:var(--text-muted); max-width:520px; margin-bottom:.8rem; font-size:.95rem; }

/* ---------- highlights (¿Quiénes somos?) ---------- */
.quienes-highlights{ display:flex; flex-direction:column; gap:1rem; margin-top:1.2rem; }
.highlight-item{ display:flex; align-items:flex-start; gap:.9rem; }
.highlight-icon{
  width:38px; height:38px; border-radius:10px; background:var(--bg-light);
  color:var(--blue); display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.highlight-icon svg{ width:19px; height:19px; }
.highlight-title{ font-size:.92rem; font-weight:700; color:var(--text-dark); margin-bottom:.2rem; }
.highlight-text{ font-size:.85rem; color:var(--text-muted); margin:0; }

/* ---------- diagrama "¿Quiénes somos?" ---------- */
.col-media{ display:flex; flex-direction:column; align-items:center; gap:2.6rem; }
.quienes-mascot{ width:230px; transform:rotate(-3deg); }
.quienes-mascot img{ width:100%; display:block; }
.flow-diagram{
  display:flex; flex-direction:column; align-items:center;
  width:100%; max-width:300px; margin:0 auto;
}
.flow-node{
  width:100%; background:var(--white); border:1px solid rgba(11,30,61,0.08);
  border-radius:14px; padding:.9rem 1.1rem; display:flex; align-items:center; gap:.8rem;
  box-shadow:0 14px 30px -18px rgba(11,30,61,0.2);
}
.flow-node p{ font-size:.82rem; font-weight:600; color:var(--text-dark); margin:0; }
.flow-icon{
  width:36px; height:36px; border-radius:10px; background:var(--bg-light);
  color:var(--blue); display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.flow-icon svg{ width:18px; height:18px; }
.flow-node-main{ background:var(--navy); border-color:var(--navy); }
.flow-node-main p{ color:var(--white); font-weight:700; }
.flow-icon-main{
  background:var(--blue); color:var(--white); font-weight:800; font-size:1rem;
}
.flow-connector{ width:2px; height:28px; background:rgba(11,30,61,0.15); }

/* ---------- contraste "¿Por qué elegirnos?" (antes / después) ---------- */
.porque-mascot{ width:150px; }
.porque-mascot img{ width:100%; display:block; }
.contrast-diagram{
  display:flex; align-items:center; justify-content:center; gap:1rem;
  max-width:360px; margin:0 auto;
}
.contrast-item{
  flex:1; background:var(--white); border-radius:var(--radius-sm); padding:1.3rem 1rem;
  text-align:center; box-shadow:var(--shadow);
}
.contrast-icon{
  width:44px; height:44px; border-radius:50%; margin:0 auto .7rem;
  display:flex; align-items:center; justify-content:center;
}
.contrast-icon svg{ width:22px; height:22px; }
.contrast-before .contrast-icon{ background:rgba(226,75,74,0.12); color:#E24B4A; }
.contrast-after .contrast-icon{ background:var(--bg-light); color:var(--blue); }
.contrast-title{ font-size:.85rem; font-weight:700; color:var(--text-dark); margin-bottom:.4rem; }
.contrast-tag{ font-size:.68rem; font-weight:600; color:var(--text-muted); }
.contrast-tag-accent{ color:var(--blue); }
.contrast-arrow{ color:rgba(11,30,61,0.25); flex-shrink:0; }
.contrast-arrow svg{ width:24px; height:24px; }

.mascot-badge{
  width:min(280px,100%); margin:0 auto; aspect-ratio:1;
  background:radial-gradient(circle at 35% 30%, var(--navy-2), var(--navy));
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
}
.mascot-badge img{ width:78%; }

.mascot-inline{ width:170px; }

#como-trabajamos .section-inner{ position:relative; }
.como-mascot{ position:absolute; top:-18px; right:38%; width:78px; }
.como-mascot img{ width:100%; display:block; }

/* ---------- timeline ---------- */
.timeline{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; margin-top:2rem;
}
.timeline-item{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-sm);
  padding:1.3rem 1.3rem;
  transition:transform .35s ease, background .35s ease;
}
.timeline-item:hover{ transform:translateY(-6px); background:rgba(255,255,255,0.07); }
.timeline-num{ display:block; font-size:1.5rem; font-weight:800; color:var(--blue-light); margin-bottom:.3rem; }
.timeline-item h3{ color:var(--white); font-size:1rem; margin-bottom:.35rem; }
.timeline-item p{ color:var(--text-on-dark-muted); font-size:.82rem; line-height:1.5; }

/* ---------- modalidades ---------- */
.modalidades-head{ text-align:center; }
.modalidades-head .tag, .modalidades-head h2{ margin-left:auto; margin-right:auto; }
.modalidades-mascot{ width:140px; margin:0 auto .8rem; }
.modalidades-mascot img{ width:100%; display:block; }
.cards-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.6rem; margin-top:1.8rem; }
.mode-card{
  background:var(--white); border-radius:var(--radius); padding:1.8rem 1.8rem;
  box-shadow:var(--shadow); position:relative; overflow:hidden;
  transition:transform .35s ease; text-align:left;
}
.mode-card:hover{ transform:translateY(-8px); }
.mode-card.featured{ background:linear-gradient(160deg, var(--navy), var(--navy-2)); color:var(--white); }
.mode-card.featured h3, .mode-card.featured p{ color:var(--white); }
.mode-icon{
  width:48px; height:48px; margin-bottom:.9rem; border-radius:12px;
  background:var(--bg-light); color:var(--blue);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.mode-icon svg{ width:24px; height:24px; }
.mode-card.featured .mode-icon{ background:rgba(255,255,255,0.12); color:var(--blue-light); }
.mode-card .badge{
  position:absolute; top:1.4rem; right:1.4rem; background:var(--blue); color:var(--white);
  font-size:.72rem; font-weight:700; padding:.35rem .8rem; border-radius:100px;
}
.mode-card h3{ font-size:1.18rem; }
.mode-card p{ color:var(--text-muted); font-size:.98rem; }

/* ---------- perfiles ---------- */
.profile-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-top:1.8rem; }
.profile-card-mascot{ display:flex; align-items:center; justify-content:center; }
.profile-card-mascot img{ width:80%; max-width:155px; }
.profile-card{
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-sm); padding:1.1rem 1.2rem;
  transition:transform .35s ease, background .35s ease;
}
.profile-card:hover{ transform:translateY(-6px); background:rgba(46,155,240,0.12); border-color:var(--blue); }
.profile-icon{
  width:30px; height:30px; border-radius:9px; background:rgba(255,255,255,0.08);
  color:var(--blue-light); display:flex; align-items:center; justify-content:center;
  margin-bottom:.6rem;
}
.profile-icon svg{ width:16px; height:16px; }
.profile-card h3{ color:var(--blue-light); font-size:.92rem; margin-bottom:.3rem; }
.profile-card li{ color:var(--text-on-dark-muted); font-size:.76rem; padding:.15rem 0; line-height:1.35; }

/* ---------- por que elegirnos ---------- */
.why-list{ display:grid; gap:.9rem; margin-top:.9rem; }
.why-item{ padding-left:1.1rem; border-left:3px solid var(--blue); }
.why-item h3{ font-size:.98rem; margin-bottom:.15rem; }
.why-item p{ color:var(--text-muted); margin:0; font-size:.85rem; }

/* ---------- confian ---------- */
.confian{ background:var(--white); text-align:center; padding:80px 24px; }
.confian-mascot{ width:120px; margin:0 auto 1rem; }
.confian-mascot img{ width:100%; display:block; }
.confian .tag{ display:block; }
.logos-row{ display:flex; justify-content:center; align-items:center; gap:4rem; flex-wrap:wrap; margin-top:2.2rem; }
.client-logo{
  height:56px; width:auto; max-width:220px; object-fit:contain;
  filter:grayscale(1) opacity(0.55);
  transition:filter .3s ease, transform .3s ease;
}
.client-logo:hover{ filter:grayscale(0) opacity(1); transform:translateY(-2px); }

/* ---------- postula ---------- */
.postula{
  background: radial-gradient(circle at 80% 20%, #123262 0%, var(--navy) 60%), var(--navy);
  position:relative; overflow:hidden; isolation:isolate;
}
.blob-3{ width:380px; height:380px; background:radial-gradient(circle, var(--blue) 0%, transparent 70%); top:10%; right:-120px; }
.postula .col-text h2{ color:var(--white); max-width:460px; }
.postula .on-dark-sub{ max-width:440px; margin-bottom:1.6rem; }

.cv-form{
  background:var(--white); border-radius:var(--radius); padding:1.6rem;
  box-shadow:var(--shadow); display:flex; flex-direction:column; gap:.7rem;
}
.form-row{ display:flex; flex-direction:column; gap:.7rem; }
.form-row.two{ flex-direction:row; }
.form-row.two label{ flex:1; }
.hp-field{
  position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden;
}
.cv-form label{
  display:flex; flex-direction:column; gap:.3rem; font-size:.82rem; font-weight:600; color:var(--text-dark);
}
.cv-form input[type=text], .cv-form input[type=email], .cv-form input[type=tel], .cv-form input[type=url]{
  border:1.5px solid rgba(11,30,61,0.15); border-radius:var(--radius-sm); padding:.6rem .9rem;
  font-family:var(--font); font-size:.88rem; font-weight:400; transition:border-color .25s ease;
}
.cv-form input:focus{ outline:none; border-color:var(--blue); }

.file-upload-label{ font-size:.82rem; font-weight:600; color:var(--text-dark); }
.file-upload{
  position:relative; display:flex; align-items:center; gap:.85rem;
  border:1.5px dashed rgba(11,30,61,0.22); border-radius:var(--radius-sm);
  padding:.85rem 1rem; background:var(--bg-light);
  transition:border-color .25s ease, background .25s ease;
}
.file-upload:hover{ border-color:var(--blue); background:#e4edfa; }
.file-upload.has-file{ border-style:solid; border-color:var(--blue); background:#e4edfa; }
.file-upload-input{
  position:absolute; inset:0; width:100%; height:100%; opacity:0; cursor:pointer; margin:0;
}
.file-upload-icon{
  width:38px; height:38px; border-radius:10px; background:var(--white); color:var(--blue);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  box-shadow:0 6px 14px -8px rgba(11,30,61,0.25);
}
.file-upload-icon svg{ width:19px; height:19px; }
.file-upload-text{ font-size:.82rem; color:var(--text-muted); line-height:1.4; }
.file-upload-text strong{ color:var(--blue); font-weight:700; }
.file-upload-text small{ display:block; font-size:.72rem; color:var(--text-muted); margin-top:.1rem; }
.file-hint{ font-size:.78rem; color:var(--text-muted); }
.file-chip[hidden]{ display:none; }
.file-chip{
  display:flex; align-items:center; gap:.55rem;
  background:var(--blue); color:var(--white);
  border-radius:100px; padding:.45rem .5rem .45rem .9rem;
  font-size:.8rem; font-weight:600; width:fit-content; max-width:100%;
}
.file-chip-icon{ display:flex; flex-shrink:0; }
.file-chip-icon svg{ width:14px; height:14px; }
.file-chip-name{
  max-width:230px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.file-chip-remove{
  display:flex; align-items:center; justify-content:center;
  width:22px; height:22px; border-radius:50%; border:none; flex-shrink:0; padding:0;
  background:rgba(255,255,255,0.22); color:var(--white); cursor:pointer;
  transition:background .2s ease;
}
.file-chip-remove:hover{ background:rgba(255,255,255,0.4); }
.file-chip-remove svg{ width:11px; height:11px; }
.consent{
  flex-direction:row !important; align-items:flex-start; gap:.5rem !important;
  font-size:.73rem !important; font-weight:400 !important; color:var(--text-muted);
  line-height:1.4;
}
.consent input{ margin-top:3px; accent-color:var(--blue); }
.form-status{ font-size:.85rem; text-align:center; min-height:1.2em; }
.form-status.ok{ color:#1D9E75; }
.form-status.err{ color:#E24B4A; }

/* ---------- contacto ---------- */
.contact-inner{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.contact-inner h2{ max-width:600px; margin:0 auto 1.4rem; }
.contact-cta{ display:flex; align-items:center; gap:.8rem; margin-bottom:1.6rem; }
.btn-whatsapp{
  background:#25D366; color:var(--white);
  box-shadow:0 14px 30px -10px rgba(37,211,102,0.55);
}
.btn-whatsapp:hover{ transform:translateY(-3px); box-shadow:0 20px 36px -8px rgba(37,211,102,0.6); }
.contact-links{ display:flex; gap:1.6rem; flex-wrap:wrap; justify-content:center; }
.contact-links span{ font-weight:600; color:var(--navy); padding:.5rem 1rem; }
.social-circle{
  width:52px; height:52px; border-radius:50%; background:var(--navy); color:var(--white);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:transform .25s ease, background .25s ease;
}
.social-circle:hover{ background:var(--blue); transform:translateY(-3px); }

/* ---------- footer ---------- */
.footer{
  background:var(--navy); color:var(--text-on-dark-muted); text-align:center; padding:3rem 24px 2rem;
  scroll-snap-align:start; scroll-snap-stop:always;
}
.footer-logo{ height:40px; margin:0 auto 1rem; }
.footer p{ font-size:.9rem; }
.footer-copy{ margin-top:1rem; font-size:.78rem; opacity:.7; }
.footer-link{ color:inherit; text-decoration:underline; opacity:.9; }
.footer-link:hover{ opacity:1; }
.consent a{ color:var(--blue); text-decoration:underline; }

/* ---------- reveal animation base (JS toggles .in) ---------- */
.reveal{ opacity:0; transform:translateY(30px); }
.reveal.in{ opacity:1; transform:translateY(0); transition:opacity .8s ease, transform .8s ease; }
.reveal-line{ opacity:0; transform:translateY(100%); }
.reveal-line.in{ opacity:1; transform:translateY(0); transition:opacity .7s ease, transform .7s ease; }

/* ===================== RESPONSIVE ===================== */
@media (max-height: 720px) and (min-width: 761px){
  .hero{ padding-top:76px; padding-bottom:18px; gap:1.6rem; }
  .hero-title{ font-size:clamp(2rem, 4.4vw, 2.8rem); }
  .hero-sub{ font-size:.98rem; margin:.8rem 0 1.2rem; }
  .hero-visual{ height:230px; }
  .hero-stats-bar{ padding-top:1.1rem; }
  .stat-number{ font-size:1.5rem; }
}

@media (max-width: 980px){
  .two-col, .two-col.reverse{ grid-template-columns:1fr; gap:2.6rem; }
  .two-col.reverse .col-media{ order:0; }
  .timeline{ grid-template-columns:repeat(2,1fr); }
  .profile-grid{ grid-template-columns:repeat(2,1fr); }
  .hero-visual{ display:none; }
}

/* Nav: pasa a menú hamburguesa antes que el resto del layout mobile,
   porque con "Contáctanos" + "Postula aquí" + los 5 links + el logo grande
   ya no entran cómodos en pantallas de laptop angostas (aunque no sean
   "mobile"). 1200px da margen de sobra incluso en laptops de 13". */
@media (max-width: 1200px){
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px;
    background:var(--navy); flex-direction:column; align-items:flex-start;
    padding:100px 28px 40px; gap:1.4rem; transform:translateX(100%);
    transition:transform .4s ease; box-shadow:-10px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ color:var(--white) !important; font-size:1.05rem; }
  .nav-links a.nav-cta, .nav-links a.nav-cta-ghost{ width:100%; text-align:center; }
  .nav-burger{ display:flex; }
}

@media (max-width: 760px){
  /* En mobile, una sola columna con todo el contenido no cabe bien en
     una sola pantalla — priorizamos que se lea completo por sobre el
     efecto de "una sección por pantalla" (que sí se mantiene en
     desktop/tablet). */
  html{ scroll-snap-type:none; }
  .hero, .section{
    min-height:auto;
    scroll-snap-align:none;
    scroll-snap-stop:normal;
  }

  .hero{ padding-top:120px; }
  .hero-stats-bar{ flex-direction:column; gap:1.1rem; }
  .hero-stats-bar .stat{ border-right:none; border-bottom:1px solid rgba(255,255,255,0.14); padding:0 0 1rem; }
  .hero-stats-bar .stat:last-child{ border-bottom:none; padding-bottom:0; }
  .timeline{ grid-template-columns:1fr; }
  .cards-2{ grid-template-columns:1fr; }
  .profile-grid{ grid-template-columns:1fr; }
  .form-row.two{ flex-direction:column; }
  .section{ padding:80px 20px; }
}
