/* ========================================
   POLÍTICA DE PRIVACIDADE - CSS
   Prefixo: pp- (Privacy Policy)
   Best Digital - Design Futurista
   ======================================== */

/* ========================================
   SEÇÃO PRINCIPAL
   ======================================== */

.pp-section {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Background Grid */
.pp-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 64, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 64, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

/* Background Glows */
.pp-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 64, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: -200px;
    animation: pp-pulse 8s ease-in-out infinite;
    pointer-events: none;
}

.pp-bg-glow-2 {
    top: auto;
    bottom: 10%;
    left: auto;
    right: -200px;
    animation-delay: 4s;
}

@keyframes pp-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Floating Particles */
.pp-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.pp-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 64, 0, 0.6);
    border-radius: 50%;
    animation: pp-float 15s infinite;
}

.pp-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.pp-particles span:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 14s; }
.pp-particles span:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 16s; }
.pp-particles span:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 13s; }
.pp-particles span:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 15s; }
.pp-particles span:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 11s; }

@keyframes pp-float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Container */
.pp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========================================
   HEADER DA SEÇÃO
   ======================================== */

.pp-header {
    text-align: center;
    margin-bottom: 60px;
}

.pp-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 64, 0, 0.1);
    border: 1px solid rgba(255, 64, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 25px;
    animation: pp-fadeInDown 0.6s ease forwards;
}

.pp-header-badge i {
    color: #FF4000;
    font-size: 16px;
}

.pp-header-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pp-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    animation: pp-fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.pp-highlight {
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pp-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
    animation: pp-fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.pp-last-update {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    animation: pp-fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.pp-last-update i {
    color: #FF8C00;
}

@keyframes pp-fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pp-fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   CARD DE INTRODUÇÃO
   ======================================== */

.pp-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.08) 0%, rgba(255, 140, 0, 0.04) 100%);
    border: 2px solid rgba(255, 64, 0, 0.2);
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    animation: pp-fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Efeito de luz passando */
.pp-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 64, 0, 0.1), transparent);
    animation: pp-shine 4s ease-in-out infinite;
}

@keyframes pp-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.pp-intro-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 64, 0, 0.3);
}

.pp-intro-icon i {
    font-size: 30px;
    color: #ffffff;
}

.pp-intro-text {
    position: relative;
    z-index: 1;
}

.pp-intro-text h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.pp-intro-text p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.pp-intro-text strong {
    color: #FF8C00;
}

/* ========================================
   ACORDEÃO
   ======================================== */

