/* Color Azul Corporativo DNP */
.text-navy {
  color: #034574;
}

.bg-navy {
  background-color: #034574;
}

.fs-7 {
  font-size: 0.75rem;
}

.extra-small {
  font-size: 0.72rem;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

/* 1. Cabecera a Sangría Total (Full Bleed Header) */
.card-hero-img {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
}

/* 2. Tarjeta con estilo interactivo */
.recovery-card {
  border-radius: 18px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #e2e8f0 !important;
}

.recovery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(3, 69, 116, 0.18) !important;
  border-color: rgba(3, 69, 116, 0.4) !important;
}

.recovery-card:hover .card-hero-img img {
  transform: scale(1.08);
}

.card-hero-img img {
  transition: transform 0.5s ease;
}

/* 3. Tags de Síntomas Modernos (Reemplazo de listas) */
.symptom-tag {
  display: inline-flex;
  align-items: center;
  background-color: #f1f5f9;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  line-height: 1.2;
}

.recovery-card:hover .symptom-tag {
  background-color: #ffffff;
  border-color: #cbd5e1;
}

/* 4. Efecto de fondo sutil en Banner CTA */
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.25) 0%, transparent 70%);
  pointer-events: none;
}


/*UL ALT*/
  /* Columnas misma altura */
.recovery-row > div {
  display: flex;
}

/* Estructura vertical */
.recovery-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Card con la imagen a sangrado total */
.recovery-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0; /* CAMBIO CLAVE: Se quitó el padding global para que la imagen toque los bordes */
  border-radius: 12px;
  overflow: hidden; /* Corta la imagen con los bordes redondeados del card */
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recovery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(3, 69, 116, 0.15);
}

/* Cabecera de Imagen a Sangría Total */
.recovery-card-img {
  height: 190px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.recovery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* El contenido interno SÍ lleva padding */
.recovery-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Tags de síntomas (remplaza a las listas simples) */
.symptom-tag {
  display: inline-flex;
  align-items: center;
  background-color: #f1f5f9;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  line-height: 1.2;
}

.text-navy {
  color: #034574;
}



/* ==========================================================================
   Sección: Especialización Recovery (Design System Enterprise 2026)
   ========================================================================== */

:root {
    /* Token Palette */
    --dnpr-primary-dark: #00233a;
    --dnpr-accent: #0056b3;
    --dnpr-accent-hover: #003e82;
    --dnpr-text-main: #2b3036;
    --dnpr-text-subtle: #495057;
    --dnpr-bg-light: #f8f9fa;
    --dnpr-border-color: #dee2e6;
    --dnpr-radius-card: 1rem;
    --dnpr-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

#especializacion-recovery {
    background-color: var(--dnpr-bg-light);

    /* Clases de Color de Alto Contraste */
    .text-primary-dark {
        color: var(--dnpr-primary-dark);
    }
    
    .text-accent {
        color: var(--dnpr-accent);
    }
    
    .text-body-dark {
        color: var(--dnpr-text-main);
        font-weight: 400;
        line-height: 1.65;
    }

    .text-subtle {
        color: var(--dnpr-text-subtle);
    }

    .letter-spacing-1 {
        letter-spacing: 0.05em;
    }

    /* Bento Diferencial */
    .bento-diferencial {
        border-color: var(--dnpr-border-color);
        transition: var(--dnpr-transition);
        
        &:hover {
            transform: translateY(-2px);
            box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.06);
        }
    }

    /* Badges Técnicos (Sin uso de !important) */
    .specializations-list {
        .badge-tech {
            display: inline-block;
            background-color: #ffffff;
            color: var(--dnpr-primary-dark);
            border: 1px solid #ced4da;
            padding: 0.5rem 0.85rem;
            border-radius: 50rem;
            font-weight: 600;
            font-size: 0.825rem;
            transition: var(--dnpr-transition);
            cursor: default;

            &:hover {
                transform: translateY(-2px);
                border-color: var(--dnpr-accent);
                color: var(--dnpr-accent);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
            }
        }

        .badge-highlight {
            background-color: var(--dnpr-accent);
            color: #ffffff;
            border-color: var(--dnpr-accent);

            &:hover {
                background-color: var(--dnpr-accent-hover);
                color: #ffffff;
                border-color: var(--dnpr-accent-hover);
            }
        }
    }

    /* Botón Micro-CTA */
    .btn-outline-primary {
        color: var(--dnpr-accent);
        border-color: var(--dnpr-accent);

        &:hover {
            background-color: var(--dnpr-accent);
            color: #ffffff;
            border-color: var(--dnpr-accent);
            box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
        }
    }

    /* Visual Aspect Ratio & Image Scaling */
    .bento-image-card {
        border-color: var(--dnpr-border-color);
        background-color: #ffffff;
        
        img {
            aspect-ratio: 4 / 3;
            transition: var(--dnpr-transition);
            will-change: transform;
        }

        &:hover img {
            transform: scale(1.025);
        }
    }
}

