/* ==========================================
   FOOTER PROFISSIONAL - FONT AWESOME
   ========================================== */

   .footer {
    background: #0a0a0f;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Linha decorativa animada no topo */
.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007aff, #5856d6, #007aff);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* ---- Colunas ---- */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-logo i {
    font-size: 32px;
    color: #007aff;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

/* Títulos */
.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #007aff, #5856d6);
    border-radius: 2px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 10px;
    color: #007aff;
    transition: transform 0.3s;
}

.footer-links li a:hover {
    color: #007aff;
    transform: translateX(5px);
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 18px;
}

.social-link:hover {
    background: #007aff;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.social-link.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.social-link i {
    font-size: 18px;
}

/* Contato */
.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-contact li i {
    font-size: 18px;
    color: #007aff;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.footer-contact li:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li:hover i {
    color: #5856d6;
    transform: scale(1.1);
}

/* ---- Footer Bottom ---- */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p strong {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #007aff;
}

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.08);
}

/* ==========================================
   RESPONSIVO
   ========================================== */

/* Tablets e telas médias */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-desc {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 30px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li {
        text-align: center;
    }

    .footer-links li a {
        justify-content: center;
    }

    .footer-links li a:hover {
        transform: none;
    }

    .footer-links li a:hover i {
        transform: translateX(0);
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 8px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .footer {
        padding-top: 30px;
    }

    .footer-container {
        gap: 25px;
        padding: 0 16px 25px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-logo i {
        font-size: 26px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-links li a,
    .footer-contact li {
        font-size: 13px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .social-link i {
        font-size: 16px;
    }

    .footer-contact li i {
        font-size: 16px;
        width: 18px;
    }

    .footer-bottom p,
    .footer-bottom-links {
        font-size: 12px;
    }

    .footer-bottom-links {
        gap: 6px;
    }
}