
/* ==========================================================================
   PÁGINA: BENEFICIOS DE SER SOCIO (CNCSP)
   ========================================================================== */

.cncsp-beneficios-wrapper {
    font-family: 'Montserrat', -apple-system, sans-serif;
    padding: 40px 15px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- HERO (Encabezado) --- */
.beneficios-hero {
    text-align: center;
    margin-bottom: 60px;
}

.beneficios-hero h2 {
    color: #002060 !important; /* Azul marino */
    font-size: 32px !important;
    font-weight: 300 !important;
    margin-bottom: 15px !important;
    letter-spacing: 1px !important;
}

.beneficios-hero h2 strong {
    font-weight: 800 !important;
    color: #4a154b !important; /* Violeta */
}

.linea-dorada {
    width: 80px;
    height: 4px;
    background-color: #c5a869; /* Bronce/Dorado */
    margin: 0 auto 25px auto;
}

.beneficios-hero p {
    font-size: 18px !important;
    color: #475569 !important;
    max-width: 700px;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

/* --- GRILLA DE TARJETAS --- */
.beneficios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.tarjeta-beneficio {
    flex: 1 1 45%; /* Ocupa la mitad en PC */
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 32, 96, 0.05); /* Sombra suave azulada */
    border-top: 5px solid #002060;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto al pasar el mouse */
.tarjeta-beneficio:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 32, 96, 0.12);
    border-top-color: #c5a869; /* Cambia a dorado */
}

/* --- ÍCONOS --- */
.beneficio-icono {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #002060, #003388); /* Círculo azul */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 32, 96, 0.2);
}

.beneficio-icono i {
    font-size: 30px;
    color: #ffffff;
}

