/* Privacidade Page Styles */

.privacidade-page {
    padding-top: 80px;
    background: #ffffff;
    min-height: 100vh;
}

.privacidade-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 60px;
}

/* Hero */
.privacidade-hero {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.privacidade-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.privacidade-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.privacidade-section {
    margin-bottom: 36px;
}

.privacidade-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    margin-top: 8px;
}

.privacidade-section p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Lists */
.privacidade-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.privacidade-list li {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    padding: 8px 0 8px 28px;
    position: relative;
}

.privacidade-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #ff8c00;
    font-size: 18px;
    font-weight: 700;
}

.privacidade-list.check-list li::before {
    content: '✓';
    color: #25d366;
    font-size: 15px;
}

.privacidade-list li strong {
    color: #1a1a2e;
}

/* Highlight */
.privacidade-highlight {
    background: #fff7ed;
    border-left: 4px solid #ff8c00;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    color: #1a1a2e !important;
}

/* WhatsApp CTA */
.privacidade-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.btn-whatsapp-privacidade {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-privacidade:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.btn-whatsapp-privacidade .whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* Responsive */
@media (max-width: 1024px) {
    .privacidade-page {
        padding-top: 76px;
    }
}

@media (max-width: 768px) {
    .privacidade-title {
        font-size: 26px;
    }

    .privacidade-section h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .privacidade-title {
        font-size: 22px;
    }

    .btn-whatsapp-privacidade {
        padding: 12px 24px;
        font-size: 15px;
    }
}