/* ============================================================
   GRUPO PRINTER — ESTILOS PRINCIPALES
   Paleta: #1B2B6B (azul oscuro) · #1565C0 (azul medio) · #FFFFFF · #F5F5F5
   Design System: Enterprise Gateway · Trust & Authority
   Typography: Lexend (headings) + Source Sans 3 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --blue-dark:   #1B2B6B;
  --blue-med:    #1565C0;
  --blue-dk2:    #0D47A1;
  --blue-lt:     #1E88E5;
  --blue-bg:     #E3F2FD;
  --blue-bg2:    #EEF4FF;
  --white:       #FFFFFF;
  --gray-50:     #FAFAFA;
  --gray-100:    #F5F5F5;
  --gray-200:    #EEEEEE;
  --gray-300:    #E0E0E0;
  --gray-400:    #9E9E9E;
  --gray-600:    #616161;
  --gray-800:    #212121;
  --black:       #0D0D1A;
  --font:        'Source Sans 3', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-heading:'Lexend', 'Segoe UI', system-ui, sans-serif;
  --max-w:       1200px;
  --h-height:    82px;
  --shadow-sm:   0 1px 4px rgba(27,43,107,.07);
  --shadow-md:   0 4px 18px rgba(27,43,107,.13);
  --shadow-lg:   0 8px 32px rgba(27,43,107,.17);
  --shadow-xl:   0 16px 48px rgba(27,43,107,.22);
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full:9999px;
  --t:     .3s ease;
  --tf:    .15s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--gray-800); line-height: 1.65; background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }

.section-tag {
  display: inline-block; background: var(--blue-bg); color: var(--blue-med);
  font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem 1.1rem; border-radius: var(--r-full); margin-bottom: .75rem;
}
.section-tag.dark { background: var(--blue-dark); color: var(--white); }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800; color: var(--blue-dark); line-height: 1.2; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-600);
  max-width: 620px; margin: 0 auto; line-height: 1.75;
}
.text-blue   { color: var(--blue-dark); }
.text-med    { color: var(--blue-med);  }
.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; border-radius: var(--r-full);
  font-weight: 700; font-size: 1rem; transition: var(--t);
  cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--blue-med); color: var(--white);
  box-shadow: 0 4px 14px rgba(21,101,192,.35);
}
.btn-primary:hover {
  background: var(--blue-dk2); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21,101,192,.45);
}
.btn-dark { background: var(--blue-dark); color: var(--white); }
.btn-dark:hover { background: #142258; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--blue-med); border-color: var(--blue-med); }
.btn-outline:hover { background: var(--blue-med); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue-dark); }
.btn-white:hover { background: var(--blue-bg); }
.btn-ghost { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: var(--white); color: var(--blue-dark); }
.btn-lg   { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm   { padding: .45rem 1.25rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* === TOPBAR === */
.topbar { background: var(--blue-dark); color: var(--white); padding: .45rem 0; font-size: .78rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar-contacts { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.82); transition: var(--tf); }
.topbar-item:hover { color: #90CAF9; }
.topbar-item i { color: #90CAF9; font-style: normal; }
.topbar-right { color: rgba(255,255,255,.6); font-size: .76rem; }

/* === HEADER === */
.site-header-wrapper { position: sticky; top: 0; z-index: 1000; }
.header { position: relative; z-index: 10; background: var(--white); box-shadow: var(--shadow-md); transition: box-shadow var(--t); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--h-height); gap: 1.5rem; }

.logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-mark {
  width: 48px; height: 48px; background: var(--blue-dark); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.logo-mark::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 36%; background: var(--blue-med); }
.logo-mark span { position: relative; z-index: 1; color: var(--white); font-weight: 900; font-size: 18px; letter-spacing: -1px; font-style: italic; }
.logo-info { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 1.18rem; font-weight: 900; color: var(--blue-dark); letter-spacing: -.3px; }
.logo-sub  { font-size: .67rem; color: var(--blue-med); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* NAV */
.nav { display: flex; align-items: center; gap: .1rem; }
.nav-link {
  padding: .45rem .7rem; color: var(--gray-600); font-weight: 600; font-size: .95rem;
  border-radius: var(--r-md); transition: color var(--tf), background var(--tf); white-space: nowrap; position: relative;
  min-height: 44px; display: inline-flex; align-items: center;
}
.nav-link:hover, .nav-link.active { color: var(--blue-dark); background: var(--blue-bg2); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--blue-med); border-radius: var(--r-full);
}
.nav-cta {
  background: var(--blue-med) !important; color: var(--white) !important;
  border-radius: var(--r-full) !important; padding: .45rem 1.1rem !important;
}
.nav-item-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown {
  display: none;
  position: absolute; top: 100%; left: 0; padding-top: .5rem; z-index: 20;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown { display: block; }
.nav-dropdown-inner {
  display: flex; flex-direction: column; gap: .15rem;
  background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: .5rem;
}
.nav-dropdown-link {
  padding: .65rem .85rem; border-radius: var(--r-sm); color: var(--blue-dark);
  font-size: .875rem; font-weight: 600; text-decoration: none; transition: background var(--tf);
}
.nav-dropdown-link:hover { background: var(--blue-bg); }
.nav-cta:hover { background: var(--blue-dk2) !important; }
.nav-cta.active::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; border-radius: var(--r-md); transition: var(--tf); }
.hamburger:hover { background: var(--gray-100); }
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--blue-dark); border-radius: var(--r-full); transition: var(--t); }
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO HOME === */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1A3A8F 55%, var(--blue-med) 100%);
  color: var(--white); padding: 5.5rem 0 7rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 550px; height: 550px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 70px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.25);
  padding: .22rem 1rem; border-radius: var(--r-full); font-size: .78rem; font-weight: 700; margin-bottom: 1.25rem;
}
.hero-title { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.25rem; }
.hero-title .hl { color: #90CAF9; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.hero-stat {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px); padding: 1.25rem; border-radius: var(--r-lg); text-align: center;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  cursor: default;
}
.hero-stat:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(144,202,249,.45);
  transform: translateY(-2px);
}
.hero-stat-n {
  font-family: var(--font-heading);
  font-size: 2.25rem; font-weight: 800; color: #90CAF9; line-height: 1; margin-bottom: .25rem;
  text-shadow: 0 0 24px rgba(144,202,249,.4);
}
.hero-stat-l { font-size: .78rem; color: rgba(255,255,255,.72); font-weight: 500; letter-spacing: .02em; }

