/* ============================================================
   CSS — PÁGINA POLÍTICA DE PRIVACIDADE
   JO CÍLIOS
   Arquivo: css/politica-de-privacidade.css
   Carregado APÓS css/style.css
   ============================================================ */

/* ============================================================
   FIX — SECTIONS: zera o padding herdado do style.css
   As <section> dentro de .privacy-content são blocos de
   conteúdo, não seções de página, e não devem herdar
   o padding: 5rem 0 definido globalmente.
   ============================================================ */
.privacy-content section {
    padding: 0 !important;
    margin-bottom: 1.8rem;
}

.privacy-content section:last-child {
    margin-bottom: 0;
}

/* ============================================================
   LAYOUT GERAL
   ============================================================ */
.privacy-page {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background-color: var(--white);
}

/* ============================================================
   CABEÇALHO
   ============================================================ */
.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border-radius: 1.25rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(35, 35, 35, 0.2);
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-family: 'Cambria', serif;
}

.privacy-header h1 i {
    margin-right: 0.5rem;
    font-size: 2.2rem;
    color: var(--blue);
}

.privacy-header .last-update {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   CONTAINER DO CONTEÚDO
   ============================================================ */
.privacy-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.08);
    border: 0.0625rem solid rgba(200, 240, 241, 0.6);
}

/* ============================================================
   TÍTULOS DAS SEÇÕES
   ============================================================ */
.privacy-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.8rem;
    margin-top: 0;
    padding-bottom: 0.5rem;
    border-bottom: 0.125rem solid var(--blue);
    font-family: 'Cambria', serif;
}

/* ============================================================
   PARÁGRAFOS
   ============================================================ */
.privacy-content p {
    margin-bottom: 0.8rem;
    margin-top: 0;
    color: var(--graphite);
}

.privacy-content p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   LISTAS
   ============================================================ */
.privacy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}

.privacy-content ul:last-child {
    margin-bottom: 0;
}

.privacy-content li {
    margin-bottom: 0.6rem;
    color: var(--graphite);
}

.privacy-content li:last-child {
    margin-bottom: 0;
}

/* ============================================================
   NEGRITO E DESTAQUES
   ============================================================ */
.privacy-content strong {
    color: var(--black);
    font-weight: 600;
}

/* ============================================================
   LISTA DE CONTATO (sem marcadores)
   ============================================================ */
.privacy-content .list-unstyled {
    list-style: none;
    padding-left: 0;
}

/* ============================================================
   LINKS
   ============================================================ */
.privacy-content a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 0.0625rem solid var(--blue);
}

.privacy-content a:hover {
    color: var(--black);
    border-bottom-color: var(--dark-blue);
}

/* ============================================================
   BOTÃO VOLTAR
   ============================================================ */
.privacy-btn-back {
    background: var(--black);
    color: var(--white);
    border: 0.125rem solid var(--black);
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 3.125rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.02rem;
}

.privacy-btn-back:hover {
    background: transparent;
    color: var(--black);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 2rem rgba(35, 35, 35, 0.2);
    text-decoration: none;
}

.privacy-btn-back i {
    transition: transform 0.3s ease;
}

.privacy-btn-back:hover i {
    transform: translateX(-0.3rem);
}

/* ============================================================
   WHATSAPP FLUTUANTE — oculto nesta página
   ============================================================ */
.whatsapp-float {
    display: none !important;
}

/* ============================================================
   BOTÃO VOLTAR AO TOPO — ajuste de posição
   ============================================================ */
.back-to-top {
    bottom: 2.5rem !important;
}

/* ============================================================
   TABLET (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {
    .privacy-header h1 {
        font-size: 2.2rem;
    }

    .privacy-content {
        padding: 2rem;
    }
}

/* ============================================================
   MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
    .privacy-page {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }

    .privacy-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        border-radius: 0.9375rem;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .privacy-header h1 i {
        font-size: 1.6rem;
        margin-right: 0.3rem;
    }

    .privacy-header .last-update {
        font-size: 0.85rem;
    }

    .privacy-content {
        padding: 1.5rem 1.2rem;
        border-radius: 0.9375rem;
    }

    .privacy-content h2 {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
    }

    .privacy-content section {
        margin-bottom: 1.5rem;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 0.95rem;
    }

    .privacy-content ul {
        padding-left: 1.2rem;
    }

    .privacy-btn-back {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    .back-to-top {
        bottom: 1.5rem !important;
        right: 1.5rem !important;
    }
}

/* ============================================================
   TELAS MUITO PEQUENAS (≤ 576px)
   ============================================================ */
@media (max-width: 576px) {
    .privacy-header h1 {
        font-size: 1.5rem;
    }

    .privacy-header h1 i {
        font-size: 1.3rem;
    }

    .privacy-content {
        padding: 1.2rem 1rem;
    }

    .privacy-content h2 {
        font-size: 1.05rem;
    }

    .privacy-btn-back {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
    }
}