:root {
  --primary-color: #10140f;
  --secondary-color: #edf2e3;
  --bg-color: #fffdf5;
  --text-color: #5b6259;
  --accent-color: #64704f;
}

/* Menu: itens de topo nunca quebram em varias linhas */
.main-menu .nav-menu-wrapper > ul > li > a {
  white-space: nowrap;
}

/* Logo no header: versao escura no fundo claro, branca quando o menu fixa (fundo escuro) */
.navbar-brand .brand-logo {
  height: 74px;
  width: auto;
  display: block;
}

.navbar-brand .brand-logo-light,
.header-sticky.active .brand-logo-dark {
  display: none;
}

.header-sticky.active .brand-logo-light {
  display: block;
}

.footer-logo img {
  width: auto;
  max-width: 200px;
}

/* Simbolo da logo dentro do circulo do preloader */
#loading-icon {
  width: 56px;
  height: 56px;
  max-width: none;
}

#loading-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.submission-loading-text {
  display: none;
  margin: 12px 0 0;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.preloader.is-submitting {
  z-index: 10000;
  display: flex !important;
  flex-direction: column;
  opacity: 1 !important;
  visibility: visible !important;
}

.preloader.is-submitting .submission-loading-text {
  display: block;
}

body.form-submitting {
  overflow: hidden;
}

.hero .section-title h1 {
  max-width: 900px;
}

/* Hero: alinha exatamente o botao e o botao de video (remove o strut do line-box) */
.hero-body {
  align-items: center;
}

.hero-body .hero-btn,
.hero-body .video-play-button {
  display: flex;
  align-items: center;
  margin: 0;
}

.hero-body .video-play-button a {
  line-height: 1;
}

.trust-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
  color: var(--primary-color);
}

.trust-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.guide-panel {
  padding: 36px;
  border-radius: 8px;
  background: var(--white-color);
}

.compact-title h2 {
  font-size: 34px;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--accent-color);
}

.field-error {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--error-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.appointment-form .form-control.is-invalid {
  border-color: var(--error-color);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white-color);
  background: #25d366;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.whatsapp-float:hover {
  color: var(--white-color);
}

.whatsapp-float i {
  font-size: 30px;
}

.post-content .post-entry :where(h2, h3) {
  margin-top: 34px;
}

.simple-page-section {
  padding: 100px 0;
}

.simple-page-section .section-title {
  margin-bottom: 28px;
}

.thank-you-page {
  min-height: 68vh;
  padding: 190px 0 120px;
  background:
    radial-gradient(circle at top right, rgba(100, 112, 79, 0.18), transparent 38%),
    var(--bg-color);
}

.thank-you-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px;
  border: 1px solid rgba(100, 112, 79, 0.16);
  border-radius: 20px;
  background: var(--white-color);
  box-shadow: 0 24px 70px rgba(16, 20, 15, 0.1);
  text-align: center;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--white-color);
  background: var(--accent-color);
  font-size: 30px;
}

.thank-you-card .section-sub-title {
  display: block;
  margin-bottom: 14px;
}

.thank-you-card h1 {
  margin-bottom: 22px;
  color: var(--primary-color);
  font-size: clamp(40px, 6vw, 68px);
}

.thank-you-card p {
  max-width: 660px;
  margin: 0 auto 14px;
  font-size: 18px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.thank-you-actions .btn-default.btn-secondary {
  color: var(--primary-color);
  background: var(--secondary-color);
}

/* Individual page section spacing for reused theme blocks */
.service-single-content-section {
  padding: 100px 0;
}

.our-benefit {
  padding: 120px 0;
}

section.page-single-faqs {
  padding: 120px 0;
}

.service-single-content-section .page-single-image figure img {
  width: 100%;
  border-radius: 8px;
}

.pricing-item .pricing-item-body-list ul {
  padding: 0;
  list-style: none;
}

/* Card de preco unico (curso em destaque): ocupa a coluna inteira */
.pricing-single .pricing-item {
  width: 100%;
}

/* Identificacao da plataforma no curso em destaque */
.course-card-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.course-card-header .icon-box {
  margin-bottom: 0;
}

.hotmart-course-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 210px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(5, 61, 78, 0.14);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(5, 61, 78, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotmart-course-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(5, 61, 78, 0.13);
}

.hotmart-course-brand:focus-visible {
  outline: 3px solid rgba(240, 78, 35, 0.35);
  outline-offset: 3px;
}

.hotmart-course-brand span {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.hotmart-course-brand img {
  display: block;
  width: 150px;
  height: auto;
}

@media (max-width: 767px) {
  .navbar-brand .brand-logo {
    height: 56px;
  }

  .guide-panel {
    padding: 24px;
  }

  .compact-title h2 {
    font-size: 28px;
  }

  .thank-you-page {
    padding: 140px 0 72px;
  }

  .thank-you-card {
    padding: 40px 22px;
  }

  .course-card-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
  }

  .hotmart-course-brand {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }
}

.not-found-page {
  padding: 100px 0;
}

.not-found-card {
  padding: 60px;
  border: 1px solid rgba(28, 78, 71, 0.12);
  border-radius: 24px;
  background: var(--white-color);
  box-shadow: 0 18px 50px rgba(28, 78, 71, 0.08);
}

.not-found-card h2 {
  margin: 12px 0 16px;
}

.not-found-card p {
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  .not-found-page {
    padding: 70px 0;
  }

  .not-found-card {
    padding: 38px 22px;
  }
}
.privacy-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.turnstile-field {
  min-height: 70px;
  margin-bottom: 22px;
}

.cf-turnstile {
  width: 100%;
}

.turnstile-config-error {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: var(--white-color);
  font-size: 14px;
  line-height: 1.5;
}

.privacy-note a,
.footer-legal-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copyright-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-legal-links {
  margin: 0;
}

.privacy-page {
  padding: 100px 0;
}

.privacy-page section + section {
  margin-top: 38px;
}

.privacy-page h2 {
  margin-bottom: 14px;
  color: var(--primary-color);
  font-size: 30px;
}

.privacy-page p,
.privacy-page li {
  line-height: 1.75;
}

.privacy-page ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.privacy-updated {
  margin-bottom: 38px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .footer-copyright-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .privacy-page {
    padding: 70px 0;
  }

  .privacy-page h2 {
    font-size: 25px;
  }
}
