.footer {
    height: 40px;
    background-color: #282c34;   
    width: calc(100% - 250px);
    margin-left: 250px;
    transition: all 0.3s ease;
    position: relative;
    bottom: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    color: white;
    padding: 0 20px;
}

.footer-content a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Media Queries para responsividade */
@media screen and (max-width: 768px) {
    .footer {
        width: 100%;
        margin-left: 0;
        height: auto;
        min-height: 40px;
        margin-top: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
        height: auto;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        padding: 16px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 13px;
        text-align: center;
        display: block;
        width: 100%;
    }
}
