 /* =========================================
           ESTILOS GENERALES DE CONTENIDO
           ========================================= */
        .specialty-content { padding: 80px 0; background-color: #fff; }
        .divider-left { height: 4px; width: 50px; background-color: var(--u-dorado); border-radius: 2px; margin-top: 10px; margin-bottom: 25px; }

        /* Estilos para Misión/Visión (Adaptado de Skill Card) */
        .mv-card {
            background-color: #fff;
            border: 1px solid #e0e0e0; border-radius: 12px; border-left: 5px solid var(--u-verde-profundo);
            padding: 30px; margin-bottom: 25px; transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        .mv-card:hover { transform: translateX(10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-left-color: var(--u-dorado); }
        
        .mv-icon { font-size: 2rem; color: var(--u-verde-profundo); margin-bottom: 15px; }
        .mv-title { font-family: 'Merriweather', serif; font-size: 1.3rem; margin-bottom: 15px; color: #222; font-weight: 700; }
        .mv-text { font-size: 0.95rem; color: #555; line-height: 1.8; text-align: justify; }

        /* Sidebar Ficha */
        .sidebar-box { background-color: #fff; padding: 30px; border: 1px solid #eee; border-top: none; border-radius: 0 0 8px 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .specialty-sidebar .img-fluid { width: 100%; height: 250px; object-fit: cover; border-radius: 8px 8px 0 0; }
        .icon-circle { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; background-color: var(--u-gris-claro); color: var(--u-verde-profundo); flex-shrink: 0; margin-right: 15px; }

        /* =========================================
           LÍNEA DE TIEMPO (TIMELINE)
           ========================================= */
        .timeline-section { background-color: #f8f9fa; padding: 80px 0; }
        
        .timeline { position: relative; max-width: 1000px; margin: 0 auto; }
        .timeline::after { content: ''; position: absolute; width: 4px; background-color: var(--u-verde-medio); top: 0; bottom: 0; left: 50%; margin-left: -2px; }
        
        .timeline-container { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; }
        .timeline-container::after { content: ''; position: absolute; width: 20px; height: 20px; right: -10px; background-color: white; border: 4px solid var(--u-dorado); top: 20px; border-radius: 50%; z-index: 1; }
        
        .left { left: 0; }
        .right { left: 50%; }
        
        .left::before { content: " "; height: 0; position: absolute; top: 22px; width: 0; z-index: 1; right: 30px; border: medium solid white; border-width: 10px 0 10px 10px; border-color: transparent transparent transparent white; }
        .right::before { content: " "; height: 0; position: absolute; top: 22px; width: 0; z-index: 1; left: 30px; border: medium solid white; border-width: 10px 10px 10px 0; border-color: transparent white transparent transparent; }
        .right::after { left: -10px; }

        .timeline-content { padding: 20px 30px; background-color: white; position: relative; border-radius: 6px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .year-badge { background-color: var(--u-verde-profundo); color: white; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-family: 'Merriweather', serif; display: inline-block; margin-bottom: 10px; font-size: 0.8rem; }

        /* =========================================
           VALORES (Adaptado de Campo Laboral)
           ========================================= */
        .values-section { padding: 80px 0; background-color: #fff; }
        .value-card { text-align: center; padding: 40px 20px; border: 1px solid #eee; border-radius: 8px; transition: all 0.3s; background: white; height: 100%; border-bottom: 4px solid var(--u-dorado); }
        .value-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .value-icon { font-size: 3rem; color: var(--u-verde-medio); margin-bottom: 20px; }
        .value-card h5 { font-family: 'Merriweather', serif; font-weight: 700; color: var(--u-texto); margin-bottom: 15px; }
        .value-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }

        /* Ajustes Móvil */
        @media (max-width: 991px) {
            .specialty-content, .timeline-section, .values-section { padding: 50px 20px; }
            .specialty-sidebar.sticky-top { position: relative !important; top: 0 !important; margin-top: 40px; }
            
            /* Ajuste Timeline Móvil */
            .timeline::after { left: 31px; }
            .timeline-container { width: 100%; padding-left: 70px; padding-right: 25px; }
            .timeline-container::before { left: 60px; border: medium solid white; border-width: 10px 10px 10px 0; border-color: transparent white transparent transparent; }
            .left::after, .right::after { left: 21px; }
            .right { left: 0%; }
        }