footer {
    background: linear-gradient(to bottom right, #3b0764, #831843);
    padding: 4rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;

    span {
        color: #fff;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    color: #f472b6;
    font-size: 2rem;
}

.logo-footer span {
    font-size: 1.3rem;
    font-weight: bold;
}

.description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.socials {
    display: flex;
}

.socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s, transform 0.2s;
}

.socials a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.socials i {
    font-size: 18px;
    color: white;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-item span {
    margin: 0;
}

.contact-item i {
    color: #f472b6;
    font-size: 1.2rem;
    margin: 0;
    margin-top: 2px;
    width: 25px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #f472b6;
    margin: 0 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}