* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(135deg, #ffafbd, #ffc3a0);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card-convite {
  background-color: #fff;
  max-width: 420px;
  width: 100%;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.chamada {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.8rem;
  color: #e75480;
  margin-bottom: 5px;
}

.idade {
  color: #ff8fa3;
  font-weight: bold;
  margin-bottom: 25px;
}

.detalhes p {
  color: #555;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contagem {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 25px 0;
}

.tempo-item {
  background-color: #ffe5ec;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 55px;
}

.tempo-item span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #e75480;
}

.tempo-item small {
  color: #999;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.btn-confirmar {
  display: inline-block;
  margin-top: 10px;
  background-color: #e75480;
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: bold;
}

.btn-confirmar:hover {
  background-color: #d1416d;
}
