#contenedorModuloCondicionesGen{
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 64px 100px;
    background-color: #F9F9F9;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
}

.contenedorBackgroundBorderFooter{
    background-color: #00402A;
}

.contenedorWidthLimitado{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 1280px;
}

.tituloCondiciones{
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.contenedorTextoCondiciones{
    display: flex;
    flex-direction: row;
    gap: 40px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.contenedorDocumentosPdf > img.imagenIcoDocumento{
    width: 24px;
    height: 24px;
}

.enlaceDocumento{
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    text-decoration-line: underline;
    color: #2F6852;
    text-overflow: ellipsis;
}

.contenedorDocumentosPdf{
    display: flex;
    flex-direction: row;
    gap:4px;
}

.textoCondiciones{
    width: 100%;
}

.pdfCondiciones{
    display: flex;
    align-items: center;
}

@media (min-width: 993px) and (max-width: 1199px) {
    #contenedorModuloCondicionesGen{
        padding: 64px 83px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    #contenedorModuloCondicionesGen{
        padding: 64px 40px;
    }

    .contenedorWidthLimitado{
        width: 100%;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    #contenedorModuloCondicionesGen{
        padding: 64px 40px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .contenedorTextoCondiciones{
        gap:0px;
        flex-direction: column;
    }
}

@media (min-width: 0px) and (max-width: 360px) {
    #contenedorModuloCondicionesGen{
        padding: 64px 16px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .contenedorTextoCondiciones{
        gap:0px;
        flex-direction: column;
    }
}