/* ============================================
   FOOTER MODERNO E PROFISSIONAL
   ============================================ */

.footer-moderno {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border-top: 3px solid #6D00D9;
    color: rgba(255,255,255,0.9);
    margin-top: auto;
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

/* Garantir que o footer fique sempre no final */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
    padding-bottom: 120px; /* Espaço para player fixo */
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title i {
    color: #6D00D9;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #6D00D9;
    transform: translateX(5px);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(109, 0, 217, 0.2);
    border: 2px solid rgba(109, 0, 217, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #6D00D9;
    border-color: #6D00D9;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(109, 0, 217, 0.4);
    color: #ffffff;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 30px;
}

.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-moderno {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: none;
        padding-left: 0;
    }
}

