/* ==========================================================================
   13. Thank-you page
   ========================================================================== */

.page-template-page-obrigado-php {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thank-you-main {
  display: flex;
  flex: 1;
}

.thank-you-section {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 650px;
  align-items: center;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 245, 138, .14), transparent 33%),
    radial-gradient(circle at 84% 78%, rgba(0, 245, 138, .08), transparent 30%),
    #050706;
}

.thank-you-section::before,
.thank-you-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 245, 138, .09);
  border-radius: 50%;
  pointer-events: none;
}

.thank-you-section::before {
  top: -270px;
  right: -190px;
  width: 560px;
  height: 560px;
  box-shadow:
    0 0 0 72px rgba(0, 245, 138, .024),
    0 0 0 144px rgba(0, 245, 138, .016);
}

.thank-you-section::after {
  bottom: -300px;
  left: -230px;
  width: 520px;
  height: 520px;
}

.thank-you-section .container {
  position: relative;
  z-index: 1;
}

.thank-you-card {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(0, 245, 138, .18);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .4);
}

.thank-you-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border: 1px solid rgba(0, 186, 106, .28);
  border-radius: 50%;
  background: rgba(0, 245, 138, .13);
  box-shadow: 0 0 0 10px rgba(0, 245, 138, .04);
}

.thank-you-icon span {
  position: absolute;
  top: 24px;
  left: 21px;
  width: 29px;
  height: 16px;
  border-bottom: 4px solid var(--green-dark);
  border-left: 4px solid var(--green-dark);
  transform: rotate(-45deg);
}

.thank-you-card .section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.thank-you-card h1 {
  max-width: 650px;
  margin: 0 auto;
  color: #101922;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.04em;
}

.thank-you-card > p {
  max-width: 600px;
  margin: 22px auto 0;
  color: #69756f;
  font-size: 16px;
  line-height: 1.7;
}

.thank-you-card > p span {
  display: block;
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.thank-you-whatsapp {
  min-width: 250px;
  min-height: 52px;
}

.thank-you-note {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #758078;
  font-size: 12px;
  font-style: normal;
}

.thank-you-note strong {
  color: #26332c;
}

@media (max-width: 767px) {
  .thank-you-section {
    min-height: 560px;
    padding: 58px 0 66px;
  }

  .thank-you-card h1 {
    font-size: 38px;
  }

  .thank-you-note {
    flex-direction: column;
  }
}
