#mt_privacidade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.conteudo-lightbox {
    width: 90%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.header-cookies {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.header-cookies h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.corpo-cookies {
    padding: 20px;
    text-align: center;
    font-family: sans-serif;
}

.corpo-cookies p {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.corpo-cookies button {
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.corpo-cookies button:hover {
    background-color: #0a58ac;
}