#simple-cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Fundo semitransparente */
  z-index: 99999; /* Abaixo do banner, mas acima do resto */
  display: none; /* Escondido inicialmente */
}

#simple-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 25px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  z-index: 100000;
  display: none; /* Escondido inicialmente, será mostrado via JS */
  font-family: sans-serif; /* Fonte padrão mais limpa */
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner-content {
  max-width: 1140px; /* Largura comum para containers */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* Espaço entre texto e botão */
}

.cookie-banner-content p {
  margin: 0;
  flex-grow: 1; /* Permite que o texto ocupe o espaço disponível */
}

.cookie-banner-content p a {
  text-decoration: underline;
  margin-left: 5px;
}

.cookie-banner-content p a:hover {
  text-decoration: none;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner-buttons button {
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.cookie-banner-buttons button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-banner-content p {
    margin-bottom: 10px; /* Espaço extra abaixo do texto no mobile */
  }

  #simple-cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fundo semitransparente */
    z-index: 9999; /* Abaixo do banner, mas acima do resto */
    display: none; /* Escondido inicialmente */
  }

  #simple-cookie-banner {
    padding: 15px;
  }
}
