/* =============================================
   LOCALIZAIDIOMA — ESTILOS CORPORATIVOS
   ============================================= */

/* ── Variables ── */
:root {
  --azul:        #1a56db;
  --azul-osc:    #1e3a8a;
  --azul-med:    #2563eb;
  --azul-light:  #dbeafe;
  --azul-bg:     #eff6ff;
  --naranja:     #f5a623;
  --naranja-b:   #d4891a;
  --nav-dark:    #050c20;
  --nav-dark2:   #0a1a3a;
  --blanco:      #ffffff;
  --gris-1:      #f8fafc;
  --gris-2:      #f1f5f9;
  --gris-3:      #e2e8f0;
  --gris-4:      #94a3b8;
  --texto:       #1e293b;
  --texto-2:     #475569;
  --sombra:      0 4px 24px rgba(0,0,0,.08);
  --sombra-md:   0 8px 32px rgba(0,0,0,.12);
  --radio:       8px;
  --radio-lg:    14px;
  --trans:       .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--texto);
  background: var(--blanco);
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utilidades ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ── Fade-up reveal ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(5,12,32,.72) 0%, rgba(8,18,45,.50) 100%);
  border-bottom: 1px solid rgba(245,166,35,.18);
  transition: background .5s ease, box-shadow .5s ease, border-color .5s ease;
}
#header.scrolled,
#header.menu-open {
  background: linear-gradient(135deg, rgba(5,10,28,.98) 0%, rgba(10,22,54,.98) 50%, rgba(7,14,38,.98) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(245,166,35,.22);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 82px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  transition: height .45s ease;
}
#header.scrolled .header-inner { height: 66px; }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  transition: height .45s ease;
}
#header.scrolled .nav-logo img { height: 42px; }

/* Menú */
nav { flex: 1; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
  transition: color .3s ease;
}
/* underline naranja animado desde el centro */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%; right: 50%;
  height: 1.5px;
  background: var(--naranja);
  transition: left .3s ease, right .3s ease;
  border-radius: 2px;
}
.nav-link svg { transition: transform var(--trans); }
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 14px; right: 14px;
}
.has-mega:hover .nav-link svg { transform: rotate(180deg); }

/* Botón CTA header */
.btn-header {
  flex-shrink: 0;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--naranja) 0%, var(--naranja-b) 100%);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 3px 14px rgba(245,166,35,.35);
  transition: box-shadow .3s ease, transform .3s ease;
  white-space: nowrap;
  border: none;
}
.btn-header:hover {
  box-shadow: 0 6px 22px rgba(245,166,35,.52);
  transform: translateY(-1px);
}

/* Toggle móvil */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: all var(--trans);
}

/* ── MEGA MENÚ ── */
.has-mega { position: relative; }

.mega-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 880px;
  background: rgba(5,10,28,.97);
  border: 1px solid rgba(245,166,35,.18);
  border-radius: var(--radio-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 900;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.has-mega:hover .mega-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: rgba(245,166,35,.10);
  border-bottom: 1px solid rgba(245,166,35,.16);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mega-header-bar .mega-bar-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--naranja);
  border: 1px solid rgba(245,166,35,.35);
  padding: 2px 10px;
  border-radius: 20px;
}

.mega-body {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 20px 24px 24px;
}
.mega-col {
  flex: 1;
  min-width: 0;
  padding: 0 16px 0 0;
}
.mega-col-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--naranja);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245,166,35,.18);
  line-height: 1.3;
  word-break: break-word;
}
.mega-col ul li { margin-bottom: 3px; }
.mega-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  display: block;
  padding: 4px 0;
  transition: color var(--trans), padding-left var(--trans);
}
.mega-col ul a:hover {
  color: var(--naranja);
  padding-left: 5px;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background:
    linear-gradient(to bottom, rgba(5,10,28,.40) 0%, transparent 26%, transparent 72%, rgba(5,10,28,.65) 100%),
    linear-gradient(135deg, #050a1c 0%, #0d2d5e 60%, #1a3a6e 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Patrón diagonal sutil */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><path d="M0 80L80 0" stroke="rgba(255,255,255,.03)" stroke-width="1"/></svg>') repeat;
  pointer-events: none;
}
/* Resplandor naranja sutil en la parte superior */
.hero::after {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 150px 0 80px;
}
.hero-text { color: #fff; }

.hero-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--naranja);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.hero-text h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--naranja);
}
.hero-accent { color: var(--naranja); font-style: italic; }
.hero-text > p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Botones hero — estilo pill */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--naranja);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(245,166,35,.38);
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans);
}
.btn-primary:hover {
  background: var(--naranja-b);
  box-shadow: 0 6px 24px rgba(245,166,35,.55);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: #fff;
  color: #0d2d5e;
  font-size: .95rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.btn-secondary:hover {
  background: var(--naranja);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats hero */
.hero-stats {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radio-lg);
}
.hstat { text-align: center; flex: 1; }
.hstat-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--naranja);
  line-height: 1;
}
.hstat-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 5px;
}
.hstat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  margin: 0 4px;
}

