/* Footer Styles */
.footer {
    background-color: #2C1F6E;
    color: #ffffff;
    margin-top: auto;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Content Layout */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

/* Logo Section - Removed individual logos */

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b00;
    color: #ffffff;
}

/* Footer Section Headers */
.footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Lists */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.3rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.4;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-section ul li a:hover {
    color: #ff6b00;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-item i {
    color: #ff6b00;
    font-size: 1rem;
    margin-top: 0.1rem;
    width: 14px;
}

.contact-label {
    font-size: 0.75rem;
    color: #cccccc;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-value {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0.1rem 0 0 0;
    font-weight: 500;
}

/* Estilos para os links das lojas */
.loja-link {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0 0.3rem;
    font-size: 0.9rem;
}

.loja-link:hover {
    color: #ffffff;
}

/* Footer Copyright */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;

}

.copyright-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    width: 100%;
}

.copyright {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
    width: 100%;
}

/* Developer Credit */
.developer-credit {
    font-size: 0.75rem;
    color: #ffffff;
}

.developer-credit a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
} 