/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #181848 0%, #000000 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto; /* Mudança aqui - usar auto em vez de 0 */
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #F5A818;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: #7390A8;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: #7390A8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F5A818;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #304378;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #F5A818;
    color: #000000;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #304378;
    padding-top: 1rem;
    text-align: center;
    color: #7390A8;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        width: 150px;
    }
    
    .social-links {
        justify-content: center;
    }
}