/* Hero visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px); border-radius: var(--r-xl); padding: 2rem;
  width: 100%; max-width: 420px;
}
.hero-card-title { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-bottom: 1rem; text-align: center; }
.hero-brands-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem; }
.hero-brand-box {
  background: var(--white); border-radius: var(--r-md);
  padding: .65rem .5rem; display: flex; align-items: center; justify-content: center; min-height: 50px;
}
.hb-k  { color: #1D73BE; font-weight: 900; font-size: .83rem; letter-spacing: -.5px; text-align: center; line-height: 1.2; }
.hb-km { color: #C8102E; font-weight: 900; font-size: .7rem; letter-spacing: -.3px; text-align: center; line-height: 1.2; }
.hb-br { color: #003087; font-weight: 900; font-size: .88rem; }
.hb-du { color: #004B9B; font-weight: 900; font-size: .88rem; }
.hb-ep { color: #1A3A8C; font-weight: 900; font-size: .88rem; }
.hero-card-div { height: 1px; background: rgba(255,255,255,.15); margin: 1.25rem 0; }
.hero-card-certs { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; }
.cert-mini { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); font-size: .7rem; font-weight: 600; padding: .18rem .65rem; border-radius: var(--r-full); border: 1px solid rgba(255,255,255,.22); }

/* === STATS BAR === */
.stats-bar { background: var(--gray-100); padding: 3.5rem 0; border-bottom: 1px solid var(--gray-200); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 1.5rem; border-right: 1px solid var(--gray-200); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 800; color: var(--blue-dark); line-height: 1; margin-bottom: .4rem;
}
.stat-number span { color: var(--blue-med); }
.stat-label { font-size: .84rem; color: var(--gray-600); font-weight: 500; line-height: 1.4; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-stat { transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* === TRUST BADGES === */
.trust-strip {
  background: var(--blue-dark);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--blue-med);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: .55rem;
  color: rgba(255,255,255,.88); font-size: .8rem; font-weight: 600;
  letter-spacing: .03em;
}
.trust-badge svg { flex-shrink: 0; opacity: .9; }

/* === SECTION TITLE HEADING FONT === */
.section-title { font-family: var(--font-heading); }
.hero-title    { font-family: var(--font-heading); }
.page-hero-title { font-family: var(--font-heading); }

/* === BRAND CARDS === */
.brands-row { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.brand-card {
  display: flex; flex-direction: column; align-items: center; gap: .65rem;
  padding: 1.5rem 2rem; border: 2px solid var(--gray-200); border-radius: var(--r-lg);
  transition: var(--t); min-width: 130px; text-align: center;
}
.brand-card:hover { border-color: var(--blue-med); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.brand-logo { font-size: 1.4rem; font-weight: 900; letter-spacing: -1px; }
.bl-k  { color: #1D73BE; }
.bl-km { color: #C8102E; font-size: 1rem; letter-spacing: -.3px; }
.bl-br { color: #003087; }
.bl-du { color: #004B9B; }
.bl-ep { color: #1A3A8C; }
.brand-rep { font-size: .72rem; color: var(--gray-600); font-weight: 500; }

/* === SERVICE CARDS (HOME) === */
.service-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 2rem 1.5rem; text-align: center; transition: var(--t);
  display: flex; flex-direction: column; align-items: center;
}
.service-card:hover { border-color: var(--blue-med); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover .sc-icon { background: var(--blue-med); color: var(--white); }
.sc-icon {
  width: 68px; height: 68px; border-radius: var(--r-xl);
  background: var(--blue-bg); color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1.25rem; transition: var(--t);
}
.sc-title { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .6rem; }
.sc-text  { color: var(--gray-600); font-size: .875rem; line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }

/* === WHY US ===
   Fondo claro a propósito: esta sección va entre .stats-bar y .cta-section,
   ambas azul marino oscuro — sin un respiro claro en medio, las tres se
   fundían en un solo bloque azul. Mantiene los mismos acentos de marca
   (azul-med, azul-dark) solo que invertidos sobre fondo claro. */
.why-us {
  background: var(--white);
  color: var(--blue-dark); padding: 5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.why-title    { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--blue-dark); margin-bottom: 1rem; line-height: 1.2; }
.why-subtitle { color: var(--gray-600); line-height: 1.75; margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1rem; }
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  padding: 1rem 1.25rem; border-radius: var(--r-lg);
}
.why-icon {
  width: 44px; height: 44px; background: var(--blue-med); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; color: var(--white);
}
.why-item-title { font-weight: 700; font-size: .95rem; margin-bottom: .2rem; color: var(--blue-dark); }
.why-item-text  { font-size: .82rem; color: var(--gray-600); line-height: 1.5; }
.why-features   { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.why-feature {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 1.5rem; text-align: center;
}
.why-feature-n { font-size: 2.25rem; font-weight: 900; color: var(--blue-med); margin-bottom: .25rem; }
.why-feature-t { font-size: .82rem; color: var(--gray-600); font-weight: 500; }

/* === CTA SECTION === */
.cta-section { background: var(--blue-dark); padding: 4.5rem 0; text-align: center; }
.cta-title    { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 900; color: var(--white) !important; margin-bottom: 1rem; }
.cta-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.85) !important; margin-bottom: 2rem; }
.cta-buttons  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === GOBIERNO TEASER === */
.gob-teaser { background: var(--gray-100); padding: 5rem 0; }
.gob-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  background: var(--white); border-radius: var(--r-xl); padding: 3rem; box-shadow: var(--shadow-md);
}
.gob-visual {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-med));
  border-radius: var(--r-lg); padding: 2.5rem; color: var(--white); text-align: center;
}
.gob-icon         { font-size: 3.5rem; margin-bottom: 1rem; }
.gob-visual-title { font-size: 1.4rem; font-weight: 800; margin-bottom: .5rem; }
.gob-visual-sub   { font-size: .88rem; color: rgba(255,255,255,.8); }
.gob-badges       { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; }
.gob-badge { background: rgba(255,255,255,.15); color: var(--white); font-size: .74rem; font-weight: 600; padding: .22rem .75rem; border-radius: var(--r-full); border: 1px solid rgba(255,255,255,.22); }

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1A3A8F 50%, var(--blue-med) 100%);
  color: var(--white); padding: 4rem 0 5rem; position: relative; overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero-tag {
  display: inline-block; background: rgba(255,255,255,.15); color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.25); padding: .22rem 1rem; border-radius: var(--r-full);
  font-size: .78rem; font-weight: 700; margin-bottom: .75rem;
}
.page-hero-title    { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.page-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 1.5rem; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; justify-content: center; font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--tf); }
.breadcrumb a:hover { color: #90CAF9; }

/* === CONTACT STRIP === */
.contact-strip { background: var(--blue-dark); padding: 2rem 0; }
.contact-strip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.contact-strip-item { padding: 1.25rem 1rem; border-right: 1px solid rgba(255,255,255,.12); text-align: center; }
.contact-strip-item:last-child { border-right: none; }
.cs-icon  { font-size: 1.5rem; color: #90CAF9; margin-bottom: .35rem; font-style: normal; }
.cs-label { font-size: .66rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: .2rem; }
.cs-value { color: var(--white); font-weight: 700; font-size: .84rem; transition: color var(--tf); }
a.cs-value:hover { color: #90CAF9; }

/* === GENERIC CARDS === */
.card { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; transition: var(--t); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.card-body  { padding: 1.5rem; }
.card-icon  { width: 50px; height: 50px; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.35rem; }
.ci-blue    { background: var(--blue-bg); color: var(--blue-dark); }
.ci-med     { background: var(--blue-bg); color: var(--blue-med);  }
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .6rem; }
.card-text  { color: var(--gray-600); line-height: 1.6; font-size: .9rem; margin-bottom: 1rem; }

/* === FEATURE LIST === */
.feature-list { display: flex; flex-direction: column; gap: .75rem; }
.feature-item { display: flex; align-items: flex-start; gap: .75rem; }
.feat-check {
  width: 22px; height: 22px; background: var(--blue-bg); color: var(--blue-med);
  border-radius: var(--r-full); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .68rem; font-weight: 700; margin-top: 2px;
}
.feat-text { color: var(--gray-600); font-size: .9rem; line-height: 1.5; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pricing-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--r-xl); padding: 2rem; transition: var(--t); position: relative; }
.pricing-card.featured { border-color: var(--blue-med); transform: scale(1.03); box-shadow: var(--shadow-xl); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue-med); color: var(--white); font-size: .7rem; font-weight: 700;
  padding: .22rem 1rem; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}
.pricing-name    { font-size: 1.25rem; font-weight: 800; color: var(--blue-dark); margin-bottom: .4rem; }
.pricing-desc    { font-size: .84rem; color: var(--gray-600); margin-bottom: 1.25rem; }
.pricing-divider { height: 1px; background: var(--gray-200); margin-bottom: 1.25rem; }
.pricing-from    { font-size: .72rem; color: var(--gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.pricing-amount  { font-size: 2rem; font-weight: 900; color: var(--blue-dark); line-height: 1; }
.pricing-period  { font-size: .82rem; color: var(--gray-600); margin-top: .2rem; margin-bottom: 1.5rem; }
.pricing-features { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.pricing-feat {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .85rem; color: var(--gray-600);
}
.pricing-feat::before {
  content: '✓'; min-width: 18px; height: 18px;
  background: var(--blue-bg); color: var(--blue-med);
  border-radius: var(--r-full); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .65rem; font-weight: 700; margin-top: 1px;
}

/* === PROCESS STEPS === */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 38px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(90deg, var(--blue-dark), var(--blue-med)); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.ps-num {
  width: 60px; height: 60px; background: var(--white); border: 3px solid var(--blue-med);
  color: var(--blue-med); border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; margin: 0 auto 1rem;
}
.ps-title { font-weight: 700; color: var(--blue-dark); margin-bottom: .4rem; font-size: .95rem; }
.ps-text  { font-size: .82rem; color: var(--gray-600); line-height: 1.5; }

/* === TIMELINE === */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue-dark), var(--blue-med)); }
.tl-item { position: relative; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--gray-200); }
.tl-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.tl-dot { position: absolute; left: -3.3rem; top: 4px; width: 26px; height: 26px; background: var(--blue-med); border: 3px solid var(--white); border-radius: var(--r-full); box-shadow: 0 0 0 2px var(--blue-med); }
.tl-year  { font-size: .76rem; font-weight: 700; color: var(--blue-med); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem; }
.tl-title { font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .5rem; }
.tl-text  { color: var(--gray-600); line-height: 1.6; font-size: .9rem; }

