/* Estilo do Footer Moderno e Organizado */
#footer {
    background-color: #0B1120;
    color: #94a3b8;
    padding: 80px 8% 40px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Detalhe visual no topo */
#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    padding-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.brand-name {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    gap: 5px;
    margin-bottom: 24px;
}

.brand-name span {
    display: inline-block;
}

.brand-name span:first-child {
    transform: skewX(-10deg);
}

.brand-name span:last-child {
    transform: skewX(5deg);
}

#footer h3.footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 600;
    width: auto;
    position: relative;
    padding-bottom: 10px;
}

#footer h3.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
}

.footer-links,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-links li,
.contact-info li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a::after {
    display: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info a,
.contact-info li {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info a:hover {
    color: #ffffff;
}

.contact-info i {
    color: #dc2626;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    margin-right: 0;
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section {
        align-items: center;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }
    
    #footer h3.footer-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    #footer {
        padding: 60px 5% 30px;
    }

    .brand-name {
        font-size: 28px;
    }
}
