/* =====================================================
   POLITICA-PRIVACIDADE.CSS
   Paleta: --cor-site-1 #dcb962 | --cor-site-2 #c89938
           --cor-site-3 #0673c3 | --cor-site-5 #252525
           --cor-site-6 #fff
   Fundo branco, textos em preto/azul/dourado
   ===================================================== */

/* ── WRAPPER ────────────────────────────────────────── */
.pp-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 24px 80px;
}

/* ── HEADER DA PÁGINA ───────────────────────────────── */
.pp-page-header {
    margin-bottom: 48px;
}

.pp-page-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cor-site-1);
    border: 1px solid var(--cor-site-1);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--cor-site-5);
    margin-bottom: 18px;
}

.pp-page-header__badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--cor-site-5);
}

.pp-page-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--cor-site-5);
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.pp-page-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
    max-width: 640px;
}

/* ── TOC ────────────────────────────────────────────── */
.pp-toc {
    background: #fff;
    border: 1px solid rgba(37, 37, 37, 0.10);
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(37, 37, 37, 0.05);
    padding: 28px 32px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.pp-toc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cor-site-1);
    border-radius: 18px 18px 0 0;
}

.pp-toc-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--cor-site-3);
    margin-bottom: 16px;
}

.pp-toc ol {
    list-style: none;
    counter-reset: toc;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px 24px;
    padding: 0;
    margin: 0;
}

.pp-toc ol li {
    counter-increment: toc;
}

.pp-toc ol li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 500;
    transition: color .2s;
}

.pp-toc ol li a::before {
    content: counter(toc, decimal-leading-zero);
    font-size: .75rem;
    font-weight: 800;
    color: var(--cor-site-1);
    min-width: 24px;
}

.pp-toc ol li a:hover {
    color: var(--cor-site-3);
}

/* ── SECTION ─────────────────────────────────────────── */
.pp-section {
    margin-bottom: 56px;
}

.pp-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.pp-section-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(220, 185, 98, 0.10);
    border: 1px solid rgba(220, 185, 98, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pp-section-icon svg {
    width: 20px;
    height: 20px;
    color: var(--cor-site-2);
}

.pp-section h2 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    color: var(--cor-site-5);
    margin: 0;
    line-height: 1.2;
}

/* ── CARDS DE PRIVACIDADE ─────────────────────────────── */
.pp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.pp-card {
    background: #fff;
    border: 1px solid rgba(37, 37, 37, 0.10);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(37, 37, 37, 0.05);
    padding: 24px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}

.pp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cor-site-1);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity .2s ease;
}

.pp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 115, 195, 0.20);
    box-shadow: 0 10px 28px rgba(6, 115, 195, 0.08);
}

.pp-card:hover::before {
    opacity: 1;
}

.pp-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--cor-site-5);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cor-site-1);
    flex-shrink: 0;
}

.pp-card p {
    font-size: .92rem;
    color: #666;
    margin: 0;
    line-height: 1.65;
}

/* ── TERMOS DE USO ───────────────────────────────────── */
.pp-terms {
    background: #fff;
    border: 1px solid rgba(37, 37, 37, 0.10);
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(37, 37, 37, 0.05);
    overflow: hidden;
}

.pp-terms-item {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(37, 37, 37, 0.07);
    transition: background .15s ease;
}

.pp-terms-item:last-child {
    border-bottom: none;
}

.pp-terms-item:hover {
    background: #f8f9fb;
}

.pp-terms-item h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--cor-site-5);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pp-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(220, 185, 98, 0.12);
    color: var(--cor-site-2);
    border: 1px solid rgba(220, 185, 98, 0.28);
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 800;
    flex-shrink: 0;
}

.pp-terms-item p {
    font-size: .93rem;
    color: #666;
    margin: 0 0 0 36px;
    line-height: 1.65;
}

/* ── NOTA BING ───────────────────────────────────────── */
.pp-bing {
    margin-top: 20px;
    padding: 14px 20px;
    background: rgba(6, 115, 195, 0.04);
    border-left: 3px solid var(--cor-site-3);
    border-radius: 0 10px 10px 0;
    font-size: .87rem;
    color: #666;
}

.pp-bing a {
    color: var(--cor-site-3);
    font-weight: 700;
    text-decoration: none;
}

.pp-bing a:hover {
    color: #055ca3;
    text-decoration: underline;
}

.pp-footer-card {
    background: #fff;
    border: 1px solid rgba(6, 115, 195, 0.14);
    border-radius: 7px;
    box-shadow: 0 4px 28px rgba(37, 37, 37, 0.07);
    padding: 20px 15px;
    text-align: center;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.pp-footer-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 185, 98, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pp-footer-card h3 {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 900;
    color: var(--cor-site-5);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.pp-footer-card p {
    color: #666;
    font-size: .93rem;
    margin-bottom: 24px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.pp-footer-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    background: var(--cor-site-1);
    color: var(--cor-site-5) !important;
    border: 1.5px solid var(--cor-site-1);
    box-shadow: 0 6px 20px rgba(220, 185, 98, 0.30);
    transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    position: relative;
    z-index: 1;
}

.pp-footer-card a:hover {
    background: var(--cor-site-2);
    border-color: var(--cor-site-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(200, 153, 56, 0.38);
    color: var(--cor-site-5) !important;
    text-decoration: none;
}

/* ── RESPONSIVO ─────────────────────────────────────── */
@media (max-width: 768px) {
    .pp-wrapper {
        padding: 40px 16px 60px;
    }

    .pp-toc {
        padding: 20px;
    }

    .pp-terms-item {
        padding: 18px 20px;
    }

    .pp-footer-card {
        padding: 28px 22px;
    }

    .pp-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .pp-terms-item p {
        margin-left: 0;
        margin-top: 8px;
    }
}