:root {
  --roxo-principal: #6040ce;
  --roxo-claro: #e8dbfb;
}

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

body {
  font-family: 'Poppins', sans-serif;

  background: #ececec;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;

  position: relative;
}

.fechar {
  position: absolute;

  top: 20px;
  right: 20px;
}

.fechar img {
  transition: 0.2s;
}

.fechar:hover img {
  transform: rotate(90deg);
}

.cartao {
  width: 900px;
  max-width: 92%;

  background: #fff;

  border-radius: 22px;

  padding: 60px 50px;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.icone {
  width: 130px;

  margin-bottom: 18px;
}

h1 {
  font-size: 2rem;

  font-weight: 700;

  color: #111;
}

.subtitulo {
  margin-top: 8px;
  margin-bottom: 35px;

  color: #666;

  font-size: 1rem;
}

.mensagem {
  width: 100%;
  max-width: 560px;

  background: var(--roxo-claro);

  border: 1px solid #b692ff;

  border-radius: 12px;

  padding: 18px 25px;

  display: flex;
  align-items: center;

  gap: 22px;
}

.mensagem img {
  flex-shrink: 0;
}

.mensagem p {
  color: #555;

  font-size: 1rem;

  text-align: center;

  width: 100%;
}

.botao {
  margin-top: 35px;

  background: var(--roxo-principal);

  color: #fff;

  text-decoration: none;

  padding: 15px 45px;

  border-radius: 12px;

  font-size: 1rem;

  font-weight: 600;

  transition: 0.25s;

  box-shadow: 0 8px 18px rgba(96, 64, 206, 0.35);
}

.botao:hover {
  background: #4d2fb7;

  transform: translateY(-2px);
}
