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

:root {
    --bg-page: hsl(220, 20%, 97%);
    --bg-card: hsl(0, 0%, 100%);
    --text-main: hsl(222, 47%, 11%);
    --text-muted: hsl(215, 16%, 47%);
    --primary-color: hsl(220, 95%, 50%);
    --primary-light: hsl(220, 95%, 97%);
    --border-subtle: hsl(220, 15%, 92%);
    --max-width: 680px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.75;
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Container Principal */
.privacy-container {
    background-color: var(--bg-card);
    width: 100%;
    max-width: var(--max-width);
    padding: 3.5rem 4rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-subtle);
    animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.privacy-header {
    margin-bottom: 2.5rem;
}

.logo-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.brand-name {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.heartbeat-icon {
    stroke-width: 2.5px;
}

.privacy-header h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Intro */
.intro-text {
    margin-bottom: 2.5rem;
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.highlight-statement {
    font-weight: 500;
    color: var(--text-main) !important;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin-top: 1.5rem;
}

/* Grid de Políticas */
.policy-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.policy-card {
    background-color: var(--primary-light);
    border: 1px solid rgba(0, 82, 255, 0.05);
    padding: 1.75rem;
    border-radius: 16px;
    transition: transform 0.2s ease;
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.policy-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.policy-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Seções de Detalhes */
.detail-section {
    margin-bottom: 2.5rem;
}

.detail-section h2 {
    font-size: 1.25rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.detail-section p {
    color: var(--text-muted);
    font-size: 0.975rem;
}

/* Footer da Política */
.privacy-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2.5rem;
    margin-top: 3.5rem;
    text-align: center;
}

.privacy-footer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-action {
    margin-bottom: 2.5rem;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--text-main);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.email-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
}

.credits {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 600px) {
    body {
        padding: 1.5rem 1rem;
    }
    
    .privacy-container {
        padding: 2rem 1.75rem;
        border-radius: 20px;
    }
    
    .privacy-header h1 {
        font-size: 1.75rem;
    }
}
