/* =========================================
   FOOTER - VERSÃO SIMPLIFICADA
   ========================================= */

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 48px 0 32px;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-company h3 {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.footer-company p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px 0;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin-top: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: var(--primary-color);
    transform: translateX(-4px);
}

.footer-contact i {
    font-size: 1.1rem;
    color: white;
}

.footer-bottom {
    text-align: center;
}

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

/* Responsive - Tablet */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 28px;
    }
    
    .footer-simple {
        flex-direction: column;
        gap: 28px;
        text-align: center;
        padding-bottom: 28px;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        max-width: 100px;
    }
    
    .footer-contact {
        align-items: center;
        gap: 14px;
    }
    
    .footer-contact a:hover {
        transform: translateX(0);
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 32px 0 24px;
    }
    
    .footer-simple {
        gap: 24px;
        padding-bottom: 24px;
    }
    
    .footer-company h3 {
        font-size: 1.15rem;
    }
    
    .footer-company p {
        font-size: 0.85rem;
    }
    
    .footer-logo {
        max-width: 90px;
    }
    
    .footer-contact a {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}