/* Hero imagen (legacy, kept for compat) */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(245,166,35,.15);
}
.hero-img-wrap img { width: 100%; height: auto; display: block; }

/* ── Hero decoración orbital ── */
.hero-deco {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbe central */
.hd-orb {
  position: absolute;
  width: 148px; height: 148px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,166,35,.14) 0%, rgba(10,26,60,.7) 100%);
  border: 1.5px solid rgba(245,166,35,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 48px rgba(245,166,35,.18), inset 0 0 32px rgba(245,166,35,.08);
}
.hd-orb-glow {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,166,35,.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: -1;
}
.hd-orb-num {
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--naranja);
  line-height: 1;
}
.hd-orb-num sup { font-size: .58em; }
.hd-orb-sub {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
  margin-top: 5px;
}

/* Anillos */
.hd-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
}
.hd-ring-1 {
  width: 220px; height: 220px;
  border: 1.5px solid rgba(245,166,35,.32);
  animation: spin-cw 16s linear infinite;
  transform: translate(-50%,-50%) rotate(0deg);
}
.hd-ring-2 {
  width: 320px; height: 320px;
  border: 1px solid rgba(255,255,255,.12);
  animation: spin-ccw 26s linear infinite;
  transform: translate(-50%,-50%) rotate(0deg);
}
.hd-ring-3 {
  width: 430px; height: 430px;
  border: 1px dashed rgba(245,166,35,.10);
  animation: spin-cw 42s linear infinite;
  transform: translate(-50%,-50%) rotate(0deg);
}

/* Puntos en anillos */
.hd-dot {
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  box-shadow: 0 0 8px rgba(255,255,255,.4);
}
.hd-dot.orange {
  background: var(--naranja);
  box-shadow: 0 0 14px rgba(245,166,35,.65);
}

@keyframes spin-cw {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes spin-ccw {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(-360deg); }
}

/* Pastillas de idioma */
.hd-lang {
  position: absolute;
  padding: 5px 13px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lang-float 4.5s ease-in-out infinite;
}
.hd-lang:nth-child(5)  { animation-delay: .5s; }
.hd-lang:nth-child(6)  { animation-delay: 1.1s; }
.hd-lang:nth-child(7)  { animation-delay: 1.7s; }
.hd-lang:nth-child(8)  { animation-delay: 2.3s; }
.hd-lang:nth-child(9)  { animation-delay: 0.8s; }
.hd-lang:nth-child(10) { animation-delay: 1.4s; }
.hd-lang:nth-child(11) { animation-delay: 2.0s; }
.hd-lang:nth-child(12) { animation-delay: 2.6s; }
.hd-lang:nth-child(13) { animation-delay: 0.3s; }
.hd-lang:nth-child(14) { animation-delay: 1.9s; }
.hd-lang:nth-child(15) { animation-delay: 3.1s; }
.hd-lang:nth-child(16) { animation-delay: 0.7s; }
@keyframes lang-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ══════════════════════════════════════════
   SECCIONES
══════════════════════════════════════════ */
.section { padding: 96px 0; }
.section-alt  { background: var(--gris-1); }
.section-blue { background: var(--azul-bg); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azul);
  background: var(--azul-bg);
  border: 1px solid var(--azul-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-header { margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--texto);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 17px;
  color: var(--texto-2);
  max-width: 580px;
  margin: 0 auto;
}
.accent-blue   { color: var(--azul); }
.accent-orange { color: var(--naranja); }

/* ══════════════════════════════════════════
   SERVICIOS PRINCIPALES
══════════════════════════════════════════ */
.svc-main {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background: #f1f5f9;
}

