/**
 * Estilos da página de Termos de Uso
 * Design minimalista e legível
 * Atualizado em 15 de julho de 2025
 */

/* Main Content */
.terms-main {
    padding: 6rem 0;
    background-color: var(--light);
}

/* Terms Section */
.terms-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.terms-section h1 {
    font-size: var(--font-size-3xl);
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: var(--font-weight-bold);
}

.terms-section p {
    color: var(--gray-700);
    line-height: var(--line-height-relaxed);
    margin-bottom: 1.5rem;
}

.terms-section h2 {
    font-size: var(--font-size-xl);
    color: var(--primary-dark);
    margin: 2.5rem 0 1rem;
    font-weight: var(--font-weight-semibold);
}

.terms-section ul {
    list-style: disc;
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--gray-700);
}

.terms-section li {
    margin-bottom: 0.75rem;
    line-height: var(--line-height-relaxed);
}

.terms-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.terms-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Dark Theme */
[data-theme="dark"] .terms-main {
    background-color: var(--gray-900);
}

[data-theme="dark"] .terms-section {
    background-color: var(--gray-800);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .terms-section h1 {
    color: var(--light);
}

[data-theme="dark"] .terms-section h2 {
    color: var(--light);
}

[data-theme="dark"] .terms-section p,
[data-theme="dark"] .terms-section ul,
[data-theme="dark"] .terms-section li {
    color: var(--gray-300);
}

[data-theme="dark"] .terms-section a {
    color: var(--secondary-light);
}

[data-theme="dark"] .terms-section a:hover {
    color: var(--secondary);
}

/* Responsividade */
@media (max-width: 768px) {
    .terms-main {
        padding: 4rem 0;
    }

    .terms-section {
        padding: 1.5rem;
    }

    .terms-section h1 {
        font-size: var(--font-size-2xl);
    }

    .terms-section h2 {
        font-size: var(--font-size-lg);
        margin: 2rem 0 1rem;
    }
}

@media (max-width: 576px) {
    .terms-main {
        padding: 3rem 0;
    }

    .terms-section {
        padding: 1rem;
    }

    .terms-section h1 {
        font-size: var(--font-size-xl);
    }

    .terms-section h2 {
        font-size: var(--font-size-base);
        margin: 1.5rem 0 0.75rem;
    }

    .terms-section p,
    .terms-section li {
        font-size: var(--font-size-sm);
    }
}