:root {
  --bg1: #07101a;
  --bg2: #0c1c2a;
  --panel: #101820;
  --gold: #ffd066;
  --muted: #a6b3bd;
  --accent: #e64b4b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(160deg, var(--bg1), var(--bg2));
  color: var(--muted);
  font-family: "Inter", system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.wrapper {
  text-align: center;
}

.card {
  display: flex;
  gap: 40px;
  background: var(--panel);
  padding: 40px 50px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  align-items: center;
  margin: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.8s ease;
}

.left {
  flex: 1;
  display: flex;
  justify-content: center;
}
.mascote {
  width: 220px;
  max-width: 100%;
}

.right {
  flex: 2;
  text-align: left;
}

h1 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 2rem;
}

p {
  margin-bottom: 8px;
  font-size: 1rem;
}

p.highlight {
  margin-top: 10px;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
}

/* Barra de progresso */
.progress {
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  height: 14px;
  overflow: hidden;
}
.progress .bar {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent), #ff6a6a, var(--accent));
  animation: load 2s infinite alternate ease-in-out;
}
@keyframes load {
  from {
    width: 25%;
  }
  to {
    width: 85%;
  }
}

/* Botão voltar */
.btn-back {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 22px;
  background: linear-gradient(90deg, var(--accent), #b72a2a);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(230, 75, 75, 0.22);
  transition: all 0.2s ease;
}
.btn-back:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230, 75, 75, 0.35);
}

/* Rodapé */
footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--muted);
}
footer span {
  color: var(--gold);
  font-weight: bold;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 720px) {
  .card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .right {
    text-align: center;
  }
  .mascote {
    width: 180px;
    margin-bottom: 20px;
  }
}
