/* ============================================================
   VENCONET â€” Hoja de estilos centralizada
   ============================================================ */

/* ---- Variables ---- */
:root {
  --azul-oscuro: #0c447c;
  --azul-medio:  #185fa5;
  --azul-claro:  #378add;
  --azul-suave:  #b5d4f4;
  --negro:       #080f18;
  --gris:        #5f6b7a;
  --gris-claro:  #f2f5f9;
  --blanco:      #ffffff;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --shadow-card: 0 8px 40px rgba(12,68,124,0.10);
  --shadow-hover: 0 20px 60px rgba(12,68,124,0.16);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--negro);
  background: var(--blanco);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Scroll reveal: utility ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVEGACION
   ============================================================ */
/* Barra fija ancho completo — transparente en top, opaca al scroll */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.nav-wrapper.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 28px rgba(12,68,124,0.10);
  border-bottom-color: rgba(12,68,124,0.07);
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo svg { width: 26px; height: 34px; }
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700;
  color: var(--azul-oscuro); letter-spacing: -0.2px;
}
.nav-logo-text span { color: var(--azul-claro); }

.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gris);
  text-decoration: none; padding: 6px 12px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--azul-medio); background: rgba(24,95,165,0.06); }
.nav-links a.active { color: var(--azul-medio); background: rgba(24,95,165,0.09); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 8px; }

.nav-cta {
  background: var(--azul-medio); color: var(--blanco);
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--azul-oscuro); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(12,68,124,0.22); }

/* Hamburger (mobile only) */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 36px; height: 36px; border-radius: 8px; border: none; cursor: pointer;
  background: rgba(12,68,124,0.06); gap: 5px; transition: background var(--transition);
}
.nav-burger:hover { background: rgba(12,68,124,0.12); }
.nav-burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--azul-oscuro);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-burger.open { opacity: 0; pointer-events: none; }

/* Overlay (mobile) */
.nav-overlay {
  position: fixed; inset: 0; z-index: 202;
  background: rgba(8,15,24,0.5);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.visible { opacity: 1; pointer-events: all; }

/* Drawer (mobile) */
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 205;
  width: min(300px, 82vw);
  background: var(--blanco);
  box-shadow: -8px 0 40px rgba(12,68,124,0.16);
  display: flex; flex-direction: column;
  padding: 24px 24px 36px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.nav-drawer-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--gris); text-transform: uppercase; letter-spacing: 0.08em;
}
.nav-drawer-close {
  width: 34px; height: 34px; border-radius: 8px; border: none; cursor: pointer;
  background: rgba(12,68,124,0.06); display: flex; align-items: center;
  justify-content: center; transition: background var(--transition);
}
.nav-drawer-close:hover { background: rgba(12,68,124,0.12); }
.nav-drawer-close svg { width: 16px; height: 16px; stroke: var(--azul-oscuro); fill: none; stroke-width: 2; stroke-linecap: round; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nav-drawer ul a {
  display: block; font-size: 16px; font-weight: 500; color: var(--gris);
  text-decoration: none; padding: 11px 14px; border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}
.nav-drawer ul a:hover { color: var(--azul-medio); background: rgba(24,95,165,0.06); }
.nav-drawer ul a.active { color: var(--azul-medio); background: rgba(24,95,165,0.09); font-weight: 600; }
.nav-drawer-cta {
  display: block; text-align: center;
  background: var(--azul-medio); color: var(--blanco);
  padding: 13px 24px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; text-decoration: none; margin-top: 20px;
  transition: background var(--transition);
}
.nav-drawer-cta:hover { background: var(--azul-oscuro); }

/* ============================================================
   TIPOGRAFÃA Y ETIQUETAS COMUNES
   ============================================================ */
.section-label {
  font-size: 11px; letter-spacing: 3px; color: var(--azul-claro);
  text-transform: uppercase; font-weight: 500; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px; background: var(--azul-claro); border-radius: 2px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700; letter-spacing: -0.5px;
  color: var(--negro); margin-bottom: 14px; line-height: 1.15;
}
.section-title span { color: var(--azul-medio); }
.section-title--white { color: var(--blanco); }
.section-title--white span { color: var(--azul-claro); }
.section-sub {
  font-size: 16px; color: var(--gris); line-height: 1.8;
  max-width: 560px; margin-bottom: 52px; font-weight: 400;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn-primary {
  background: var(--azul-medio); color: var(--blanco);
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
  background: var(--azul-claro); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55,138,221,0.35);
}
.btn-primary--dark {
  background: var(--blanco); color: var(--azul-oscuro); font-weight: 700;
}
.btn-primary--dark:hover { background: var(--azul-suave); }
.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.75);
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.45); color: var(--blanco); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--azul-medio); font-weight: 500; text-decoration: none;
  font-size: 15px; transition: gap var(--transition);
}
.link-arrow:hover { gap: 14px; }

