/* Controle de Cookies - Lei LGPD */

.cookies-container-lgpd {
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: fixed;
  width: 100vw;
  bottom: 1rem;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookies-content {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  background: white;
  max-width: 800px;
  border-radius: 5px;
  padding: 1rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 1.5s forwards;
}

.cookies-save {
  grid-column: 1;
  grid-row: 2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #007cf8;
  color: white;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: 0.2rem 1rem;
  font-size: 1rem;
}

@keyframes slideUp {
  to {
    transform: initial;
    opacity: initial;
  }
}

