/* 
   ==============================================
   FOOTER PREMIUM STYLES
   ==============================================
*/
.footer-premium {
    background-color: #0b0c10;
    color: #8892b0;
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 0;
    position: relative;
    width: 100%;
}

/* CTA Section (Call to Action) */
.footer-cta {
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.1) 0%, rgba(11, 12, 16, 1) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0;
    text-align: center;
}

.footer-cta h3 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.footer-cta p {
    font-size: 1.1rem;
    color: #a8b2d1;
    margin-bottom: 30px;
}

.cta-buttons .btn-glow {
    background: transparent;
    border: 2px solid #fca311;
    color: #fca311;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 10px 10px;
    display: inline-block;
}

.cta-buttons .btn-glow:hover {
    background: #fca311;
    color: #0b0c10;
    box-shadow: 0 0 20px rgba(252, 163, 17, 0.4);
    transform: translateY(-3px);
}

.cta-buttons .btn-glow.solid {
    background: #fca311;
    color: #0b0c10;
}

.cta-buttons .btn-glow.solid:hover {
    background: #e5940e;
    border-color: #e5940e;
    box-shadow: 0 0 25px rgba(252, 163, 17, 0.6);
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #fca311;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a, .footer-links span {
    color: #8892b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover, .footer-links span:hover {
    color: #fca311;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 10px;
    font-size: 0.85rem;
    color: #66fcf1;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-circle img,
.social-circle svg {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(0.6); /* Transforma imgs para cinza claro */
    transition: all 0.3s ease;
    color: #999999; /* Para SVG inline usando fill="currentColor" */
}

.social-circle:hover {
    background: #fca311;
    border-color: #fca311;
    transform: translateY(-3px);
}

.social-circle:hover img,
.social-circle:hover svg {
    filter: brightness(0); /* Fica preto no hover para img */
    color: #000000; /* Preto no hover para SVG */
}

/* Footer Bottom */
.footer-bottom {
    background: #050608;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-bottom a {
    color: #66fcf1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fca311;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-cta h3 {
        font-size: 2rem;
    }
    .footer-main .col-lg-3, .footer-main .col-md-6 {
        margin-bottom: 40px;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-main {
        text-align: center;
    }
    .footer-links a, .footer-links span {
        justify-content: center;
    }
    .footer-links a:hover, .footer-links span:hover {
        transform: translateX(0) scale(1.05);
    }
    .footer-social {
        justify-content: center;
    }
}
