
#artigos {
    text-align: center;
    padding: 4em 2em;
    background-color: #f9f9f9;
}

#artigos h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #333;
}

#artigos p {
    max-width: 600px;
    margin: 0 auto 2em auto;
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}

#artigos ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

#artigos li {
    margin-bottom: 1.5em;
    transition: transform 0.3s ease;
}

#artigos li:hover {
    transform: translateX(10px);
}

#artigos a {
    text-decoration: none;
    color: #556B2F;
    font-weight: 500;
    font-size: 1.1em;
    display: inline-block;
    padding: 1em 2em;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    width: 100%;
}

#artigos a:hover {
    color: #3d4d22;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media screen and (max-width: 736px) {
    #artigos {
        padding: 2em 1em;
    }

    #artigos h2 {
        font-size: 1.6em;
    }

    #artigos p {
        font-size: 1em;
        padding: 0 1em;
    }

    #artigos a {
        font-size: 1em;
        padding: 0.8em 1.5em;
    }
}