
@import url('index.css');

.termos-condicoes-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}


.termos-condicoes-section .container {
    max-width: 800px; 
    margin-left: 1rem; 
    margin-right: 0; 
    padding: 0 1rem;
}


.termos-condicoes-section h1 {
    font-size: 2.5rem;
    text-align: left; 
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.termos-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: #333; 
}


.termos-texto h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
    text-align: left;
}

.termos-texto h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 1.5rem 0 0.8rem;
    font-weight: 500;
    text-align: left;
}


.termos-texto p {
    margin-bottom: 1.2rem;
    text-align: justify; 
}


.termos-texto ul,
.termos-texto ol {
    margin: 1rem 0;
    padding-left: 2rem;
    text-align: justify; 
}

.termos-texto ul li,
.termos-texto ol li {
    margin-bottom: 0.8rem;
}


.termos-texto a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.termos-texto a:hover {
    color: #388E3C; 
    text-decoration: underline;
}


@media (max-width: 768px) {
    .termos-condicoes-section {
        padding: 2rem 0;
    }

    .termos-condicoes-section .container {
        margin-left: 0.5rem;
        padding: 0 0.5rem;
    }

    .termos-condicoes-section h1 {
        font-size: 2rem;
        text-align: left; 
    }

    .termos-texto h2 {
        font-size: 1.5rem;
        text-align: left; 
    }

    .termos-texto h3 {
        font-size: 1.2rem;
        text-align: left; 
    }

    .termos-texto p,
    .termos-texto ul,
    .termos-texto ol {
        font-size: 0.95rem;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .termos-condicoes-section .container {
        margin-left: 0.3rem; 
        padding: 0 0.3rem;
    }

    .termos-condicoes-section h1 {
        font-size: 1.8rem;
        text-align: left; 
    }

    .termos-texto h2 {
        font-size: 1.3rem;
        text-align: left; 
    }

    .termos-texto h3 {
        font-size: 1.1rem;
        text-align: left; 
    }

    .termos-texto p,
    .termos-texto ul,
    .termos-texto ol {
        font-size: 0.9rem;
        text-align: justify;
    }
}