/* ============================================
   MISION Y VISION - CSS AVANZADO
   Gimnasio Humanístico del Alto Magdalena
============================================ */

/* Variables CSS mejoradas para el diseño */
:root {
    /* Colores base del sistema */
    --primary-green: #0d3f27;
    --primary-green-bottom: #065e35;

    --secondary-green: #7ddfac;
    --accent-gold: #eba418;  
    --light-green: #4CAF50;
    --dark-gold: #E6A835;
    --soft-gold: #FDF6E3;

    --white: #FFFFFF;
    --light-gray: #F8FAFB;
    --medium-gray: #E5E7EB;
    --dark-gray: #374151;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;

    /* Gradientes avanzados */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-bottom) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 63, 39, 0.95) 0%, rgba(6, 94, 53, 0.9) 50%, rgba(13, 63, 39, 0.95) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Sombras profesionales */
    --shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-floating: 0 25px 50px rgba(0, 0, 0, 0.2);

    /* Transiciones */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Transiciones */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;

    /* Espaciado */
    --section-padding: 120px 0;
    --section-padding-mobile: 80px 0;

    /* Bordes redondeados */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: black;
    font-weight: 400;
    overflow-x: hidden;
    background-color: var(--warm-white);
    scroll-behavior: smooth;
}























 /* ============================================
           SECCIÓN MISIÓN - OPTIMIZADA
        ============================================ */
        .section-mision {
            padding: 3rem 0 5rem 0;
            background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
            position: relative;
            margin-top: 0%;
        }

        .section-mision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, rgba(13, 63, 39, 0.05) 0%, transparent 100%);
        }

        .content-wrapper {
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition-smooth);
            max-width: 100%;
            
        }

        .content-wrapper.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .section-header {
            margin-bottom: 2rem;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 1rem;
            position: relative;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .section-title.centered {
            justify-content: center;
            text-align: center;
        }

        .title-decoration {
            width: 80px;
            height: 4px;
            background: var(--gradient-gold);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .section-content {
            font-size: 1.1rem;
            line-height: 1.9;
            color: black;
            text-align: justify;
            text-justify: inter-word;
        }

        .parrafo_2{
            color: black;
        }

        .lead-paragraph {
            font-size: 1.25rem;
            font-weight: 500;
            color: black;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            text-align: justify;
            text-justify: inter-word;
        }

        .section-content p {
            margin-bottom: 1.2rem;
            hyphens: auto;
            word-spacing: 0.05em;
        }

        .section-content p:last-of-type {
            margin-bottom: 0;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .pillar-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 1rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-subtle);
            transition: var(--transition-smooth);
        }

        .pillar-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .pillar-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            color: black;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .pillar-item span {
            font-size: 1rem;
            font-weight: 500;
            color: black;
            line-height: 1.4;
        }

        /* ============================================
           IMAGEN PROFESIONAL MISIÓN
        ============================================ */
        .visual-element {
            position: relative;
            height: 70%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mision-visual {
            position: relative;
            min-height: 450px;
            background: url('../images/logo.png') center/contain no-repeat;
            border-radius: 20px;
            box-shadow: var(--shadow-strong);
        }


        /* ============================================
           SECCIÓN VISIÓN - OPTIMIZADA
        ============================================ */
        .section-vision {
            padding: 3rem 0 5rem 0;
            background: var(--primary-green);
            color: var(--white);
            position: relative;
            margin-top: 0%;
            overflow: hidden;
        }

        .section-vision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(244, 185, 66, 0.1) 0%, transparent 50%);
        }

        .section-vision .section-title {
            color: var(--white);
            margin-bottom: 0rem;
        }

        .section-vision .section-content {
            color: rgba(255, 255, 255, 0.95);
            text-align: justify;
            text-justify: inter-word;
        }

        .section-vision .lead-paragraph {
            color: var(--white);
            text-align: justify;
            text-justify: inter-word;
        }

        .vision-year {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-align: center;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            margin-top: 0.5rem;
            margin-bottom: 1.5rem;
            line-height: 1;
        }

        .vision-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .vision-visual {
            position: relative;
            min-height: 500px;
            background: url('../images/consejo_directivo.jpg') center/cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* ============================================
           ALINEACIÓN Y SIMETRÍA DE COLUMNAS
        ============================================ */
        .section-mision .row,
        .section-vision .row {
            align-items: center;
        }

        .section-mision .col-lg-6,
        .section-vision .col-lg-6 {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

       

        /* ============================================
           ANIMACIONES
        ============================================ */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .timeline-item.future {
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }







/* Header Section */
.admision-nav-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(244, 185, 66, 0.12) 0%, rgba(244, 185, 66, 0.08) 100%);
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(244, 185, 66, 0.25);
    box-shadow: 0 2px 8px rgba(244, 185, 66, 0.1);
}

