/* =====================================================
   POLITICA-PRIVACIDADE.CSS
   Padrão visual: fale-conosco.css — Paleta Dourado/Gold
   ===================================================== */

/* ── HERO ─────────────────────────────────────────── */
.pp-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 60px 0 0;
    background: transparent;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 870px;
}

.pp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to left, #9e8149 5%, #ccba78 60%, #dfd69e 69%, #ccba78 75%, #9e8149 100%) !important;
    border: 1px solid rgba(158, 129, 73, 0.22);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.pp-hero-badge svg {
    color: #fff;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.pp-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.pp-hero p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--cor-site-1);
    margin: 0;
}

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

/* ── TOC ────────────────────────────────────────────── */
.pp-toc {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 14px 34px rgba(0, 0, 0, 0.14);
    padding: 28px 32px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.pp-toc::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 186, 120, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.pp-toc-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #d3bb70;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.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;
    position: relative;
    z-index: 1;
}

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

.pp-toc ol li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    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: #d3bb70;
    min-width: 24px;
}

.pp-toc ol li a:hover {
    color: #fff;
}

/* ── 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(209, 186, 111, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pp-section-icon svg {
    width: 20px;
    height: 20px;
    color: #d3bb70;
}

.pp-section h2 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    color: #fff;
    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: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 14px 34px rgba(0, 0, 0, 0.14);
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
    overflow: hidden;
}

.pp-card::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 186, 120, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.pp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(2, 8, 40, 0.08);
    border-color: rgba(204, 186, 120, 0.30);
}

.pp-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.pp-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ccba78, #9e8149);
    flex-shrink: 0;
}

.pp-card p {
    font-size: .92rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ── TERMOS DE USO ───────────────────────────────────── */
.pp-terms {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 14px 34px rgba(0, 0, 0, 0.14);
    overflow: hidden;
}

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

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

.pp-terms-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pp-terms-item h3 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    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(204, 186, 120, 0.12);
    color: #d3bb70;
    border: 1px solid rgba(204, 186, 120, 0.22);
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 800;
    flex-shrink: 0;
}

.pp-terms-item p {
    font-size: .93rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 0 36px;
    line-height: 1.65;
}

/* ── NOTA BING ───────────────────────────────────────── */
.pp-bing {
    margin-top: 20px;
    padding: 14px 20px;
    background: rgba(204, 186, 120, 0.07);
    border-left: 3px solid #ccba78;
    border-radius: 0 10px 10px 0;
    font-size: .87rem;
    color: rgba(255, 255, 255, 0.65);
}

.pp-bing a {
    color: #d3bb70;
    font-weight: 700;
    text-decoration: none;
}

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

/* ── CTA FINAL ───────────────────────────────────────── */
.pp-footer-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 20px 54px rgba(0, 0, 0, 0.16);
    padding: 36px 40px;
    text-align: center;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

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

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

.pp-footer-card p {
    color: rgba(255, 255, 255, 0.65);
    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: linear-gradient(135deg, #ccba78 20%, #e7e4d2 35%, #9e8149 70%, #ccba78 100%);
    color: #181818 !important;
    border: 1.5px solid #ccba78;
    box-shadow: 0 8px 22px rgba(204, 186, 120, 0.32);
    transition: transform .15s ease, box-shadow .15s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pp-footer-card a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
}

.pp-footer-card a:hover::after {
    left: 100%;
}

.pp-footer-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(204, 186, 120, 0.45);
    color: #181818 !important;
    text-decoration: none;
}

/* ── DIVISOR ─────────────────────────────────────────── */
.pp-wave {
    display: none;
}

/* ── RESPONSIVO ─────────────────────────────────────── */
@media (max-width: 992px) {
    .pp-hero {
        padding: 82px 0 42px;
    }
}

@media (max-width: 768px) {
    .pp-hero h1 {
        font-size: 2.2rem;
    }

    .pp-hero p {
        font-size: .98rem;
    }

    .pp-wrapper {
        padding: 36px 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-hero {
        padding: 74px 0 36px;
    }

    .pp-terms-item p {
        margin-left: 0;
        margin-top: 8px;
    }
}