/* Footer Ultra Premium 2025 - Blog ABH Motoboys */

/* Footer Principal */
.footer-ultra-premium {
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
}

.footer-gradient-bg {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    padding: 3rem 0 1rem;
}

.footer-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Seção da Marca */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.footer-logo {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-badge {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-badge:hover::before {
    left: 100%;
}

.badge-text {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.badge-subtitle {
    display: block;
    font-size: 0.7rem;
    opacity: 0.9;
}

.footer-tagline {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Links Sociais */
.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-link {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
}

.email-link {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.email-link:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Seção de Links */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.contact-info {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .social-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-logo-container {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-tagline {
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-gradient-bg {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .footer-social-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .social-link {
        justify-content: center;
        padding: 0.8rem 1rem;
    }
    
    .footer-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .feature-badge {
        width: 100%;
        text-align: center;
    }
    
    .footer-links-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateY(-2px);
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-ultra-premium {
    animation: fadeInUp 0.8s ease-out;
}

/* Efeitos de Hover Avançados */
.footer-links a {
    position: relative;
    overflow: hidden;
}

.footer-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-links a:hover::after {
    left: 100%;
}

/* Scroll Suave */
html {
    scroll-behavior: smooth;
}

/* Otimizações de Performance */
.footer-ultra-premium * {
    will-change: transform;
}

.footer-ultra-premium:hover * {
    will-change: auto;
} 