.bloqueio-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bloqueio-box {
  width: 90%;
  max-width: 420px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 25px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.icon-lock {
  font-size: 58px;
  color: #f40;
  margin-bottom: 8px;
}

.aviso {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

.msg {
  font-size: 15px;
  margin-bottom: 20px;
  color: #333;
}

.btn-custom {
  padding: 13px;
  font-weight: 600;
  border-radius: 10px;
}


.check-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
  color: #333;
}

.check-container input {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
  background: #fff;
}

.check-container:hover .checkmark {
  border-color: #888;
}

.check-container input:checked + .checkmark {
  background: #4CAF50;
  border-color: #4CAF50;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.check-container input:checked + .checkmark::after {
  display: block;
}

.checkmark::after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