/* ============================================================
   HERO (index)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  background: var(--negro);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -180px; right: -80px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(24,95,165,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: 180px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(55,138,221,0.10) 0%, transparent 70%);
  pointer-events: none;
}
/* Wave separator */
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  line-height: 0; z-index: 1;
}
.hero-wave svg { display: block; width: 100%; }

.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(55,138,221,0.10); border: 1px solid rgba(55,138,221,0.28);
  color: var(--azul-suave); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; padding: 6px 14px; border-radius: 20px;
  margin-bottom: 28px; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.08;
  color: var(--blanco); letter-spacing: -1px; margin-bottom: 22px;
}
.hero h1 span { color: var(--azul-claro); }
.hero > .hero-content > p {
  font-size: 17px; line-height: 1.8;
  color: rgba(255,255,255,0.50); max-width: 470px;
  margin-bottom: 40px; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual â€“ status card */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(55,138,221,0.18);
  border-radius: var(--radius-lg);
  padding: 36px; width: 100%; max-width: 400px;
  backdrop-filter: blur(8px);
}
.hero-card-label {
  font-size: 10px; letter-spacing: 2.5px; color: var(--azul-claro);
  text-transform: uppercase; margin-bottom: 22px;
  display: flex; align-items: center; gap: 6px;
}
.hero-card-label::before {
  content: ''; width: 16px; height: 2px;
  background: var(--azul-claro); border-radius: 2px;
}
.hero-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.38); }
.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--blanco);
  display: flex; align-items: center; gap: 6px;
}
.dot-green  { width:7px; height:7px; border-radius:50%; background:#22c55e; flex-shrink:0; animation:pulse 2.5s infinite; }
.dot-blue   { width:7px; height:7px; border-radius:50%; background:var(--azul-claro); flex-shrink:0; }

/* Especialidades: badges circulares consistentes */
.esp-badge{
  width:44px;
  min-width:44px;
  aspect-ratio: 1 / 1;
  display:inline-grid;
  place-items:center;
  border-radius:50%;
  background:var(--azul-oscuro);
  color:var(--blanco);
  font-weight:700;
  font-size:18px;
  line-height:1;
}

/* ============================================================
   SERVICES GRID (index preview)
   ============================================================ */
.servicios-preview {
  padding: 96px 60px;
  background: var(--gris-claro);
  position: relative;
}
.servicios-preview::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul-oscuro), var(--azul-claro), transparent);
}
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.servicio-card {
  background: var(--blanco);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(12,68,124,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.servicio-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--azul-medio), var(--azul-claro));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.servicio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.servicio-card:hover::after { transform: scaleX(1); }
.servicio-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(24,95,165,0.1), rgba(55,138,221,0.08));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.servicio-icon svg { width: 22px; height: 22px; stroke: var(--azul-medio); }
.servicio-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--negro); margin-bottom: 10px; line-height: 1.3;
}
.servicio-card p { font-size: 14px; line-height: 1.7; color: var(--gris); }

/* ============================================================
   POR QUÃ‰ / DIFFERENTIATORS (index)
   ============================================================ */
.porque {
  padding: 96px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.porque-lista { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.porque-item { display: flex; gap: 14px; align-items: flex-start; }
.porque-icon-wrap {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(24,95,165,0.08); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.porque-icon-wrap svg { width: 18px; height: 18px; stroke: var(--azul-medio); }
.porque-item h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--negro); margin-bottom: 3px;
}
.porque-item p { font-size: 13px; color: var(--gris); line-height: 1.6; }

.porque-visual {
  background: var(--negro);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.porque-visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(55,138,221,0.12) 0%, transparent 70%);
}
.porque-quote {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 500;
  color: var(--blanco); line-height: 1.55; letter-spacing: 0px;
  position: relative;
}
.porque-quote::before {
  content: '"';
  font-size: 80px; line-height: 0.6;
  color: rgba(55,138,221,0.18);
  font-family: Georgia, serif;
  display: block; margin-bottom: 16px;
}
.porque-quote span { color: var(--azul-claro); }
.porque-firma { font-size: 12px; color: rgba(255,255,255,0.30); letter-spacing: 0.5px; }
.porque-contacto {
  display: flex; flex-direction: column; gap: 7px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07);
}
.porque-contacto a {
  font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.porque-contacto a:hover { color: var(--azul-claro); }
.porque-contacto a svg { width:14px; height:14px; stroke:currentColor; flex-shrink:0; }

/* ============================================================
   CTA FINAL (all pages)
   ============================================================ */
.cta-final {
  padding: 96px 60px; text-align: center;
  background: var(--azul-oscuro);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(55,138,221,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .section-label { justify-content: center; color: rgba(255,255,255,0.4); }
.cta-final .section-label::before { background: rgba(255,255,255,0.3); }
.cta-final h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 50px); font-weight: 700;
  color: var(--blanco); letter-spacing: -0.5px;
  margin-bottom: 16px; position: relative;
}
.cta-final p {
  font-size: 17px; color: rgba(255,255,255,0.45);
  margin-bottom: 36px; position: relative; font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--negro);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 60px 0;
}

