.elementor-146 .elementor-element.elementor-element-2c729dc{--display:flex;}/* Start custom CSS for html, class: .elementor-element-fa0edef *//* ==========================================================================
   ESTRUCTURA MAESTRA DE LA PÁGINA DE RECURSOS PRO
   ========================================================================== */
.na-pro-section {
    max-width: 1140px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Título de la sección */
.na-pro-main-title {
    color: #16408b;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 35px;
}

/* Grid de introducción (Escritorio) */
.na-pro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: start;
    margin-bottom: 40px;
}

.na-pro-text-col {
    color: #333333;
    font-size: 15.5px;
    line-height: 1.65;
}

.na-pro-text-col p {
    margin-top: 0;
    margin-bottom: 18px;
}

/* Destacado del texto local */
.na-pro-local-text {
    border-left: 3px solid #16408b;
    padding-left: 15px;
    font-weight: 500;
    color: #1a202c;
}

/* Contenedor de la Imagen */
.na-pro-image-wrapper {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.na-pro-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   SECCIÓN PROFESIONAL DEL ÁMBITO SOCIAL
   ========================================================================== */
.na-pro-sub-section {
    margin-top: 20px;
    margin-bottom: 40px;
    color: #333333;
    font-size: 15.5px;
    line-height: 1.65;
}

.na-pro-sub-title {
    color: #16408b;
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.na-pro-sub-section p {
    margin-top: 0;
    margin-bottom: 15px;
}

/* ==========================================================================
   REJILLA DE 3 COLUMNAS PARA LOS BOTONES
   ========================================================================== */
.na-pro-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Crea 3 columnas exactamente iguales */
    gap: 20px;
    margin-top: 35px;
}

/* Botón Azul UI Profesional */
.btn-pro-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #263064; /* Azul intermedio institucional para recursos */
    color: #ffffff !important;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    min-height: 54px; /* Asegura simetría si el texto rompe en dos líneas */
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(30, 101, 175, 0.15);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-pro-blue:hover {
    background-color: #263064; /* Oscurece al tono corporativo principal al pasar el mouse */
    transform: translateY(-1px);
}

/* ==========================================================================
   ADAPTACIÓN RESPONSIVA (MÓVILES Y TABLETS)
   ========================================================================== */
@media (max-width: 991px) {
    .na-pro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Envía la foto arriba en móviles para equilibrar la composición visual */
    .na-pro-image-col {
        grid-row: 1;
    }
    
    .na-pro-text-col {
        grid-row: 2;
    }

    /* La botonera pasa a 1 sola columna vertical en celulares */
    .na-pro-buttons-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .btn-pro-blue {
        padding: 14px 15px;
        font-size: 14.5px;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .na-pro-main-title {
        font-size: 24px;
        text-align: center;
    }
    
    .na-pro-sub-title {
        font-size: 20px;
        text-align: center;
    }
}/* End custom CSS */