.cookie-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
  padding: 20px;
  width: 300px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.cookie-box.modal {
  bottom: auto;
  top: 20%;
  right: 50%;
  transform: translateX(50%);
  width: 350px;
}

.cookie-box button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: none;
  background: #03215d;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-box .buttons button:nth-child(2) {
  background: #aaa;
  color: #000;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;    /* aumentei */
  height: 28px;   /* aumentei */
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;    /* aumentei */
  width: 20px;     /* aumentei */
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #0a6044;
}
input:checked + .slider:before {
  transform: translateX(22px); /* ajustado para nova largura */
}

.slider.round {
  border-radius: 34px;
}
