/* Estilos para os Termos e Condições do Portal Biolab Studio */

.tela_termos h1 {
    color: #00537F;
    text-align: center;
    margin: 2rem 0 2rem 0;
    text-wrap: pretty;
    text-transform: none;
    font-size: 1.5rem;
}

.tela_termos h2 {
    color: #00537F;
    text-align: left;
    margin: 2rem 0 2rem 0;
    text-wrap: pretty;
    text-transform: none;
    font-size: 1.2rem;
}

@media (max-width: 850px) {
    .tela_termos h1 {
        font-size: 1.3rem;
    }
}

.termos-container {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 180px;
    height: auto;
}

.main-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #0c4d7d;
    text-transform: uppercase;
}

.update-date {
    font-style: italic;
    text-align: right;
    margin-bottom: 30px;
}

.welcome-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0c4d7d;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

.disclaimer {
    margin: 20px 0;
    padding: 15px;
    background-color: #f7f7f7;
    border-left: 4px solid #0c4d7d;
}

a {
    color: #0c4d7d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.privacy-link {
    font-weight: bold;
}

.primary-list {
    counter-reset: primary-counter;
    list-style-type: none;
    padding-left: 0;
}

.primary-list > li {
    counter-increment: primary-counter;
    margin-bottom: 30px;
}

.primary-list > li::before {
    content: counter(primary-counter) ".";
    font-weight: bold;
    margin-right: 10px;
    color: #0c4d7d;
}

.secondary-list {
    counter-reset: secondary-counter;
    list-style-type: none;
    padding-left: 30px;
    margin-top: 10px;
}

.secondary-list > li {
    counter-increment: secondary-counter;
    margin-bottom: 15px;
}

.secondary-list > li::before {
    content: counter(primary-counter) "." counter(secondary-counter) ".";
    font-weight: normal;
    margin-right: 10px;
    color: #333;
}

.tertiary-list {
    counter-reset: tertiary-counter;
    list-style-type: none;
    padding-left: 30px;
    margin-top: 10px;
}

.tertiary-list > li {
    counter-increment: tertiary-counter;
    margin-bottom: 10px;
}

.tertiary-list > li::before {
    content: counter(tertiary-counter, lower-roman) ".";
    font-weight: normal;
    margin-right: 10px;
    color: #333;
}

.letter-list > li::before {
    content: counter(tertiary-counter, lower-alpha) ".";
}

h3 {
    font-size: 16px;
    font-weight: bold;
    color: #0c4d7d;
    margin-bottom: 15px;
    display: inline-block;
}

strong {
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}