/* =========================================================
   CDT Soluciones Tecnológicas — Hoja de estilos principal
   ========================================================= */

:root{
  /* Marca */
  --navy-950:#0a1e33;
  --navy-900:#0e2842;
  --navy-800:#123a63;
  --navy-700:#1a4d7f;
  --blue-600:#2184c4;
  --blue-500:#2f9be0;
  --blue-400:#5fc1f5;
  --blue-100:#e9f5fc;
  --gray-900:#1c2430;
  --gray-700:#455166;
  --gray-500:#67728a;
  --gray-400:#949599;
  --gray-200:#e4e8ee;
  --gray-100:#f4f6fa;
  --white:#ffffff;

  --grad-accent: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  --grad-navy: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 100%);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(14,40,66,.06);
  --shadow-md: 0 12px 30px rgba(14,40,66,.10);
  --shadow-lg: 0 24px 60px rgba(14,40,66,.16);

  --container: 1180px;
  --header-h: 84px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-main);
  color:var(--gray-900);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

section{ position:relative; }

/* ---------- Tipografía ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue-500);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--blue-500);
  border-radius:2px;
}
.eyebrow.on-dark{ color:var(--blue-400); }

h1,.h1{
  font-size:clamp(2.1rem, 4.4vw, 3.4rem);
  line-height:1.12;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--navy-900);
}
h2,.h2{
  font-size:clamp(1.7rem, 3vw, 2.4rem);
  line-height:1.18;
  font-weight:800;
  letter-spacing:-.01em;
  color:var(--navy-900);
}
h3,.h3{
  font-size:1.28rem;
  line-height:1.3;
  font-weight:700;
  color:var(--navy-900);
}
.lede{
  font-size:clamp(1.02rem, 1.4vw, 1.2rem);
  line-height:1.65;
  color:var(--gray-700);
  font-weight:400;
}
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3{ color:var(--white); }
.on-dark .lede{ color:rgba(255,255,255,.78); }

.section-head{
  max-width:680px;
  margin-bottom:52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Botones ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 28px;
  border-radius:var(--radius-full);
  font-weight:700;
  font-size:15px;
  border:2px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn svg{ width:16px; height:16px; transition:transform .25s ease; flex:none; }
.btn:hover svg{ transform:translateX(3px); }
.btn-primary{
  background:var(--grad-accent);
  color:var(--white);
  box-shadow:0 10px 24px rgba(33,132,196,.35);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 32px rgba(33,132,196,.42); }
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.5);
  color:var(--white);
}
.btn-outline:hover{ border-color:var(--white); background:rgba(255,255,255,.08); transform:translateY(-2px); }
.btn-outline-dark{
  background:transparent;
  border-color:var(--navy-800);
  color:var(--navy-800);
}
.btn-outline-dark:hover{ background:var(--navy-900); color:var(--white); transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn-sm{ padding:11px 20px; font-size:13.5px; }

/* ---------- Header ---------- */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  height:var(--header-h);
  z-index:1000;
  display:flex;
  align-items:center;
  background:transparent;
  transition:background .35s ease, box-shadow .35s ease, height .3s ease;
}
.site-header.is-scrolled{
  background:rgba(10,30,51,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 8px 24px rgba(8,20,36,.18);
  height:72px;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{ display:flex; align-items:center; }
.brand img{ height:34px; width:auto; }
.brand .logo-light{ display:block; }
.brand .logo-dark{ display:none; }

.nav-desktop{
  display:flex;
  align-items:center;
  gap:2px;
}
.nav-desktop a{
  padding:10px 16px;
  font-size:14.5px;
  font-weight:600;
  color:rgba(255,255,255,.86);
  border-radius:var(--radius-full);
  transition:background .2s ease, color .2s ease;
}
.nav-desktop a:hover{ background:rgba(255,255,255,.1); color:#fff; }
.nav-desktop a.active{ background:rgba(255,255,255,.14); color:#fff; }

.header-cta{ display:flex; align-items:center; gap:14px; }
.header-cta .btn{ padding:12px 22px; font-size:14px; }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:var(--radius-full);
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.06);
  align-items:center;
  justify-content:center;
  flex:none;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  display:block;
  width:18px; height:2px;
  background:#fff;
  position:relative;
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }
.nav-toggle.is-active span{ background:transparent; }
.nav-toggle.is-active span::before{ top:0; transform:rotate(45deg); }
.nav-toggle.is-active span::after{ top:0; transform:rotate(-45deg); }

.mobile-menu{
  position:fixed;
  inset:0;
  background:var(--grad-navy);
  z-index:999;
  display:flex;
  flex-direction:column;
  padding:110px 28px 40px;
  transform:translateY(-8px);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease;
}
.mobile-menu.is-open{ opacity:1; pointer-events:auto; transform:translateY(0); }
.mobile-menu a{
  display:block;
  padding:16px 4px;
  font-size:1.5rem;
  font-weight:700;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.mobile-menu .btn{ margin-top:28px; }

/* ---------- Hero genérico (páginas internas) ---------- */
.page-hero{
  padding:calc(var(--header-h) + 76px) 0 96px;
  background:var(--grad-navy);
  color:#fff;
  overflow:hidden;
  position:relative;
}
.page-hero .breadcrumb{
  display:flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; color:rgba(255,255,255,.55);
  margin-bottom:22px;
}
.page-hero .breadcrumb a{ color:rgba(255,255,255,.75); }
.page-hero .breadcrumb a:hover{ color:#fff; }
.page-hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:56px;
  align-items:center;
}
.page-hero-badge{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  padding:8px 16px 8px 10px;
  border-radius:var(--radius-full);
  font-size:13px; font-weight:700; color:#fff;
  margin-bottom:22px;
}
.page-hero-badge .dot{ width:8px; height:8px; border-radius:50%; background:var(--blue-400); }
.page-hero .lede{ max-width:560px; margin-top:20px; }
.page-hero-actions{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }

.hero-visual{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/3.1;
  box-shadow:var(--shadow-lg);
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; }
.hero-visual::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(200deg, rgba(10,30,51,0) 40%, rgba(10,30,51,.55) 100%);
}
.hero-visual .stat-chip{
  position:absolute;
  left:22px; bottom:22px;
  z-index:2;
  background:rgba(10,26,45,.72);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.18);
  padding:14px 18px;
  border-radius:var(--radius-md);
  display:flex; gap:12px; align-items:center;
}
.hero-visual .stat-chip strong{ display:block; font-size:1.3rem; color:#fff; }
.hero-visual .stat-chip span{ font-size:12px; color:rgba(255,255,255,.7); }

/* Formas decorativas (arcos, tomando el motivo circular del isotipo) */
.deco-arc{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.14);
  pointer-events:none;
}
.deco-arc.a1{ width:640px; height:640px; right:-220px; top:-260px; }
.deco-arc.a2{ width:420px; height:420px; right:-120px; top:-40px; border-color:rgba(95,193,245,.18); }
.deco-arc.a3{ width:260px; height:260px; left:-120px; bottom:-140px; border-color:rgba(255,255,255,.1); }
.deco-dot{
  position:absolute;
  width:10px; height:10px; border-radius:50%;
  background:var(--blue-400);
  box-shadow:0 0 24px 6px rgba(95,193,245,.5);
}

/* ---------- Home hero ---------- */
.home-hero{
  position:relative;
  padding:calc(var(--header-h) + 92px) 0 120px;
  background:var(--grad-navy);
  color:#fff;
  overflow:hidden;
}
.home-hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.home-hero h1{ margin-top:18px; }
.home-hero .lede{ max-width:600px; margin-top:22px; }
.home-hero-actions{ display:flex; gap:16px; margin-top:38px; flex-wrap:wrap; }
.home-hero-note{
  margin-top:30px;
  display:flex; align-items:center; gap:10px;
  font-size:13.5px; color:rgba(255,255,255,.6);
}
.home-hero-note svg{ width:16px; height:16px; color:var(--blue-400); flex:none; }

.hero-panel{
  position:relative;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-lg);
  padding:14px;
  box-shadow:var(--shadow-lg);
}
.hero-panel img{ border-radius:calc(var(--radius-lg) - 8px); aspect-ratio:5/4.2; object-fit:cover; }
.hero-panel-card{
  position:absolute;
  bottom:-26px; left:24px;
  background:#fff;
  border-radius:var(--radius-md);
  padding:18px 20px;
  box-shadow:var(--shadow-lg);
  display:flex;
  gap:16px;
  min-width:280px;
}
.hero-panel-card .ring{
  width:46px; height:46px; border-radius:50%;
  background:var(--grad-accent);
  display:flex; align-items:center; justify-content:center;
  flex:none;
}
.hero-panel-card .ring svg{ width:22px; height:22px; color:#fff; }
.hero-panel-card strong{ display:block; color:var(--navy-900); font-size:15px; }
.hero-panel-card span{ font-size:13px; color:var(--gray-500); }

/* ---------- Marcas de confianza / stats bar ---------- */
.stats-bar{
  background:var(--white);
  border-bottom:1px solid var(--gray-200);
  padding:0;
}
.stats-bar .container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  transform:translateY(-46px);
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  border:1px solid var(--gray-200);
}
.stat-block{
  padding:30px 20px;
  text-align:center;
  border-right:1px solid var(--gray-200);
}
.stat-block:last-child{ border-right:none; }
.stat-num{
  font-size:clamp(1.7rem,3vw,2.3rem);
  font-weight:800;
  color:var(--navy-900);
  display:flex; align-items:baseline; justify-content:center; gap:2px;
}
.stat-num .suffix{ color:var(--blue-500); }
.stat-label{ margin-top:6px; font-size:13px; color:var(--gray-500); font-weight:600; }

