/* ==================== FOOTER ==================== */
.footer {
    background: var(--preto);
    color: var(--branco);
    padding: 80px 0 40px;
    border-top: 1px solid var(--laranja);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--laranja);
}

.footer-bottom {
    border-top: 1px solid rgba(232, 91, 26, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
