  body {
    margin: 0;
    background-color: rgb(21,22,36);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
  }

.header {
  height: 250px;
  background: url('./img/fernnnn.webp') no-repeat center center;
  background-size: cover; 
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header .logo {
  width: 150px;      
  border-radius: 50%; 
  z-index: 2;         
}


  .header img {
    width: 245px;
    border-radius: 100px;
  }

  .titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .titulo h1 {
    font-size: 36px;
    margin: 0;
  }

  .titulo img {
    height: 36px;
  }

  h2 {
    text-align: center;
    margin-top: 40px;
  }

  .produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
  }

  .card {
    background: linear-gradient(to bottom, #006eff, #0099FF);
    border-radius: 12px;
    width: 150px;
    padding: 20px;
    text-align: center;
    text-shadow: 2px 2px 2px black;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,.5);
    transition: transform .3s, border-color .3s;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
  }

  .card:hover {
    transform: scale(1.05);
    border-color: white;
    box-shadow: 0 0 10px white;
  }

  .card-icon img {
    width: 80px;
    height: 80px;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card-price {
    font-weight: bold;
    color: #d1ffd1;
  }

  /* Tooltip */
  .card::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-size: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }

  .verificado {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Tooltip */
.verificado::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%; /* acima do ícone */
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  font-size: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}


.verificado::before {
  content: '';
  position: absolute;
  bottom: 115%; 
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: black;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.verificado:hover::after,
.verificado:hover::before {
  opacity: 1;
}


 
  .card::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: black;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

 
  .card:hover::after,
  .card:hover::before {
    opacity: 1;
  }

  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: black;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px 30px;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 0 20px rgba(0,0,0,.4);
    z-index: 999;
    display: none;
    animation: slideUp .3s ease;
  }

  .popup-content {
    flex: 1;
  }

  .popup-benefits {
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }

  .popup h3 {
    margin-top: 0;
  }

  .popup .btn-live {
    background: #00c97b;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .btn-live {
    background: #00c97b;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .btn-live img.pix-icon {
    height: 1em;
  }

  a.btn-live {
    text-decoration: none;
  }

  a.btn-live img.pix-icon {
    height: 1em;
    vertical-align: middle;
  }

  .popup small {
    display: block;
    font-size: 12px;
    margin-top: 10px;
    color: gray;
  }

  .popup .btn-close {
    margin-top: 15px;
    background: #ccc;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
  }

  .sem-estilo {
  color: white;
  text-decoration: none;
}

.sem-estilo2 {
  color: white;
  text-decoration: none;
}

.sem-estilo:hover {
  text-decoration: none;
}


  @keyframes slideUp {
    from {
      transform: translate(-50%, -40%);
      opacity: 0;
    }
    to {
      transform: translate(-50%, -50%);
      opacity: 1;
    }
  }

  .discord-button {
  position: absolute;
  top: 20px;
  right: 25px;
  z-index: 5;
}

.discord-button a {
  position: relative;
  display: inline-block;
  background: #5865F2;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.discord-button a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #5865F2;
}

.discord-button img {
  width: 28px;
  height: 28px;
}

.discord-button .tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.discord-button a:hover .tooltip {
  opacity: 1;
}
