/* FOOTER ESTILO ECOMMERCE MODERNO */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 40px 0 0;
    font-size: 14px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-logo {
    height: 50px;
    width: 120px;
    margin-bottom: 15px;
    background: transparent;
    border-radius: 0;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-description {
    color: #bfc9e0;
    font-size: 0.97rem;
}

.footer-info h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-info h3::after,
.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #667eea;
}

.footer-info p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links i {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    font-size: 18px;
    color: #667eea;
    width: 20px;
    text-align: center;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.footer-bottom {
    background: #242424;
    margin-top: 40px;
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #764ba2;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-info,
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
    }
    
    .footer-info h3::after,
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a,
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
}
