/* Estilos para a página de Política de Privacidade */
.content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content ul li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

/* Estilos para o banner de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #83149E !important;
    color: #fff;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(8px);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.5;
}

/* Remove estilos desnecessários já que estamos usando Tailwind */

@media (max-width: 768px) {
    .content {
        padding: 0 1rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.25rem;
    }
}