/* Capa parallax — se mueve vía JS */
.svc-main-parallax {
  position: absolute;
  inset: -80px 0;
  pointer-events: none;
  will-change: transform;
  background:
    radial-gradient(ellipse 900px 700px at 12% 45%, rgba(219,234,254,.75) 0%, transparent 100%),
    radial-gradient(ellipse 700px 600px at 88% 55%, rgba(254,243,199,.8) 0%, transparent 100%),
    radial-gradient(ellipse 500px 400px at 50% 100%, rgba(204,251,241,.5) 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1.2' fill='rgba(100%2C116%2C139%2C0.10)'/%3E%3C/svg%3E") 0 0 / 44px 44px,
    #f1f5f9;
}

/* Encabezado */
.svc-main-header { margin-bottom: 64px; }
.svc-main-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul);
  border: 1px solid var(--azul-light);
  background: var(--azul-bg);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.svc-main-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--texto);
  line-height: 1.18;
  margin-bottom: 14px;
}
.svc-accent {
  background: linear-gradient(90deg, var(--azul-med), var(--naranja));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-main-header p { color: var(--texto-2); font-size: 16px; }

/* Panel grid */
.svc-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-panel {
  background: #fff;
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  transition: transform .32s ease, box-shadow .32s ease;
  display: flex;
  flex-direction: column;
}
.svc-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.06);
}

/* Cabecera coloreada */
.svc-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  position: relative;
}
.svc-head-blue   { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); }
.svc-head-orange { background: linear-gradient(135deg, #d4891a 0%, #d97706 60%, #f59e0b 100%); }
.svc-head-teal   { background: linear-gradient(135deg, #0d2d5e 0%, #2563eb 100%); }

.svc-panel-num {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,.35);
  line-height: 1;
  flex-shrink: 0;
}
.svc-panel-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.9);
}
.svc-panel-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #d4891a;
  background: #fff7ed;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Cuerpo de la tarjeta */
.svc-panel-body {
  padding: 28px 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-panel-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--texto);
  line-height: 1.25;
  margin-bottom: 10px;
}
.svc-panel-desc {
  font-size: 13.5px;
  color: var(--texto-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.svc-panel-list { list-style: none; margin-bottom: 24px; flex: 1; }
.svc-panel-list li { border-bottom: 1px solid var(--gris-3); }
.svc-panel-list li:last-child { border-bottom: none; }
.svc-panel-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--texto-2);
  transition: color .2s ease, padding-left .2s ease;
}
.svc-panel-list a::after {
  content: '→';
  font-size: 11px;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity .2s ease, transform .2s ease;
  flex-shrink: 0;
}
.svc-panel-list a:hover { color: var(--texto); padding-left: 5px; }
.svc-panel-list a:hover::after { opacity: 1; transform: translateX(0); }

.svc-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: gap .2s ease;
  margin-top: auto;
}
.svc-panel-cta:hover { gap: 9px; }
.svc-cta-blue   { color: var(--azul-med); }
.svc-cta-orange { color: #d97706; }
.svc-cta-teal   { color: #2563eb; }

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-top: 3px solid var(--azul);
  border-radius: var(--radio);
  padding: 28px 22px;
  box-shadow: var(--sombra);
  transition: transform var(--trans), box-shadow var(--trans);
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-md);
}
.feat-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.feat-card h4 { font-size: 1rem; font-weight: 700; color: var(--texto); margin-bottom: 8px; }
.feat-card p  { font-size: 14px; color: var(--texto-2); line-height: 1.65; }

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--azul-osc), var(--azul-med));
  padding: 96px 0;
  text-align: center;
  color: #fff;
}
.cta-icon-wrap { font-size: 48px; margin-bottom: 16px; }
.cta-section .section-label {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  display: flex;
  justify-content: center;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 16px 0 12px;
  line-height: 1.2;
}
.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
}
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--azul-osc);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo { height: 52px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: background var(--trans);
}
.footer-socials a:hover { background: var(--azul); }

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: #fff; }
.footer-contact-list li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.footer-contact-list a { color: rgba(255,255,255,.6); transition: color var(--trans); }
.footer-contact-list a:hover { color: #fff; }
.footer-certs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-certs span {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px;
  color: rgba(255,255,255,.7);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ══════════════════════════════════════════
   PÁGINAS INTERIORES
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--azul-osc) 0%, var(--azul-med) 100%);
  color: #fff;
  padding-bottom: 64px;
}
.page-hero .container { padding-top: 136px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color var(--trans); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.35); }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  max-width: 620px;
  margin-bottom: 28px;
}
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.page-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
}

