/* footer.css - Footer Moderno idêntico ao e-commerce */
.footer-modern {
    background: var(--color-white);
    color: var(--color-gray-dark);
    padding: 3.5rem 0 0;
    border-top: 1px solid var(--color-light);
    position: relative;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.03);
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--gradient-primary);
    opacity: 0.9;
}

.footer-container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
}

/* Seção da Marca */
.footer-brand-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo-modern {
    width: 130px;
    height: auto;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    width: 100%;
    height: auto;
}

.footer-description {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    max-width: 280px;
}

/* Redes Sociais */
.footer-social-modern {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icon-modern {
    width: 38px;
    height: 38px;
    background: var(--color-white);
    border: 1px solid var(--color-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.social-icon-modern:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(142, 125, 190, 0.25);
}

/* Títulos das Seções */
.footer-title-modern {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* Links */
.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-modern li {
    margin: 0;
}

.footer-links-modern a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links-modern a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-links-modern a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-links-modern a:hover::before {
    width: 15px;
}

/* Contato */
.footer-contact-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    color: var(--color-primary);
    font-size: 0.9rem;
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-bottom: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    font-weight: 500;
}

/* Métodos de Pagamento */
.footer-payment-modern {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-light);
}

.payment-title-modern {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons-modern {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--color-light-gray);
    border: 1px solid var(--color-light);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: var(--color-white);
    border-color: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(142, 125, 190, 0.1);
}

.payment-icon i {
    color: var(--color-primary);
    font-size: 1rem;
}

.payment-name {
    font-size: 0.7rem;
    color: var(--color-gray);
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom-modern {
    background: var(--color-light-gray);
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--color-light);
}

.footer-bottom-container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-modern {
    color: var(--color-gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

.copyright-modern strong {
    color: var(--color-primary);
    font-weight: 600;
}

.developer-modern {
    color: var(--color-gray);
    font-size: 0.85rem;
}

.developer-modern a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.developer-modern a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet */
@media (max-width: 992px) {
    .footer-container-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-brand-modern {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
        margin-bottom: 0.5rem;
    }
    
    .footer-description {
        max-width: 400px;
        text-align: center;
    }
    
    .footer-title-modern {
        text-align: center;
    }
    
    .footer-title-modern::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-modern {
        padding: 2.5rem 0 0;
    }
    
    .footer-container-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links-modern a {
        justify-content: center;
    }
    
    .footer-links-modern a::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-modern a:hover {
        transform: translateY(-2px);
    }
    
    .footer-links-modern a:hover::before {
        width: 40px;
    }
    
    .contact-item-modern {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-container-modern {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .payment-icons-modern {
        justify-content: center;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .footer-modern {
        padding: 2rem 0 0;
    }
    
    .footer-logo-modern {
        width: 110px;
    }
    
    .footer-social-modern {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .social-icon-modern {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .payment-icons-modern {
        gap: 0.5rem;
    }
    
    .payment-icon {
        padding: 0.375rem 0.5rem;
    }
    
    .copyright-modern,
    .developer-modern {
        font-size: 0.8rem;
    }
}

/* Desktop Grande */
@media (min-width: 1400px) {
    .footer-container-modern {
        max-width: 1400px;
    }
    
    .footer-bottom-container-modern {
        max-width: 1400px;
    }
}