/* Estilos Adicionais para a Página de Privacidade - Maxx Notas */

.privacy-container { 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 40px; 
    background: #fff; 
    border-radius: 24px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    border: 1px solid #f0f4f8;
}

.privacy-body h2 { 
    font-family: 'Outfit', sans-serif; 
    color: #1a1a1a; 
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: 700;
}

.privacy-body p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 1.05rem;
}

.privacy-body table { 
    width: 100%; 
    border-collapse: separate; 
    border-spacing: 0;
    margin: 30px 0; 
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #edf2f7;
}

.privacy-body th { 
    background-color: #f8faff; 
    padding: 18px;
    text-align: left;
    font-weight: 700;
    color: #2d3748;
    border-bottom: 2px solid #edf2f7;
}

.privacy-body td { 
    padding: 18px;
    color: #4a5568;
    border-bottom: 1px solid #edf2f7;
    vertical-align: top;
}

.privacy-body tr:last-child td {
    border-bottom: none;
}

.privacy-body ul li {
    margin-bottom: 12px;
    color: #4a5568;
}

.privacy-body a {
    color: #0066ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-body a:hover {
    color: #0052cc;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 25px;
        border-radius: 16px;
    }
    
    .privacy-body h2 {
        font-size: 1.5rem;
    }
    
    .privacy-body table {
        display: block;
        overflow-x: auto;
    }
}
