/* Overlay escurecido */
.privacy-modal-overlay {
    position: fixed;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal centralizado */
.privacy-modal-box {
    background: #fff;
    border-radius: 12px;
    width: 200px;
    height: 100px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    font-family: 'Inter', Arial, sans-serif;
    overflow: hidden;
}

/* Barra de título */
.privacy-modal-header {
    width: 100%;
    height: 32px;
    background: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 12px;
    font-size: 1rem;
    font-weight: 600;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
}

/* Botão de fechar (X) */
.privacy-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-right: 8px;
    margin-left: -4px;
    position: absolute;
    left: 8px;
    top: 4px;
}

/* Conteúdo centralizado */
.privacy-modal-content {
    padding: 8px 12px;
    text-align: center;
    font-size: 0.85rem;
    color: #333;
    overflow-y: auto;
    height: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Título do texto */
.privacy-modal-content-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #007bff;
    font-size: 0.95rem;
}
