/* ============================================================
   POLÍTICA DE PRIVACIDADE - VUNLY (MODERNIZED)
   ============================================================ */

/* ============================================================
   PRIVACY HERO
   ============================================================ */
.privacy-hero {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    contain: layout style;
    overflow: hidden;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 50% at 50% -10%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black 20%, transparent 70%);
}

.privacy-label {
    font-family: var(--font-label);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.privacy-hero .hero-title {
    margin-bottom: var(--space-md);
}

.privacy-hero .hero-subtitle {
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--fg-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================================
   PRIVACY CONTENT
   ============================================================ */
.privacy-content {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: var(--space-3xl);
}

/* Policy Sections */
.policy-section {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.policy-section:first-of-type {
    padding-top: 0;
}

.section-number {
    font-family: var(--font-label);
    font-size: 0.6rem;
    color: var(--accent);
    opacity: 0.3;
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
}

.policy-section h2 {
    font-family: var(--font-label);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 400;
    color: var(--fg);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.policy-section p {
    color: var(--fg-muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section strong {
    color: var(--fg);
    font-weight: 500;
}

.policy-section em {
    color: var(--accent);
    font-style: normal;
    opacity: 0.9;
}

/* Commitment Card - Section 01 */
.commitment-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
}

.commitment-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.commitment-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.commitment-badge span {
    font-family: var(--font-label);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--fg);
    text-transform: uppercase;
}

.commitment-card p {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Privacy List */
.privacy-list {
    list-style: none;
    margin: var(--space-xl) 0;
    display: grid;
    gap: var(--space-sm);
}

.privacy-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--fg-muted);
    transition: all 0.3s var(--ease-smooth);
}

.privacy-list li:hover {
    background: var(--surface-2);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.list-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    opacity: 0.6;
}

/* Data Grid - Section 02 */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.data-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    transition: all 0.3s var(--ease-smooth);
}

.data-item:hover {
    background: var(--surface-2);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.data-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.data-icon svg {
    width: 20px;
    height: 20px;
    color: var(--fg-muted);
    opacity: 0.7;
}

.data-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.data-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--fg);
}

.data-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--fg-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-status {
    font-size: 1rem;
    color: var(--accent);
    opacity: 0.3;
    flex-shrink: 0;
}

/* Feature Row - Section 03 */
.feature-row {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    margin-bottom: var(--space-xl);
}

.feature-visual {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.feature-visual svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.feature-text p {
    margin: 0;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.security-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    transition: all 0.3s ease;
}

.security-item:hover {
    background: var(--surface-2);
    border-color: var(--accent);
}

.security-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.security-item span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--fg);
    font-weight: 400;
}

.highlight-text {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent);
    padding: var(--space-md) var(--space-lg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Storage Visual - Section 04 */
.storage-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
}

.device-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.device-icon svg {
    width: 28px;
    height: 28px;
    color: var(--fg-muted);
}

.storage-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.storage-arrows svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    opacity: 0.5;
}

.local-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: var(--radius-full);
}

.local-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.local-badge span {
    font-family: var(--font-label);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--fg);
    text-transform: uppercase;
}

/* Info Box */
.info-box {
    display: flex;
    gap: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.info-content {
    flex: 1;
}

.info-content strong {
    display: block;
    font-family: var(--font-label);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--fg);
    margin-bottom: var(--space-xs);
}

.info-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Stores Row - Section 05 */
.stores-row {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.store-badge:hover {
    background: var(--surface-2);
    border-color: rgba(255, 255, 255, 0.2);
}

.store-badge svg {
    width: 24px;
    height: 24px;
    color: var(--fg-muted);
}

.store-badge span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--fg);
    font-weight: 500;
}

/* Security Notice */
.security-notice {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.security-notice svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.security-notice span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

/* Compliance Grid - Section 06 */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.compliance-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    transition: all 0.3s ease;
}

.compliance-card:hover {
    background: var(--surface-2);
    border-color: var(--accent);
}

.compliance-flag {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-label);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--fg-muted);
}

.compliance-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.compliance-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg);
}

.compliance-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--fg-muted);
}

.compliance-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-check svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.legal-conclusion {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
}

.legal-conclusion svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-conclusion p {
    margin: 0;
    font-size: 1rem;
    color: var(--fg);
}

/* Update Notice - Section 07 */
.update-notice {
    display: flex;
    gap: var(--space-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
}

.update-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.update-icon svg {
    width: 28px;
    height: 28px;
    color: var(--fg-muted);
}

.update-content {
    flex: 1;
}

.update-content p {
    margin: 0 0 var(--space-sm);
}

.update-content p:last-child {
    margin-bottom: 0;
}

.update-note {
    font-size: 0.9rem;
    color: var(--fg-muted);
    font-style: italic;
    opacity: 0.8;
}

/* Compliance List */
.compliance-list {
    list-style: none;
    margin: var(--space-lg) 0;
    display: grid;
    gap: var(--space-xs);
}

.compliance-list li {
    padding: var(--space-sm) 0;
    color: var(--fg-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.compliance-list li:last-child {
    border-bottom: none;
}

.compliance-list li::before {
    content: '✓';
    color: var(--accent);
    font-size: 0.75rem;
    opacity: 0.7;
}

.compliance-list strong {
    color: var(--fg);
    font-weight: 500;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: var(--space-2xl) 0;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.contact-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.contact-card h3 {
    font-family: var(--font-label);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--fg);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.contact-card p {
    color: var(--fg-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--fg);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.35s var(--ease-smooth);
}

.btn-contact svg {
    width: 20px;
    height: 20px;
    color: var(--fg-muted);
    transition: color 0.3s ease;
}

.btn-contact:hover,
.btn-contact:focus {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-contact:hover svg,
.btn-contact:focus svg {
    color: var(--bg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.privacy-footer {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    text-align: center;
}

.footer-logo-section {
    margin-bottom: var(--space-xl);
}

.privacy-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    margin-bottom: var(--space-sm);
}

.privacy-footer .logo-mark {
    font-family: var(--font-label);
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--bg);
    border-radius: var(--radius-sm);
}

.privacy-footer .logo-img {
    width: 32px;
    height: 32px;
}

.privacy-footer .logo-text {
    font-family: var(--font-label);
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--fg);
    text-transform: uppercase;
}

.privacy-footer .footer-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--fg-muted);
    font-weight: 300;
    max-width: 300px;
    margin: 0 auto;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto var(--space-lg);
}

.privacy-footer .copyright {
    font-family: var(--font-body);
    color: var(--fg-muted);
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 768px) {
    .privacy-hero {
        padding: var(--space-2xl) 0;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: var(--space-xl) 0;
    }
    
    .privacy-list li {
        padding: var(--space-md);
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .privacy-list {
        gap: var(--space-xs);
    }
    
    .privacy-list li {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.85rem;
    }
    
    .list-icon {
        width: 24px;
        height: 24px;
    }
    
    .list-icon svg {
        width: 14px;
        height: 14px;
    }
}
