footer {
    background: #4A4FA3;
    color: white;
    padding: 20px 10px;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    padding: 0 10px;
    box-sizing: border-box;
}

.footer-section {
    flex: 1;
    min-width: 0;
    margin: 0 10px;
}

.footer-section.contato {
    flex: 0.7;
}

.footer-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: justify;
    text-indent: 30px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.5s;
}

.footer-section a:hover {
    color: #A8ABF0;
}

.footer-section img {
    max-width: 240px;
    height: auto;
    margin-bottom: 10px;
}

.vertical-divider {
    width: 1px;
    background-color: white;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 10px 0;
        text-align: center;
    }

    .vertical-divider {
        display: none;
    }
}