section #disclaimer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8, 8px);
    border-radius: var(--border-radius-none, 0px);
    background: var(--Color-Category-General-3, #F0F0F0);
}

section #disclaimer .texto{
    flex: 1 0 0;
    color: var(--Color-Content-General-1, #2C2C2C);
    text-align: center;
    /* Others/Tag/M */
    font-family: "IberPangea Text";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
section #disclaimer .texto p {
    margin-bottom: 0;
    margin-top: 0;
}
section #disclaimer .texto a{
    color: var(--Color-Content-Interactive-Active, #2F6852);
    /* Link/SmBold/M */
    font-family: "IberPangea Text";
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

@media (min-width:576px){
    section #disclaimer .texto{
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width:992px){
    section #disclaimer{
        width: auto;
        height: auto;
        padding: var(--space-8, 8px) var(--1200-1919-Page-Margin, 100px);
    }
}

@media (min-width:360px) and (max-width:991px){
    section #disclaimer .texto{
        padding: 8px 16px 8px 16px;
    }
    
    section #disclaimer .texto p{
        font-size: 14px;
        font-weight: 500;
        line-height: 18px; /* 128.571% */
    }
    section #disclaimer .texto a{
        font-size: 14px;
    }
}