.pp-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.pp-accordion-item {
    background: #1a1a1a;
    border: 2px solid rgba(255, 64, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: pp-fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.pp-accordion-item:nth-child(1) { animation-delay: 0.5s; }
.pp-accordion-item:nth-child(2) { animation-delay: 0.55s; }
.pp-accordion-item:nth-child(3) { animation-delay: 0.6s; }
.pp-accordion-item:nth-child(4) { animation-delay: 0.65s; }
.pp-accordion-item:nth-child(5) { animation-delay: 0.7s; }
.pp-accordion-item:nth-child(6) { animation-delay: 0.75s; }
.pp-accordion-item:nth-child(7) { animation-delay: 0.8s; }

.pp-accordion-item:hover {
    border-color: rgba(255, 64, 0, 0.4);
    transform: translateX(5px);
}

.pp-accordion-item.pp-active {
    border-color: rgba(255, 64, 0, 0.6);
    box-shadow: 0 10px 40px rgba(255, 64, 0, 0.15);
}

/* Header do Acordeão */
.pp-accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pp-accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pp-accordion-icon-box {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(255, 64, 0, 0.1);
    border: 2px solid rgba(255, 64, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pp-accordion-item.pp-active .pp-accordion-icon-box,
.pp-accordion-header:hover .pp-accordion-icon-box {
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-color: transparent;
}

.pp-accordion-icon-box i {
    font-size: 20px;
    color: #FF8C00;
    transition: all 0.3s ease;
}

.pp-accordion-item.pp-active .pp-accordion-icon-box i,
.pp-accordion-header:hover .pp-accordion-icon-box i {
    color: #ffffff;
}

.pp-accordion-title {
    flex: 1;
}

.pp-accordion-title h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.pp-accordion-header:hover .pp-accordion-title h3 {
    color: #FF8C00;
}

.pp-accordion-title p {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.pp-accordion-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pp-accordion-toggle i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.pp-accordion-item.pp-active .pp-accordion-toggle {
    background: rgba(255, 64, 0, 0.2);
}

.pp-accordion-item.pp-active .pp-accordion-toggle i {
    transform: rotate(180deg);
    color: #FF8C00;
}

/* Conteúdo do Acordeão */
.pp-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pp-accordion-item.pp-active .pp-accordion-content {
    max-height: 1500px;
}

.pp-accordion-inner {
    padding: 0 25px 30px 97px;
}

.pp-accordion-inner p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* ========================================
   GRIDS E CARDS INTERNOS
   ======================================== */

/* Info Grid (Dados Coletados) */
.pp-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pp-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 64, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.pp-info-box:hover {
    border-color: rgba(255, 64, 0, 0.4);
    background: rgba(255, 64, 0, 0.05);
}

.pp-info-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.2), rgba(255, 140, 0, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.pp-info-icon i {
    font-size: 18px;
    color: #FF8C00;
}

.pp-info-box h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.pp-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-info-box ul li {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}

.pp-info-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #FF4000;
    border-radius: 50%;
}

/* Purpose List (Finalidades) */
.pp-purpose-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pp-purpose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 3px solid #FF4000;
    transition: all 0.3s ease;
}

.pp-purpose-item:hover {
    background: rgba(255, 64, 0, 0.05);
    transform: translateX(5px);
}

.pp-purpose-number {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pp-purpose-text h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.pp-purpose-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Share Notice */
.pp-share-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 64, 0, 0.1);
    border: 1px solid rgba(255, 64, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
}

.pp-share-notice i {
    font-size: 22px;
    color: #FF8C00;
    flex-shrink: 0;
    margin-top: 2px;
}

.pp-share-notice p {
    margin: 0;
    font-size: 15px;
}

/* Share Grid */
.pp-share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pp-share-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 64, 0, 0.15);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.pp-share-card:hover {
    border-color: rgba(255, 64, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 64, 0, 0.1);
}

.pp-share-card i {
    font-size: 28px;
    color: #FF8C00;
    margin-bottom: 15px;
}

.pp-share-card h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.pp-share-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   TABELA DE COOKIES
   ======================================== */

.pp-cookies-table {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 64, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pp-cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
    padding: 16px 20px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 64, 0, 0.1);
}

.pp-cookie-row:last-child {
    border-bottom: none;
}

.pp-cookie-header {
    background: rgba(255, 64, 0, 0.1);
}

.pp-cookie-header .pp-cookie-type,
.pp-cookie-header .pp-cookie-purpose,
.pp-cookie-header .pp-cookie-duration {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FF8C00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pp-cookie-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.pp-cookie-badge.pp-essential {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.pp-cookie-badge.pp-analytics {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

.pp-cookie-badge.pp-marketing {
    background: rgba(255, 64, 0, 0.2);
    color: #FF8C00;
}

.pp-cookie-purpose,
.pp-cookie-duration {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.pp-cookie-note {
    font-size: 13px !important;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 !important;
}

/* ========================================
   DIREITOS LGPD
   ======================================== */

.pp-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.pp-right-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 64, 0, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pp-right-item:hover {
    border-color: rgba(255, 64, 0, 0.4);
    background: rgba(255, 64, 0, 0.05);
}

.pp-right-item i {
    font-size: 18px;
    color: #FF8C00;
}

.pp-right-item span {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.pp-rights-cta {
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.pp-rights-cta p {
    margin: 0 0 15px 0 !important;
    font-size: 14px !important;
}

.pp-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pp-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.pp-btn-whatsapp i {
    font-size: 20px;
}

/* ========================================
   SEGURANÇA
   ======================================== */

.pp-security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pp-security-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 64, 0, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pp-security-item:hover {
    border-color: rgba(255, 64, 0, 0.35);
    background: rgba(255, 64, 0, 0.04);
}

.pp-security-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.15), rgba(255, 140, 0, 0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-security-icon i {
    font-size: 20px;
    color: #FF8C00;
}

.pp-security-text h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.pp-security-text p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* ========================================
   RETENÇÃO DE DADOS - TIMELINE
   ======================================== */

.pp-retention-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.pp-retention-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, #FF4000, #FF8C00);
    border-radius: 2px;
}

.pp-retention-item {
    position: relative;
    padding: 16px 0 16px 25px;
}

.pp-retention-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 22px;
    width: 12px;
    height: 12px;
    background: #FF4000;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    box-shadow: 0 0 0 3px rgba(255, 64, 0, 0.3);
}

.pp-retention-period {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 6px;
}

.pp-retention-line {
    display: none;
}

.pp-retention-desc {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   AVISO DE ATUALIZAÇÃO
   ======================================== */

.pp-update-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px;
    background: rgba(255, 64, 0, 0.08);
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 12px;
}

.pp-update-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-update-icon i {
    font-size: 22px;
    color: #ffffff;
}

.pp-update-text h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.pp-update-text p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0 !important;
}

/* ========================================
   CARD DE CONTATO
   ======================================== */

.pp-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 35px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 2px solid rgba(255, 64, 0, 0.25);
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.pp-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 64, 0, 0.08), transparent);
    animation: pp-shine 5s ease-in-out infinite;
}

.pp-contact-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.pp-contact-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(255, 64, 0, 0.35);
}

