/* PixWallet Landing - fundos escuros (segurança), destaque = cor da 2ª imagem */
:root {
    --pix-destaque: #4ACACA;    /* turquesa – só para destaques */
    --pix-destaque-light: #5ED4D4;
    --pix-destaque-dark: #3AB5B5;
    --pix-charcoal: #262626;    /* corpo da carteira do logo */
    --pix-charcoal-dark: #1a1a1f;
    --pix-charcoal-darker: #131318;
    --pix-bg-footer: #0d0d0d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0d0d0f 0%, #131318 30%, #1a1a1f 50%, #262626 70%, #131318 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-width: 280px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin-bottom: 1rem; color: #d1d5db; }

/* Buttons - PixWallet turquoise */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    min-height: 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pix-destaque-dark) 0%, var(--pix-destaque) 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(74, 202, 202, 0.35), 0 0 40px rgba(74, 202, 202, 0.15);
    border: 1px solid rgba(74, 202, 202, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(74, 202, 202, 0.45), 0 0 60px rgba(74, 202, 202, 0.2);
    background: linear-gradient(135deg, var(--pix-destaque) 0%, var(--pix-destaque-light) 100%);
    color: #1a1a1a;
}

.btn-secondary {
    background: linear-gradient(135deg, #2e2e32 0%, var(--pix-charcoal) 100%);
    color: var(--pix-destaque);
    border: 1px solid rgba(74, 202, 202, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--pix-charcoal) 0%, #2e2e32 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(74, 202, 202, 0.2);
    color: var(--pix-destaque-light);
}

.btn-large { padding: 16px 32px; font-size: 18px; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: env(safe-area-inset-top, 0);
    background: rgba(26, 26, 31, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(74, 202, 202, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    text-decoration: none;
}

.brand-name {
    color: var(--pix-destaque);
    text-shadow: 0 0 20px rgba(74, 202, 202, 0.35);
}

.logo-link { display: inline-block; text-decoration: none; transition: transform 0.3s ease; }
.logo-link:hover { transform: scale(1.05); }

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(74, 202, 202, 0.25));
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(74, 202, 202, 0.4));
}

.nav-links-desktop { display: flex; align-items: center; gap: 2rem; }

