/* ========================================
   CSS - PÁGINA POLÍTICA DE PRIVACIDADE
   CONNECTA DESIGN
======================================== */

:root {
    --primary-purple: #6600C9;
    --dark-purple: #1C022C;
    --light-purple: #8a2be2;
    --dark-text: #2c2c2c;
    --light-bg: #FAFAFA;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

/* =====================================================
   FIX 1 — NAVBAR: sempre com fundo escuro nesta página
   O template.css define background: transparent por
   padrão; aqui forçamos o estado "scrolled" desde o
   início, sem depender de scroll nem de JS.
===================================================== */
.navbar {
    background: rgba(28, 2, 44, 0.97) !important;
    backdrop-filter: blur(0.625rem) !important;
    box-shadow: 0 0.125rem 1.25rem rgba(102, 0, 201, 0.3) !important;
}

/* =====================================================
   FUNDO GERAL DA PÁGINA — off-white
   Sobrescreve o --darker-bg (#222) do template
===================================================== */
body {
    background-color: #FAFAFA !important;
    color: #2c2c2c !important;
}

/* =====================================================
   FIX 2 — SECTIONS: zera o padding herdado do template
   O template.css define section { padding: 5rem 0 }
   (e variações por breakpoint). As <section> dentro de
   .privacy-content são itens de conteúdo, não seções
   de página, então não devem herdar esse espaçamento.
===================================================== */
.privacy-content section {
    padding: 0 !important;
    margin-bottom: 1.8rem;
}

.privacy-content section:last-child {
    margin-bottom: 0;
}

/* ========================================
   LAYOUT GERAL
======================================== */
.privacy-page {
    padding-top: 11.5rem;
    padding-bottom: 4rem;
    background-color: #FAFAFA;
}

/* Cabeçalho da página */
.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(102, 0, 201, 0.25);
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.privacy-header h1 i {
    margin-right: 0.5rem;
    font-size: 2.2rem;
}

.privacy-header .last-update {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Container do conteúdo */
.privacy-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
}

/* Títulos das seções */
.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-purple);
    margin-bottom: 0.8rem;
    margin-top: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-purple);
}

/* Parágrafos */
.privacy-content p {
    margin-bottom: 0.8rem;
    margin-top: 0;
    color: var(--dark-text);
}

.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(--dark-text);
}

.privacy-content li:last-child {
    margin-bottom: 0;
}

/* Negrito roxo */
.privacy-content strong {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Lista de contato */
.privacy-content .list-unstyled {
    list-style: none;
    padding-left: 0;
}

.privacy-content .list-unstyled li {
    color: var(--dark-text) !important;
}

.privacy-content .list-unstyled li strong {
    color: var(--primary-purple) !important;
}

/* Links */
.privacy-content a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.privacy-content a:hover {
    color: var(--light-purple);
    text-decoration: underline;
}

/* ========================================
   BOTÃO VOLTAR
======================================== */
.privacy-btn-back {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.privacy-btn-back:hover {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-purple) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 0, 201, 0.4);
    text-decoration: none;
}

/* ========================================
   BOTÃO VOLTAR AO TOPO
   Ajusta posição para não sobrepor o WhatsApp float
======================================== */
.back-to-top {
    bottom: 5.5rem !important;
}


/* Tablet */
@media (max-width: 991px) {
    .privacy-header h1 {
        font-size: 2.2rem;
    }

    .privacy-content {
        padding: 2rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .privacy-page {
        padding-top: 10rem;
        padding-bottom: 3rem;
    }

    .privacy-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .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: 15px;
    }

    .privacy-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .privacy-content section {
        margin-bottom: 1.5rem;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }

    .privacy-content ul {
        padding-left: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .privacy-btn-back {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        line-height: 1.5;
        min-height: 3.5rem;
    }

    .back-to-top {
        width: 2.812rem !important;
        height: 2.812rem !important;
        bottom: 4.5rem !important;
        right: 1.5rem !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 576px) {
    .privacy-header h1 {
        font-size: 1.6rem;
    }

    .privacy-header h1 i {
        font-size: 1.4rem;
    }

    .privacy-content {
        padding: 1.2rem 1rem;
    }

    .privacy-content h2 {
        font-size: 1.1rem;
    }

    .privacy-btn-back {
        padding: 0.7rem 1.5rem;
        font-size: 1.05rem;
    }

    .back-to-top {
        width: 2.5rem !important;
        height: 2.5rem !important;
        bottom: 4rem !important;
        right: 1rem !important;
        font-size: 1rem !important;
    }
}

/* ========================================
   ESCONDER WHATSAPP FLUTUANTE
   Oculta o botão flutuante do WhatsApp
   apenas nesta página (todas resoluções)
======================================== */
.whatsapp-float {
    display: none !important;
}