/* --- Top row: brand + nav cols --- */
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  display: flex; flex-direction: column; gap: 14px; max-width: 320px;
}
.footer-logo { text-decoration: none; }
.footer-tagline {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.30); margin: 0;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,0.20); letter-spacing: 0.04em;
}
.footer-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
}

/* Nav columns */
.footer-nav {
  display: flex; gap: 60px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin: 0 0 6px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 13px; color: rgba(255,255,255,0.40); text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }

/* --- Bottom row: copyright + legal links --- */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0 24px;
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px; color: rgba(255,255,255,0.18); margin: 0;
}
.footer-legal-links {
  display: flex; gap: 20px; flex-shrink: 0;
}
.footer-legal-links a {
  font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none;
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: 136px 60px 80px;
  background: var(--negro);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -80px; right: -40px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(24,95,165,0.18) 0%, transparent 70%);
}
.page-header::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--blanco);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 700;
  color: var(--blanco); letter-spacing: -0.5px; line-height: 1.1;
  position: relative; margin-bottom: 16px; margin-top: 8px;
}
.page-header h1 span { color: var(--azul-claro); }
.page-header > p {
  font-size: 17px; color: rgba(255,255,255,0.42);
  max-width: 540px; line-height: 1.7; font-weight: 300; position: relative;
}

/* ============================================================
   SERVICIOS PAGE â€” bloque expandido
   ============================================================ */
.servicios-section { padding: 72px 60px; }
.servicio-bloque {
  display: grid; grid-template-columns: 80px 1fr; gap: 40px;
  padding: 48px 0; border-bottom: 1px solid rgba(12,68,124,0.07);
  align-items: start;
}
.servicio-bloque:last-child { border-bottom: none; }
.servicio-bloque-left {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding-top: 6px;
}
.servicio-bloque-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(24,95,165,0.12), rgba(55,138,221,0.08));
  display: flex; align-items: center; justify-content: center;
}
.servicio-bloque-icon svg { width: 24px; height: 24px; stroke: var(--azul-medio); }
.servicio-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  color: rgba(12,68,124,0.25); letter-spacing: 1px;
}
.servicio-titulo {
  font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700;
  color: var(--negro); margin-bottom: 12px; letter-spacing: -0.5px;
}
.servicio-desc {
  font-size: 15px; line-height: 1.75; color: var(--gris);
  margin-bottom: 24px; font-weight: 300; max-width: 680px;
}
.servicio-lista {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.servicio-lista li {
  display: flex; gap: 9px; font-size: 13px; color: var(--gris); align-items: flex-start;
}
.servicio-lista li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--azul-claro); margin-top: 6px; flex-shrink: 0;
}

/* ============================================================
   CÃ“MO FUNCIONA (pasos) â€” servicios page
   ============================================================ */
.como-funciona {
  padding: 72px 60px;
  background: var(--gris-claro);
  position: relative;
}
.como-funciona::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,138,221,0.3), transparent);
}
.pasos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.paso {
  background: var(--blanco); border-radius: var(--radius-md);
  padding: 28px 24px; border: 1px solid rgba(12,68,124,0.07);
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.paso:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.paso-connector {
  position: absolute; top: 36px; right: -12px;
  width: 24px; height: 2px;
  background: rgba(55,138,221,0.25); z-index: 1;
}
.paso:last-child .paso-connector { display: none; }
.paso-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700;
  color: var(--azul-suave); margin-bottom: 14px; line-height: 1;
}
.paso-icon { margin-bottom: 14px; }
.paso-icon svg { width: 22px; height: 22px; stroke: var(--azul-medio); }
.paso h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--negro); margin-bottom: 8px;
}
.paso p { font-size: 13px; color: var(--gris); line-height: 1.6; }