.label-icon {
    color: #f4b942;
    font-size: 0.85rem;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(1.08); }
}

.label-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green, #0d3f27);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.admision-nav-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--primary-green, #0d3f27);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.admision-nav-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.09rem;
    color: var(--text-darkk);
    font-weight: 400;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

/* Wrapper para logo y contenido */
.header-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.13rem;
    max-width: 900px;
    margin-left: 70px;
}

/* Logo del colegio */
.header-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 20px;
    margin-right: 90px;
}

/* Contenedor del texto */
.header-text-content {
    flex: 1;
    text-align: center;
    min-width: 0;
}




















.section-valores {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    margin-top: 0%;
    padding: 3rem 0 5rem 0; /* Reducido padding superior como solicitaste */
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.valor-block {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(13, 63, 39, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.valor-block.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.valor-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.valor-icon-container {
    text-align: center;
}

.valor-main-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
    position: relative;
}


.valor-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.3;
}

.valor-content {
    text-align: left;
}

.valor-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(13, 63, 39, 0.02) 0%, rgba(244, 185, 66, 0.02) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

.valor-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-subtle);
}

.valor-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.valor-item-header i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.valor-item-header h4 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0;
}

.valor-item p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-dark);
}


/* ============================================
   ANIMACIONES
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}




/* ============================================
   RESPONSIVE DESIGN PROFESIONAL - SOLO MEDIA QUERIES
   Gimnasio Humanístico del Alto Magdalena
============================================ */

