.footer {
    background: #3b3b3b;
    color: #ddd;
    font-family: var(--font-body, 'Montserrat', sans-serif);
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 8%;
    position: relative;
}

.footer__top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a56cff, transparent);
    animation: glowline 6s linear infinite;
}

@keyframes glowline {
    0% { opacity: .3; }
    50% { opacity: .8; }
    100% { opacity: .3; }
}

.footer__col h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: .05em;
    color: #fff;
    font-family: var(--font-title, 'Bebas Neue', sans-serif);
}

.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__col li {
    margin-bottom: 10px;
}

.footer__col a {
    color: #bbb;
    text-decoration: none;
    position: relative;
}

.footer__col a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #a56cff;
    transition: .3s;
}

.footer__col a:hover::after {
    width: 100%;
    left: 0;
}

.footer__logo {
    height: 58px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, box-shadow .3s;
}

.footer__social a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(165,108,255,.4);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer__social-link--ig {
    background: linear-gradient(135deg, #f58529 0%, #feda77 20%, #dd2a7b 50%, #8134af 75%, #515bd4 100%);
    color: #fff !important;
}

.footer__social-link--wa {
    background: #25d366;
    color: #fff !important;
}

.footer__social-link--fb {
    background: #1877f2;
    color: #fff !important;
}

.footer__social-link--tt {
    background: black !important;
    color: #fff !important;
}

.footer__award {
    width: 70px;
    height: auto;
    display: block;
    object-fit: contain;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.footer__award-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .footer__award {
        width: 60px;
        margin-top: 8px;
    }
    .footer__award-col {
        justify-content: flex-start;
    }
}

.footer__badge {
    display: inline-block;
    margin-top: 14px;
    font-size: .85rem;
    color: #f2c94c;
    font-family: var(--font-body, 'Montserrat', sans-serif);
}

.footer__bottom {
    border-top: 1px solid #555;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .85rem;
    font-family: var(--font-body, 'Montserrat', sans-serif);
}

.footer__legal a {
    margin-left: 16px;
    color: #aaa;
    text-decoration: none;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .25s ease, transform .25s ease;
}

.footer__legal a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
    color: #fff;
    transform: translateY(-2px);
}

.footer__legal a:hover::after,
.footer__legal a:focus-visible::after {
    transform: scaleX(1);
}
.footer {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.footer.footer--visible {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    letter-spacing: 2px;
}