/* ============================================================
   SOBRE MÃ PAGE
   ============================================================ */
.sobre-hero {
  padding: 136px 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  background: var(--negro); position: relative; overflow: hidden;
}
.sobre-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(24,95,165,0.18) 0%, transparent 70%);
}
.sobre-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--blanco);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.sobre-hero h1 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; color: var(--blanco); letter-spacing: -0.5px;
  line-height: 1.1; margin-bottom: 20px; position: relative;
}
.sobre-hero h1 span { color: var(--azul-claro); }
.sobre-hero > div > p {
  font-size: 17px; color: rgba(255,255,255,0.45); line-height: 1.75; font-weight: 300;
  position: relative;
}
.sobre-visual { position: relative; z-index: 2; }
.avatar-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(55,138,221,0.18);
  border-radius: var(--radius-lg); padding: 36px; text-align: center;
  backdrop-filter: blur(8px);
}
.avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-oscuro), var(--azul-claro));
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--blanco);
}
.avatar-nombre {
  font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700;
  color: var(--blanco); margin-bottom: 4px;
}
.avatar-rol { font-size: 12px; color: var(--azul-claro); letter-spacing: 1px; margin-bottom: 20px; }
.avatar-tags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.tag {
  background: rgba(55,138,221,0.09); border: 1px solid rgba(55,138,221,0.18);
  color: rgba(255,255,255,0.55); font-size: 11px; padding: 4px 11px; border-radius: 20px;
}
.sobre-contenido { padding: 72px 60px; }
.sobre-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 72px; }
.sobre-texto h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700;
  color: var(--negro); letter-spacing: -0.3px; margin-bottom: 18px;
}
.sobre-texto h2 span { color: var(--azul-medio); }
.sobre-texto p {
  font-size: 16px; line-height: 1.8; color: var(--gris);
  margin-bottom: 18px; font-weight: 300;
}
.skills-block { background: var(--gris-claro); border-radius: var(--radius-md); padding: 28px; }
.skills-block h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--negro); margin-bottom: 18px;
}
.skill-item { margin-bottom: 14px; }
.skill-header { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.skill-name { color: var(--negro); font-weight: 500; }
.skill-pct { color: var(--azul-medio); font-weight: 700; }
.skill-bar { height: 4px; background: rgba(12,68,124,0.09); border-radius: 2px; overflow: hidden; }
.skill-fill {
  height: 4px; background: linear-gradient(90deg, var(--azul-medio), var(--azul-claro));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.skill-fill.animated { transform: scaleX(var(--w, 1)); }

.valores { padding: 0 60px 72px; }
.valores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.valor-card {
  padding: 28px; border: 1px solid rgba(12,68,124,0.09);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.valor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.valor-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(24,95,165,0.10), rgba(55,138,221,0.07));
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.valor-icon-wrap svg { width: 20px; height: 20px; stroke: var(--azul-medio); }
.valor-card h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--negro); margin-bottom: 8px;
}
.valor-card p { font-size: 13px; color: var(--gris); line-height: 1.65; }

/* ============================================================
   CONTACTO PAGE
   ============================================================ */