.nav-links-overlay {
    display: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--pix-destaque);
    text-shadow: 0 0 10px rgba(74, 202, 202, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span { width: 24px; height: 2px; background: #ffffff; transition: all 0.3s ease; }

/* Hero & feature sections - fundos escuros */
.hero-feature {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--pix-charcoal-darker) 0%, var(--pix-charcoal-dark) 50%, var(--pix-charcoal) 100%);
    position: relative;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(74, 202, 202, 0.06) 0%, transparent 55%),
                radial-gradient(circle at 80% 50%, rgba(74, 202, 202, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.hero-feature.primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 0;
    min-height: auto;
}

.hero-feature.primary .feature-content.hero-only {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Logo flutuante no hero */
.hero-logo-float {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(74, 202, 202, 0.15);
    animation: hero-float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    animation-play-state: paused;
    transform: scale(1.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 50px rgba(74, 202, 202, 0.2);
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-feature.secondary {
    min-height: 70vh;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pix-charcoal-dark) 0%, var(--pix-charcoal) 100%);
    position: relative;
}

.hero-feature.secondary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(74, 202, 202, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.hero-feature.secondary:nth-child(even) {
    background: linear-gradient(135deg, var(--pix-charcoal-darker) 0%, var(--pix-charcoal-dark) 100%);
}

.hero-feature.secondary:nth-child(even)::before {
    background: radial-gradient(circle at 70% 50%, rgba(74, 202, 202, 0.03) 0%, transparent 55%);
}

.feature-visual { display: flex; justify-content: center; align-items: center; padding: 1rem; }

.feature-content { padding: 2rem; max-width: 600px; }

.feature-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, var(--pix-destaque) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(74, 202, 202, 0.25));
}

.hero-feature.secondary .feature-title { font-size: clamp(2rem, 4vw, 3rem); }

.feature-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Placeholder blocks (no screenshots yet) */
.feature-placeholder {
    flex-direction: column;
    gap: 0.5rem;
    min-height: 200px;
    background: linear-gradient(135deg, #2e2e32 0%, var(--pix-charcoal) 100%);
    border-radius: 20px;
    border: 1px solid rgba(74, 202, 202, 0.2);
    margin: 0 1rem;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.9;
    filter: grayscale(0.2);
}

.feature-placeholder p {
    color: #A8A8A8;
    margin: 0;
    font-size: 1rem;
}

/* Screenshots section */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #A8A8A8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.screenshots {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pix-charcoal-darker) 0%, var(--pix-charcoal-dark) 100%);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(74, 202, 202, 0.03) 0%, transparent 55%);
    pointer-events: none;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.screenshot {
    background: linear-gradient(135deg, #2e2e32 0%, var(--pix-charcoal) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 202, 202, 0.12);
}

.screenshot:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(74, 202, 202, 0.1);
}

.placeholder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.placeholder-icon.large {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.screenshot-caption { padding: 0.5rem 0 0; text-align: center; }

.screenshot-caption h4 {
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.screenshot-caption p {
    color: #A8A8A8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.screenshots-cta { text-align: center; }

/* FAQ */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pix-charcoal-dark) 0%, var(--pix-charcoal) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(74, 202, 202, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: linear-gradient(135deg, #2e2e32 0%, var(--pix-charcoal) 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(74, 202, 202, 0.12);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(74, 202, 202, 0.28);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.faq-item summary {
    padding: 1.25rem 2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-item summary:hover { background: rgba(74, 202, 202, 0.06); }

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--pix-destaque);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
    padding: 1rem 2rem 1.5rem;
    margin: 0;
    color: #d1d5db;
    line-height: 1.6;
}

.faq-item a { color: var(--pix-destaque); text-decoration: none; }
.faq-item a:hover { text-decoration: underline; }

/* Footer */
.footer {
    background: var(--pix-bg-footer);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-left .tagline { color: #a1a1a6; font-size: 1.1rem; margin: 0; }

.footer-center { text-align: center; }

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--pix-destaque); }

.footer-right { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; }

.footer-link {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover { color: var(--pix-destaque); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: env(safe-area-inset-bottom, 0);
    border-top: 1px solid #333;
}

.footer-bottom p { color: #a1a1a6; margin: 0; }

/* ========== RESPONSIVE - Mobile first ========== */

/* Tablet e mobile */
@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1rem;
    }

    .nav-links-desktop {
        display: none;
    }

    .nav-links-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        padding: max(80px, env(safe-area-inset-top, 0px) + 60px) 1.5rem 2rem;
        background: rgba(13, 13, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-left: 1px solid rgba(74, 202, 202, 0.15);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
    }

    .nav-links-overlay.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-links-overlay .nav-link {
        display: block;
        padding: 1rem 0;
        min-height: 48px;
        line-height: 1.4;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    .nav-brand { z-index: 1001; }

    .hero-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 100px 0 48px;
        min-height: auto;
    }

    .hero-feature.primary {
        padding: 100px 0 48px;
        padding-top: max(112px, env(safe-area-inset-top, 0px) + 100px);
    }

    .hero-feature.primary .feature-content.hero-only {
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero-logo-float {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .hero-logo-img {
        width: 100px;
        height: 100px;
    }

    .feature-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-feature.secondary {
        padding: 48px 0 32px;
        min-height: auto;
    }

    .hero-feature.secondary .feature-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .feature-content {
        padding: 1rem;
        order: 2;
        max-width: 100%;
    }

    .feature-visual {
        order: 1;
        padding: 0.5rem;
    }

    .feature-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-placeholder {
        min-height: 140px;
        margin: 0 0.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .screenshots {
        padding: 48px 0;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .screenshot {
        padding: 1.25rem;
    }

    .placeholder-card {
        min-height: 220px;
    }

    .placeholder-icon.large {
        font-size: 3.5rem;
    }

    .faq {
        padding: 48px 0;
    }

    .faq-item summary {
        padding: 1rem 3rem 1rem 1.25rem;
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
    }

    .faq-item summary::after {
        right: 1.25rem;
    }

    .faq-item p {
        padding: 1rem 1.25rem 1.25rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-nav {
        gap: 1rem;
        justify-content: center;
    }

    .footer-nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .container {
        padding: 0 1rem;
        width: 100%;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .nav {
        padding: 0.5rem 0.75rem;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .hero-feature.primary {
        padding: max(96px, env(safe-area-inset-top, 0px) + 80px) 0 40px;
    }

    .hero-feature.primary .feature-content.hero-only {
        padding: 0 0.75rem;
    }

    .hero-logo-img {
        width: 88px;
        height: 88px;
    }

    .feature-title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
    }

    .feature-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .btn,
    .btn-large {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-feature.secondary {
        display: none;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .screenshot-caption h4 {
        font-size: 1rem;
    }

    .screenshot-caption p {
        font-size: 0.85rem;
    }
}

/* Página Privacidade - mobile */
@media (max-width: 768px) {
    .privacy-main {
        padding: max(100px, env(safe-area-inset-top, 0px) + 72px) 0 48px;
    }

    .privacy-content {
        padding: 0 1rem;
    }

    .privacy-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .privacy-updated {
        margin-bottom: 2rem;
        font-size: 0.9rem;
    }

    .privacy-intro,
    .privacy-contact {
        padding: 1.25rem;
    }

    .privacy-section h2 {
        font-size: 1.25rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-main {
        padding: max(80px, env(safe-area-inset-top, 0px) + 56px) 0 32px;
    }

    .privacy-content {
        padding: 0 0.75rem;
    }

    .privacy-title {
        font-size: 1.5rem;
    }

    .privacy-intro,
    .privacy-contact {
        padding: 1rem;
    }

    .privacy-section h2 {
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.btn:focus,
.nav-link:focus,
.footer-nav a:focus,
.footer-link:focus {
    outline: 2px solid var(--pix-destaque);
    outline-offset: 2px;
}

/* Página Política de Privacidade */
.privacy-main {
    padding: 160px 0 80px;
    min-height: 100vh;
    background: var(--pix-charcoal-dark);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-updated {
    text-align: center;
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-intro {
    background: #2e2e32;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--pix-destaque);
}

.privacy-intro p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #444444;
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #cccccc;
}

.privacy-contact {
    background: #2e2e32;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid var(--pix-destaque);
}

.privacy-contact h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.privacy-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #cccccc;
}

.privacy-contact a {
    color: var(--pix-destaque);
    text-decoration: none;
    font-weight: 500;
}

.privacy-contact a:hover {
    text-decoration: underline;
}
