body {
        font-family: 'Segoe UI', Arial, sans-serif;
        background: 
         linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.8)),
        url('https://i.postimg.cc/cC2XjJjj/wp2124843.jpg') no-repeat center center fixed;
        background-size: cover;
        color: #050404;
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
    }
    
    header {
        color: white;
        padding: 20px;
        text-align: center;
        position: relative;
        background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), /* camada escura transparente */
        url('https://i.postimg.cc/W3tyfxzr/1358905.png') no-repeat center center/cover; /* imagem de fundo */
        background-attachment: fixed; /* cria efeito de parallax ao rolar */
        box-shadow: 0 0 30px rgba(0,0,0,0.5);
    }
    .contador {
      color: white;
      text-shadow:
        -1px -1px 0 #000000,
         1px -1px 0 #000000,
        -1px  1px 0 #000000,
         2px  2px 0 #000000;
      background-color: rgba(255, 255, 255, 0.2);
      padding: 20px 40px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgb(255, 255, 255);
      font-size: 1.5em;
      text-align: center;
      font-weight: bold;
      border: 2px solid white;
      transition: transform 0.2s;
    }

    .contador:hover {
      transform: scale(1.05);
    }
    .container {
      padding: 20px;
      max-width: 800px;
      margin: auto;
    }
    .wordlist {
      background-color: rgb(0, 0, 0);
      padding: 15px;
      margin-bottom: 15px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .wordlist a {
      text-decoration: none;
      color: #a4d2f1;
      font-weight: bold;
    }
    .donate {
      text-align: center;
      color: white;
      margin-top: 30px;
    }
    .donate button, .scroll-button {
      background-color: #27ae60;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }
    .donate button:hover, .scroll-button:hover {
      background-color: #219150;
    }
    footer {
      background-color: #000000;
      color: white;
      text-align: center;
      padding: 10px;
      margin-top: 40px;
    }
    .logo {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 5px solid #2980b9;
      box-shadow: 0 0 15px rgba(41, 128, 185, 0.5);
      object-fit: cover;
      display: block;
      margin: 20px auto;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .logo:hover {
      transform: scale(1.05);
      box-shadow: 0 0 25px rgba(41, 128, 185, 0.8);
    }
    h1 {
      color: white;
      text-shadow:
        -1px -1px 0 #2980b9,
         1px -1px 0 #2980b9,
        -1px  1px 0 #2980b9,
         2px  2px 0 #2980b9;
    }
    h3 {
      color: white;
      
    }
    p {
      color: white;
     
    }

    /* botão fixo no topo direito */
    .scroll-button {
      margin: 20px auto;
      text-align: center;
      position: absolute;
      top: 200px;
      left: 50%;
      transform: translateX(-50%);
    }

    /* Botões laterais fixos */
    .side-buttons {
     position: fixed;
    top: 120px; /* distância do topo */
    left: 20px; /* distância da borda esquerda */
    display: flex;
    flex-direction: column;
    gap: 10px;
   z-index: 1000;
      }

    .side-buttons button {
     background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
     font-size: 15px;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .side-buttons button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    }

    /* CSS: cole no seu index.css */
.badge-new {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  color: #fff;
  background: linear-gradient(135deg, #ff5f6d 0%, #ff1111 100%); /* degradê atraente */
  padding: 4px 8px;
  border-radius: 999px;
  margin-left: 8px;
  box-shadow: 0 3px 8px rgba(255,90,70,0.25), inset 0 -1px 0 rgba(255,255,255,0.08);
  transform-origin: center;
  vertical-align: middle;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  opacity: 1;
}

/* pequeno pulso suave para chamar atenção (opcional) */
.badge-new::after {
  content: "";
  position: absolute;
  display: block;
  width: 0; height: 0;
}

/* hover / foco para melhorar acessibilidade */
.badge-new:hover,
.badge-new:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(255,90,70,0.24);
  cursor: default;
  outline: none;
}

/* variação pequena para badges menores (ex.: em tabelas) */
.badge-new.small {
  font-size: 11px;
  padding: 3px 6px;
}

/* se quiser posicionar o badge no canto de um cartão */
.card {
  position: relative;
  overflow: visible;
}
.card .badge-new.corner {
  position: absolute;
  top: 10px;
  right: 10px;
  margin-left: 0;
}

/* opção: animação de pulso leve (desative se preferir estático) */
@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,70,0.24); }
  70% { box-shadow: 0 0 0 10px rgba(255,90,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,70,0); }
}
.badge-new.pulse {
  animation: badgePulse 2.4s infinite;
}

.paypal-btn {
    display: inline-block;
    background-color: #0070ba;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
  }

  .paypal-btn:hover {
    background-color: #005ea6;
    transform: scale(1.05);
  }

.feedback-box {
    font-family: Arial, sans-serif;
    margin-top: 20px;
  }

  .nota {
    display: inline-block;
    padding: 10px 14px;
    margin: 4px;
    border: 1px solid #ccc;
    cursor: pointer;          /* 👈 ISSO AQUI */
    user-select: none;   
    border-radius: 4px;
  }

  .nota:hover {
    background-color: #f0f0f0;
  }

  .agradecimento {
    font-size: 16px;
    color: green;
    font-weight: bold;
  }  