@charset "utf-8";
/* CSS Document */

.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed;
  background: rgba(149, 51, 50, 0.9);
  width: 100%;
  z-index: 998;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-cookies .btn-cookies,
.box-cookies .btn-cookies.btn,
.box-cookies .btn-cookies.button {
  text-align: center;
  color: #fff !important;          /* força texto branco */
  font-size: 18px !important;
  background: #822d2d !important;  /* cor igual ao print */
  cursor: pointer;
  align-self: normal;
  border: none !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
}

.box-cookies .btn-cookies:hover {
  background: #6e2424 !important;  /* tom mais escuro no hover */
}

.box-cookies .msg-cookies {
  text-align: center;
  color: #000;
  font-size: 18px;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
    text-align: center;
  }

  .box-cookies .btn-cookies {
    width: 100%;        /* botão ocupa toda largura */
    margin-top: 10px;   /* espaço do texto para o botão */
  }
}