/* Layout interior */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  padding: 72px 0;
}

/* Lista de servicios */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.srv-item {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-left: 4px solid var(--azul);
  border-radius: var(--radio);
  padding: 24px;
  box-shadow: var(--sombra);
  transition: transform var(--trans), box-shadow var(--trans);
}
.srv-item:hover { transform: translateY(-4px); box-shadow: var(--sombra-md); }
.srv-item-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.srv-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--texto); }
.srv-item p  { font-size: 14px; color: var(--texto-2); line-height: 1.65; margin-bottom: 14px; }
.srv-item-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.srv-item-tags span {
  font-size: 12px;
  padding: 3px 9px;
  background: var(--azul-bg);
  color: var(--azul);
  border-radius: 4px;
  font-weight: 500;
}
.srv-item-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--azul);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--trans);
}
.srv-item-link:hover { gap: 8px; }

/* Sidebar */
.sidebar-card {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: var(--radio-lg);
  padding: 28px;
  box-shadow: var(--sombra);
  position: sticky;
  top: 96px;
}
.sidebar-card h4 { font-size: 1rem; font-weight: 700; color: var(--texto); margin-bottom: 8px; }
.sidebar-card p  { font-size: 14px; color: var(--texto-2); line-height: 1.65; margin-bottom: 20px; }
.sidebar-contact-list { list-style: none; margin-bottom: 20px; }
.sidebar-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--texto-2);
  margin-bottom: 10px;
}
.sidebar-contact-list a { color: var(--azul); transition: color var(--trans); }
.sidebar-contact-list a:hover { color: var(--azul-osc); }
.btn-full {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--azul);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radio);
  margin-top: 8px;
  transition: background var(--trans);
}
.btn-full:hover { background: var(--azul-osc); }
.btn-full.outline {
  background: none;
  border: 1.5px solid var(--azul);
  color: var(--azul);
}
.btn-full.outline:hover { background: var(--azul-bg); }

