/* Footer — mobile first */
.footer {
    background-color: var(--color-azul);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer__logo {
    display: block;
}

.footer__logo-image {
    display: block;
    width: auto;
    height: 1.125rem;
}

.footer__copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: right;
    width: 100%;
}

@media (min-width: 768px) {
    .footer__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer__copy {
        width: auto;
        margin-left: auto;
        font-size: 0.875rem;
    }
}
