/* Política de Privacidade - Clean Design */
main {
    padding-top: 0;
}

.page-hero {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 400;
}

.content-section {
    padding: 3rem 0;
    background: var(--white);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content article {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.privacy-content h2 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.consent-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.consent-form-section h2 {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.privacy-form .form-group {
    margin-bottom: 1.5rem;
}

.privacy-form label {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.privacy-form input,
.privacy-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: var(--white);
}

.privacy-form input:focus,
.privacy-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.privacy-form textarea {
    resize: vertical;
    min-height: 140px;
}

.consent-group {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--accent);
}

.checkbox-label span {
    flex: 1;
    font-size: 0.9375rem;
}

.privacy-form .submit-btn {
    background: var(--accent);
    color: var(--white);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.privacy-form .submit-btn:hover {
    background: var(--secondary);
}

@media (max-width: 640px) {
    .privacy-content article,
    .consent-form-section {
        padding: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }
}