/* ============================================
   TABLETS Y PANTALLAS MEDIANAS (992px - 1199px)
============================================ */
@media (max-width: 1199px) {
    /* Header y Logo */
    .header-content-wrapper {
        margin-left: 40px;
        gap: 1rem;
    }
    
    .header-logo {
        width: 85px;
        height: 85px;
        margin-right: 60px;
    }
    
    .admision-nav-title {
        font-size: clamp(2.5rem, 3.5vw, 3rem);
    }
    
    .admision-nav-subtitle {
        font-size: 1rem;
        max-width: 550px;
    }

    /* Secciones Misión y Visión */
    .section-mision,
    .section-vision {
        padding: 2.5rem 0 4rem 0;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
    
    .title-decoration {
        width: 70px;
    }
    
    .section-content {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .lead-paragraph {
        font-size: 1.15rem;
    }
    
    /* Imágenes visuales */
    .mision-visual,
    .vision-visual {
        min-height: 450px;
        margin-top: 1rem;
    }
    
    /* Pilares y características */
    .pillars-grid {
        gap: 1.25rem;
    }
    
    .vision-features {
        gap: 1.25rem;
    }
    
    /* Valores */
    .valor-block {
        padding: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .valor-main-icon {
        width: 75px;
        height: 75px;
        font-size: 2.3rem;
    }
}

/* ============================================
   TABLETS PORTRAIT (768px - 991px)
============================================ */
@media (max-width: 991px) {
    /* Header */
    .header-content-wrapper {
        margin-left: 20px;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .header-logo {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .admision-nav-title {
        font-size: clamp(2.2rem, 3vw, 2.8rem);
    }
    
    .admision-nav-subtitle {
        font-size: 0.95rem;
        max-width: 500px;
    }

    /* Secciones */
    .section-mision,
    .section-vision {
        padding: 2rem 0 3.5rem 0;
    }
    
    .content-wrapper {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .title-decoration {
        width: 60px;
    }
    
    .section-content {
        font-size: 1rem;
        line-height: 1.75;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .section-vision .section-content,
    .section-vision .lead-paragraph {
        text-align: left;
    }
    
    /* Imágenes */
    .mision-visual,
    .vision-visual {
        min-height: 350px;
        margin-top: 1rem;
        border-radius: 16px;
    }
    
    /* Grid de pilares */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pillar-item {
        padding: 1.2rem 1rem;
    }
    
    .pillar-icon {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }
    
    .pillar-item span {
        font-size: 0.98rem;
    }
    
    /* Visión */
    .vision-year {
        font-size: 3.5rem;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .vision-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    /* Valores */
    .valor-block {
        padding: 2rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    .valor-main-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .valor-title {
        font-size: 1.3rem;
    }
    
    .valor-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }
    
    .valor-item-header h4 {
        font-size: 1.35rem;
    }
}

/* ============================================
   MÓVILES GRANDES (576px - 767px)
============================================ */
@media (max-width: 767px) {
    /* Header */
    .header-content-wrapper {
        margin-left: 0;
        gap: 1rem;
    }
    
    .header-logo {
        width: 70px;
        height: 70px;
    }
    
    .header-label {
        padding: 0.35rem 0.8rem;
    }
    
    .label-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .admision-nav-title {
        font-size: clamp(1.8rem, 5vw, 2.3rem);
        line-height: 1.3;
    }
    
    .admision-nav-subtitle {
        font-size: 0.9rem;
        max-width: 90%;
        line-height: 1.6;
    }

    /* Secciones */
    .section-mision,
    .section-vision {
        padding: 1.5rem 0 3rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        align-items: center;
    }
    
    .section-title.centered {
        justify-content: center;
    }
    
    .title-decoration {
        width: 50px;
        height: 3px;
    }
    
    .section-content {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
        padding: 0 0.5rem;
    }
    
    .lead-paragraph {
        font-size: 1.05rem;
        line-height: 1.65;
        text-align: left;
        padding: 0 0.5rem;
    }
    
    .section-content p {
        margin-bottom: 1rem;
    }
    
    /* Imágenes */
    .mision-visual,
    .vision-visual {
        min-height: 300px;
        margin-top: 1rem;
        border-radius: 14px;
    }
    
    /* Pilares */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-top: 1.5rem;
    }
    
    .pillar-item {
        padding: 1rem 0.9rem;
        border-radius: 10px;
    }
    
    .pillar-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .pillar-item span {
        font-size: 0.92rem;
        line-height: 1.4;
    }
    
    /* Visión */
    .vision-year {
        font-size: 3rem;
        margin-top: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .vision-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    /* Valores */
    .section-valores {
        padding: 1.5rem 0 3rem 0;
    }
    
    .valor-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 18px;
    }
    
    .valor-main-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .valor-title {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .valor-content {
        padding: 0 0.5rem;
    }
    
    .valor-item {
        padding: 1rem;
        margin-bottom: 1.25rem;
        border-radius: 12px;
    }
    
    .valor-item-header {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .valor-item-header i {
        font-size: 1.1rem;
    }
    
    .valor-item-header h4 {
        font-size: 1.2rem;
    }
    
    .valor-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* ============================================
   MÓVILES PEQUEÑOS (menor a 576px)
============================================ */
@media (max-width: 575px) {
    /* Header */
    .header-content-wrapper {
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .header-logo {
        width: 60px;
        height: 60px;
    }
    
    .header-label {
        padding: 0.3rem 0.7rem;
    }
    
    .label-icon {
        font-size: 0.8rem;
    }
    
    .label-text {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
    }
    
    .admision-nav-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        letter-spacing: -0.3px;
    }
    
    .admision-nav-subtitle {
        font-size: 0.85rem;
        max-width: 95%;
        line-height: 1.5;
    }

    /* Secciones */
    .section-mision,
    .section-vision {
        padding: 1.25rem 0 2.5rem 0;
    }
    
    .section-mision::before {
        height: 60px;
    }
    
    .section-header {
        margin-bottom: 1.25rem;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        gap: 0.4rem;
    }
    
    .title-decoration {
        width: 40px;
        height: 3px;
    }
    
    .section-content {
        font-size: 0.9rem;
        line-height: 1.65;
        padding: 0 0.25rem;
    }
    
    .lead-paragraph {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.25rem;
        margin-bottom: 1rem;
    }
    
    .section-content p {
        margin-bottom: 0.9rem;
    }
    
    /* Imágenes */
    .mision-visual,
    .vision-visual {
        min-height: 250px;
        margin-top: 0.45rem;
        border-radius: 12px;
    }
    
    /* Pilares */
    .pillars-grid {
        gap: 0.8rem;
        margin-top: 1.25rem;
    }
    
    .pillar-item {
        padding: 0.9rem 0.75rem;
        border-radius: 10px;
        gap: 0.75rem;
    }
    
    .pillar-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .pillar-item span {
        font-size: 0.88rem;
        line-height: 1.35;
    }
    
    /* Visión */
    .vision-year {
        font-size: 2.5rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .vision-features {
        gap: 0.9rem;
        margin-top: 1.25rem;
    }
    
    /* Valores */
    .section-valores {
        padding: 1.25rem 0 2.5rem 0;
    }
    
    .valor-block {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
        border-radius: 16px;
    }
    
    .valor-block::before {
        height: 5px;
    }
    
    .valor-main-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 0.9rem;
    }
    
    .valor-title {
        font-size: 1.1rem;
        line-height: 1.35;
    }
    
    .valor-content {
        padding: 0 0.25rem;
    }
    
    .valor-item {
        padding: 0.9rem 0.75rem;
        margin-bottom: 1rem;
        border-radius: 10px;
        border-left-width: 3px;
    }
    
    .valor-item:hover {
        transform: translateX(5px);
    }
    
    .valor-item-header {
        gap: 0.7rem;
        margin-bottom: 0.7rem;
        flex-wrap: wrap;
    }
    
    .valor-item-header i {
        font-size: 1rem;
    }
    
    .valor-item-header h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .valor-item p {
        font-size: 0.88rem;
        line-height: 1.55;
    }
}

/* ============================================
   MÓVILES MUY PEQUEÑOS (menor a 400px)
============================================ */
@media (max-width: 399px) {
    .header-logo {
        width: 50px;
        height: 50px;
    }
    
    .admision-nav-title {
        font-size: 1.4rem;
    }
    
    .admision-nav-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-content {
        font-size: 0.85rem;
    }
    
    .lead-paragraph {
        font-size: 0.95rem;
    }
    
    .mision-visual,
    .vision-visual {
        min-height: 220px;
    }
    
    .pillar-item {
        padding: 0.8rem 0.6rem;
    }
    
    .pillar-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .pillar-item span {
        font-size: 0.85rem;
    }
    
    .vision-year {
        font-size: 2.2rem;
    }
    
    .valor-block {
        padding: 1rem;
    }
    
    .valor-main-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .valor-title {
        font-size: 1rem;
    }
    
    .valor-item {
        padding: 0.8rem 0.6rem;
    }
    
    .valor-item-header h4 {
        font-size: 1rem;
    }
    
    .valor-item p {
        font-size: 0.85rem;
    }
}

/* ============================================
   LANDSCAPE MODE (Orientación horizontal en móviles)
============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .mision-visual,
    .vision-visual {
        min-height: 200px;
    }
    
    .section-mision,
    .section-vision {
        padding: 1rem 0 2rem 0;
    }
    
    .valor-block {
        padding: 1rem;
    }
    
    .valor-main-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* ============================================
   AJUSTES PARA PANTALLAS TÁCTILES
============================================ */
@media (hover: none) and (pointer: coarse) {
    .pillar-item:hover,
    .valor-item:hover {
        transform: none;
    }
    
    .pillar-item:active {
        transform: scale(0.98);
    }
    
    .valor-item:active {
        transform: translateX(5px);
    }
}

/* ============================================
   MEJORAS DE ACCESIBILIDAD EN RESPONSIVE
============================================ */
@media (prefers-reduced-motion: reduce) {
    .content-wrapper,
    .valor-block,
    .pillar-item,
    .valor-item {
        animation: none;
        transition: none;
    }
}

/* ============================================
   OPTIMIZACIÓN PARA IMPRESIÓN
============================================ */
@media print {
    .section-mision,
    .section-vision,
    .section-valores {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    .valor-block {
        page-break-inside: avoid;
    }
    
    .mision-visual,
    .vision-visual {
        display: none;
    }
}