
/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styling */
header {
    background: #4a69bd;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

header h1 .fas {
    margin-right: 10px;
    color: #ffffff;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1.1em;
    opacity: 0.9;
}

/* Main Content Styling */
main {
    flex: 1;
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

h2 {
    color: #4a69bd;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

h2 .fas {
    margin-right: 10px;
    color: #4a69bd;
}

h3 {
    color: #555;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

h3 .fas {
    margin-right: 8px;
    color: #777;
}

/* Announcements Section */
.anuncio {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.anuncio p {
    margin: 10px 0;
    color: #666;
}

.anuncio .data {
    display: block;
    font-size: 0.9em;
    color: #999;
    text-align: right;
    margin-top: 10px;
}

/* Documents Section */
#documentos ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#documentos li {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

#documentos li .fas {
    margin-right: 10px;
    color: #dc3545; /* Red for PDF icon */
}

#documentos a {
    text-decoration: none;
    color: #4a69bd;
    font-weight: bold;
    transition: color 0.3s ease;
}

#documentos a:hover {
    color: #335099;
}

/* Contact Section */
#contato p {
    color: #555;
}

#contato a {
    color: #4a69bd;
    text-decoration: none;
    font-weight: bold;
}

#contato a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    background: #333;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
    font-size: 0.9em;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    main {
        margin: 10px;
        padding: 15px;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    header p {
        font-size: 1em;
    }

    main {
        margin: 5px;
        padding: 10px;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    .anuncio, #documentos li {
        padding: 10px;
    }
}