/* --- TEXTOS INTERNOS --- */
.tarjeta-beneficio h3 {
    font-size: 20px !important;
    color: #002060 !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

.beneficio-lista {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.beneficio-lista li {
    position: relative;
    padding-left: 25px !important;
    margin-bottom: 12px !important;
    font-size: 15px !important;
    color: #444444 !important;
    line-height: 1.5 !important;
}

/* Las viñetas personalizadas (Estrellitas doradas) */
.beneficio-lista li::before {
    content: '\2605'; /* Código de estrella */
    position: absolute;
    left: 0;
    top: 0;
    color: #c5a869; /* Dorado */
    font-size: 14px;
}

/* --- BOTÓN FINAL --- */
.beneficios-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-asociarse {
    display: inline-block;
    background-color: #4a154b; /* Violeta */
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(74, 21, 75, 0.3);
    transition: all 0.3s ease;
}

.btn-asociarse:hover {
    background-color: #310e32;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(74, 21, 75, 0.4);
}

/* --- ADAPTACIÓN A CELULARES --- */
@media (max-width: 768px) {
    .tarjeta-beneficio {
        flex: 1 1 100%; /* Una debajo de la otra */
        padding: 30px 20px;
    }
    
    .beneficios-hero h2 {
        font-size: 26px !important;
    }
}
/* ==========================================================================
   FOOTER MENÚ INSTITUCIONAL (ALINEACIÓN PERFECTA)
   ========================================================================== */
.footer-menu-cncsp {
    font-family: 'Lato', -apple-system, sans-serif;
    margin-top: 15px;
}

.enlaces-institucionales {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px; 
}

.enlaces-institucionales li {
    margin: 0 !important;
    padding: 0 !important;
}

/* El enlace de texto */
.enlaces-institucionales li a {
    color: #a2a2a2 !important; 
    text-decoration: none !important;
    font-size: 15px !important;
    display: block !important;
    position: relative; /* Necesario para que la flecha flote respecto al texto */
    padding-left: 0px !important; /* Fuerza a que arranque bien pegado a la izquierda */
    transition: all 0.3s ease !important;
}

/* La flechita inicial (Flotando invisible a la izquierda) */
.enlaces-institucionales li a i {
    position: absolute;
    left: -15px; /* La escondemos fuera del margen */
    top: 5px; /* La centramos a la altura de la letra */
    font-size: 11px;
    color: #c5a869 !important; /* Dorada/Bronce directo */
    opacity: 0; 
    transition: all 0.3s ease !important;
}

/* EFECTO PREMIUM AL PASAR EL MOUSE */
.enlaces-institucionales li a:hover {
    color: #ffffff !important; 
    padding-left: 18px !important; /* El texto hace espacio para la flecha */
}

.enlaces-institucionales li a:hover i {
    opacity: 1; /* Aparece la flecha */
    left: 0; /* Se desliza hasta el borde izquierdo exacto */
}

/* ==========================================================================
   SECCIÓN: ENTIDADES ADHERIDAS (TITULARES Y SUPLENTES)
   ========================================================================== */

.entidades-contenedor {
    background-color: #f8fafc; /* Gris extra claro y limpio */
    padding: 60px 20px;
    border-radius: 12px;
    font-family: 'Montserrat', -apple-system, sans-serif;
}

/* Títulos de sección */
.titulo-entidades {
    text-align: center;
    color: #002060; /* Azul Marino Institucional */
    margin: 0 0 40px 0 !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
}

.titulo-suplentes {
    color: #64748b; /* Gris azulado elegante para diferenciar */
    margin-top: 30px !important;
}

/* La grilla que acomoda todo automático */
.entidades-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
}

/* -------------------------------------------
   ESTILO DE LAS TARJETAS (Efecto Premium)
   ------------------------------------------- */
.tarjeta-entidad {
    flex: 1 1 250px;
    max-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    
    /* Configuración para que el contenido se distribuya igual */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    box-sizing: border-box;
    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Colores de las líneas superiores */
.tarjeta-entidad.titular {
    border-top: 5px solid #002060;
}

.tarjeta-entidad.suplente {
    border-top: 5px solid #94a3b8;
}

/* Efecto al pasar el mouse (Levitación 3D) */
.tarjeta-entidad:hover {
    transform: translateY(-8px);
}

.tarjeta-entidad.titular:hover {
    box-shadow: 0 15px 30px rgba(0, 32, 96, 0.15); /* Sombra azulada */
    border-color: #002060;
}

.tarjeta-entidad.suplente:hover {
    box-shadow: 0 15px 30px rgba(148, 163, 184, 0.25); /* Sombra gris */
    border-color: #94a3b8;
}

/* -------------------------------------------
   ELEMENTOS INTERNOS DE LA TARJETA
   ------------------------------------------- */
.logo-entidad {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-entidad img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(10%); /* Apaga apenitas los logos chillones */
    transition: filter 0.3s ease;
}

.tarjeta-entidad:hover .logo-entidad img {
    filter: grayscale(0%); /* El logo toma todo su color al pasar el mouse */
}

.nombre-entidad {
    font-size: 13px;
    color: #334155;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.representante-entidad {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.titular .representante-entidad {
    color: #002060;
}

.suplente .representante-entidad {
    color: #64748b;
}
/* ==========================================================================
   FOOTER CONTACTO PREMIUM
   ========================================================================== */
.cncsp-footer-contact { display: flex; flex-direction: column; gap: 15px; font-family: 'Lato', sans-serif; color: #444; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-item i { color: #4a154b; font-size: 16px; margin-top: 3px; }
.email-list { display: flex; flex-direction: column; }
.email-list a { color: #4a154b; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.email-list a:hover { color: #c5a869; text-decoration: underline; }
.cncsp-footer-contact span { font-size: 14px; line-height: 1.5; }

/* ==========================================================================
   MODO DIOS V2: SLIDESHOW CK Y EVENTOS
   ========================================================================== */
.tarjeta-eventos-cncsp .camera_wrap { height: 480px !important; margin-bottom: 0 !important; }
.tarjeta-eventos-cncsp .camera_target, .tarjeta-eventos-cncsp .cameraSlide, .tarjeta-eventos-cncsp .cameraCont { height: 100% !important; width: 100% !important; overflow: hidden !important; }
.tarjeta-eventos-cncsp .cameraSlide img { width: 100% !important; height: 100% !important; object-fit: contain !important; margin: 0px !important; top: 0px !important; left: 0px !important; position: absolute !important; transform: none !important; }
.tarjeta-eventos-cncsp { height: 540px !important; background-color: #ffffff !important; border-radius: 12px !important; padding: 15px !important; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important; border-top: 5px solid #4a154b !important; box-sizing: border-box !important; display: block !important; margin: 0 !important; }
.tarjeta-eventos-cncsp:hover { transform: translateY(-5px) !important; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important; }
.tarjeta-eventos-cncsp img { width: 100% !important; height: 100% !important; object-fit: contain !important; border-radius: 8px !important; margin: 0 auto !important; display: block !important; }

/* ==========================================================================
   DESTACADO CDO
   ========================================================================== */
.btn-cdo-destacado { color: #ffffff !important; font-weight: 900 !important; letter-spacing: 1.5px !important; text-shadow: 0 0 15px rgba(255, 255, 255, 0.5) !important; background-color: transparent !important; border-radius: 0 !important; padding: inherit !important; box-shadow: none !important; display: block !important; transition: all 0.3s ease !important; }
.btn-cdo-destacado:hover { text-shadow: 0 0 25px rgba(255, 255, 255, 0.9) !important; color: #ffffff !important; }

/* ==========================================================================
   MISIÓN, VISIÓN Y VALORES
   ========================================================================== */
.mvv-contenedor { padding: 30px 0; }
.mvv-fila { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; margin-bottom: 60px; }
.mvv-fila.reverso { flex-direction: row-reverse; }
.mvv-imagen { flex: 1 1 45%; min-width: 300px; }
.mvv-imagen img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 10px 25px rgba(74, 21, 75, 0.1); border-left: 6px solid #4a154b; transition: transform 0.3s ease; }
.mvv-fila.reverso .mvv-imagen img { border-left: none; border-right: 6px solid #4a154b; }
.mvv-imagen img:hover { transform: scale(1.02); }
.mvv-texto { flex: 1 1 45%; min-width: 300px; }
.mvv-texto h2 { color: #4a154b !important; font-size: 32px !important; font-weight: 280 !important; margin-top: 0 !important; margin-bottom: 20px !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
.mvv-texto p { font-size: 16px !important; line-height: 1.8 !important; color: #444444 !important; text-align: justify !important; margin-bottom: 15px !important; }
@media (max-width: 768px) { .mvv-fila, .mvv-fila.reverso { flex-direction: column !important; gap: 25px; } .mvv-imagen img, .mvv-fila.reverso .mvv-imagen img { border-left: none !important; border-right: none !important; border-bottom: 6px solid #4a154b !important; } }

/* ==========================================================================
   HISTORIA DETALLADA Y ACERCA DE NOSOTROS
   ========================================================================== */
.cncsp-articulo-largo { padding: 20px 0; color: #444444; line-height: 1.8; font-size: 16px; }
.cncsp-articulo-largo::after { content: ""; display: table; clear: both; }
.cncsp-articulo-largo p, .cncsp-articulo-largo div { text-align: justify; margin-bottom: 20px; }
.cncsp-img-editorial { float: left; margin-right: 35px; margin-bottom: 20px; width: 400px; max-width: 100%; border-radius: 8px; box-shadow: 0 10px 25px rgba(74, 21, 75, 0.15); border-top: 4px solid #4a154b; }
.cncsp-articulo-largo strong { color: #4a154b; }
@media (max-width: 768px) { .cncsp-img-editorial { float: none !important; display: block !important; margin: 0 auto 25px auto !important; width: 100% !important; height: auto !important; } }
.historia-cncsp-contenedor { padding: 40px 0; }
.historia-grid { display: flex; flex-wrap: wrap; gap: 60px; align-items: center; }
.historia-imagen { flex: 1 1 40%; min-width: 300px; position: relative; }
.historia-imagen::before { content: ''; position: absolute; top: -15px; left: -15px; width: 100%; height: 100%; border: 3px solid #4a154b; border-radius: 12px; z-index: 0; }
.historia-imagen img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(74, 21, 75, 0.15); position: relative; z-index: 1; }
.historia-texto { flex: 1 1 50%; min-width: 300px; }
.historia-texto h2 { color: #4a154b !important; font-size: 36px !important; font-weight: 250 !important; margin-top: 0 !important; margin-bottom: 5px !important; text-transform: uppercase !important; }
.historia-texto h4 { color: #64748b !important; font-size: 16px !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: 2px !important; margin-top: 0 !important; margin-bottom: 20px !important; }
.historia-texto .linea-historia { width: 60px; height: 4px; background-color: #4a154b; margin-bottom: 30px; }
.historia-texto p { font-size: 16px !important; line-height: 1.8 !important; color: #444444 !important; text-align: justify !important; margin-bottom: 20px !important; }
.historia-texto em { color: #4a154b; font-weight: 600; font-style: italic; }

/* ==========================================================================
   CERTIFICADO DE ORIGEN (CDO)
   ========================================================================== */
.cdo-pagina-contenedor { padding: 20px 0; color: #444444; }
.cdo-intro-grid { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; margin-bottom: 40px; }
.cdo-intro-texto { flex: 1 1 50%; min-width: 300px; }
.cdo-intro-imagen { flex: 1 1 40%; min-width: 300px; }
.cdo-intro-imagen img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 15px 35px rgba(74, 21, 75, 0.1); }
.cdo-intro-texto h2 { color: #4a154b !important; font-size: 32px !important; margin-top: 0 !important; margin-bottom: 15px !important; font-weight: 300 !important; text-transform: uppercase !important; }
.cdo-intro-texto .linea-cdo { width: 70px; height: 4px; background-color: #4a154b; margin-bottom: 25px; }
.cdo-intro-texto p, .cdo-caja-beneficios p { font-size: 16px !important; line-height: 1.8 !important; text-align: justify !important; margin-bottom: 15px !important; }
.cdo-caja-beneficios { background-color: #faf7fa; border-left: 5px solid #4a154b; padding: 30px; border-radius: 0 8px 8px 0; margin-bottom: 40px; }
.cdo-caja-beneficios h3 { color: #4a154b !important; font-size: 22px !important; margin-top: 0 !important; margin-bottom: 15px !important; font-weight: 300 !important; display: flex !important; align-items: center !important; gap: 10px !important; }
.cdo-bloque-contacto { background-color: #4a154b; color: #ffffff !important; padding: 40px 30px; border-radius: 12px; text-align: center; box-shadow: 0 10px 25px rgba(74, 21, 75, 0.2); }
.cdo-bloque-contacto h3 { color: #ffffff !important; font-size: 24px !important; margin-top: 0 !important; margin-bottom: 15px !important; }
.cdo-bloque-contacto p { font-size: 17px !important; margin-bottom: 20px !important; }
.cdo-bloque-contacto hr { border-color: rgba(255, 255, 255, 0.2); margin: 25px auto; max-width: 60%; }
.cdo-datos-contacto { font-size: 20px; font-weight: bold; }
.cdo-datos-contacto a { color: #ffffff !important; text-decoration: underline !important; }
.cdo-datos-contacto a:hover { color: #e2d5e3 !important; }

/* ==========================================================================
   OFFCANVAS Y MEGAMENU
   ========================================================================== */
.offcanvas-menu .offcanvas-inner ul.menu > li > a.boton-mega-cncsp, .sp-offcanvas-menu ul > li > a.boton-mega-cncsp, .burger-menu ul > li > a.boton-mega-cncsp, .offcanvas-inner a.boton-mega-cncsp { background-color: #4a154b !important; color: #ffffff !important; padding: 12px 20px !important; border-radius: 6px !important; text-align: center !important; font-weight: 300 !important; display: block !important; margin: 15px 15px 25px 15px !important; box-shadow: 0 4px 10px rgba(74, 21, 75, 0.3) !important; border-bottom: none !important; }
.offcanvas-menu .offcanvas-inner ul.menu > li > a.boton-mega-cncsp:active, .sp-offcanvas-menu ul > li > a.boton-mega-cncsp:active { background-color: #310e32 !important; transform: scale(0.98) !important; }
.sp-megamenu-parent .sppb-megamenu-sub, .sp-megamenu-parent .dropdown-inner { background-color: #f8fafc !important; border-radius: 0 0 12px 12px !important; box-shadow: 0 15px 35px rgba(74, 21, 75, 0.08) !important; border: 1px solid #e2e8f0 !important; }
.sp-megamenu-parent .sp-mega-group > li > a { text-align: center !important; }
.sp-megamenu-parent .sp-mega-group > li > a img { display: inline-block !important; margin-bottom: 12px !important; }
.sp-megamenu-parent .sp-mega-group > li > a span, .sp-megamenu-parent .sp-mega-group > li > a .image-title { display: block !important; text-align: center !important; line-height: 1.4 !important; }
.sp-megamenu-parent .sp-mega-group > li > a.boton-mega-cncsp { background-color: #4a154b !important; color: #ffffff !important; padding: 15px 30px !important; border-radius: 8px !important; text-align: center !important; font-weight: 300 !important; display: inline-block !important; margin-top: 50px !important; box-shadow: 0 4px 15px rgba(74, 21, 75, 0.2) !important; transition: all 0.3s ease !important; }
.sp-megamenu-parent .sp-mega-group > li > a.boton-mega-cncsp:hover { background-color: #310e32 !important; transform: translateY(-3px) !important; box-shadow: 0 8px 20px rgba(74, 21, 75, 0.3) !important; }
.logo-image-phone { max-height: 50px !important; width: auto !important; transition: all 0.3s ease !important; padding: 5px 0 !important; }
@media (max-width: 991px) { .logo-image-phone { max-height: 75px !important; margin: 0 auto !important; display: block !important; } }
@media (max-width: 767px) { .logo-image-phone { max-height: 70px !important; } }
@media (max-width: 575px) { .logo-image-phone { max-height: 65px !important; } }
.offcanvas-menu { background-image: linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80)), url('images/fachada.jpg') !important; background-size: cover !important; background-position: center center !important; background-repeat: no-repeat !important; box-shadow: -5px 0 15px rgba(0,0,0,0.5) !important; font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important; }
.offcanvas-menu .sp-module-content ul > li > a, .offcanvas-menu .sp-module-content ul > li > span { color: #ffffff !important; font-size: 15px !important; font-weight: 600 !important; letter-spacing: 0.5px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; padding: 16px 20px !important; display: block !important; transition: 0.3s ease-in-out !important; }
.offcanvas-menu .sp-module-content ul li ul, .offcanvas-menu .sp-module-content ul li ul li, .offcanvas-menu .sp-module-content ul li ul li a, .offcanvas-menu .sp-module-content ul li ul li span, .offcanvas-menu .sp-module-content ul li ul li .menu-text { text-align: left !important; justify-content: flex-start !important; align-items: flex-start !important; width: 100% !important; margin: 0 !important; box-sizing: border-box !important; }
.offcanvas-menu .sp-module-content ul li ul li a, .offcanvas-menu .sp-module-content ul li ul li span { display: block !important; padding: 12px 20px 12px 40px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; background-color: rgba(0, 0, 0, 0.25) !important; transition: 0.3s ease-in-out !important; }
.offcanvas-menu .sp-module-content ul li ul li a, .offcanvas-menu .sp-module-content ul li ul li span, .offcanvas-menu .sp-module-content ul li ul li .menu-text, .offcanvas-menu .sp-module-content ul li ul li a span, .offcanvas-menu .sp-module-content ul li ul li span span { color: #e2e8f0 !important; font-size: 14px !important; font-weight: 400 !important; line-height: 1.5 !important; }
.offcanvas-menu .sp-module-content ul li ul li a:hover, .offcanvas-menu .sp-module-content ul li ul li a:active { background-color: rgba(255, 255, 255, 0.15) !important; padding-left: 45px !important; }
.offcanvas-menu .sp-module-content ul li ul li a:hover, .offcanvas-menu .sp-module-content ul li ul li a:hover span, .offcanvas-menu .sp-module-content ul li ul li a:active, .offcanvas-menu .sp-module-content ul li ul li a:active span { color: #ffffff !important; }
.offcanvas-menu .sp-module-content ul > li > a:hover, .offcanvas-menu .sp-module-content ul > li > a:active { background-color: rgba(255, 255, 255, 0.1) !important; color: #ffffff !important; padding-left: 25px !important; }
.offcanvas-menu .offcanvas-close { color: #ffffff !important; background-color: transparent !important; border: none !important; opacity: 0.8 !important; }
.offcanvas-menu .offcanvas-close:hover { opacity: 1 !important; }
.offcanvas-menu .offcanvas-close svg { fill: #ffffff !important; }
.offcanvas-menu .menu-toggler { color: #ffffff !important; background: rgba(255, 255, 255, 0.15) !important; border-radius: 4px !important; }
.offcanvas-menu .sp-module-content img, .offcanvas-menu .sp-module-content .menu-image, .offcanvas-menu .sp-module-content i.fa, .offcanvas-menu .sp-module-content i.fas { display: none !important; }

/* ==========================================================================
   PHOCA DOWNLOAD
   ========================================================================== */
#phoca-dl-category-box, #phoca-dl-file-box, .phoca-dl-category-box, .pd-category { display: flex !important; flex-direction: row !important; flex-wrap: wrap !important; gap: 16px !important; padding: 20px 0 !important; }
.pd-filebox, .pd-file { background-color: #00204a !important; border-radius: 12px !important; padding: 14px 20px !important; width: 310px !important; max-width: 100% !important; box-sizing: border-box !important; display: flex !important; align-items: center !important; justify-content: space-between !important; border: none !important; margin: 0 !important; position: relative !important; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06) !important; }
.pd-filenamebox { display: flex !important; align-items: center !important; gap: 12px !important; float: none !important; margin: 0 !important; width: calc(100% - 32px) !important; }
.pd-filebox .pd-title, .pd-filebox .pd-title a, .pd-filebox a, .pd-file a { color: #ffffff !important; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important; font-weight: 600 !important; font-size: 14px !important; text-decoration: none !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.pd-buttons, .pd-button-box-bt, .pd-filebox .pd-button-box-bt { display: none !important; }
.pd-filebox::after, .pd-file::after { content: "↓" !important; color: #ffffff !important; font-size: 14px !important; font-weight: bold !important; border: 2px solid rgba(255, 255, 255, 0.5) !important; border-radius: 50% !important; width: 26px !important; height: 26px !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; margin-left: 10px !important; }
.pd-filebox a::before, .pd-file a::before { content: "" !important; position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; z-index: 10 !important; }
.phoca-dl-view-categories h3, .phoca-dl-view-category h3, .pd-categories-view h3, h1.componentheading { text-transform: uppercase !important; font-weight: 700 !important; color: #00204a !important; letter-spacing: 1px !important; font-size: 22px !important; margin-bottom: 20px !important; border-bottom: 2px solid #e5e5e5 !important; padding-bottom: 8px !important; }
.pd-categories-box a, .pd-categories-box .pd-title, .pd-categories-box .pd-title a, #phoca-dl-categories-box .pd-title a { text-transform: uppercase !important; font-weight: 700 !important; color: #00204a !important; font-size: 14px !important; }
body .pd-category a, body .pd-subcategory a, body .pd-file a, body .pd-filename, body .pd-filebox a { color: #002060 !important; font-weight: 600 !important; }
body .pd-button-details, body .pd-filebox .btn-info { background-color: transparent !important; background-image: none !important; border: 1px solid #cbd5e1 !important; color: #475569 !important; text-shadow: none !important; box-shadow: none !important; }
body .pd-button-download, body .pd-filebox .btn-success { background-color: #002060 !important; background-image: none !important; border: 1px solid #002060 !important; color: #ffffff !important; text-shadow: none !important; box-shadow: none !important; }
body .pd-filebox .btn-success:hover { background-color: #051940 !important; border-color: #051940 !important; }

/* ==========================================================================
   LÍNEAS Y ENCABEZADOS OCULTOS
   ========================================================================== */
.header-linea { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.header-linea h3 { margin: 0 !important; white-space: nowrap; color: #00204a !important; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 1.5px !important; font-size: 18px !important; }
.linea-deco { flex-grow: 1; height: 1px; background-color: #9daec6; }
#sp-page-title .sp-page-title-heading, #sp-page-title .sp-page-title-sub-heading, #sp-page-title .breadcrumb, #sp-page-title h1, #sp-page-title h2, #sp-page-title h3, #sp-page-title h4, #sp-page-title ol, #sp-page-title ul, #sp-page-title li, #sp-page-title span { display: none !important; }
#sp-page-title .breadcrumb { display: none !important; }

/* ==========================================================================
   FACILITACIÓN DE INVERSIONES
   ========================================================================== */
.tarjeta-inversiones { display: flex; align-items: center; background: linear-gradient(135deg, #f4f7fb 0%, #ffffff 100%); border-radius: 20px; overflow: hidden; margin: 40px 0; box-shadow: 0 10px 30px rgba(0, 32, 74, 0.08); }
.inversiones-contenido { flex: 1; padding: 50px; }
.inversiones-contenido h2 { color: #00204a; font-size: 36px; margin-bottom: 20px; font-weight: 300; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.2; }
.inversiones-contenido h2 strong { font-weight: 800; }
.inversiones-contenido p { color: #555555; font-size: 16px; line-height: 1.7; margin-bottom: 30px; }
.btn-inversiones { display: inline-block; background-color: #00204a; color: #ffffff !important; padding: 12px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 15px; transition: all 0.3s ease; }
.btn-inversiones:hover { background-color: #003377; transform: translateX(5px); }
.inversiones-imagen { flex: 1; height: 100%; min-height: 350px; }
.inversiones-imagen img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) { .tarjeta-inversiones { flex-direction: column-reverse; } .inversiones-contenido { padding: 30px 20px; } .inversiones-imagen { width: 100%; min-height: 250px; } }

/* ==========================================================================
   PARTNERS: CARRUSEL INFINITO
   ========================================================================== */
.titulo-partners { text-align: center; margin-bottom: 40px; }
.titulo-partners h2 { color: #2c355b; font-size: 34px; font-weight: 300; font-family: "Montserrat", "Roboto", "Helvetica Neue", sans-serif; margin-bottom: 12px; letter-spacing: 0.5px; text-transform: none; }
.linea-azul { display: inline-block; width: 40px; height: 2px; background-color: #003a6c; }
.carrusel-infinito { width: 100%; overflow: hidden; background: #f8fafc; padding: 30px 0; position: relative; }
.carrusel-infinito::before, .carrusel-infinito::after { content: ""; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2; }
.carrusel-infinito::before { left: 0; background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%); }
.carrusel-infinito::after { right: 0; background: linear-gradient(to left, white 0%, rgba(255,255,255,0) 100%); }
.carrusel-track { display: flex; width: max-content; animation: moverCarrusel 100s linear infinite; }
.carrusel-track:hover { animation-play-state: paused; }
.logos-grupo { display: flex; align-items: center; justify-content: space-around; }
.logos-grupo img { height: 115px; width: auto; max-width: 260px; margin: 15px 20px; padding: 15px 25px; object-fit: contain; background-color: #ffffff; border-radius: 12px; border: 1px solid #f0f4f8; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); filter: opacity(85%); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.logos-grupo img:hover { filter: opacity(100%); transform: translateY(-8px) scale(1.05); box-shadow: 0 15px 30px rgba(0, 58, 108, 0.12); }
@keyframes moverCarrusel { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 768px) { .logos-grupo img { height: 70px; margin: 10px 15px; padding: 10px 15px; } }

/* ==========================================================================
   AUTORIDADES (DIRECTORIO CNCSP)
   ========================================================================== */
.autoridades-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 900px; margin: 50px auto; padding: 0 20px; }
.tarjeta-autoridad { flex: 1 1 350px; background: #ffffff; padding: 40px 20px; border-radius: 12px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); border: 1px solid #f0eaf0; position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.tarjeta-autoridad:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(74, 21, 75, 0.15); }
.tarjeta-autoridad::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background-color: #4a154b; transition: height 0.3s ease; }
.tarjeta-autoridad:hover::after { height: 8px; }
.nombre-autoridad { display: block; font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; color: #4a154b; margin-bottom: 8px; }
.cargo-autoridad { display: block; font-family: 'Lato', sans-serif; font-size: 14px; color: #777777; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.tarjeta-autoridad.presidente { flex: 1 1 100%; max-width: 500px; background: linear-gradient(135deg, #4a154b, #310e32); border: none; box-shadow: 0 15px 35px rgba(74, 21, 75, 0.3); padding: 50px 20px; }
.tarjeta-autoridad.presidente::after { background-color: #c5a869; }
.tarjeta-autoridad.presidente .nombre-autoridad { color: #ffffff; font-size: 26px; }
.tarjeta-autoridad.presidente .cargo-autoridad { color: #c5a869; }

/* ==========================================================================
   PRESENTACIÓN INSTITUCIONAL CAMP
   ========================================================================== */
.camp-presentacion-wrapper { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; margin-bottom: 50px; margin-top: 20px; }
.camp-presentacion-texto { flex: 1 1 50%; min-width: 320px; }
.camp-presentacion-imagen { flex: 1 1 40%; min-width: 320px; }
.camp-presentacion-imagen img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 15px 35px rgba(0, 58, 108, 0.15); border: 1px solid #eef2f6; transition: transform 0.3s ease; }
.camp-presentacion-imagen img:hover { transform: scale(1.02); }
.camp-presentacion-texto h2 { font-size: 32px !important; color: #003a6c !important; margin-top: 0 !important; margin-bottom: 15px !important; text-transform: uppercase !important; letter-spacing: 1px !important; font-weight: 300 !important; }
.camp-presentacion-texto .linea-bronce { width: 80px; height: 4px; background-color: #c5a869; margin-bottom: 30px; }
.camp-presentacion-texto p { font-size: 16px !important; line-height: 1.8 !important; color: #475569 !important; margin-bottom: 20px !important; text-align: justify !important; }
.camp-caja-digital { background-color: #f8fafc; border-left: 4px solid #c5a869; padding: 25px; border-radius: 0 8px 8px 0; margin: 30px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.camp-caja-digital h4 { color: #003a6c !important; font-size: 18px !important; font-weight: 700 !important; margin-top: 0 !important; margin-bottom: 10px !important; display: flex !important; align-items: center !important; gap: 10px !important; }
.camp-caja-digital p { margin-bottom: 0 !important; font-size: 15px !important; }
.camp-btn-enlace { display: inline-block; background-color: #003a6c; color: #ffffff !important; font-weight: 600; padding: 14px 28px; border-radius: 6px; text-decoration: none !important; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0, 58, 108, 0.2); }
.camp-btn-enlace:hover { background-color: #c5a869; box-shadow: 0 6px 15px rgba(197, 168, 105, 0.3); transform: translateY(-2px); }

/* ==========================================================================
   SERVICIOS CNCSP - DISEÑO ZIG-ZAG
   ========================================================================== */
.cncsp-servicios-contenedor { padding: 20px 0; }
.cncsp-servicio-fila { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; margin-bottom: 70px; }
.cncsp-servicio-fila.reverso { flex-direction: row-reverse; }
.cncsp-servicio-img { flex: 1 1 45%; min-width: 300px; }
.cncsp-servicio-texto { flex: 1 1 45%; min-width: 300px; }
.cncsp-servicio-img img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); transition: transform 0.3s ease; }
.cncsp-servicio-img img:hover { transform: translateY(-5px); }
.cncsp-servicio-texto h3 { font-size: 26px !important; color: #4a154b !important; margin-top: 0 !important; margin-bottom: 15px !important; text-transform: uppercase !important; font-weight: 300 !important; letter-spacing: 0.5px !important; }
.cncsp-servicio-texto .linea-cncsp { width: 60px; height: 3px; background-color: #4a154b; margin-bottom: 20px; }
.cncsp-servicio-texto p { font-size: 16px !important; line-height: 1.7 !important; color: #444444 !important; margin-bottom: 15px !important; text-align: justify !important; }
.cncsp-servicio-texto a { color: #4a154b !important; font-weight: bold !important; text-decoration: underline !important; }
.cncsp-otros-servicios { background-color: #f9f9f9; border-top: 4px solid #4a154b; padding: 40px; border-radius: 8px; margin-top: 20px; }
.cncsp-otros-servicios h3 { font-size: 24px !important; color: #4a154b !important; text-align: center !important; margin-bottom: 30px !important; text-transform: uppercase !important; font-weight: 300 !important; }
.cncsp-lista-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; list-style: none; padding: 0; margin: 0; }
.cncsp-lista-grid li { font-size: 15px; color: #444; position: relative; padding-left: 20px; }
.cncsp-lista-grid li::before { content: '►'; position: absolute; left: 0; color: #4a154b; font-size: 12px; top: 4px; }
@media (max-width: 768px) { .cncsp-lista-grid { grid-template-columns: 1fr; } }