.footer {
    display: flex;
    background: #fff;
    width: 100vw;
    align-items: center;
    justify-content: center;
    padding: 5vh 0;
    /* azul do texto */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 50vw;
    margin-bottom: 5vh;
    color: #1f6ecf
}

.footer-text {
    max-width: 600px;
}

.footer-text .title {
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #1f6ecf;
}

.footer-text p {
    margin: 5px 0;
    color: #1f6ecf
        /* cinza para texto normal */
}

.footer-text .email {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f6ecf;
    /* azul */
}

.footer-bottom img {
    width: 100px;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
}

.footer-bottom {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #777;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #1f6ecf;
}

@media (max-width: 768px) {
    .footer-content {
        width: 90vw;
        gap: 16px;
    }

    .footer-text .email {
        font-size: 1.2rem;
        word-break: break-word;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 1700px) and (max-height: 900px) {
    .footer { padding: 4vh 0; }
}