/* CSS customizável para o site da disciplina */

/* Footer */
.custom-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo-wrapper {
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo {
    height: 50px;
    display: block;
}

.custom-footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.custom-footer a {
    color: #3498db;
    text-decoration: none;
}

.custom-footer a:hover {
    color: #5dade2;
    text-decoration: underline;
}
