.emb-footer {
    background-color: var(--bg, #111);
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
}

.emb-footer__top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .emb-footer__top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.emb-footer__brand {
    max-width: 400px;

    @media (min-width: 768px) {
        max-width: 50%;
    }
}

.emb-footer__logo {
    width: 180px;
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.emb-footer__contact {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fffa;
}

.emb-footer__socials {
    display: flex;
    gap: 1rem;
}

.emb-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--card-border, rgba(255, 255, 255, 0.1));
    color: var(--text-main, #fff) !important;
    transition: all 0.3s ease;
}

.emb-footer__social-link:hover {
    background: var(--accent, #00d678);
    color: #fff !important;
    transform: translateY(-3px);
    border-color: var(--accent, #00d678);
}

.emb-footer__social-link svg {
    width: 20px;
    height: 20px;
}

.emb-footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border, rgba(255, 255, 255, 0.1)), transparent);
    margin-bottom: 2rem;
}

.emb-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--muted, #64748b);
}

@media (min-width: 768px) {
    .emb-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.emb-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    order: 1;
}

.emb-footer__link {
    color: var(--muted, #64748b) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.emb-footer__link:hover {
    color: var(--accent, #00d678) !important;
}

.emb-footer__copyright {
    order: 2;
}

@media (min-width: 768px) {
    .emb-footer__links {
        order: 2;
        justify-content: flex-end;
    }

    .emb-footer__copyright {
        order: 1;
    }
}

.site-footer {
    display: none;
}