.contacto-wrap {
  min-height: 100vh; padding: 120px 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
  background: var(--negro); position: relative; overflow: hidden;
}
.contacto-wrap::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(24,95,165,0.18) 0%, transparent 70%);
}
.contacto-info h1 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px, 5vw, 52px);
  font-weight: 700; color: var(--blanco); letter-spacing: -0.5px;
  line-height: 1.1; margin-bottom: 18px; position: relative;
}
.contacto-info h1 span { color: var(--azul-claro); }
.contacto-info > p {
  font-size: 16px; color: rgba(255,255,255,0.42); line-height: 1.75;
  margin-bottom: 44px; font-weight: 300; position: relative;
}
.contacto-datos { display: flex; flex-direction: column; gap: 18px; position: relative; }
.dato { display: flex; gap: 14px; align-items: flex-start; }
.dato-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(55,138,221,0.09); border: 1px solid rgba(55,138,221,0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dato-icon svg { width: 16px; height: 16px; stroke: var(--azul-claro); }
.dato-label {
  font-size: 10px; color: rgba(255,255,255,0.28); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 3px;
}
.dato-value { font-size: 15px; color: var(--blanco); font-weight: 500; }
.dato-value a { color: inherit; text-decoration: none; }
.form-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(55,138,221,0.13);
  border-radius: var(--radius-lg); padding: 44px; position: relative;
}
.form-card h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 700;
  color: var(--blanco); margin-bottom: 28px; letter-spacing: -0.5px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.35); letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm); padding: 12px 15px;
  color: var(--blanco); font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--azul-claro); background: rgba(55,138,221,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-group select option { background: var(--negro); color: var(--blanco); }
.form-group textarea { height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-enviar {
  width: 100%; background: var(--azul-medio); color: var(--blanco);
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 6px;
}
.btn-enviar:hover {
  background: var(--azul-claro); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55,138,221,0.35);
}
.btn-enviar svg { width: 16px; height: 16px; stroke: currentColor; }
.form-nota { font-size: 11px; color: rgba(255,255,255,0.18); text-align: center; margin-top: 10px; }

/* ============================================================
   ANIMACIONES ENTRADA NAV + HERO
   ============================================================ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:none; }
}
.anim-1 { animation: fadeUp 0.55s 0.05s ease both; }
.anim-2 { animation: fadeUp 0.55s 0.15s ease both; }
.anim-3 { animation: fadeUp 0.55s 0.25s ease both; }
.anim-4 { animation: fadeUp 0.55s 0.35s ease both; }
.anim-5 { animation: fadeUp 0.55s 0.45s ease both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .pasos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-visual { display: none; }

  .servicios-preview { padding: 60px 24px; }
  .servicios-grid { grid-template-columns: 1fr; }

  .porque { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }

  .cta-final { padding: 60px 24px; }

  .page-header { padding: 100px 24px 60px; }

  .servicios-section { padding: 40px 24px; }
  .servicio-bloque { grid-template-columns: 1fr; gap: 12px; }
  .servicio-bloque-left { flex-direction: row; align-items: center; }
  .servicio-lista { grid-template-columns: 1fr; }

  .como-funciona { padding: 60px 24px; }
  .pasos { grid-template-columns: 1fr; }
  .paso-connector { display: none; }

  .sobre-hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .sobre-contenido { padding: 40px 24px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .valores { padding: 0 24px 60px; }
  .valores-grid { grid-template-columns: 1fr; }

  .contacto-wrap { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }

  .footer-inner { padding: 48px 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal-links { flex-wrap: wrap; gap: 12px; }
}

/* ============================================================
   PAGINAS LEGALES
   ============================================================ */
.legal-content {
  padding: 60px 60px 96px;
  background: var(--blanco);
}
.legal-inner {
  max-width: 760px; margin: 0 auto;
}
.legal-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 600; color: var(--azul-oscuro);
  margin: 40px 0 12px;
}
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner p, .legal-inner li {
  font-size: 15px; line-height: 1.75; color: var(--gris);
}
.legal-inner p { margin: 0 0 12px; }
.legal-inner ul {
  padding-left: 20px; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.legal-inner a {
  color: var(--azul-medio); text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-inner a:hover { color: var(--azul-oscuro); }

/* Table for cookies */
.legal-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0 24px; font-size: 13px;
}
.legal-table th, .legal-table td {
  text-align: left; padding: 10px 14px;
  border: 1px solid rgba(12,68,124,0.10);
}
.legal-table th {
  background: var(--gris-claro); font-weight: 600;
  color: var(--azul-oscuro); font-family: 'Space Grotesk', sans-serif;
}
.legal-table td { color: var(--gris); }
.legal-table code {
  background: rgba(12,68,124,0.06); padding: 1px 5px;
  border-radius: 4px; font-family: monospace; font-size: 12px;
  color: var(--azul-oscuro);
}

/* ============================================================
   BANNER COOKIES
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--negro);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 40px rgba(8,15,24,0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cookie-banner-text p {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.55); margin: 0;
}
.cookie-banner-text a {
  color: var(--azul-claro); text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text strong { color: rgba(255,255,255,0.80); font-weight: 600; }
.cookie-banner-actions {
  display: flex; gap: 10px; flex-shrink: 0;
}
.cookie-btn {
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cookie-btn--primary {
  background: var(--azul-medio); color: var(--blanco);
}
.cookie-btn--primary:hover {
  background: var(--azul-claro); transform: translateY(-1px);
}
.cookie-btn--secondary {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.55);
}
.cookie-btn--secondary:hover {
  background: rgba(255,255,255,0.13); color: rgba(255,255,255,0.80);
}

@media (max-width: 600px) {
  .cookie-banner-inner { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================================
   JS HELPERS (nav scroll, reveal, skill bars)
   ============================================================ */
/* aplicados por venconet.js */