/* ---------- Servicios (cards) ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.service-card{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:32px 26px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display:flex; flex-direction:column; height:100%;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.service-card .icon{
  width:54px; height:54px;
  border-radius:16px;
  background:var(--blue-100);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.service-card .icon svg{ width:26px; height:26px; color:var(--blue-600); }
.service-card h3{ margin-bottom:10px; }
.service-card p{ color:var(--gray-500); font-size:14.5px; line-height:1.6; flex:1; }
.service-card .tag-list{ margin:16px 0 20px; display:flex; flex-direction:column; gap:8px; }
.service-card .tag-list li{ font-size:13.5px; color:var(--gray-700); display:flex; gap:8px; align-items:flex-start; }
.service-card .tag-list li svg{ width:15px; height:15px; color:var(--blue-500); margin-top:2px; flex:none; }
.service-card .card-link{
  display:inline-flex; align-items:center; gap:6px;
  font-weight:700; font-size:14px; color:var(--navy-900);
  margin-top:auto;
}
.service-card .card-link svg{ width:14px; height:14px; transition:transform .25s ease; }
.service-card:hover .card-link svg{ transform:translateX(4px); }

/* ---------- Alternating feature rows ---------- */
.feature-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.feature-row.reverse .feature-media{ order:2; }
.feature-row.reverse .feature-copy{ order:1; }
.feature-media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-md);
  aspect-ratio:5/4;
}
.feature-media img{ width:100%; height:100%; object-fit:cover; }
.feature-copy .check-list{ margin-top:22px; display:flex; flex-direction:column; gap:14px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--gray-700); line-height:1.5; }
.check-list li svg{ width:20px; height:20px; color:var(--blue-500); flex:none; margin-top:1px; }
.check-list.compact li{ font-size:14.5px; }