/* Servicios relacionados */
.related-section { padding: 60px 0; background: var(--gris-1); }
.related-section h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; color: var(--texto); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.related-card {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: var(--radio);
  padding: 18px;
  transition: border-color var(--trans), transform var(--trans);
  text-decoration: none;
  display: block;
}
.related-card:hover { border-color: var(--azul); transform: translateY(-3px); }
.related-card strong { display: block; font-weight: 700; color: var(--texto); margin-bottom: 4px; font-size: 14px; }
.related-card span  { color: var(--texto-2); font-size: 13px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .page-layout   { grid-template-columns: 1fr; }
  .sidebar-card  { position: static; }
}
@media (max-width: 900px) {
  .hero-layout     { grid-template-columns: 1fr; text-align: center; }
  .hero-visual     { display: none; }
  .hero-deco       { display: none; }
  .hero-btns       { justify-content: center; }
  .hero-stats      { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .svc-panel-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .mega-drop       { display: none; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .btn-header  { display: none; }
  .nav-toggle  { display: flex; margin-left: auto; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,14,38,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 24px;
    overflow-y: auto;
    gap: 4px;
    border-top: 1px solid rgba(245,166,35,.2);
  }
  .nav-menu.open { display: flex; }
  .nav-menu.open .nav-link { color: rgba(255,255,255,.82); font-size: .9rem; }
  .nav-menu.open .nav-link:hover,
  .nav-menu.open .nav-link.active { color: var(--naranja); background: rgba(245,166,35,.08); }
  .nav-menu.open .nav-link::after { display: none; }
  nav { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   PÁGINA NOSOTROS
══════════════════════════════════════════ */

/* Hero nosotros — más alto */
.about-hero { padding-bottom: 80px; }
.about-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

/* Intro — dos columnas */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--texto);
}
.about-intro-text p {
  font-size: 15px;
  color: var(--texto-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.astat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.astat-card {
  border-radius: var(--radio-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--sombra-md);
}
.astat-blue   { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.astat-orange { background: linear-gradient(135deg, #d4891a, #d97706); }
.astat-teal   { background: linear-gradient(135deg, #0d2d5e, #2563eb); }
.astat-navy   { background: linear-gradient(135deg, #050a1c, #1e3a8a); }
.astat-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.astat-label {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}

/* Misión y Visión */
.mv-section {
  background: linear-gradient(135deg, #050a1c 0%, #0d2d5e 50%, #1a3a6e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.mv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><path d="M0 80L80 0" stroke="rgba(255,255,255,.025)" stroke-width="1"/></svg>') repeat;
  pointer-events: none;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.mv-card {
  padding: 52px 48px;
}
.mv-mision { background: rgba(255,255,255,.04); }
.mv-vision {
  background: rgba(245,166,35,.06);
  border-left: 1px solid rgba(245,166,35,.2);
}
.mv-eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--naranja);
  border: 1px solid rgba(245,166,35,.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  background: rgba(245,166,35,.08);
}
.mv-card h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.mv-card p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Objetivos */
.obj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.obj-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: var(--radio-lg);
  padding: 28px 24px;
  box-shadow: var(--sombra);
  transition: transform var(--trans), box-shadow var(--trans);
}
.obj-item:hover { transform: translateY(-4px); box-shadow: var(--sombra-md); }
.obj-num {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--azul-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.obj-content h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 8px;
}
.obj-content p {
  font-size: 14px;
  color: var(--texto-2);
  line-height: 1.7;
}

/* Valores */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.val-card {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: var(--radio-lg);
  padding: 32px 26px;
  box-shadow: var(--sombra);
  transition: transform var(--trans), box-shadow var(--trans);
}
.val-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-md); }
.val-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.val-blue   { background: var(--azul-bg); color: var(--azul-med); }
.val-orange { background: #fff7ed;        color: #d97706; }
.val-teal   { background: #eff6ff;        color: #2563eb; }
.val-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--texto); margin-bottom: 10px; }
.val-card p  { font-size: 14px; color: var(--texto-2); line-height: 1.7; }

/* Políticas */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.policy-card {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: var(--radio-lg);
  padding: 28px 24px;
  box-shadow: var(--sombra);
  transition: transform var(--trans), box-shadow var(--trans);
}
.policy-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-md); }
.policy-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.policy-icon-blue   { background: var(--azul-bg); color: var(--azul-med); }
.policy-icon-orange { background: #fff7ed;        color: #d97706; }
.policy-icon-teal   { background: #eff6ff;        color: #2563eb; }
.policy-card h4 { font-size: 1rem; font-weight: 800; color: var(--texto); margin-bottom: 10px; }
.policy-card p  { font-size: 14px; color: var(--texto-2); line-height: 1.7; }

/* Certificaciones */
.certs-section { background: var(--blanco); }
.certs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}
.cert-item { text-align: center; }
.cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--azul-bg);
  border: 2px solid var(--azul-light);
  font-size: .85rem;
  font-weight: 800;
  color: var(--azul-osc);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.cert-item p { font-size: 13px; color: var(--texto-2); max-width: 100px; margin: 0 auto; line-height: 1.35; }

/* ══════════════════════════════════════════
   BOTONES FLOTANTES (FAB)
══════════════════════════════════════════ */
.fab-container {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.fab-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  transition: transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}
.fab-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.fab-wa  { background: #25d366; }
.fab-wa:hover { background: #1ebe5d; }
.fab-tel { background: var(--azul-med); }
.fab-tel:hover { background: var(--azul-osc); }

/* ══════════════════════════════════════════
   FORMULARIO DE CONTACTO — CATEGORÍAS
══════════════════════════════════════════ */
.cat-form-section {
  background: linear-gradient(135deg, #050a1c 0%, #0d2d5e 55%, #1e3a8a 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.cat-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><path d="M0 80L80 0" stroke="rgba(255,255,255,.025)" stroke-width="1"/></svg>') repeat;
  pointer-events: none;
}
.cat-form-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cat-form-info { color: #fff; }
.cat-form-info .svc-main-label { color: var(--naranja); border-color: rgba(245,166,35,.3); background: rgba(245,166,35,.08); }
.cat-form-info h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 14px;
  color: #fff;
}
.cat-form-info h2 em { font-style: italic; color: var(--naranja); }
.cat-form-info p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 28px; }
.cat-form-contacts { display: flex; flex-direction: column; gap: 10px; }
.cat-form-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}
.cat-form-contact-link:hover { color: var(--naranja); }
.cat-form-contact-link svg { flex-shrink: 0; color: var(--naranja); }

.cat-form-box {
  background: #fff;
  border-radius: var(--radio-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.cat-form-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 22px;
}

/* Campos del formulario */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--texto-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gris-3);
  border-radius: var(--radio);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--texto);
  background: var(--gris-1);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--naranja);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }

/* File upload */
.form-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px dashed var(--gris-3);
  border-radius: var(--radio);
  background: var(--gris-1);
  cursor: pointer;
  font-size: 13px;
  color: var(--texto-2);
  transition: border-color .2s ease;
}
.form-file-label:hover { border-color: var(--naranja); color: var(--texto); }
.form-file-label svg { color: var(--naranja); flex-shrink: 0; }
input[type="file"] { display: none; }
.form-file-hint { font-size: 11px; color: var(--gris-4); margin-top: 4px; }

.btn-form-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--naranja) 0%, var(--naranja-b) 100%);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radio);
  cursor: pointer;
  transition: box-shadow .25s ease, transform .25s ease;
  margin-top: 6px;
  letter-spacing: .03em;
}
.btn-form-submit:hover {
  box-shadow: 0 6px 22px rgba(245,166,35,.45);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .cat-form-inner { grid-template-columns: 1fr; }
  .cat-form-info { text-align: center; }
  .cat-form-contacts { align-items: center; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .cat-form-box { padding: 24px 18px; }
}

/* ══════════════════════════════════════════
   PÁGINAS DE CATEGORÍA (documentos / multimedia / localización)
══════════════════════════════════════════ */

/* Hero variantes de color */
.cat-hero-blue   { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); }
.cat-hero-orange { background: linear-gradient(135deg, #d4891a 0%, #d97706 80%, #f59e0b 100%); }
.cat-hero-teal   { background: linear-gradient(135deg, #0d2d5e 0%, #2563eb 100%); }

/* Cuerpo de la página de categoría */
.cat-page-body { padding: 56px 0 80px; }

.cat-intro {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
  font-size: 16px;
  color: var(--texto-2);
  line-height: 1.8;
}

/* Grid de servicios — 3 columnas por defecto, 2 con .cat-grid-2 */
.cat-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}
.cat-grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Tarjeta de categoría */
.cat-card {
  background: var(--blanco);
  border: 1px solid var(--gris-3);
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,.13);
}

/* Cabecera coloreada de la tarjeta */
.cat-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 22px;
  color: #fff;
}
.cat-card-head svg { flex-shrink: 0; }
.cat-card-head span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Cuerpo de la tarjeta */
.cat-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-card-body > p {
  font-size: 14px;
  color: var(--texto-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cat-card-list {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
}
.cat-card-list li {
  font-size: 13.5px;
  color: var(--texto-2);
  padding: 5px 0;
  border-bottom: 1px solid var(--gris-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-card-list li:last-child { border-bottom: none; }
.cat-card-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--azul-med);
  flex-shrink: 0;
}
.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--azul-med);
  transition: gap .2s ease;
  margin-top: auto;
}
.cat-card:hover .cat-card-cta { gap: 8px; }

/* Franja inferior de contacto */
.cat-sidebar-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #050a1c, #1e3a8a);
  border-radius: var(--radio-lg);
  padding: 28px 36px;
  flex-wrap: wrap;
}
.cat-strip-info { color: #fff; }
.cat-strip-info strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.cat-strip-info span  { font-size: 14px; color: rgba(255,255,255,.7); }
.cat-strip-contacts { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cat-strip-btn {
  padding: 10px 22px;
  background: var(--naranja);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  transition: background var(--trans), transform var(--trans);
  white-space: nowrap;
}
.cat-strip-btn:hover { background: var(--naranja-b); transform: translateY(-1px); }
.cat-strip-btn.outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
}
.cat-strip-btn.outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

@media (max-width: 900px) {
  .cat-services-grid,
  .cat-grid-2 { grid-template-columns: 1fr; }
  .cat-sidebar-strip { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* Responsive nosotros */
@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .mv-grid          { grid-template-columns: 1fr; }
  .mv-vision        { border-left: none; border-top: 1px solid rgba(245,166,35,.2); }
  .mv-card          { padding: 36px 28px; }
  .obj-grid         { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: repeat(2, 1fr); }
  .policies-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .astat-grid  { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
