.container_cokkie {
  padding: 2rem 0rem;
}

.modal-dialog {
  margin-top: 0rem;
  max-width: 100%;
}

.modal-dialog .modal-content {
  border-radius: 0rem;
}

.modal-dialog .buttons .btn {
  margin: 0.2rem;
}

/* .button_cokkie {
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  background: #000 0% 0% no-repeat padding-box;
  border-radius: 5px;
  border-color: #fff !important;
  width: 100%;
}

.CookieMessage {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #121212;
  z-index: 9;
  display: none;
}

.CookieMessage-content {
  color: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
  line-height: 1.5;
  font-size: 12px;
  text-align: center; 
}

.CookieMessage-content a {
  color: white;
}

.CookieMessage-content p {
  margin: 0 0 20px 0;
}

.CookieMessage-buttons {
  text-align: center; 
}

.CookieMessage-button {
  background-color: purple;
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 0 5px; 
  font-size: 14px; 
}

.CookieMessage-button-nao {
  background-color: red;
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 0 5px; 
  font-size: 14px; 
}

.CookieMessage-button:hover {
  background: #555;
} */

/* Estilos gerais do modal */
.modal {
  display: none; /* Modal não visível por padrão */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95); /* Fundo claro */
  z-index: 1000;
  padding: 10px;
}

/* Estilo do conteúdo do modal */
.modal-content {
  background-color: #fff; /* Fundo branco */
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  box-shadow: none; /* Remove bordas escuras */
}

/* Corpo do modal */
.modal-body {
  color: black;
  text-align: center;
  font-size: 1em; /* Diminui mais o tamanho da fonte */
}

.modal-body p {
  font-size: 1em; /* Tamanho da fonte para o texto do parágrafo */
}

.modal-body a {
  font-size: 1em; /* Tamanho da fonte para o link */
}

/* Rodapé do modal */
.modal-footer {
  display: flex;
  justify-content: flex-end; /* Botões alinhados à direita */
  gap: 10px;
}

.modal-footer button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em; /* Diminui o tamanho da fonte dos botões */
}

button.accept-all {
  background-color: #5BE0CD;
  color: white;
}

button.settings {
  background-color: #ccc;
  color: black;
}

/* Animação para o segundo modal */
@keyframes slideUp {
  0% {
      transform: translateY(100%);
  }
  100% {
      transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out; /* Modal aparece com uma animação de "subida" */
}


/* Estilo base para modais */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0; /* Canto arredondado apenas no topo */
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
    width: 100%; /* Largura total da tela */
    max-width: none; /* Remove a limitação de largura */
}


/* Modal geral */
#cookie-modal, #privacidade-modal {
  display: none; /* Inicialmente oculto */
  position: fixed;
  bottom: 0; /* Posiciona o modal no rodapé */
  left: 0;
  width: 100%; /* Largura total da página */
  background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro semitransparente */
  justify-content: center;
  z-index: 1000;
}