.cookies-container {
  color: #222;
  position: fixed;
  width: 100%;
  bottom: 0rem;
  padding-bottom: 2rem;
}

.cookies-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  box-shadow: 0px -4px 16px rgba(0, 0, 0, 0.2);
  background: white;
  max-width: 1200px;
  border-radius: 4px;
  padding: 0.8rem 1rem;
  margin: 0 auto;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: slideUp 0.5s forwards;
}

.cookies-myfreedom {
  display: none;
}

@keyframes slideUp {
  to {
    transform: initial;
    opacity: initial;
  }
}

/* .cookies-myfreedom label {
  margin-right: 1rem;
  margin-top: 0.6rem;
}

.cookies-myfreedom input {
  margin-right: 0.3rem;
} */

.link-cookies {
  text-decoration: underline;
}

.cookies-save {
  background: #007cf8;
  color: white;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 3rem;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.cookies-save:hover {
  background: #375ada;
}

/* ---- Página Política de Privacidade ---- */

#politica-privacidade h1 {
  font-family: Inter, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
}

#politica-privacidade h2 {
  font-family: Inter, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}

#politica-privacidade h3 {
  font-size: 1rem;
}

#politica-privacidade h4 {
  font-size: 1rem;
}

#politica-privacidade h3,
#politica-privacidade h4 {
  margin: 2rem 0;
  font-weight: 600;
  line-height: 1.5rem;
}

#politica-privacidade p,
li,
span {
  color: #666;
  font-size: 0.875rem;
}

#politica-privacidade strong {
  color: #212121;
}

#politica-privacidade li {
  margin-left: 2rem;
}

/* Media Queries */

@media (max-width: 1024px) {
  .cookies-content {
    display: flex;
    text-align: center;
    gap: 0.8rem;
    max-width: 960px;
    padding: 2rem 0.5rem;
  }

  .cookies-save {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .cookies-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    max-width: 610px;
    padding: 2rem 0.5rem;
  }

  .cookies-save {
    width: 260px;
  }
}

@media (max-width: 600px) {
  .cookies-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    max-width: 310px;
    padding: 2rem 0.5rem;
  }

  .cookies-save {
    width: 260px;
  }
}
