@charset "utf-8";

.section.terms {
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
}

.terms .terms-container {
    width: 100%;
    max-width: 658px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    gap: 30px 0px;
    background: var(--box-color-3);
    padding: var(--box-padding-0);
    border-radius: var(--border-radius-0);
    box-shadow: var(--box-shadow-0);
}

@media (min-width: 0px) and (max-width: 1024px) {
    .terms .terms-container {
        max-width: 100%;
    }
}

.terms .terms-container .text-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 10px 0px;
}

.terms .terms-container h1 {
    width: 100%;
    text-align: left;
    color: var(--text-color-0);
}

.terms .terms-container h3 {
    width: 100%;
    text-align: left;
    color: var(--text-color-0);
}

.terms .terms-container p {
    width: 100%;
    text-align: left;
    color: var(--text-color-2);
}

.terms .terms-container ul {
    width: 100%;
    list-style: disc;
    padding-inline-start: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    gap: 10px 0px;
}

.terms .terms-container ul li {
    width: 100%;
    text-align: left;
    color: var(--text-color-2);
}

.terms .terms-container ul li .mult-paragraf {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    gap: 10px 0px;
}

/*fim: seção termos*/