body {
    padding: 0;
    margin: 0;
    border: 0;
    background: var(--Color-Black);
}

a {
    text-decoration: none;
}

.footer-container-mobile {
    display: flex;
    min-width: 320px;
    max-width: 576px;
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
    border: 1px solid var(--Color-Palette-White, #fff);
    background: var(--Color-Palette-Black, #121212);
}

.footer-container-left-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.footer-info-moverlab-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.logo-container-location {
    display: flex;
    width: 130px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.data-footer-container {
    display: flex;
    width: 168px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.footer-social-media-container {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.social-media-container {
    display: flex;
    height: 80px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
}

.social-fb {
    background: var(--Color-Palette-Social-Media-Facebook, #0866ff);
}

.social-instagram {
    background: var(--Color-Palette-Social-Media-Instagram, #ea337e);
}

.social-wp {
    background: var(--Color-Palette-Social-Media-Whatsapp, #25d366);
}

.frame-video-container {
    height: 319.719px;
    width: 100%;
    aspect-ratio: 227/126;
    background: var(--Color-Palette-White, #fff);
}

.levelTag {
    display: flex;
    align-items: center;
    gap: 8px;
}

/*PANTALLAS MOBILE L*/
@media (min-width: 577px) and (max-width: 720px) {
    .footer-container-mobile {
        min-width: 577px;
        max-width: 720px;
    }
}


/*PANTALLAS TABLET*/
@media (min-width: 721px) and (max-width: 1024px) {
    .footer-container-mobile {
        min-width: 721px;
        max-width: 1024px;
    }
}

/*PANTALLAS LAPTOP*/
@media (min-width: 1024px) and (max-width: 1480px) {
    .footer-container-mobile {
        min-width: 1024px;
        max-width: 1480px;
    }
}

/*PANTALLAS ESCRITORIO*/
@media (min-width: 1480px) {
    .footer-container-mobile {
        min-width: 1480px;
        max-width: initial;
    }
}