.footer {
    border-radius: 10px 10px 0 0;
    background: var(--card-background);
    color: var(--text-emphasis);
    border-top: 1px solid var(--primary-color);
}

.footer-inner {
    width: min(1200px, 90%);
    margin: 0 auto;
    padding: 60px 0;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand p {
    color: var(--text);
    line-height: 1.7;
    max-width: 420px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 10px;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-emphasis);
    text-decoration: none;
    transition: .3s;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--primary-color);
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    color: var(--text);
    font-size: .95rem;
}

/* Responsividade */

@media (max-width: 900px) {

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-section {
        align-items: center;
    }

    .footer-logo {
        width: auto;
        height: 60px;
        margin: 0 auto;
    }

}