/* AVANTHY — LINKS LEGAIS INTEGRADOS AO RODAPÉ ORIGINAL */

.avt-footer-legal-inline,
.avt-footer-legal-inline * {
    box-sizing: border-box;
}

.avt-footer-legal-inline {
    display: flex;
    width: min(1180px, calc(100% - 40px));
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto;
}

.avt-footer-legal-inline p {
    margin: 0;
    color: rgba(143, 194, 240, 0.78);
    font-family: Poppins, Arial, sans-serif;
    font-size: 11px;
    line-height: 1.6;
}

.avt-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 22px;
}

.avt-footer-legal-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-family: Poppins, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.avt-footer-legal-links a + a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -12px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ff6600;
    transform: translateY(-50%);
}

.avt-footer-legal-links a:hover {
    color: #ff8129;
}

@media (max-width: 700px) {
    .avt-footer-legal-inline {
        width: calc(100% - 32px);
        min-height: 0;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 22px 0;
        text-align: center;
    }

    .avt-footer-legal-inline p {
        order: 2;
        max-width: 290px;
        font-size: 10px;
    }

    .avt-footer-legal-links {
        order: 1;
        justify-content: center;
        gap: 10px 19px;
    }

    .avt-footer-legal-links a {
        font-size: 11px;
    }

    .avt-footer-legal-links a + a::before {
        left: -11px;
    }
}
