body {
    margin: 0;
    padding: 0;
    background-color: #48102b;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .container {
    text-align: center;
    max-width: 400px;
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .top-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #48102b; /* contorno elegante */
    margin-bottom: 0.5rem;
  }
  
  .nome-site {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 300; 
    margin: 0;
    color: #ffffff;
  }
  

  .link-button {
    display: block;
    margin: 1rem 0;
    padding: 1rem;
    background-color: #ffffff;
    color: #48102b;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
  }

  .link-button:hover {
    background-color: #A67D44;
    color: #ffffff;
  }

  .highlight-text {
    color: #A67D44;
    margin-bottom: 2rem;
    font-weight: 700;
  }

  .link-button i {
    margin-right: 8px;
    font-size: 1.2em;
    vertical-align: middle;
  }

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0; /* garante que vá até a borda direita */
    width: 100%;
    background-color: rgba(72, 16, 43, 0.9); /* cor primária */
    color: #fff;
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .cookie-banner.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .cookie-text {
    display: inline;
    margin: 0;
    padding: 0;
  }
  
  .cookie-buttons {
    display: inline-block;
    margin-left: 1rem;
  }
  
  .cookie-accept,
  .cookie-decline {
    background-color: #48102b;;
    color: white;
    border: none;
    padding: 0.3rem 0.7rem;
    margin-left: 0.4rem;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .cookie-accept:hover,
  .cookie-decline:hover {
    background-color: #6b153f;
  }
  
  @media (max-width:768px) {

    body {
      padding: 30px;
    }

    .cookie-banner {
      max-width: fit-content;
      padding: 1rem;
      font-size: 0.8rem;
    }
  
    .cookie-text,
    .cookie-buttons {
      display: block;
      width: 100%;
      margin: 5px;
    }
  
    .cookie-buttons {
      text-align: center;
    }
  
    .cookie-accept,
    .cookie-decline {
      width: auto;
      margin: 0 0.3rem;
      padding: 0.4rem 0.9rem;
      font-size: 0.75rem;
    }
  
    .logo {
      width: 90px;
      height: 90px;
    }
  
    .nome-site {
      font-size: 1.5rem;
    }
  }