.pp-contact-icon i {
    font-size: 32px;
    color: #ffffff;
}

.pp-contact-info h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.pp-contact-info p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 400px;
}

.pp-contact-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.pp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pp-btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border: none;
}

.pp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.pp-btn-secondary {
    background: rgba(255, 64, 0, 0.1);
    color: #FF8C00;
    border: 2px solid rgba(255, 64, 0, 0.3);
}

.pp-btn-secondary:hover {
    background: rgba(255, 64, 0, 0.2);
    border-color: rgba(255, 64, 0, 0.5);
    transform: translateY(-3px);
}

.pp-contact-btn i {
    font-size: 18px;
}

/* ========================================
   FOOTER DA SEÇÃO
   ======================================== */

.pp-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 64, 0, 0.15);
}

.pp-company-info p {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 5px 0;
}

.pp-company-info strong {
    color: #ffffff;
}

.pp-footer-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF4000, #FF8C00);
    margin: 20px auto;
    border-radius: 2px;
}

.pp-footer-note {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* ========================================
   RESPONSIVO - TABLET
   ======================================== */

@media (max-width: 992px) {
    .pp-section {
        padding: 80px 0;
    }
    
    .pp-title {
        font-size: 42px;
    }
    
    .pp-intro-card {
        flex-direction: column;
        text-align: center;
    }
    
    .pp-accordion-inner {
        padding: 0 20px 25px 20px;
    }
    
    .pp-info-grid,
    .pp-security-features {
        grid-template-columns: 1fr;
    }
    
    .pp-share-grid {
        grid-template-columns: 1fr;
    }
    
    .pp-rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pp-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .pp-contact-content {
        flex-direction: column;
    }
    
    .pp-contact-info p {
        max-width: 100%;
    }
    
    .pp-contact-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .pp-contact-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ========================================
   RESPONSIVO - MOBILE
   ======================================== */

@media (max-width: 576px) {
    .pp-section {
        padding: 30px 0;
    }
    
    .pp-container {
        padding: 0 15px;
    }
    
    .pp-header-badge {
        padding: 8px 16px;
    }
    
    .pp-header-badge span {
        font-size: 12px;
    }
    
    .pp-title {
        font-size: 32px;
    }
    
    .pp-subtitle {
        font-size: 16px;
    }
    
    .pp-intro-card {
        padding: 25px 20px;
    }
    
    .pp-intro-icon {
        width: 60px;
        height: 60px;
    }
    
    .pp-intro-icon i {
        font-size: 26px;
    }
    
    .pp-intro-text h3 {
        font-size: 20px;
    }
    
    .pp-accordion-header {
        padding: 18px 15px;
        gap: 12px;
    }
    
    .pp-accordion-icon-box {
        width: 44px;
        height: 44px;
    }
    
    .pp-accordion-icon-box i {
        font-size: 18px;
    }
    
    .pp-accordion-title h3 {
        font-size: 16px;
    }
    
    .pp-accordion-title p {
        font-size: 12px;
    }
    
    .pp-accordion-toggle {
        width: 32px;
        height: 32px;
    }
    
    .pp-accordion-inner {
        padding: 0 15px 20px 15px;
    }
    
    .pp-purpose-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .pp-rights-grid {
        grid-template-columns: 1fr;
    }
    
    .pp-right-item {
        justify-content: center;
    }
    
    .pp-cookie-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    
    .pp-cookie-header {
        display: none;
    }
    
    .pp-retention-timeline {
        padding-left: 25px;
    }
    
    .pp-retention-item::before {
        left: -17px;
    }
    
    .pp-contact-card {
        padding: 25px 20px;
    }
    
    .pp-contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .pp-contact-icon i {
        font-size: 26px;
    }
    
    .pp-contact-info h3 {
        font-size: 18px;
    }
    
    .pp-contact-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .pp-bg-glow {
        width: 400px;
        height: 400px;
    }
}

/* ========================================
   EFEITO DE LUZ PASSANDO (SHINE GLOBAL)
   ======================================== */

.pp-accordion-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 64, 0, 0.05), transparent);
    transition: none;
    pointer-events: none;
}

.pp-accordion-item:hover::after {
    animation: pp-item-shine 0.8s ease forwards;
}

@keyframes pp-item-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}