/* === PRODUCT GRID === */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.product-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; transition: var(--t); }
.product-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--blue-med); }
.product-img { background: var(--gray-100); height: 175px; display: flex; align-items: center; justify-content: center; font-size: 70px; position: relative; }
.product-badge { position: absolute; top: .6rem; right: .6rem; background: var(--blue-med); color: var(--white); font-size: .68rem; font-weight: 700; padding: .15rem .65rem; border-radius: var(--r-full); }
.product-body  { padding: 1.25rem; }
.product-brand { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-med); margin-bottom: .35rem; }
.product-name  { font-size: .98rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .75rem; }
.product-specs { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1rem; }
.product-spec  { background: var(--gray-100); color: var(--gray-600); font-size: .68rem; padding: .15rem .65rem; border-radius: var(--r-full); font-weight: 500; }
.filter-tabs   { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-tab {
  padding: .4rem 1.25rem; border-radius: var(--r-full); font-weight: 600; font-size: .84rem;
  border: 2px solid var(--gray-200); color: var(--gray-600); cursor: pointer;
  transition: border-color var(--tf), color var(--tf), background var(--tf);
}
.filter-tab.active, .filter-tab:hover { border-color: var(--blue-med); color: var(--blue-med); background: var(--blue-bg); }

/* === FORM === */
.form-group   { margin-bottom: 1.25rem; }
.form-label   { display: block; font-weight: 600; color: var(--blue-dark); margin-bottom: .5rem; font-size: .875rem; }
.form-control {
  width: 100%; padding: .75rem 1rem; border: 2px solid var(--gray-200);
  border-radius: var(--r-md); font-size: 1rem; color: var(--gray-800);
  background: var(--white); transition: border-color var(--tf), box-shadow var(--tf);
}
.form-control:focus { border-color: var(--blue-med); box-shadow: 0 0 0 3px rgba(21,101,192,.1); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-note { font-size: .75rem; color: var(--gray-600); margin-top: .4rem; }
.alert { padding: 1rem 1.25rem; border-radius: var(--r-md); font-size: .875rem; font-weight: 500; display: none; margin-top: 1rem; }
.alert-success { background: #E3F2FD; color: #0D47A1; border: 1px solid #90CAF9; }
.alert-error   { background: #FEECEB; color: #B71C1C; border: 1px solid #FFCDD2; }

/* === COVERAGE === */
.agencias-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.agencia-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 1.25rem; display: flex; align-items: flex-start; gap: .75rem; transition: var(--t);
}
.agencia-card:hover { border-color: var(--blue-med); box-shadow: var(--shadow-sm); }
.ag-num  { width: 34px; height: 34px; background: var(--blue-med); color: var(--white); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .84rem; flex-shrink: 0; }
.ag-name { font-weight: 700; color: var(--blue-dark); font-size: .9rem; margin-bottom: .2rem; }
.ag-loc  { font-size: .78rem; color: var(--gray-600); }
.ag-map  { display: inline-block; margin-top: .4rem; font-size: .75rem; color: var(--blue-med); font-weight: 600; text-decoration: none; transition: color var(--tf); }
.ag-map:hover { color: var(--blue-dark); }
.country-block  { margin-bottom: 3rem; }
.country-header { display: flex; align-items: center; gap: 1rem; padding-bottom: 1rem; margin-bottom: 1.5rem; border-bottom: 3px solid var(--blue-med); }
.country-flag  { font-size: 2rem; }
.country-name  { font-size: 1.4rem; font-weight: 800; color: var(--blue-dark); }
.country-count { background: var(--blue-bg); color: var(--blue-med); font-size: .76rem; font-weight: 700; padding: .2rem .75rem; border-radius: var(--r-full); }
.map-embed { width: 100%; height: 420px; border: none; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* === GOBIERNO PAGE === */
.gob-benefits { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.gob-benefit { background: var(--gray-50); border: 1px solid var(--gray-200); border-left: 4px solid var(--blue-med); border-radius: var(--r-md); padding: 1.25rem; }
.gob-benefit-title { font-weight: 700; color: var(--blue-dark); margin-bottom: .4rem; }
.gob-benefit-text  { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }
.cert-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cert-card  { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.5rem; text-align: center; transition: var(--t); }
.cert-card:hover { border-color: var(--blue-med); box-shadow: var(--shadow-md); }
.cert-icon  { font-size: 2.5rem; margin-bottom: .75rem; }
.cert-title { font-weight: 700; color: var(--blue-dark); margin-bottom: .4rem; }
.cert-text  { font-size: .82rem; color: var(--gray-600); line-height: 1.5; }

/* === TECH SERVICE === */
.tech-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tech-feature  { background: var(--gray-100); border-radius: var(--r-lg); padding: 2rem 1.5rem; text-align: center; transition: var(--t); }
.tech-feature:hover { background: var(--white); box-shadow: var(--shadow-md); }
.tf-icon  { font-size: 2.8rem; margin-bottom: 1rem; }
.tf-title { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .6rem; }
.tf-text  { color: var(--gray-600); font-size: .875rem; line-height: 1.6; }

/* === SUPPLIES === */
.supply-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.supply-cat  { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--r-lg); padding: 2rem 1.5rem; text-align: center; transition: var(--t); cursor: pointer; }
.supply-cat:hover, .supply-cat.active { border-color: var(--blue-med); box-shadow: var(--shadow-md); background: var(--blue-bg); }
.supply-cat-icon { font-size: 2.8rem; margin-bottom: .75rem; }
.supply-cat-name { font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .35rem; }
.supply-cat-desc { font-size: .82rem; color: var(--gray-600); }

/* === BADGES === */
.badge        { display: inline-flex; align-items: center; padding: .15rem .75rem; border-radius: var(--r-full); font-size: .74rem; font-weight: 600; }
.badge-blue   { background: var(--blue-bg); color: var(--blue-dark); }
.badge-med    { background: var(--blue-bg); color: var(--blue-med); }
.badge-white  { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.25); }

/* === INFO BOX === */
.info-box { background: var(--blue-bg); border: 1px solid rgba(21,101,192,.18); border-radius: var(--r-lg); padding: 1.5rem; margin-top: 1.5rem; }
.info-box-title { font-weight: 700; color: var(--blue-dark); margin-bottom: .5rem; }
.info-box-text  { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }

/* === CONTACT INFO CARDS === */
.contact-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.contact-info-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; transition: var(--t);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-med); }
.ci-icon-wrap { width: 46px; height: 46px; background: var(--blue-bg); color: var(--blue-med); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; font-style: normal; }
.ci-label { font-size: .7rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-bottom: .2rem; }
.ci-val   { font-weight: 700; color: var(--blue-dark); font-size: .95rem; line-height: 1.4; }
a.ci-val:hover { color: var(--blue-med); }

/* === SCROLL ANIMATION === */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === FOOTER === */
.footer { background: var(--black); color: var(--white); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo  { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-mark  { width: 42px; height: 42px; background: var(--blue-dark); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.footer-mark::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 36%; background: var(--blue-med); }
.footer-mark span { position: relative; z-index: 1; color: var(--white); font-weight: 900; font-size: 15px; font-style: italic; }
.footer-brand-name  { font-weight: 900; font-size: 1.05rem; color: var(--white); }
.footer-brand-since { font-size: .66rem; color: #90CAF9; font-weight: 700; }
.footer-desc { color: rgba(255,255,255,.58); font-size: .84rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-ci-list { display: flex; flex-direction: column; gap: .7rem; }
.footer-ci { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; }
.footer-ci i { color: #90CAF9; flex-shrink: 0; margin-top: 2px; font-style: normal; }
.footer-ci-1line { align-items: center; }
.footer-ci-1line i { margin-top: 0; line-height: 0; }
.footer-ci-info { color: rgba(255,255,255,.7); line-height: 1.4; }
.footer-ci-info a { color: rgba(255,255,255,.7); transition: color var(--tf); }
.footer-ci-info a:hover { color: #90CAF9; }
.footer-sec-title { font-size: .92rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 2px solid var(--blue-med); display: inline-block; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-link { color: rgba(255,255,255,.58); font-size: .84rem; transition: color var(--tf), transform var(--tf); display: flex; align-items: center; gap: .4rem; }
.footer-link::before { content: '›'; color: #90CAF9; font-size: 1rem; line-height: 1; }
.footer-flag { width: 16px; height: 16px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.footer-link:hover { color: #90CAF9; transform: translateX(4px); }
.footer-brand-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.footer-brand-tag { background: rgba(255,255,255,.07); color: rgba(255,255,255,.65); font-size: .7rem; font-weight: 600; padding: .18rem .65rem; border-radius: var(--r-full); border: 1px solid rgba(255,255,255,.1); transition: background var(--tf), color var(--tf), border-color var(--tf); }
.footer-brand-tag:hover { background: var(--blue-med); color: var(--white); border-color: var(--blue-med); }
.footer-divider { height: 1px; background: rgba(255,255,255,.1); margin: 1.5rem 0; }
.footer-bottom  { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy    { color: rgba(255,255,255,.42); font-size: .8rem; }
.footer-legal   { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.42); font-size: .8rem; transition: color var(--tf); }
.footer-legal a:hover { color: #90CAF9; }

/* === WHATSAPP FLOAT === */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; }
.wa-tooltip { background: var(--black); color: var(--white); font-size: .8rem; font-weight: 600; padding: .4rem 1rem; border-radius: var(--r-full); white-space: nowrap; opacity: 0; transform: translateX(8px); transition: opacity var(--t), transform var(--t); pointer-events: none; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn { width: 56px; height: 56px; background: #25D366; color: var(--white); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 18px rgba(37,211,102,.42); transition: var(--t); position: relative; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.52); }
.wa-btn::before { content: ''; position: absolute; inset: -5px; border: 2px solid rgba(37,211,102,.35); border-radius: var(--r-full); animation: wa-pulse 2.2s ease-in-out infinite; }
@keyframes wa-pulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 0; transform: scale(1.5); } }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2,1fr); }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .product-grid  { grid-template-columns: repeat(2,1fr); }
  .agencias-grid { grid-template-columns: repeat(2,1fr); }
  .contact-strip-grid { grid-template-columns: repeat(2,1fr); }
  .contact-strip-item:nth-child(2) { border-right: none; }
  .tech-features { grid-template-columns: repeat(2,1fr); }
  .cert-cards    { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  .nav { display: none; position: absolute; top: var(--h-height); left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; padding: 1rem; box-shadow: var(--shadow-lg); border-top: 1px solid var(--gray-200); }
  .nav.open { display: flex; }
  .nav-link { padding: .65rem 1rem; width: 100%; border-radius: var(--r-md); }
  .nav-item-dropdown { position: static; display: block; width: 100%; }
  .nav-dropdown { display: block; position: static; padding-top: 0; }
  .nav-dropdown-inner { display: flex; flex-direction: column; box-shadow: none; padding: 0 0 .5rem 1.5rem; min-width: 0; background: transparent; }
  .nav-dropdown-link { padding: .5rem .75rem; color: var(--gray-600); font-size: .82rem; }
  .hero { padding: 3.5rem 0 5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .about-grid .about-photo { height: 260px !important; }
  .gob-inner { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .product-grid  { grid-template-columns: 1fr; }
  .agencias-grid { grid-template-columns: 1fr; }
  .tech-features { grid-template-columns: 1fr; }
  .cert-cards    { grid-template-columns: 1fr; }
  .supply-cats   { grid-template-columns: 1fr; }
  .gob-benefits  { grid-template-columns: 1fr; }
  .why-features  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .hero-brands-grid  { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item  { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .contact-strip-item:last-child { border-bottom: none; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
  .process-steps  { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .brands-row  { gap: .75rem; }
  .brand-card  { min-width: 110px; padding: 1rem 1.25rem; }
}
@media print {
  .topbar, .site-header-wrapper, .whatsapp-float, .cta-section { display: none; }
}

/* === MEJORAS VISUALES === */

/* 1. Accent underline en títulos de secciones centradas */
.section-header .section-title {
  position: relative;
  padding-bottom: 1.1rem;
}
.section-header .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-med), var(--blue-lt));
  border-radius: 2px;
}

/* 2. Stats - hover sutil */
.stat-item { transition: background var(--t); }
.stat-item:hover { background: var(--white); }
.stat-item:hover .stat-number { color: var(--blue-med); }

/* 3. Dot animado verde (indicador "activo / en línea") */
.dot-live {
  display: inline-block;
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
  margin-right: .4rem;
  vertical-align: middle;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .dot-live { animation: none; } }
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0);   }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0);   }
}

/* 4. Why-us items — highlight al hover */
.why-item {
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.why-item:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  transform: translateX(4px);
}

/* 5. Service cards — línea de acento inferior */
.service-card {
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  border-bottom-color: var(--blue-med);
}

/* === ACCESIBILIDAD === */
:focus-visible {
  outline: 3px solid var(--blue-lt);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-dark);
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: var(--r-sm);
  z-index: 9999;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Headings: evita particiones extrañas en títulos multilínea */
.section-title,
.page-hero-title,
.hero-title,
.cta-title,
.why-title {
  text-wrap: balance;
}

/* Touch: elimina delay de 300ms en móvil */
.btn, .nav-link, .filter-tab, .brand-tab, .supply-cat,
.faq-question, .product-card, .service-card, .agencia-card,
.agency-filter-btn, .footer-link, .footer-brand-tag {
  touch-action: manipulation;
}
/* Inputs: el border-color + box-shadow sirve de foco, pero mantenemos outline para teclado */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.form-control:focus-visible {
  outline: 2px solid var(--blue-med);
  outline-offset: 2px;
}

/* Cursor en elementos interactivos que no son <button> ni <a> */
.product-card,
.brand-card,
.supply-cat,
.filter-tab,
.faq-question,
.agencia-card,
.cert-card,
.tech-feature,
.supply-cat { cursor: pointer; }

/* === MOTION REDUCIDO === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in          { opacity: 1; transform: none; transition: none; }
  .fade-in.visible  { opacity: 1; transform: none; }
}

/* ============================================================
   ★ ENTERPRISE UPGRADE — MODERN & STUNNING
   ============================================================ */

/* ── 1. HERO: ANIMATED MESH GRADIENT + ORBS ──────────────── */
@keyframes gradientDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.06); }
}
@keyframes floatOrbB {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50%       { transform: translateY(20px) scale(.94) rotate(8deg); }
}
@keyframes shimmerBtn {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 18px rgba(144,202,249,.3); }
  50%       { text-shadow: 0 0 38px rgba(144,202,249,.65), 0 0 6px rgba(144,202,249,.4); }
}
@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* Hero overhaul */
.hero {
  background:
    linear-gradient(135deg, #0d1b4b 0%, #1B2B6B 35%, #1A3A8F 65%, #1565C0 100%);
  background-size: 300% 300%;
  animation: gradientDrift 12s ease infinite;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,136,229,.22) 0%, transparent 70%);
  animation: floatOrb 9s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
/* Extra orb */
.hero .hero-orb {
  position: absolute;
  bottom: 80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,.18) 0%, transparent 70%);
  animation: floatOrbB 11s ease-in-out infinite;
  pointer-events: none;
}
/* Dot grid overlay on hero */
.hero .hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.hero .container, .hero .hero-grid { position: relative; z-index: 1; }

/* Gradient text hero highlight */
.hero-title .hl {
  background: linear-gradient(90deg, #90CAF9 0%, #64B5F6 40%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulseGlow 3.5s ease-in-out infinite;
  display: inline;
}

/* ── 2. SHIMMER PRIMARY BUTTON ───────────────────────────── */
.btn-primary {
  background: linear-gradient(
    90deg,
    #0D47A1 0%,
    #1565C0 20%,
    #1E88E5 45%,
    #90CAF9 55%,
    #1E88E5 70%,
    #1565C0 85%,
    #0D47A1 100%
  );
  background-size: 250% auto;
  animation: shimmerBtn 5s linear infinite;
  box-shadow: 0 4px 22px rgba(21,101,192,.45), 0 0 0 0 rgba(30,136,229,0);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(21,101,192,.55), 0 0 24px rgba(30,136,229,.25);
  animation: shimmerBtn 2.5s linear infinite;
}

/* ── 3. DOT-GRID SECTION BACKGROUND ─────────────────────── */
.dot-grid-bg {
  position: relative;
}
.dot-grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(21,101,192,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.dot-grid-bg > * { position: relative; z-index: 1; }

/* ── 4. DARK TECH SECTION ────────────────────────────────── */
.tech-dark-section {
  background: #080d1a;
  position: relative;
  overflow: hidden;
}
.tech-dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.tech-dark-section > .container { position: relative; z-index: 1; }

/* ── 5. GRADIENT BORDER CARD ─────────────────────────────── */
.gbc {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gbc::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r-lg) + 2px);
  background: linear-gradient(135deg, #1B2B6B 0%, #1565C0 50%, #1E88E5 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}
.gbc:hover::before { opacity: 1; }
.gbc:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(27,43,107,.2); border-color: transparent; }

/* Service cards as gbc */
.service-card {
  position: relative;
  border-bottom: none;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r-lg) + 2px);
  background: linear-gradient(135deg, #1B2B6B, #1565C0, #1E88E5);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,43,107,.18); border-color: transparent; }

/* Icon gradient on hover */
.service-card:hover .sc-icon {
  background: linear-gradient(135deg, #1B2B6B, #1565C0);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21,101,192,.4);
}
.sc-icon { transition: background .3s, color .3s, box-shadow .3s; }

/* ── 6. TECH FEATURE CARDS UPGRADE ──────────────────────── */
.tech-feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.tech-feature::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1B2B6B, #1E88E5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.tech-feature:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(27,43,107,.15); }
.tech-feature:hover::after { transform: scaleX(1); }

/* ── 7. PAGE HERO UPGRADE ────────────────────────────────── */
.page-hero {
  background:
    linear-gradient(135deg, #0d1b4b 0%, #1B2B6B 40%, #1565C0 100%);
  background-size: 200% 200%;
  animation: gradientDrift 10s ease infinite;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }

/* Page hero tag upgraded */
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(8,13,26,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: .3rem 1rem;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

/* ── 8. WHY-US — sección clara (a propósito, ver nota junto a la
   regla base .why-us más arriba: rompe la racha de 3 secciones azul
   marino seguidas entre .stats-bar y .cta-section) ── */
.why-us { position: relative; }
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.why-us > .container { position: relative; z-index: 1; }

.why-icon {
  background: linear-gradient(135deg, #1565C0, #1E88E5);
  box-shadow: 0 4px 16px rgba(21,101,192,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-item:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 24px rgba(21,101,192,.55);
}

.why-feature {
  border-radius: var(--r-xl);
  transition: background .25s, border-color .25s, transform .25s;
}
.why-feature:hover {
  background: var(--blue-bg);
  border-color: var(--blue-med);
  transform: translateY(-4px);
}
.why-feature-n {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
}

/* ── 9. CTA SECTION UPGRADE ──────────────────────────────── */
.cta-section {
  background:
    linear-gradient(135deg, #080d1a 0%, #0D47A1 50%, #1B2B6B 100%);
  background-size: 200% 200%;
  animation: gradientDrift 10s ease infinite;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-heading); }

/* ── 10. STATS BAR UPGRADE ───────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #0d1b4b 0%, #1B2B6B 100%);
  border-bottom: none;
}
.stat-item { border-right-color: rgba(255,255,255,.1); transition: background .2s; }
.stat-item:hover { background: rgba(255,255,255,.06); }
.stat-number {
  background: linear-gradient(90deg, #90CAF9 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-number span { -webkit-text-fill-color: initial; color: #64B5F6; }
.stat-label { color: rgba(255,255,255,.65); }

/* ── 11. PRODUCT CARD UPGRADE ────────────────────────────── */
.product-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1B2B6B, #1E88E5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,43,107,.18); border-color: var(--blue-med); }
.product-card:hover::after { transform: scaleX(1); }
.product-img { background: linear-gradient(135deg, #EEF4FF 0%, #E3F2FD 100%); }

/* ── 12. SECTION HEADER ACCENT LINE ANIMATE ─────────────── */
.section-header .section-title::after {
  animation: lineGrow .8s cubic-bezier(.22,1,.36,1) both;
  animation-play-state: paused;
}
.section-header.visible .section-title::after {
  animation-play-state: running;
}

/* ── 13. TRUST STRIP UPGRADE ─────────────────────────────── */
.trust-strip {
  background: linear-gradient(90deg, #080d1a 0%, #0d1b4b 50%, #080d1a 100%);
  border-bottom: 1px solid rgba(21,101,192,.4);
  padding: 1rem 0;
}
.trust-badge {
  transition: color .2s;
  padding: .35rem .75rem;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.trust-badge:hover {
  border-color: rgba(30,136,229,.35);
  background: rgba(30,136,229,.1);
}

/* ── 14. AGENCIA CARD UPGRADE ────────────────────────────── */
.agencia-card {
  border-radius: var(--r-xl);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.agencia-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27,43,107,.13);
  border-color: var(--blue-med);
}
.ag-num {
  background: linear-gradient(135deg, #1B2B6B, #1565C0);
  box-shadow: 0 2px 8px rgba(21,101,192,.35);
}

/* ── 15. SUPPLY CATEGORY CARDS ───────────────────────────── */
.supply-cat {
  border-radius: var(--r-xl);
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
}
.supply-cat:hover, .supply-cat.active {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(27,43,107,.16);
  border-color: var(--blue-med);
  background: linear-gradient(135deg, #EEF4FF, #E3F2FD);
}

/* ── 16. CONTACT INFO CARD UPGRADE ──────────────────────── */
.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27,43,107,.13);
}
.ci-icon-wrap {
  background: linear-gradient(135deg, #1B2B6B, #1565C0);
  color: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 10px rgba(21,101,192,.3);
}

/* ── 17. SECTION-TAG PULSE ───────────────────────────────── */
.section-tag {
  position: relative;
  overflow: hidden;
}
.section-tag::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: tagShimmer 3.5s ease-in-out infinite;
}
@keyframes tagShimmer {
  0%   { left: -100%; }
  40%, 100% { left: 150%; }
}

/* ── 18. FOOTER MARK GRADIENT ────────────────────────────── */
.footer-mark, .logo-mark {
  background: linear-gradient(135deg, #0d1b4b, #1B2B6B);
}

/* ── 19. CARD BASE CURSOR ────────────────────────────────── */
.service-card, .product-card, .tech-feature,
.supply-cat, .agencia-card, .contact-info-card,
.why-feature, .cert-card { cursor: pointer; }

/* ── 20. PROCESS STEP UPGRADE ────────────────────────────── */
.ps-num {
  background: linear-gradient(135deg, #EEF4FF, #E3F2FD);
  border-color: var(--blue-med);
  box-shadow: 0 4px 16px rgba(21,101,192,.2);
  transition: transform .2s, box-shadow .2s;
}
.process-step:hover .ps-num {
  transform: scale(1.12);
  background: linear-gradient(135deg, #1565C0, #1E88E5);
  color: white;
  box-shadow: 0 6px 24px rgba(21,101,192,.4);
}

/* ── 21. BRAND BAR UPGRADE ───────────────────────────────── */
.brands-bar {
  background: linear-gradient(90deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.brand-logo-item {
  padding: .5rem .85rem;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  transition: border-color .2s, background .2s, transform .2s, filter .2s, opacity .2s;
}
.brand-logo-item:hover {
  border-color: var(--blue-med);
  background: var(--blue-bg);
  transform: translateY(-3px);
  filter: none;
  opacity: 1;
}

/* ── 22. TIMELINE UPGRADE ────────────────────────────────── */
.tl-dot {
  background: linear-gradient(135deg, #1565C0, #1E88E5);
  box-shadow: 0 0 0 4px rgba(21,101,192,.2);
}

/* ── 23. PRICING CARD FEATURED ───────────────────────────── */
.pricing-card.featured {
  background: linear-gradient(135deg, #0d1b4b, #1B2B6B);
  color: var(--white);
  border-color: #1565C0;
}
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-amount { color: var(--white); }
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-from,
.pricing-card.featured .pricing-period,
.pricing-card.featured .pricing-feat  { color: rgba(255,255,255,.75); }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.15); }
.pricing-card.featured .pricing-feat::before {
  background: rgba(30,136,229,.3);
  color: #90CAF9;
}

/* ── 24. WHY-FEATURES COUNTER GLOW ──────────────────────── */
.hero-stat-n, .why-feature-n {
  animation: pulseGlow 4s ease-in-out infinite;
}

/* ── RESPONSIVE FIXES FOR NEW STYLES ─────────────────────── */
@media (max-width: 768px) {
  .trust-strip-inner { gap: .75rem; }
  .trust-badge { font-size: .72rem; }
  .hero::before { width: 300px; height: 300px; }
}


/* ============================================================
   ANIMATIONS — Grupo Printer
   Hero orbs · Scroll entrance · Hover lifts · Counters
   ============================================================ */

/* ── Keyframes ─────────────────────────────────────────────── */
@keyframes gp-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -18px) scale(1.04); }
  66%       { transform: translate(-18px, 14px) scale(0.96); }
}
@keyframes gp-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-24px, 22px) scale(1.06); }
  70%       { transform: translate(18px, -12px) scale(0.94); }
}
@keyframes gp-float-c {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(14px, -20px); }
}
@keyframes gp-hero-bg {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes gp-count-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); color: #90CAF9; }
  100% { transform: scale(1); }
}

/* ── Fondo animado del hero ─────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1B2B6B 0%, #163584 30%, #1565C0 65%, #0D47A1 100%) !important;
  background-size: 240% 240% !important;
  animation: gp-hero-bg 14s ease infinite;
}
.page-hero {
  background: linear-gradient(135deg, #1B2B6B 0%, #1A3A8F 50%, #1565C0 100%) !important;
  background-size: 240% 240% !important;
  animation: gp-hero-bg 14s ease infinite;
}

/* ── Hero orbs flotantes ────────────────────────────────────── */
.gp-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.gp-orb-1 {
  width: 500px; height: 500px;
  top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  animation: gp-float-a 9s ease-in-out infinite;
}
.gp-orb-2 {
  width: 340px; height: 340px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(100,160,255,.09) 0%, transparent 65%);
  animation: gp-float-b 12s ease-in-out infinite;
}
.gp-orb-3 {
  width: 200px; height: 200px;
  top: 28%; right: 24%;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 60%);
  animation: gp-float-c 7s ease-in-out infinite reverse;
}

/* ── Scroll entrance — estados base ────────────────────────── */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity .65s cubic-bezier(.22,.61,.36,1),
              transform .65s cubic-bezier(.22,.61,.36,1);
}
[data-anim="up"]    { transform: translateY(36px); }
[data-anim="left"]  { transform: translateX(-36px); }
[data-anim="right"] { transform: translateX(36px); }
[data-anim="fade"]  { }
[data-anim="scale"] { transform: scale(.92); }

[data-anim].anim-done {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* ── Hover: elevación de tarjetas ───────────────────────────── */
.value-card,
.propuesta-item,
.traj-stat,
.team-card,
.agency-card,
.product-card,
.service-card,
.solution-card,
.icon-card,
.stat-item,
.brand-card,
.timeline-card {
  transition: transform .3s cubic-bezier(.22,.61,.36,1),
              box-shadow .3s cubic-bezier(.22,.61,.36,1) !important;
  will-change: transform, box-shadow;
}
.value-card:hover,
.propuesta-item:hover,
.traj-stat:hover,
.stat-item:hover,
.brand-card:hover,
.timeline-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 44px rgba(27,43,107,.2) !important;
}
.team-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 52px rgba(27,43,107,.22) !important;
}
.product-card:hover,
.service-card:hover,
.solution-card:hover,
.icon-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 48px rgba(27,43,107,.2) !important;
}
.agency-card:hover {
  background: rgba(255,255,255,.14) !important;
  transform: translateY(-4px) !important;
  border-color: rgba(255,255,255,.3) !important;
}

/* ── Pop al terminar el contador ─────────────────────────────── */
.num.anim-done,
.hero-stat-n.anim-done,
.stat-number.anim-done {
  animation: gp-count-pop .45s ease;
}

/* ── Respeto a prefers-reduced-motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-anim],
  [data-anim].anim-done {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .gp-orb          { animation: none !important; }
  .hero, .page-hero { animation: none !important; }
}

/* ── Social Icons Footer ── */
.footer-social { display:flex; gap:.6rem; margin-top:1.25rem; flex-wrap:wrap; }
.footer-social-link {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s, transform .2s, border-color .2s;
  text-decoration:none;
}
.footer-social-link:hover { background:var(--blue-med); border-color:var(--blue-med); transform:translateY(-3px); }
.footer-social-link.tiktok-hr:hover { background:#007336; border-color:#007336; }
.footer-social-link svg { width:17px; height:17px; fill:#fff; }

/* eBAT+ brand tag diferenciado */
.footer-brand-tag.ebat {
  background:rgba(0,115,54,.18);
  border-color:rgba(0,115,54,.45);
  color:#5abb82;
}
.footer-brand-tag.ebat:hover { background:#007336; color:#fff; border-color:#007336; }

/* ============================================================
   COMPONENTES REUTILIZABLES — barra de marcas, carruseles de
   tarjetas de acceso, hero con imagen de fondo
   (movidos desde el <style> inline de index.html)
   ============================================================ */
.hero-img {
  background: linear-gradient(135deg,rgba(27,43,107,.92) 0%,rgba(21,101,192,.85) 100%),
    url('../img/imagenestudiokm.jpg') center/cover no-repeat;
}
/* ── BRAND LOGOS BAR ── */
.brands-bar { background:var(--gray-100); border-top:1px solid #eee; border-bottom:1px solid #eee; padding:2.5rem 0; }
.brands-bar-inner { display:flex; align-items:center; justify-content:center; gap:.5rem; flex-wrap:wrap; }
.brand-logo-item { display:flex; align-items:center; justify-content:center; filter:grayscale(20%); transition:.3s; opacity:.85; padding:.5rem .65rem; }
.brand-logo-item:hover { filter:grayscale(0); opacity:1; transform:scale(1.06); }
.brand-logo-item img { height:40px; width:auto; object-fit:contain; }
@media(max-width:600px){ .brands-bar-inner { gap:1rem; } .brand-logo-item img { height:32px; } }
/* ── ACCESS CARDS (marquee horizontal) ── */
.access-marquee-wrap { position:relative; }
.access-marquee { overflow-x:auto; overflow-y:hidden; scrollbar-width:none; -ms-overflow-style:none; }
.access-marquee::-webkit-scrollbar { display:none; }
.access-track { display:flex; width:max-content; }
.access-track-set { display:flex; gap:1.5rem; flex-shrink:0; padding-right:1.5rem; }
.access-card { flex:0 0 320px; width:320px; border-radius:var(--r-xl); overflow:hidden; position:relative; min-height:220px; display:flex; flex-direction:column; justify-content:flex-end; }
.access-card-bg { position:absolute; inset:0; background-size:cover; background-position:center; z-index:0; transition:.4s; }
.access-card:hover .access-card-bg { transform:scale(1.05); }
.access-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(27,43,107,.88) 0%,rgba(27,43,107,.2) 100%); z-index:1; }
.access-card-content { position:relative; z-index:2; padding:1.75rem; color:#fff; }
.access-card-icon { font-size:2rem; margin-bottom:.5rem; }
.access-card-title { font-size:1.2rem; font-weight:800; margin-bottom:.4rem; }
.access-card-text { font-size:.84rem; opacity:.85; margin-bottom:1rem; line-height:1.5; }
.access-nav {
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:44px; height:44px; border-radius:50%; border:1px solid var(--gray-200);
  background:#fff; box-shadow:var(--shadow-md); cursor:pointer;
  display:flex; align-items:center; justify-content:center; color:var(--blue-dark,#1B2B6B);
  transition:.2s;
}
.access-nav:hover { background:var(--blue-dark,#1B2B6B); color:#fff; }
.access-nav-prev { left:-6px; }
.access-nav-next { right:-6px; }
@media(max-width:768px){
  .brands-bar-inner{gap:1.5rem;}
  .access-card{flex-basis:270px;width:270px;}
  .access-nav{width:36px;height:36px;}
  .access-nav-prev{left:-2px;} .access-nav-next{right:-2px;}
}
/* ── NOVEDADES (carrusel de banners de Mercadeo) ── */
.news-card { flex:0 0 820px; width:820px; min-height:0; aspect-ratio:1140/490; justify-content:flex-start; box-shadow:var(--shadow-sm); }
.news-card img { width:100%; height:100%; object-fit:cover; display:block; transition:.4s; }
.news-card:hover img { transform:scale(1.05); }
@media(max-width:768px){
  .news-card{flex-basis:400px;width:400px;}
}
