
.results {
  min-height: 100vh;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 64px 16px 96px;
}

.results-card {
  max-width: 888px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.results-hidden {
  display: none;
}

.results-top-icon {
  height: 74px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.results-top-icon--success {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #006655;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-top-icon--success svg {
  width: 34px;
  height: 34px;
  display: block;
}

.results-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 130%;
  color: #080808;
  text-align: center;
  margin: 40px 0 0;
}

.results-subtitle {
  margin: 10px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 150%;
  color: #4a4a4a;
  max-width: 100%;
}

.results-progress {
  width: 100%;
  max-width: 888px;
  height: 4px;
  background: #e6e6e6;
  border-radius: 999px;
  overflow: hidden;
  margin: 32px 0 26px;
}

.results-progress__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #006655;
  border-radius: 999px;
  transition: width 0.45s ease;
}

.results-steps {
  width: 100%;
  max-width: 888px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.results-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
}

.results-step.is-active {
  background: #f3f7f5;
}

.results-step__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #666666;
}

.results-step.is-active .results-step__icon,
.results-step.is-done .results-step__icon {
  color: #006655;
}

.results-step__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.results-step__text {
  font-size: 16px;
  line-height: 130%;
  color: #333333;
}

.results-step.is-done .results-step__text {
  color: #006655;
}

.results-step__state {
  margin-left: auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.results-step__spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d9e6e2;
  border-top-color: #006655;
  animation: resultsSpin 0.9s linear infinite;
  display: none;
}

.results-step__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #006655;
  display: none;
  align-items: center;
  justify-content: center;
}

.results-step__check svg {
  width: 12px;
  height: 12px;
  display: block;
}

.results-step.is-active .results-step__spinner {
  display: block;
}

.results-step.is-done .results-step__check {
  display: inline-flex;
}

@keyframes resultsSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.results-final {
  width: 100%;
}

.results-summary {
  width: 100%;
  max-width: 888px;
  margin: 44px 0 0;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.results-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px 18px;
  font-size: 20px;
  line-height: 130%;
  color: #333333;
}

.results-row + .results-row {
  border-top: 1px solid #f2f2f2;
}

.results-row__label {
  color: #333333;
}

.results-row__value {
  color: #333333;
  text-align: right;
}

#results-loader {
  width: 100%;
}

#results-final {
  width: 100%;
}

.results-cta {
  margin: 42px 0 0;
}

.results-cta .btn {
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
}

.results-whatsapp-icon {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 768px) {
  .results {
    padding-top: 48px;
  }

  .results-title {
    font-size: 28px;
  }

  .results-summary {
    margin-top: 32px;
  }

  .results-row {
    font-size: 16px;
  }
}

.results-cta--center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.results-whatsapp-img {
  width: 18px;
  height: 18px;
  display: block;
}