/* ---------- Bloques oscuros genéricos ---------- */
.section-dark{
  background:var(--grad-navy);
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* ---------- Pills / badges ---------- */
.pill-list{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{
  padding:9px 16px;
  border-radius:var(--radius-full);
  background:var(--blue-100);
  color:var(--navy-800);
  font-size:13.5px;
  font-weight:700;
}
.pill.on-dark{ background:rgba(255,255,255,.09); color:#fff; border:1px solid rgba(255,255,255,.16); }

/* ---------- Paquetes / pricing-like cards ---------- */
.packages-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.package-card{
  background:var(--navy-900);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg);
  padding:34px 28px;
  color:#fff;
  position:relative;
  transition:transform .3s ease, border-color .3s ease;
}
.package-card:hover{ transform:translateY(-6px); border-color:var(--blue-500); }
.package-card.featured{ background:linear-gradient(160deg, var(--navy-800), var(--navy-700)); border-color:var(--blue-500); }
.package-card .step-num{
  width:38px; height:38px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:14px; color:var(--blue-400);
  margin-bottom:18px;
}
.package-card h3{ color:#fff; margin-bottom:8px; }
.package-card .tagline{ font-size:13.5px; color:rgba(255,255,255,.6); font-style:italic; margin-bottom:20px; line-height:1.5; }
.package-card ul{ display:flex; flex-direction:column; gap:11px; }
.package-card ul li{ font-size:13.5px; color:rgba(255,255,255,.85); display:flex; gap:10px; align-items:flex-start; line-height:1.5; }
.package-card ul li svg{ width:15px; height:15px; color:var(--blue-400); margin-top:2px; flex:none; }
.package-card .badge-top{
  position:absolute; top:-13px; right:24px;
  background:var(--grad-accent);
  padding:6px 14px; border-radius:var(--radius-full);
  font-size:11.5px; font-weight:800; letter-spacing:.04em;
}

/* ---------- Planes mensuales ---------- */
.plans-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.plan-card{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:32px 26px;
  transition:box-shadow .3s ease, transform .3s ease;
}
.plan-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-4px); }
.plan-card .icon{
  width:50px; height:50px; border-radius:14px;
  background:var(--blue-100); display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.plan-card .icon svg{ width:24px; height:24px; color:var(--blue-600); }
.plan-card .hours{ font-weight:800; color:var(--blue-600); font-size:14px; margin:6px 0 14px; }
.plan-card ul{ display:flex; flex-direction:column; gap:10px; margin-top:16px; }
.plan-card ul li{ font-size:13.8px; color:var(--gray-700); display:flex; gap:9px; align-items:flex-start; }
.plan-card ul li svg{ width:15px; height:15px; color:var(--blue-500); margin-top:2px; flex:none; }
.plan-card .footnote{ margin-top:18px; font-size:12.5px; color:var(--gray-400); font-style:italic; }

/* ---------- Timeline / método de trabajo ---------- */
.timeline{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
  position:relative;
}
.timeline::before{
  content:"";
  position:absolute; top:27px; left:5%; right:5%; height:2px;
  background:repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 8px, transparent 8px 16px);
}
.timeline-step{ position:relative; text-align:center; }
.timeline-step .num{
  width:56px; height:56px; margin:0 auto 16px;
  border-radius:50%;
  background:var(--navy-800);
  border:2px solid var(--blue-500);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:18px; color:#fff;
  position:relative; z-index:2;
}
.timeline-step strong{ display:block; font-size:14.5px; color:#fff; margin-bottom:4px; }
.timeline-step span{ font-size:12.5px; color:rgba(255,255,255,.6); }

/* ---------- Verticales / sectores ---------- */
.sector-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.sector-card{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:32px;
  display:flex; gap:20px;
}
.sector-card .icon{
  width:58px; height:58px; border-radius:16px; flex:none;
  background:var(--navy-900);
  display:flex; align-items:center; justify-content:center;
}
.sector-card .icon svg{ width:28px; height:28px; color:var(--blue-400); }
.sector-card .flow{
  margin-top:14px; font-size:13px; font-weight:700; color:var(--blue-600);
  display:flex; align-items:center; gap:6px; flex-wrap:wrap;
}

/* ---------- Valores ---------- */
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.value-card{
  text-align:left;
  padding:28px 22px;
  border-radius:var(--radius-lg);
  background:var(--gray-100);
}
.value-card .icon{
  width:48px; height:48px; border-radius:14px;
  background:#fff; box-shadow:var(--shadow-sm);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.value-card .icon svg{ width:23px; height:23px; color:var(--blue-600); }
.value-card p{ font-size:13.8px; color:var(--gray-500); margin-top:8px; line-height:1.55; }

/* ---------- Marquee clientes ---------- */
.marquee-wrap{
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee{
  display:flex;
  width:max-content;
  gap:56px;
  animation:scroll-x 34s linear infinite;
}
.marquee-wrap:hover .marquee{ animation-play-state:paused; }
.marquee span{
  font-size:1.3rem;
  font-weight:800;
  color:var(--gray-400);
  white-space:nowrap;
  letter-spacing:.01em;
  transition:color .2s ease;
}
.marquee span:hover{ color:var(--navy-900); }
@keyframes scroll-x{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ---------- CTA banner ---------- */
.cta-banner{
  background:var(--grad-navy);
  border-radius:var(--radius-lg);
  padding:64px 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  position:relative;
  overflow:hidden;
}
.cta-banner h2{ color:#fff; max-width:520px; }
.cta-banner .lede{ margin-top:12px; max-width:460px; }
.cta-banner-actions{ display:flex; gap:14px; flex:none; flex-wrap:wrap; }

/* ---------- Benefit chips (talento) ---------- */
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.benefit-chip{
  display:flex; gap:14px; align-items:flex-start;
  padding:22px;
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-md);
}
.benefit-chip .icon{
  width:42px; height:42px; border-radius:12px; flex:none;
  background:var(--blue-100);
  display:flex; align-items:center; justify-content:center;
}
.benefit-chip .icon svg{ width:20px; height:20px; color:var(--blue-600); }
.benefit-chip strong{ display:block; font-size:14.5px; color:var(--navy-900); margin-bottom:4px; }
.benefit-chip p{ font-size:13px; color:var(--gray-500); line-height:1.5; }

/* ---------- Perfiles (grid con iconos) ---------- */
.profile-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.profile-card{
  padding:26px;
  border-radius:var(--radius-md);
  background:var(--gray-100);
  transition:background .25s ease, transform .25s ease;
}
.profile-card:hover{ background:var(--navy-900); transform:translateY(-4px); }
.profile-card:hover h3, .profile-card:hover p{ color:#fff; }
.profile-card:hover p{ color:rgba(255,255,255,.7); }
.profile-card .icon{
  width:44px; height:44px; border-radius:12px;
  background:var(--grad-accent);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.profile-card .icon svg{ width:21px; height:21px; color:#fff; }
.profile-card p{ font-size:13px; color:var(--gray-500); margin-top:6px; line-height:1.5; }

/* ---------- Modelos de colaboración ---------- */
.model-tabs{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.model-card{
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.model-card .model-head{ padding:26px; background:var(--navy-900); color:#fff; }
.model-card .model-head span{ font-size:12px; font-weight:700; color:var(--blue-400); text-transform:uppercase; letter-spacing:.08em; }
.model-card .model-head h3{ color:#fff; margin-top:6px; }
.model-card .model-body{ padding:24px 26px; }
.model-card .model-body p{ font-size:13.8px; color:var(--gray-600); line-height:1.6; }

/* ---------- Proceso (numerado vertical) ---------- */
.process-list{ display:flex; flex-direction:column; }
.process-item{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:24px;
  padding:26px 0;
  border-bottom:1px solid var(--gray-200);
}
.process-item:first-child{ padding-top:0; }
.process-item:last-child{ border-bottom:none; padding-bottom:0; }
.process-item .num{
  width:56px; height:56px; border-radius:50%;
  background:var(--blue-100);
  color:var(--blue-600);
  font-weight:800; font-size:19px;
  display:flex; align-items:center; justify-content:center;
}
.process-item h3{ margin-bottom:6px; }
.process-item p{ color:var(--gray-500); font-size:14.5px; line-height:1.6; }

/* ---------- Contacto ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:48px;
  align-items:start;
}
.contact-info-card{
  background:var(--grad-navy);
  border-radius:var(--radius-lg);
  padding:40px 34px;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.contact-detail{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.contact-detail:last-child{ border-bottom:none; }
.contact-detail .icon{
  width:44px; height:44px; border-radius:12px; flex:none;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
}
.contact-detail .icon svg{ width:20px; height:20px; color:var(--blue-400); }
.contact-detail strong{ display:block; font-size:14px; margin-bottom:3px; }
.contact-detail span, .contact-detail a{ font-size:13.8px; color:rgba(255,255,255,.72); line-height:1.5; }
.contact-detail a:hover{ color:#fff; }

.contact-form{
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:40px;
  box-shadow:var(--shadow-sm);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13px; font-weight:700; color:var(--navy-900); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%;
  padding:13px 16px;
  border:1.5px solid var(--gray-200);
  border-radius:var(--radius-sm);
  font-size:14.5px;
  color:var(--gray-900);
  background:var(--gray-100);
  transition:border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--blue-500); background:#fff;
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:12.5px; color:var(--gray-400); margin-top:14px; text-align:center; }
.form-success{
  display:none;
  align-items:center; gap:12px;
  background:var(--blue-100);
  border:1px solid rgba(33,132,196,.25);
  color:var(--navy-800);
  padding:16px 18px;
  border-radius:var(--radius-sm);
  font-size:13.8px; font-weight:600;
  margin-bottom:20px;
}
.form-success.is-visible{ display:flex; }
.form-success svg{ width:20px; height:20px; color:var(--blue-600); flex:none; }

.map-embed{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--gray-200);
  aspect-ratio:16/9;
}
.map-embed iframe{ width:100%; height:100%; border:0; display:block; }

/* ---------- FAQ ---------- */
.faq-item{
  border-bottom:1px solid var(--gray-200);
  padding:22px 0;
}
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  cursor:pointer;
  font-weight:700; font-size:15.5px; color:var(--navy-900);
}
.faq-q svg{ width:20px; height:20px; color:var(--blue-500); flex:none; transition:transform .3s ease; }
.faq-item.is-open .faq-q svg{ transform:rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden;
  transition:max-height .35s ease;
}
.faq-a p{ padding-top:14px; font-size:14.5px; color:var(--gray-500); line-height:1.65; max-width:88%; }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--navy-950);
  color:rgba(255,255,255,.7);
  padding:76px 0 0;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr 1fr;
  gap:40px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.footer-brand img{ height:32px; margin-bottom:18px; }
.footer-brand p{ font-size:13.8px; line-height:1.65; max-width:280px; color:rgba(255,255,255,.55); }
.footer-social{ display:flex; gap:10px; margin-top:22px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, border-color .2s ease;
}
.footer-social a:hover{ background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.4); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h4{ color:#fff; font-size:13.5px; text-transform:uppercase; letter-spacing:.07em; margin-bottom:20px; }
.footer-col ul{ display:flex; flex-direction:column; gap:13px; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,.62); transition:color .2s ease; }
.footer-col a:hover{ color:#fff; }
.footer-col .contact-line{ display:flex; gap:10px; align-items:flex-start; font-size:13.8px; color:rgba(255,255,255,.62); line-height:1.5; }
.footer-col .contact-line svg{ width:16px; height:16px; color:var(--blue-400); flex:none; margin-top:2px; }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding:26px 0; font-size:12.8px; color:rgba(255,255,255,.4);
  flex-wrap:wrap; gap:10px;
}
.footer-bottom a{ color:rgba(255,255,255,.55); }
.footer-bottom a:hover{ color:#fff; }

/* ---------- Reveal on scroll ----------
   Visible by default (progressive enhancement): la animación solo se activa
   si el JS corrió y marcó <html class="js-reveal">. Así, si el script falla
   o está bloqueado, todo el contenido se ve igual, sin depender de JS. */
html.js-reveal [data-reveal]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
}
html.js-reveal [data-reveal].is-visible{ opacity:1; transform:translateY(0); }
html.js-reveal [data-reveal="fade"]{ transform:none; }
[data-reveal-delay="1"]{ transition-delay:.08s; }
[data-reveal-delay="2"]{ transition-delay:.16s; }
[data-reveal-delay="3"]{ transition-delay:.24s; }
[data-reveal-delay="4"]{ transition-delay:.32s; }

.section-pad{ padding:104px 0; }
.section-pad-sm{ padding:76px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .packages-grid, .plans-grid{ grid-template-columns:repeat(2,1fr); }
  .values-grid{ grid-template-columns:repeat(2,1fr); }
  .benefit-grid, .profile-grid, .model-tabs{ grid-template-columns:repeat(2,1fr); }
  .sector-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr 1fr; row-gap:44px; }
  .home-hero-grid, .page-hero-grid{ grid-template-columns:1fr; }
  .hero-panel{ max-width:520px; }
  .feature-row{ grid-template-columns:1fr; gap:36px; }
  .feature-row.reverse .feature-media, .feature-row.reverse .feature-copy{ order:initial; }
  .timeline{ grid-template-columns:repeat(3,1fr); row-gap:36px; }
  .timeline::before{ display:none; }
}
@media (max-width: 860px){
  .nav-desktop, .header-cta .btn-outline{ display:none; }
  .nav-toggle{ display:flex; }
  .stats-bar .container{ grid-template-columns:repeat(2,1fr); transform:translateY(-30px); }
  .stat-block{ border-bottom:1px solid var(--gray-200); }
  .cta-banner{ flex-direction:column; text-align:center; padding:48px 30px; }
  .cta-banner-actions{ justify-content:center; }
  .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
}
@media (max-width: 640px){
  .services-grid, .packages-grid, .plans-grid, .values-grid, .benefit-grid, .profile-grid, .model-tabs{ grid-template-columns:1fr; }
  .timeline{ grid-template-columns:repeat(2,1fr); }
  .section-pad{ padding:72px 0; }
  .section-pad-sm{ padding:56px 0; }
  h1,.h1{ font-size:2.1rem; }
  .stats-bar .container{ grid-template-columns:1fr 1fr; }
  .footer-top{ grid-template-columns:1fr; }
}
