/* LGPD and privacy UI */
.privacy-note {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #475569;
    font-size: 13px;
    line-height: 1.55;
    padding: 12px 14px;
}

.privacy-note a,
.privacy-inline a {
    color: #4f46e5;
    font-weight: 700;
    text-decoration: underline;
}

.privacy-inline {
    color: #64748b;
    font-size: 12px;
    line-height: 1.55;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid #334155;
    border-radius: 12px;
    background: #0f172a;
    color: #cbd5e1;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.45);
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.cookie-banner a {
    color: #38bdf8;
    font-weight: 800;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-button {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #1e293b;
    color: #fff;
    cursor: pointer;
    font-weight: 800;
}

.cookie-button.primary {
    border-color: #0284c7;
    background: #0284c7;
}

@media (max-width: 720px) {
    .cookie-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-actions,
    .cookie-button {
        width: 100%;
    }
}
