* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body, html {
  height: 100%;
  color: #fff;
  overflow-x: hidden;
}

/* Fundo com imagem e desfoque */
.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: url("./images/fundo-vip.jpg") center center / cover no-repeat;
}

/* Camada de desfoque por cima da imagem */
.container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* escurece levemente */
  backdrop-filter: blur(6px);
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.titulo {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.icone {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.botao-vip {
  display: inline-block;
  background: linear-gradient(135deg, #ff5fa2, #ff7b00);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(255, 95, 162, 0.4);
  transition: all 0.3s ease;
}

.botao-vip:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ff7b00, #ff5fa2);
}

/* Responsivo */
@media (max-width: 600px) {
  .titulo {
    font-size: 1.6rem;
  }

  .subtitulo {
    font-size: 1rem;
  }

  .overlay {
    padding: 30px 20px;
  }
}
