/* FOOTER - Professional Design */

.section__footer {
    padding: 70px 5%;
    background: var(--backgroundSecond);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
}

.footer__brand {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradientPrimary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer__description {
    margin-top: 14px;
    font-size: 14px;
    color: var(--colorText);
    width: 60%;
    font-weight: 400;
    line-height: 1.6;
}

.footer__social {
    margin-top: 28px;
    display: inline-flex;
    gap: 14px;
}

.footer__social__square {
    width: 48px;
    height: 48px;
    background: var(--gradientPrimary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadowSmall);
}

.footer__social__square:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadowGlow);
}

.footer__copyright {
    margin-top: 38px;
    color: var(--colorText);
    font-weight: 400;
    font-size: 14px;
}

.link__header {
    color: var(--colorMain);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer__links {
    list-style-type: none;
    margin-left: 0;
    font-weight: 500;
    font-size: 14px;
}

.footer__link {
    color: var(--colorText) !important;
    transition: all 0.25s ease;
}

.footer__link:hover {
    color: var(--colorDefault) !important;
    transform: translateX(3px);
}

.footer__links li {
    margin-bottom: 9px;
}

.section__footer path {
    stroke: none !important;
}

/* Responsive */
@media only screen and (max-width: 1100px) {
    .section__footer {
        padding: 55px 5%;
    }
    
    .footer__description {
        width: 80%;
    }
    
    .footer__copyright {
        margin-bottom: 20px;
    }
    
    .link__header {
        margin-top: 28px;
    }
}
