@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

.footer-profesional {
    background-color: #000;
    color: #bbb;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeIn 1.2s ease-in-out;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-left a {
    color: #999;
    text-decoration: none;
    margin-left: 6px;
    transition: color 0.3s ease;
}

.footer-left a:hover {
    color: #fff;
}

.separator {
    margin: 0 8px;
    color: #444;
}

.footer-right {
    display: flex;
    gap: 18px;
}

.footer-right a {
    color: #bbb;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-right a:hover {
    color: #fff;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
    }

    .footer-left {
        text-align: left;
    }

    .footer-right {
        justify-content: flex-end;
    }
}
