@charset "UTF-8";
/* =====================================
   THANKS PAGE STYLES
   ===================================== */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
.thanks-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.thanks-section .thanks-content {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.thanks-section .thanks-content .thanks-icon {
  margin-bottom: 1.5rem;
}
.thanks-section .thanks-content .thanks-icon i {
  font-size: 3.5rem;
  color: #ffbf00;
  background: linear-gradient(135deg, #ffbf00, #987200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 191, 0, 0.3));
}
.thanks-section .thanks-content .thanks-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .thanks-section .thanks-content .thanks-title {
    font-size: 1.875rem;
  }
}
.thanks-section .thanks-content .thanks-message {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 1.75rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.thanks-section .thanks-content .thanks-message strong {
  color: #2c3e50;
  font-weight: 600;
}
.thanks-section .thanks-content .thanks-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.thanks-section .thanks-content .thanks-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  height: auto;
  min-height: 150px;
  text-align: left;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.thanks-section .thanks-content .thanks-features .feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
}
.thanks-section .thanks-content .thanks-features .feature-item i {
  color: #ffbf00;
  font-size: 1rem;
}
.thanks-section .thanks-content .thanks-features .feature-item span {
  color: #495057;
  font-weight: 500;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .thanks-section .thanks-content .thanks-features .feature-item {
    padding: 0.5rem 1rem;
  }
  .thanks-section .thanks-content .thanks-features .feature-item span {
    font-size: 0.8rem;
  }
}
.thanks-section .thanks-content .thanks-cta {
  margin-bottom: 1.75rem;
}
.thanks-section .thanks-content .thanks-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.thanks-section .thanks-content .thanks-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  text-decoration: none;
}
.thanks-section .thanks-content .thanks-cta .btn-primary i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.thanks-section .thanks-content .thanks-cta .btn-primary:hover i {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .thanks-section .thanks-content .thanks-cta .btn-primary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}
.thanks-section .thanks-content .thanks-info {
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.thanks-section .thanks-content .thanks-info p {
  margin-bottom: 1rem;
  color: #6c757d;
  font-size: 1rem;
}
.thanks-section .thanks-content .thanks-info p strong {
  color: #2c3e50;
}
.thanks-section .thanks-content .thanks-info .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.thanks-section .thanks-content .thanks-info .btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background: #128c7e;
  color: #fff;
  text-decoration: none;
}
.thanks-section .thanks-content .thanks-info .btn-whatsapp i {
  font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .thanks-section {
    padding: 1.5rem 1rem;
  }
  .thanks-section .thanks-content {
    padding: 1.75rem 1.25rem;
  }
  .thanks-section .thanks-content .thanks-features {
    gap: 1rem;
  }
  .thanks-section .thanks-content .thanks-features .feature-item {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 576px) {
  .thanks-section .thanks-content {
    padding: 1.25rem 1rem;
  }
  .thanks-section .thanks-content .thanks-title {
    font-size: 1.75rem;
  }
  .thanks-section .thanks-content .thanks-message {
    font-size: 1rem;
  }
  .thanks-section .thanks-content .thanks-features {
    flex-direction: column;
    align-items: center;
  }
  .thanks-section .thanks-content .thanks-features .feature-item {
    width: 100%;
    justify-content: center;
  }
}
/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.thanks-content {
  animation: fadeInUp 0.8s ease-out;
}

.thanks-icon i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/*# sourceMappingURL=thanks.css.map */
