/* legal.css - Estilo para páginas legais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fdfdfd;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 40px;
}

/* Cabeçalho */
.legal-header {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.back-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.legal-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Conteúdo principal */
.legal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    padding: 40px;
    margin-bottom: 50px;
}

/* Títulos das seções */
.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section h3 {
    font-size: 1.2rem;
    color: #34495e;
    margin: 25px 0 15px 0;
}

.content-section h4 {
    font-size: 1.1rem;
    color: #444;
    margin: 20px 0 10px 0;
}

/* Listas */
.content-section ul, 
.content-section ol {
    padding-left: 24px;
    margin: 15px 0;
}

.content-section li {
    margin-bottom: 8px;
    padding-left: 8px;
}

.content-section li strong {
    color: #2c3e50;
}

/* Texto e parágrafos */
.content-section p {
    margin-bottom: 16px;
    color: #444;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: #2c3e50;
}

/* Tabela de cookies (apenas para cookies.html) */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
}

.cookies-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid #eaeaea;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.cookies-table tr:hover {
    background: #f9f9f9;
}

/* Blocos de definição */
.definition-block {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.term {
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

/* Rodapé */
.legal-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
    color: #777;
    font-size: 0.9rem;
}

.last-updated {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        padding: 15px;
        padding-top: 20px;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .cookies-table {
        display: block;
        overflow-x: auto;
    }
}

/* Animações sutis */
.content-section h2, 
.content-section h3 {
    transition: color 0.3s;
}

.back-btn i {
    transition: transform 0.2s;
}

.back-btn:hover i {
    transform: translateX(-3px);
}