/* ── SCREEN 6: Gracias ── */

.thanks-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.thanks-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--lavanda-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-icon-wrap svg {
  width: 40px;
  height: 40px;
  color: var(--lavanda);
}

.thanks-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--negro);
  line-height: 1.2;
}

.thanks-title span {
  color: var(--lavanda);
}

.thanks-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--negro-70);
  line-height: 1.7;
  max-width: 704px;
}

.thanks-agent-card {
  background: var(--blanco);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  text-align: left;
}

.thanks-agent-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.thanks-agent-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--lavanda-light) 0%,
      #d4d4f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thanks-agent-avatar svg {
  width: 26px;
  height: 26px;
  color: var(--lavanda);
}

.thanks-agent-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--negro);
}

.thanks-agent-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--negro-70);
  margin-top: 2px;
}

.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.thanks-step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--lavanda-light);
  color: var(--lavanda);
  border-radius: var(--radius-sm);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.thanks-step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  font-size: 18px;
}

.thanks-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lavanda);
  line-height: 1.4;
}

.thanks-step-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--negro-90);
  line-height: 1.6;
}

.thanks-note {
  font-size: 12px;
  font-weight: 500;
  color: var(--negro-80);
  margin-top: -22px;
  line-height: 20px;
}

.thanks-note-link {
  color: var(--lavanda);
  font-weight: 700;
  text-decoration: underline;
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--negro-70);
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.grecaptcha-badge {
  visibility: hidden !important;
}
