p {
    margin: 0px;
  }
  
  body {
    margin: 0px;
    height: 200vh;
    background: #eee;
  }
/* Política de privacidade HTML */
.politica_de_privacidade {
  color: black;
  padding: 20px;
}

/* Política de privacidade HTML */

  .cookies-container {
    color: rgb(0, 0, 0);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: fixed;
    width: 100%;
    bottom: 2rem;
    z-index: 1000;
  }
  
  .cookies-content {
    box-shadow: 0 1px 3px rgba(255, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.877);
    max-width: 520px;
    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 0.5s forwards;
  }

  .cookies-content a {
    color: black;
  }

  .cookies-content a:hover {
    color: #ff6600ff;
  }
  
  @keyframes slideUp {
    to {
      transform: initial;
      opacity: initial;
    }
  }
  
  .cookies-pref label {
    margin-right: 1rem;
  }
  
  .cookies-save {
    grid-column: 2;
    grid-row: 1/3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #ff6600ff;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 5px;
    font-size: 1rem;
    height: 40px;
    text-align: center;
    
  }
  
  button:hover {
    background-color: white;
    color: black;
  }
  
  @media (max-width: 500px) {
    .cookies-content {
      grid-template-columns: 1fr;
    }
    .cookies-save {
      grid-column: 1;
      grid-row: 3;
    }
  }
  