#pageError {
    position: relative;
    overflow: hidden;
}

#pageError:before {
    content: '404';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    color: rgba(0,0,0,0.03);
    z-index: -1;
}


#pageError h1 {
    font-size: 3.5rem;
    color: #343a40;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

#pageError p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

#pageError ul {
    list-style-type: none;
    padding-left: 0;
}

#pageError li {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
}

#pageError li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #007bff;
}

#pageError a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#pageError a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    #pageError h1 {
        font-size: 2.5rem;
    }

    #pageError:before {
        font-size: 15rem;
    }
}
@media (max-width: 480px) {
    #pageError h1 {
        font-size: 2rem;
    }

    #pageError:before {
        font-size: 10rem;
    }
}