/* ============================================================
   PÁGINAS LEGAIS — Política de Privacidade e Exclusão de Dados
   Compartilhado por: privacidade.html e deletar-dados.html
   ============================================================ */


/* ============================================================
   LAYOUT GERAL
   ============================================================ */

/* Sobrescreve o text-align: center e padding zero lateral do card.css */
.card:has(.politica-conteudo),
.card:has(.deletar-conteudo) {
    text-align: left;
    padding: 30px 36px 24px;
}

@media (max-width: 768px) {
    .card:has(.politica-conteudo),
    .card:has(.deletar-conteudo) {
        padding: 24px 20px 20px;
    }
}

.politica-conteudo,
.deletar-conteudo {
    padding: 0;
}


/* ============================================================
   SEÇÕES DE CONTEÚDO (privacidade.html)
   ============================================================ */

.politica-secao {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.politica-secao:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.politica-secao h3 {
    color: #007bff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.politica-secao p,
.politica-secao li {
    color: var(--text-color, #555);
    font-size: 0.93rem;
    line-height: 1.8;
}

.politica-secao ul {
    padding-left: 22px;
    margin-top: 8px;
}

.politica-secao ul li {
    margin-bottom: 8px;
}


/* ============================================================
   BLOCO DE DESTAQUE AZUL (privacidade.html)
   ============================================================ */

.politica-destaque {
    background: rgba(0, 123, 255, 0.07);
    border-left: 4px solid #007bff;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin-top: 14px;
    font-size: 0.92rem;
    color: var(--text-color, #555);
    line-height: 1.75;
}


/* ============================================================
   RODAPÉ DAS PÁGINAS (compartilhado)
   ============================================================ */

.politica-footer {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.83rem;
    color: var(--subtext-color, #999);
}

.politica-footer a {
    color: #007bff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.politica-footer a:hover {
    opacity: 0.75;
}


/* ============================================================
   BOTÃO VERMELHO — SOLICITAR EXCLUSÃO (privacidade.html)
   ============================================================ */

.btn-deletar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 11px 22px;
    background: #dc3545;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.btn-deletar:hover {
    background: #b02a37;
    transform: translateY(-2px);
}


/* ============================================================
   PASSOS (deletar-dados.html)
   ============================================================ */

.passo {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 20px 22px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    transition: background 0.2s;
}

.passo:hover {
    background: rgba(0, 123, 255, 0.06);
}

.passo-numero {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.passo-texto {
    padding-top: 2px;
}

.passo-texto h3 {
    color: var(--text-color, #333);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.passo-texto p {
    color: var(--subtext-color, #666);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

body.dark-mode .passo {
    background: rgba(255, 255, 255, 0.04);
}

body.dark-mode .passo:hover {
    background: rgba(0, 123, 255, 0.1);
}


/* ============================================================
   AVISO VERMELHO (deletar-dados.html)
   ============================================================ */

.aviso-vermelho {
    background: rgba(220, 53, 69, 0.08);
    border-left: 4px solid #dc3545;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 20px 0 28px;
    font-size: 0.9rem;
    color: var(--text-color, #555);
    line-height: 1.75;
}


/* ============================================================
   CAIXA DE CONTATO (deletar-dados.html)
   ============================================================ */

.contato-box {
    background: rgba(0, 123, 255, 0.07);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    margin-top: 24px;
}

.contato-box p {
    font-size: 0.95rem;
    color: var(--text-color, #555);
    margin-bottom: 16px;
    line-height: 1.6;
}


/* ============================================================
   BOTÃO INSTAGRAM (deletar-dados.html)
   ============================================================ */

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-instagram:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}


/* ============================================================
   TEXTO INTRO (deletar-dados.html)
   ============================================================ */

.deletar-intro {
    color: var(--text-color, #555);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.75;
}


/* ============================================================
   LINKS EXTERNOS INLINE (dentro de parágrafos)
   ============================================================ */

.link-externo {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.link-externo:hover {
    opacity: 0.75;
    text-decoration: underline;
}


/* ============================================================
   DARK MODE
   ============================================================ */

/* Textos gerais */
body.dark-mode .politica-secao p,
body.dark-mode .politica-secao li {
    color: #cbd5e0;
}

/* Títulos de seção */
body.dark-mode .politica-secao h3 {
    color: #60a5fa;
}

/* Linha divisória entre seções */
body.dark-mode .politica-secao {
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

/* Bloco de destaque azul */
body.dark-mode .politica-destaque {
    background: rgba(96, 165, 250, 0.1);
    border-left-color: #60a5fa;
    color: #cbd5e0;
}

/* Rodapé */
body.dark-mode .politica-footer {
    border-top-color: rgba(255, 255, 255, 0.08);
    color: #718096;
}

body.dark-mode .politica-footer a {
    color: #60a5fa;
}

/* Passos */
body.dark-mode .passo-texto h3 {
    color: #edf2f7;
}

body.dark-mode .passo-texto p {
    color: #a0aec0;
}

/* Aviso vermelho */
body.dark-mode .aviso-vermelho {
    background: rgba(220, 53, 69, 0.12);
    border-left-color: #fc8181;
    color: #fed7d7;
}

/* Caixa de contato */
body.dark-mode .contato-box {
    background: rgba(96, 165, 250, 0.08);
}

body.dark-mode .contato-box p {
    color: #a0aec0;
}

/* Intro de exclusão */
body.dark-mode .deletar-intro {
    color: #a0aec0;
}

/* Links externos inline */
body.dark-mode .link-externo {
    color: #60a5fa;
}