/* Espaciados Adaptativos Modernos */
@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }
}

 /* ==========================================
   HEADER & NAVBAR COMPLETE - DNP RECOVERY
   ========================================== */

/* --- PROTECCIÓN Y AISLAMIENTO DE ESTILOS (OVERRIDE DE MAIN) --- */
.topbar ul,
.topbar li,
.navbar-nav,
.navbar-nav li,
.dropdown-menu-custom,
.dropdown-menu-custom li {
  line-height: normal;
  list-style: none;
}

.nav-link-custom {
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.dropdown-item-custom {
  font-size: 0.875rem !important;
  line-height: 1.35 !important;
}
/* ------------------------------------------------------------- */

@media (min-width: 1200px) and (hover: hover) {
  /* Preparación del contenedor para perspectiva */
  .navbar-nav .nav-item.dropdown {
    perspective: 1000px;
    position: relative;
  }

  /* Estado Base Oculto */
  .dropdown-menu-custom {
    display: block !important; /* Forzar bloque para que CSS gestione la animación */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform-origin: top center;
    transform: rotateX(-12deg) translateY(15px) scale(0.96);
    filter: blur(4px);
    transition: 
      opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.28s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.28s;
    
    /* Detalle visual: Micro-barra de acento brillante en la parte superior del menú */
    border-top: 3px solid #dc3545 !important;
  }

  /* Estado Activo al pasar el Cursor (Hover) */
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    filter: blur(0px);
    transform: rotateX(0deg) translateY(0) scale(1);
  }

  /* Animación Sutil e Independiente para los Items Internos (Efecto Cascada) */
  .navbar-nav .nav-item.dropdown:hover .dropdown-item-custom {
    animation: itemSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

/* Keyframes de entrada suave para los items del submenú */
@keyframes itemSlideIn {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Barra Superior (TopBar) */
.topbar {
  background-color: #1a1e21;
  font-size: 0.85rem !important;
  line-height: 1.3 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-badge {
  font-size: 0.75rem !important;
  letter-spacing: 0.5px;
  padding: 0.35em 0.65em;
}

.topbar-text {
  color: #d1d5db;
}

/* Forzado de color celeste/blanco brillante para iconos en fondo oscuro */
.topbar i.topbar-icon-mail {
  color: #ffffff !important;
  font-size: 0.9rem !important;
}

.topbar i.topbar-icon-white {
  color: #ffffff !important;
}

.topbar-link {
  color: #ffffff;
  transition: color 0.2s ease-in-out;
}

.topbar-link:hover {
  color: #6ea8fe;
  text-decoration: none;
}

.topbar-link-ws {
  color: #25d366; /* Verde Oficial WhatsApp */
  transition: opacity 0.2s ease-in-out;
}

.topbar-link-ws:hover {
  color: #1eb857;
  opacity: 0.9;
}

.topbar-divider {
  color: #495057;
}

/* Navbar Principal */
.logo-navbar {
  height: auto;
  max-width: 100%;
}

.nav-link-custom {
  color: #212529;
  font-weight: 600;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.2s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: #dc3545 !important; /* Rojo Corporativo / Emergencia */
}

/* Dropdown Menu Personalizado */
.dropdown-menu-custom {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0.75rem 0;
  min-width: 300px;
}

.dropdown-header-custom {
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #0d6efd;
  font-weight: 700;
  padding: 0.5rem 1.25rem 0.25rem;
}

.dropdown-item-custom {
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  color: #495057;
  transition: all 0.2s ease;
}

.dropdown-item-custom:hover {
  background-color: #f8f9fa;
  color: #dc3545;
  padding-left: 1.5rem;
}

/* Botón Call To Action (CTA Navbar) */
.btn-cta-navbar {
  font-size: 0.875rem !important;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-navbar:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(220, 53, 69, 0.35);
}
/* FIN NAVBAR NUEVO */


/*HERO*/

/* ==========================================
   PALETA CORPORATIVA DNP RECOVERY
   ========================================== */
:root {
  --dnp-blue-primary: #2b58a4;
  --dnp-blue-dark: #1b365d;
  --dnp-cyan-accent: #2997d6;
  --dnp-gradient: linear-gradient(135deg, #2b58a4 0%, #2997d6 100%);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  position: relative;
}

/* Badge de Autoridad */
.hero-badge {
  background-color: rgba(43, 88, 164, 0.08);
  color: var(--dnp-blue-primary);
  border: 1px solid rgba(43, 88, 164, 0.25);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4em 0.85em;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}

/* Título e Identidad Visual */
.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #0f172a !important;
}

.text-dnp-accent {
  background: var(--dnp-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtítulo */
.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569 !important;
}

/* Puntos de Confianza */
.hero-trust-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-trust-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
}

.hero-trust-item i {
  color: var(--dnp-cyan-accent);
  margin-right: 0.4rem;
  font-size: 1rem;
}

/* Botón Secundario B2B */
.btn-dnp-outline {
  border: 2px solid var(--dnp-blue-primary);
  color: var(--dnp-blue-primary);
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-dnp-outline:hover {
  background-color: var(--dnp-blue-primary);
  color: #ffffff;
}

/* Imagen */
.hero-image {
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(43, 88, 164, 0.12);
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-trust-list {
    justify-content: center;
  }
}

/*FIN HERO*/


/*SECCION 1 SERVICIOS*/

 /* ==========================================
   SECCIÓN SERVICIOS HIGH-TECH - PALETA OFICIAL DNP
   ========================================== */

/* Fondo Azul Noche Profundo para contraste B2B de alto nivel */
/* ==========================================
   SECCIÓN MODALIDADES - PALETA DNP RECOVERY
   ========================================== */

/* Contenedor principal con degradado oscuro */
.servicios-tech-section {
  background: linear-gradient(180deg, #0b1329 0%, #101f42 50%, #0b1329 100%);
  position: relative;
  overflow: hidden;
}

/* Glow superior de resplandor cian */
.servicios-tech-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: 60%;
  background: radial-gradient(circle at 50% 20%, rgba(41, 151, 214, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Tarjeta Glassmorphism (Estilo único para todas las cards) */
.service-tech-card {
  background: rgba(23, 44, 88, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid #2997d6;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 35px rgba(41, 151, 214, 0.2);
}

/* Conservado por compatibilidad HTML */
.service-tech-card.card-featured {
  background: rgba(23, 44, 88, 0.85);
  border: 1.5px solid #2997d6;
  box-shadow: 0 12px 35px rgba(41, 151, 214, 0.2);
}

/* Hover con elevación y brillo cian */
.service-tech-card:hover {
  transform: translateY(-6px);
  background: rgba(24, 40, 77, 0.95);
  border-color: #2997d6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(41, 151, 214, 0.35);
}

/* Contenedor de Íconos Nítidos */
.icon-box-tech {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.service-tech-card:hover .icon-box-tech {
  transform: scale(1.08);
}

/* Colores de Íconos con alta luminosidad */
.icon-express { background: rgba(239, 68, 68, 0.15); color: #ff6b6b; border: 1px solid rgba(239, 68, 68, 0.4); }
.icon-corp { background: rgba(41, 151, 214, 0.2); color: #38bdf8; border: 1px solid rgba(41, 151, 214, 0.5); }
.icon-standard { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.4); }
.icon-delivery { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.4); }

/* Badges SLA */
.sla-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.badge-red { background: rgba(239, 68, 68, 0.2); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-blue { background: rgba(41, 151, 214, 0.25); color: #7dd3fc; border: 1px solid rgba(41, 151, 214, 0.4); }
.badge-cyan { background: rgba(59, 130, 246, 0.2); color: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-green { background: rgba(34, 197, 94, 0.2); color: #86efac; border: 1px solid rgba(34, 197, 94, 0.3); }

/* LISTA DE CHECKS INDEPENDIENTE (Protegida contra reglas de 'main li') */
.tech-card-list {
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none !important;
}

.tech-card-list li {
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0.5rem;
}

.tech-card-list li:last-child {
  margin-bottom: 0;
}

.tech-card-list li i {
  font-size: 0.9rem !important;
}

/*SECCION 3*/

/* ==========================================
   SECCIÓN PROTOCOLO & METODOLOGÍA DNP
   ========================================== */

/* ==========================================
   SECCIÓN: PRIMEROS AUXILIOS DIGITALES & TRIAGE
   Escuadrón Técnico & Protocolo Forense
   ========================================== */

:root {
  --dnp-navy-dark: #0f172a;
  --dnp-blue-primary: #2b58a6;
  --dnp-blue-hover: #1e3a8a;
  --dnp-cyan-accent: #0284c7;
  --dnp-slate-bg: #f8fafc;
  --dnp-border-subtle: #e2e8f0;
  
  --dnp-danger-bg: #fef2f2;
  --dnp-danger-border: #fecaca;
  --dnp-danger-text: #991b1b;
  --dnp-danger-icon: #dc2626;

  --dnp-success-bg: #f0fdf4;
  --dnp-success-border: #bbf7d0;
  --dnp-success-text: #166534;
  --dnp-success-icon: #16a34a;
}

.triage-section {
  background-color: #ffffff;
  position: relative;
}

/* Badge de Cabecera */
.triage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  background-color: rgba(43, 88, 166, 0.08);
  color: var(--dnp-blue-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Título de Sección */
.triage-headline {
  color: var(--dnp-navy-dark);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.triage-description {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* Botón CTA Emergencia */
.btn-emergency-b2b {
  background: linear-gradient(135deg, var(--dnp-blue-primary) 0%, var(--dnp-cyan-accent) 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-emergency-b2b:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
  background: linear-gradient(135deg, var(--dnp-blue-hover) 0%, var(--dnp-blue-primary) 100%);
}

/* Tarjetas de Protocolo (LO QUE NO / LO QUE SÍ) */
.triage-card {
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.triage-card-dont {
  background-color: var(--dnp-danger-bg);
  border: 1px solid var(--dnp-danger-border);
}

.triage-card-do {
  background-color: var(--dnp-success-bg);
  border: 1px solid var(--dnp-success-border);
}

.triage-card-title {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.triage-card-dont .triage-card-title {
  color: var(--dnp-danger-text);
}

.triage-card-do .triage-card-title {
  color: var(--dnp-success-text);
}

/* Listas Técnicas */
.triage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.triage-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.885rem;
  color: #334155;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.triage-list-item:last-child {
  margin-bottom: 0;
}

.triage-list-item i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.triage-card-dont .triage-list-item i {
  color: var(--dnp-danger-icon);
}

.triage-card-do .triage-list-item i {
  color: var(--dnp-success-icon);
}

/* Banner de Seguridad & Custodia Forense */
.triage-banner-custody {
  background-color: var(--dnp-slate-bg);
  border: 1px solid var(--dnp-border-subtle);
  border-radius: 12px;
  padding: 1.5rem 2rem;
}

.triage-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid var(--dnp-border-subtle);
  color: var(--dnp-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-outline-b2b {
  border: 1px solid var(--dnp-blue-primary);
  color: var(--dnp-blue-primary);
  background: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-b2b:hover {
  background-color: var(--dnp-blue-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(43, 88, 166, 0.15);
}

.texto-custodia {
  font-size: 1rem;            /* 16px reales */
  line-height: 1.6;           /* Interlineado cómodo para la vista */
  color: #334155;             /* Gris oscuro corporativo de alto contraste */
  font-weight: 400;           /* Peso regular para buena nitidez */
  margin-bottom: 0;
}

/*FIN SECCION 3*/


/*SECCION 5*/
/* ==========================================
   SECCIÓN DISPOSITIVOS & MARCAS
   ========================================== */

.tech-grid-section {
  background-color: #f8fafc;
}

.tech-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 20px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

/* Franja superior de marca al hacer hover */
.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2b58a4, #2997d6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: #2997d6;
  box-shadow: 0 12px 24px -6px rgba(27, 54, 93, 0.12);
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  padding: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.tech-card:hover .tech-icon-container {
  transform: scale(1.08);
  background: rgba(41, 151, 214, 0.1);
}

.brand-badge {
  display: inline-block;
  background-color: #f1f5f9;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  margin: 2px;
  border: 1px solid #e2e8f0;
}
/*FIN SECCION 5*/


/* ==========================================
   SECCIÓN 1: PROCESO DNP RECOVERY 4 PASOS
   ========================================== */

.dnp-exact-section {
  background: linear-gradient(180deg, #f5f8fc 0%, #eaf2f9 100%);
  position: relative;
}

/* Badge Superior de la Sección */
.dnp-section-badge {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.25rem 1rem;
  border-radius: 50rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(42, 151, 214, 0.1);
  color: #244b8e;
  border: 1px solid rgba(42, 151, 214, 0.3);
}

/* Títulos y Párrafos Principales */
.dnp-section-title {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #244b8e;
}

.dnp-title-highlight {
  color: #2a97d6;
}

.dnp-section-subtitle {
  font-size: 1.2rem;
  color: #2a679f;
  line-height: 1.6;
}

/* Tarjeta Neumorphic en Base Clara */
.dnp-exact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 22px;
  height: 100%;
  border: 1px solid rgba(42, 151, 214, 0.22);
  box-shadow: 0 10px 28px rgba(36, 75, 142, 0.07);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dnp-exact-card:hover {
  transform: translateY(-8px);
  border-color: #2a97d6;
  box-shadow: 0 18px 36px rgba(42, 151, 214, 0.22);
}

.dnp-card-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #244b8e;
}

.dnp-card-text {
  font-size: 0.9rem;
  color: #526b88;
  line-height: 1.5;
}

/* Badge de Número con el Gradiente del Logo */
.dnp-exact-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #244b8e 0%, #2a97d6 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(36, 75, 142, 0.25);
  transition: all 0.3s ease;
}

.dnp-exact-number-alt {
  background: linear-gradient(135deg, #2a679f 0%, #2a97d6 100%);
}

.dnp-exact-card:hover .dnp-exact-number {
  background: linear-gradient(135deg, #2a679f 0%, #2a97d6 100%);
  box-shadow: 0 6px 16px rgba(42, 151, 214, 0.4);
}

/* Ícono del Paso */
.dnp-exact-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(36, 75, 142, 0.12));
  transition: transform 0.3s ease;
}

.dnp-exact-card:hover .dnp-exact-img {
  transform: scale(1.08);
}

/* Micro-Tag Técnico */
.dnp-exact-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: rgba(42, 151, 214, 0.08);
  border: 1px solid rgba(42, 151, 214, 0.25);
  border-radius: 8px;
  font-size: 0.75rem;
  color: #244b8e;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Conector del Gradiente en Escritorio */
@media (min-width: 992px) {
  .dnp-exact-col {
    position: relative;
  }
  .dnp-exact-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -22px;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #244b8e, #2a97d6);
    z-index: 1;
    border-radius: 2px;
    opacity: 0.7;
  }
}

/* Barra de Confianza Corporativa */
.dnp-trust-bar {
  margin-top: 3rem;
  padding: 1rem;
  text-align: center;
  border-radius: 1rem;
  background: #244b8e;
  border: 1px solid #2a97d6;
  box-shadow: 0 10px 25px rgba(36, 75, 142, 0.2);
}

.dnp-trust-bar-text {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
}

.dnp-trust-check {
  color: #2a97d6;
}


/* ==========================================
   SECCIÓN 2: CARACTERÍSTICAS DE ESPECIALISTAS
   ========================================== */

.section-caracteristicas {
  background-color: #ffffff;
  border-top: 1px solid rgba(42, 151, 214, 0.15);
}

.caracteristicas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 992px) {
  .caracteristicas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.caracteristicas-grid .item {
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(42, 151, 214, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caracteristicas-grid .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(36, 75, 142, 0.08);
  border-color: rgba(42, 151, 214, 0.3);
}

.caracteristicas-grid img {
  filter: drop-shadow(0 4px 8px rgba(36, 75, 142, 0.1));
}

/* ==========================================
   SECCIÓN: TU INFORMACIÓN EN MANOS DE ESPECIALISTAS
   (Clases renombradas a .section-especialistas)
   ========================================== */

.section-especialistas {
  position: relative;
  background: linear-gradient(135deg, #1b365d 0%, #244b8e 50%, #1e3d73 100%);
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

/* Brillo de fondo */
.section-especialistas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(42, 151, 214, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.especialistas-title {
  font-size: calc(1.35rem + 1.2vw);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Grid Dedicado */
.especialistas-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .especialistas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .especialistas-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Tarjeta Glassmorphic */
.especialista-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.25rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.especialista-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(42, 151, 214, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(42, 151, 214, 0.2);
}

/* Contenedor del Ícono */
.especialista-img-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(42, 151, 214, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.35s ease;
}

.especialista-item:hover .especialista-img-wrapper {
  transform: scale(1.08);
  background: rgba(42, 151, 214, 0.25);
}

.especialista-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.especialista-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0;
}




/*FOOTER*/

/* ==========================================
   FOOTER ALINEADO A PALETA DNP RECOVERY
   ========================================== */

.footer-b2b {
  /* Azul Marino Profundo extraído de la tipografía DNP */
  background-color: #0f1e36; 
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  border-top: 3px solid #2993d8; /* Línea de acento con el azul de RECOVERY */
}

/* Títulos de Columna */
.footer-b2b .footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Subrayado con el Azul brillante de RECOVERY */
.footer-b2b .footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background-color: #2993d8;
  border-radius: 2px;
}

/* Bloques e Iconos de Contacto */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: #e2e8f0;
}

.footer-contact-item i {
  color: #2993d8; /* Azul claro de la marca para iconos */
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #2993d8;
  text-decoration: underline;
}

/* Enlaces de Menú / Soluciones */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: #2993d8;
  transform: translateX(3px);
}

.footer-links a i {
  color: #2993d8;
}

/* Botones y Badges integrados en la paleta */
.btn-outline-brand {
  border: 1px solid #2993d8;
  color: #ffffff;
  background-color: transparent;
  transition: all 0.2s ease;
}

.btn-outline-brand:hover {
  background-color: #2993d8;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(41, 147, 216, 0.3);
}

/* Badges de Partners en contenedor Azul Noche */
.footer-partner-badge {
  background-color: #172847;
  border: 1px solid #253a63;
  border-radius: 8px;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-partner-badge img {
  max-height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-partner-badge:hover img {
  opacity: 1;
}

/* Pie Inferior (Copyright) */
.footer-bottom {
  background-color: #081121; /* Azul noche más oscuro para cierre visual */
  border-top: 1px solid #1e3256;
  padding: 1.1rem 0;
  font-size: 0.825rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #2993d8;
}


.logo-container-white {
  display: inline-block;
  background-color: rgba(255, 255, 255
  ); /* Blanco translúcido equilibrado */
  border: 1px solid rgba(255, 255, 255);  /* Borde blanco tenue */
  backdrop-filter: blur(4px);                  /* Desenfoque suave de fondo */
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
}
/*FIN FOOTER*/