.elementor-133 .elementor-element.elementor-element-cad7ade{--display:flex;}/* Start custom CSS for html, class: .elementor-element-54a938b *//* ==========================================================================
   CONFIGURACIÓN GENERAL DE LA PÁGINA "¿QUÉ ES NA?"
   ========================================================================== */
.na-about-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, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Título principal estilizado con el azul corporativo */
.na-about-main-title {
    color: #263064;
    font-size: 36px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 35px;
    position: relative;
}

/* Distribución en Grid de Escritorio */
.na-about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Columna de texto sutilmente más ancha */
    gap: 50px;
    align-items: start;
}

/* ==========================================================================
   ESTILOS DE LA COLUMNA DE TEXTO
   ========================================================================== */
.na-about-text-col {
    color: #333333;
    font-size: 16px;
    line-height: 1.65;
}

.na-about-text-col p {
    margin-top: 0;
    margin-bottom: 18px;
}

/* Párrafo introductorio de mayor impacto */
.na-about-lead {
    font-size: 17px;
    font-weight: 500;
    color: #1a202c;
}

.na-about-source {
    margin-bottom: 12px !important;
    font-weight: 500;
}

/* Bloque de cita estilizado (Librito Blanco) */
.na-about-quote {
    background-color: #f7fafc;
    border-left: 4px solid #16408b;
    margin: 20px 0 30px 0;
    padding: 16px 20px;
    font-style: italic;
    color: #4a5568;
    font-size: 15.5px;
    line-height: 1.6;
}

/* Contenedor del botón inferior */
.na-about-action {
    margin-top: 35px;
}

/* Botón Verde Estilo UI */
.btn-na-document {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #218838;
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(33, 136, 56, 0.15);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-na-document:hover {
    background-color: #1e7e34;
    transform: translateY(-1px);
}

.btn-na-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================================
   ESTILOS DE LA COLUMNA DE IMAGEN (OPTIMIZADA SIN VIDEO)
   ========================================================================== */
.na-about-image-col {
    position: sticky;
    top: 20px; /* La foto acompañará la lectura si el texto es muy largo */
}

.na-about-image-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #f7fafc;
}

.na-about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   ADAPTACIÓN EXCLUSIVA PARA CELULARES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 991px) {
    .na-about-grid {
        grid-template-columns: 1fr; /* Pasa a una sola columna */
        gap: 30px;
    }

    .na-about-main-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 25px;
    }

    /* REORDENAMIENTO: Forzamos que la foto se sitúe arriba del texto en móviles */
    .na-about-image-col {
        grid-row: 1; 
        position: static;
    }

    .na-about-text-col {
        grid-row: 2;
        font-size: 15px;
    }

    .na-about-quote {
        padding: 14px 16px;
        font-size: 14.5px;
    }

    .na-about-action {
        text-align: center; /* Centra el botón en pantallas táctiles */
    }

    .btn-na-document {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}/* End custom CSS */