/**
 * Obrigado Page Styles
 *
 * @package BIM_Works
 */

.obrigado-page {
  background-color: #0a0a0b;
  color: #e5e5e5;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  padding: 120px 20px;
  box-sizing: border-box;
}

.obrigado-page__container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.obrigado-page__content {
  text-align: center;
  background-color: #000000;
  border: 1px solid #7c3aed;
  border-radius: 12px;
  padding: 56px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(124, 58, 237, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.obrigado-page__icon-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 96px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 50%;
  margin: 0 auto 32px auto;
}

.obrigado-page__icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(124, 58, 237, 0) 70%);
  border-radius: 50%;
  filter: blur(8px);
}

.obrigado-page__icon {
  position: relative;
  z-index: 1;
}

.obrigado-page__title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  margin: 0 0 20px 0;
}

.obrigado-page__text {
  color: #99a1af;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin: 0 0 40px 0;
  max-width: 480px;
}

.obrigado-page__action {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.obrigado-page__action .btn-primary {
  margin-bottom: 0;
  width: auto;
  min-width: 220px;
}

/* Responsive */
@media (max-width: 768px) {
  .obrigado-page {
    padding: 80px 20px;
    min-height: auto;
  }
  .obrigado-page__container {
    max-width: 100%;
  }
  .obrigado-page__content {
    padding: 48px 24px;
  }
  .obrigado-page__title {
    font-size: 28px;
    line-height: 38px;
  }
}

@media (max-width: 480px) {
  .obrigado-page {
    padding: 60px 16px;
  }
  .obrigado-page__content {
    padding: 40px 16px;
  }
  .obrigado-page__title {
    font-size: 24px;
    line-height: 32px;
  }
  .obrigado-page__action .btn-primary {
    width: 100%;
  }
}
