/* Reset e Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --roxo-escuro: #562d56;
  --roxo-claro: #cb6ce6;
  --verde-whatsapp: #27bf64;
  --texto: #252525;
  --fundo: #faf8fc;
  --branco: #ffffff;
}

body {
  font-family: 'Arimo', Arial, sans-serif;
  color: var(--texto);
  background-color: var(--fundo);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  background-color: var(--roxo-escuro);
  padding: 16px 20px;
  text-align: center;
}

.header__logo {
  color: var(--branco);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header__sub {
  color: var(--roxo-claro);
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

/* Main */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.card {
  background: var(--branco);
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(86, 45, 86, 0.1);
  max-width: 560px;
  width: 100%;
  padding: 48px 32px;
  text-align: center;
}

/* Ícone check */
.card__icon {
  width: 72px;
  height: 72px;
  background-color: var(--roxo-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.card__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--branco);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Textos */
.card__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--roxo-escuro);
  margin-bottom: 12px;
}

.card__text {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

.card__produto {
  font-weight: 700;
  color: var(--roxo-escuro);
}

/* Passos */
.steps {
  text-align: left;
  margin-bottom: 36px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.step__number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: var(--roxo-escuro);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.step__content {
  flex: 1;
}

.step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--roxo-escuro);
  margin-bottom: 2px;
}

.step__desc {
  font-size: 14px;
  color: #666;
}

/* Botões */
.actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

.btn--club {
  background-color: var(--roxo-claro);
  color: var(--branco);
}

.btn--whatsapp {
  background-color: var(--verde-whatsapp);
  color: var(--branco);
}

.btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Aviso */
.card__aviso {
  margin-top: 24px;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

/* Footer */
.footer {
  background-color: var(--roxo-escuro);
  color: var(--branco);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.footer a {
  color: var(--roxo-claro);
  text-decoration: none;
}

/* Mobile */
@media (max-width: 480px) {
  .card {
    padding: 32px 20px;
  }

  .card__title {
    font-size: 22px;
  }

  .btn {
    font-size: 15px;
    padding: 14px 20px;
  }
}
