/* ===== SECCIÓN MISIÓN Y VISIÓN - VERSIÓN INSTITUCIONAL ===== */
    .mv-section {
        padding: 5rem 1.5rem;
        background: #ffffff;
        position: relative;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    
    /* Decoración de fondo */
    .mv-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 45%;
        height: 100%;
        z-index: 0;
    }

    .mv-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }


    .mv-divider-line {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #1a4b6d, transparent);
        margin-top: 0.8rem;
        border-radius: 4px;
    }

    /* ===== GRID PRINCIPAL ===== */
    .mv-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin-top: 1rem;
    }

    /* ===== TARJETA MISIÓN ===== */
    .mv-card-mision {
        background: #ffffff;
        border-radius: 28px;
        padding: 3rem 2.8rem;
        box-shadow: 0 20px 50px rgba(0, 20, 40, 0.06);
        border: 1px solid rgba(26, 75, 109, 0.06);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .mv-card-mision::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #0e1079, #1417f3, #f6f6f7);
    }

    .mv-card-mision:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 60px rgba(0, 20, 40, 0.10);
    }

    /* ===== TARJETA VISIÓN (con fondo diferenciado) ===== */
    .mv-card-vision {
        background: linear-gradient(145deg, #0e1079 0%, #1417f3 100%);
        border-radius: 28px;
        padding: 3rem 2.8rem;
        box-shadow: 0 20px 50px rgba(0, 20, 40, 0.15);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        color: #ffffff;
    }

    .mv-card-vision::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
        pointer-events: none;
    }

    .mv-card-vision::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #f6f6f7, #1417f3, #0e1079);
    }

    .mv-card-vision:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 60px rgba(0, 20, 40, 0.25);
    }

    /* ===== ELEMENTOS COMUNES DE TARJETAS ===== */
    .mv-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.8rem;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .mv-card-mision .mv-card-icon {
        background: rgba(26, 75, 109, 0.07);
        color: #1a4b6d;
    }

    .mv-card-vision .mv-card-icon {
        background: rgba(255, 255, 255, 0.08);
        color: #a8c8e0;
    }

    .mv-card h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.8rem 0;
        letter-spacing: -0.01em;
    }

    .mv-card-mision h3 {
        color: #0b1f2f;
    }

    .mv-card-vision h3 {
        color: #ffffff;
    }

    .mv-card p {
        line-height: 1.8;
        font-size: 1.05rem;
        margin: 0 0 1.8rem 0;
        font-weight: 400;
    }

    .mv-card-mision p {
        color: #2c3f52;
    }

    .mv-card-vision p {
        color: rgba(255, 255, 255, 0.8);
    }

    /* ===== TAGS / PILARES ===== */
    .mv-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-top: 0.5rem;
    }

    .mv-tag {
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        padding: 0.3rem 1.2rem;
        border-radius: 40px;
        text-transform: uppercase;
    }

    .mv-card-mision .mv-tag {
        background: rgba(26, 75, 109, 0.06);
        color: #1a4b6d;
        border: 1px solid rgba(26, 75, 109, 0.08);
    }

    .mv-card-vision .mv-tag {
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* ===== CITA / FRASE DESTACADA ===== */
    .mv-footer-quote {
        margin-top: 3.5rem;
        padding: 2rem 3rem;
        background: #f8faff;
        border-radius: 20px;
        border-left: 5px solid #1a4b6d;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .mv-footer-quote blockquote {
        font-size: 1.2rem;
        font-weight: 500;
        color: #0b1f2f;
        margin: 0;
        line-height: 1.6;
        font-style: italic;
    }

    .mv-footer-quote blockquote::before {
        content: '"';
        font-size: 2.5rem;
        color: #1a4b6d;
        opacity: 0.3;
        margin-right: 0.3rem;
        font-style: normal;
    }

    .mv-footer-quote .year {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1a4b6d;
        letter-spacing: -0.03em;
        white-space: nowrap;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .mv-section::before {
            width: 100%;
            clip-path: none;
            opacity: 0.3;
        }

        .mv-header h2 {
            font-size: 2.6rem;
        }

        .mv-grid {
            gap: 2rem;
        }

        .mv-card-mision,
        .mv-card-vision {
            padding: 2.5rem 2rem;
        }
    }

    @media (max-width: 768px) {
        .mv-section {
            padding: 3rem 1.2rem;
        }

        

        .mv-grid {
            grid-template-columns: 1fr;
            gap: 1.8rem;
        }

        .mv-card-mision,
        .mv-card-vision {
            padding: 2rem 1.5rem;
        }

        .mv-card h3 {
            font-size: 1.5rem;
        }

        .mv-card p {
            font-size: 1rem;
        }

        .mv-footer-quote {
            padding: 1.5rem;
            flex-direction: column;
            text-align: center;
        }

        .mv-footer-quote blockquote {
            font-size: 1rem;
        }

        .mv-footer-quote .year {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .mv-section {
            padding: 2rem 0.8rem;
        }

        .mv-header h2 {
            font-size: 1.8rem;
        }

        .mv-header p {
            font-size: 1rem;
        }

        .mv-card-mision,
        .mv-card-vision {
            padding: 1.6rem 1.2rem;
            border-radius: 20px;
        }

        .mv-card-icon {
            width: 44px;
            height: 44px;
            font-size: 1.4rem;
            border-radius: 14px;
        }

        .mv-tag {
            font-size: 0.7rem;
            padding: 0.2rem 0.9rem;
        }
    }

    /* ===== ANIMACIÓN SCROLL ===== */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.9s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-on-scroll {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }

    /**** estilos de la intro de texto antes de las cards*****/

    /* ===== INTRO INSTITUCIONAL ===== */
.mv-intro {
    margin-bottom: 3.5rem;
    padding: 0;
}

.mv-intro-content {
    background: linear-gradient(135deg, #f8faff 0%, #eef3f9 100%);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    border: 1px solid rgba(26, 75, 109, 0.06);
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mv-intro-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 75, 109, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Texto de introducción */
.mv-intro-text {
    position: relative;
    z-index: 1;
}

.mv-intro-badge {
    display: inline-block;
    background: rgba(26, 75, 109, 0.08);
    color: #1a4b6d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(26, 75, 109, 0.08);
}

.mv-intro-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1f2f;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.mv-intro-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3f52;
    margin: 0 0 1rem 0;
}

.mv-intro-description:last-of-type {
    margin-bottom: 0;
}

.mv-intro-description strong {
    color: #1a4b6d;
    font-weight: 700;
}

/* Estadísticas */
.mv-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.mv-stat-item {
    background: #ffffff;
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 20, 40, 0.04);
    border: 1px solid rgba(26, 75, 109, 0.04);
    transition: transform 0.2s ease;
}

.mv-stat-item:hover {
    transform: translateY(-2px);
}

.mv-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1417f3;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.mv-stat-label {
    font-size: 0.85rem;
    color: #4a5b6e;
    font-weight: 500;
    display: block;
    line-height: 1.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .mv-intro-content {
        padding: 2.5rem 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-intro-title {
        font-size: 1.6rem;
    }

    .mv-intro-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mv-intro {
        margin-bottom: 2.5rem;
    }

    .mv-intro-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .mv-intro-title {
        font-size: 1.4rem;
    }

    .mv-intro-description {
        font-size: 0.95rem;
    }

    .mv-intro-stats {
        gap: 1rem;
    }

    .mv-stat-item {
        padding: 1.2rem 0.8rem;
    }

    .mv-stat-number {
        font-size: 1.6rem;
    }

    .mv-stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .mv-intro-content {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .mv-intro-title {
        font-size: 1.2rem;
    }

    .mv-intro-description {
        font-size: 0.9rem;
    }

    .mv-intro-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .mv-stat-item {
        padding: 1rem 0.6rem;
    }

    .mv-stat-number {
        font-size: 1.3rem;
    }

    .mv-stat-label {
        font-size: 0.7rem;
    }
}





/* ===== CARACTERÍSTICAS QUE NOS DISTINGUEN ===== */
.mv-features {
    margin: 3.5rem 0 4rem 0;
    padding: 0;
}

.mv-features-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.mv-features-badge {
    display: inline-block;
    background: rgba(26, 75, 109, 0.08);
    color: #1a4b6d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(26, 75, 109, 0.08);
}

.mv-features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1f2f;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.01em;
}

.mv-features-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a4b6d, transparent);
    margin: 0 auto;
    border-radius: 4px;
}

.mv-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(26, 75, 109, 0.06);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 20, 40, 0.02);
}

