@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Great+Vibes&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Fundo com imagem e gradiente */
.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)),
    url('./images/fundo.jpg') center/cover no-repeat;
}

/* Caixa central — visual leve e responsivo */
.overlay {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 20px 28px;
  width: 90%;
  max-width: 320px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Nome VIP — fonte cursiva e menor para caber bem */
.titulo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffe6f2;
  text-shadow: 0 0 8px rgba(255, 182, 193, 0.6);
}

/* Botão — design delicado e leve */
.botao {
  display: inline-block;
  background: linear-gradient(90deg, #ff8fc1, #ffb3da);
  color: white;
  padding: 10px 26px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(255,182,193,0.3);
  transition: all 0.3s ease;
}

.botao:hover {
  background: linear-gradient(90deg, #ff7bb0, #ff9fcc);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,182,193,0.5);
}

/* 📱 Ajustes específicos para telas menores */
@media (max-width: 480px) {
  .overlay {
    padding: 18px 22px;
    border-radius: 14px;
  }

  .titulo {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .botao {
    font-size: 0.85rem;
    padding: 9px 22px;
  }
}
