/* =========================
   FINISH – ATUALIZAÇÃO CONCLUÍDA
========================= */

.finish-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b3b2e 0%, #dff3ea 100%);
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.finish-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  animation: finish-fade-in 0.5s ease;
}

.finish-logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.finish-logo {
  width: 160px;
  height: auto;
}

.finish-check {
  position: absolute;
  width: 90px;
  right: -20px;
  bottom: -10px;
  animation: finish-pop 0.5s ease;
}

.finish-title {
  font-size: 22px;
  font-weight: 700;
  color: #0b3b2e;
  margin: 15px 0 0;
}

.finish-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 0;
}

.finish-redirect {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #0b3b2e;
  margin: 0;
}

@keyframes finish-fade-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes finish-pop {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 400px) {
  .finish-logo {
    width: 140px;
  }

  .finish-check {
    width: 80px;
  }

  .finish-title {
    font-size: 20px;
  }
}