.mv-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 20, 40, 0.06);
    border-color: rgba(26, 75, 109, 0.12);
}

.mv-feature-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.mv-feature-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0b1f2f;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
}

.mv-feature-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5b6e;
    margin: 0;
}

/* ===== MODELO EDUCATIVO ===== */
.mv-educational-model {
    margin: 0 0 3.5rem 0;
    padding: 0;
}

.mv-model-content {
    background: linear-gradient(135deg, #0b1f2f 0%, #1a3a52 100%);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mv-model-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mv-model-text {
    position: relative;
    z-index: 1;
}

.mv-model-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mv-model-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.01em;
}

.mv-model-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6ba3c9, transparent);
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.mv-model-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1rem 0;
}

.mv-model-highlight {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #6ba3c9;
    margin-top: 1rem;
}

.mv-model-highlight p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mv-model-highlight strong {
    color: #ffffff;
    font-weight: 700;
}

/* Visual / Iconos del modelo */
.mv-model-visual {
    position: relative;
    z-index: 1;
}

.mv-model-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mv-model-icon-circle {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.mv-model-icon-circle:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-3px);
}

.mv-model-icon-circle span {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mv-model-icon-circle p {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .mv-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .mv-feature-item {
        padding: 1rem 1.2rem;
    }

    .mv-model-content {
        padding: 2.5rem 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-model-icons {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mv-features {
        margin: 2.5rem 0 3rem 0;
    }

    .mv-features-title {
        font-size: 1.6rem;
    }

    .mv-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mv-feature-item {
        padding: 0.8rem 1rem;
    }

    .mv-feature-icon {
        font-size: 1.5rem;
        width: 32px;
    }

    .mv-feature-content h4 {
        font-size: 0.9rem;
    }

    .mv-feature-content p {
        font-size: 0.85rem;
    }

    .mv-model-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .mv-model-title {
        font-size: 1.6rem;
    }

    .mv-model-description {
        font-size: 0.95rem;
    }

    .mv-model-highlight {
        padding: 1rem;
    }

    .mv-model-highlight p {
        font-size: 0.95rem;
    }

    .mv-model-icons {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .mv-model-icon-circle {
        padding: 1rem 0.8rem;
    }

    .mv-model-icon-circle span {
        font-size: 1.8rem;
    }

    .mv-model-icon-circle p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .mv-features-header {
        margin-bottom: 1.8rem;
    }

    .mv-features-title {
        font-size: 1.4rem;
    }

    .mv-feature-item {
        padding: 0.7rem 0.8rem;
        gap: 0.8rem;
        border-radius: 12px;
    }

    .mv-feature-icon {
        font-size: 1.3rem;
        width: 28px;
    }

    .mv-feature-content h4 {
        font-size: 0.85rem;
    }

    .mv-feature-content p {
        font-size: 0.8rem;
    }

    .mv-model-content {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .mv-model-title {
        font-size: 1.4rem;
    }

    .mv-model-description {
        font-size: 0.9rem;
    }

    .mv-model-highlight {
        padding: 0.8rem;
    }

    .mv-model-highlight p {
        font-size: 0.9rem;
    }

    .mv-model-icons {
        gap: 0.8rem;
    }

    .mv-model-icon-circle {
        padding: 0.8rem 0.5rem;
        border-radius: 14px;
    }

    .mv-model-icon-circle span {
        font-size: 1.5rem;
    }

    .mv-model-icon-circle p {
        font-size: 0.7rem;
    }
}