/* ══════════════════════════════════════════
   SECÇÃO PRINCIPAL
══════════════════════════════════════════ */

.privacy-section {
    background: #f4f7fb;
    min-height: 100vh;
    padding: 40px 20px;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 50px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.privacy-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.privacy-subtitle {
    color: #64748b;
    font-size: 0.88rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.privacy-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--primary, #356096);
    padding: 16px 20px;
    border-radius: 12px;
    margin: 20px 0;
    font-size: 0.88rem;
}

.privacy-box strong {
    color: #0f172a;
}

/* ══════════════════════════════════════════
   CONTEÚDO DA POLÍTICA
══════════════════════════════════════════ */

.privacy-content {
    color: #5b6472;
    line-height: 1.8;
    font-size: 0.88rem;
}

/* TÍTULOS */
.privacy-content h2 {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

/* PARÁGRAFOS */
.privacy-content p {
    margin-bottom: 14px;
}

/* LISTAS */
.privacy-content ul {
    margin: 12px 0 18px 20px;
    padding-left: 10px;
}

.privacy-content li {
    margin-bottom: 8px;
}

/* LINKS */
.privacy-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* TEXTO EM DESTAQUE */
.privacy-content strong {
    color: #1f2937;
    font-weight: 700;
}

/* CAIXA DE DESTAQUE */
.privacy-highlight {
    background: #f7fbff;
    border: 1px solid #dce9f9;
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 18px 22px;
    margin-top: 28px;
}

.privacy-highlight h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.privacy-highlight p {
    margin: 0;
    color: #516070;
    font-size: 0.88rem;
}

/* DATA / INFO FINAL */
.privacy-date {
    margin-top: 35px;
    font-size: 0.8rem;
    color: #94a3b8;
    border-top: 1px solid #e5edf7;
    padding-top: 16px;
}