/* Footer */
.footer {
    background: #050a1a;
    color: white;
    padding: 1rem 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
}

.footer-left,
.footer-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.footer-left p,
.footer-right p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.heart {
    color: #ff4d4d;
    font-size: 1rem;
    margin: 0 0.25rem;
    line-height: 1;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-right a:hover {
    color: var(--primary);
}

/* Responsividade do footer */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-left,
    .footer-right {
        justify-content: center;
    }
    
    .footer-center {
        margin: 1rem 0;
    }
}
