/* POLÍTICA DE PRIVACIDADE – Lojix Delivery Express */

/* Força header azul desde o topo sem depender de scroll */
#header,
#header-mobile {
    background: var(--primary) !important;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.25) !important;
}

/* Zera padding herdado do template nas sections internas */
.privacy-content section {
    padding: 0 !important;
    margin-bottom: 1.8rem;
}

.privacy-content section:last-child {
    margin-bottom: 0;
}

/* Layout geral */
.privacy-page {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    background: #f5f5f5;
}

/* Cabeçalho — card azul centralizado */
.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
    background: var(--primary);
    border-radius: 0.625rem;
    box-shadow: 0 0.3125rem 1.25rem rgba(25, 25, 112, 0.3);
}

.privacy-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.privacy-header h1 .bi {
    font-size: 2.2rem;
}

.privacy-header .last-update {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-main);
    font-size: 0.9rem;
    margin: 0;
}

/* Container do conteúdo — card branco */
.privacy-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.25rem 1.0625rem rgba(0, 0, 0, 0.1);
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Títulos das seções */
.privacy-content h2 {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
    margin-top: 0;
    padding-bottom: 0.5rem;
    border-bottom: 0.125rem solid var(--secondary);
}

/* Parágrafos */
.privacy-content p {
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.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 {
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.privacy-content li:last-child {
    margin-bottom: 0;
}

/* Negrito */
.privacy-content strong {
    color: var(--primary);
    font-weight: 700;
}

/* Lista sem marcador (contato) */
.privacy-content .list-unstyled {
    list-style: none;
    padding-left: 0;
}

/* Oculta WhatsApp flutuante nesta página */
.joinchat-float {
    display: none !important;
}

.privacy-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--hover-dark);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8125rem 2.5rem;
    border-radius: 0.625rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background var(--transition), transform var(--transition);
}

.privacy-btn-back:hover {
    background: #7a2020;
    color: var(--white);
    transform: scale(1.03);
    text-decoration: none;
}

/* Tablet */
@media (max-width: 991px) {
    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 2rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .privacy-page {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
    }

    .privacy-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 1.6rem;
        gap: 0.5rem;
    }

    .privacy-header h1 .bi {
        font-size: 1.4rem;
    }

    .privacy-content {
        padding: 1.5rem 1.2rem;
    }

    .privacy-content h2 {
        font-size: 1.1rem;
    }

    .privacy-content section {
        margin-bottom: 1.5rem;
    }

    .privacy-btn-back {
        width: 100%;
        max-width: 20rem;
        justify-content: center;
    }
}