#footer {
    background: #0f172a;
    color: #ffffff;
    padding: 80px 5%; /* Ajuste leve para equilibrar o respiro */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto; /* Centraliza o conteúdo no meio da página */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; /* Reduzi um pouco para evitar que as colunas fiquem muito apertadas */
    margin-bottom: 50px;
}

.footer-title {
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
}

/* Detalhe visual: pequena linha laranja sob os títulos */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 160px;
    height: 2px;
    background: #f59e0b;
}

.footer-description,
.footer-grid li,
.footer-contact-items p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre o ícone e o texto */
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    transition: .3s;
}

.footer-links a:hover {
    color: #f59e0b;
    padding-left: 5px; /* Efeito suave de movimento no hover */
}

.footer-logo {
    width: 130px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); 
}

/* Estilo dos ícones de rede social */
.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: #ffffff;
    background: #f59e0b;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: #64748b;
}

.footer-top-button {
    background: #f59e0b;
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-top-button:hover {
    background: #d97706;
    transform: translateY(-5px);
    /* box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3); */
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    #footer {
        padding: 60px 5%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left; /* Mantive à esquerda para um look mais moderno no mobile */
    }
    .footer-bottom {
        flex-direction: column-reverse; /* Botão fica em cima do texto no mobile */
        gap: 25px;
        text-align: center;
    }
    .footer-title::after {
        left: 0; /* Alinha a linha laranja no mobile */
    }
}