/* —— Tipografia global padronizada (Inter) —— */
:root {
  --font-base: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body,
.mystic-night,
.font-sans,
.font-display {
  font-family: var(--font-base);
}

h1,
h2,
h3 {
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* —— Layout & hero —— */
.mystic-night {
  background:
    radial-gradient(1200px 700px at 18% 8%, rgba(109,40,217,.42), transparent 60%),
    radial-gradient(1000px 650px at 82% 14%, rgba(251,191,36,.18), transparent 62%),
    radial-gradient(900px 650px at 55% 95%, rgba(30,58,138,.38), transparent 55%),
    linear-gradient(180deg, #0b122a 0%, #17144a 55%, #070a16 100%);
  color: #efe8ff;
  position: relative;
  overflow-x: hidden;
}
.mystic-night::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.9) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 22%, rgba(255,255,255,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 12%, rgba(255,255,255,.9) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 62%, rgba(255,255,255,.75) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 66%, rgba(255,255,255,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 58%, rgba(255,255,255,.75) 0 1px, transparent 2px);
  background-size: 520px 520px;
  animation: dcStarDrift 24s linear infinite;
}
.mystic-night::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  opacity: .45;
  background:
    radial-gradient(closest-side at 20% 30%, rgba(109,40,217,.35), transparent 68%),
    radial-gradient(closest-side at 75% 35%, rgba(251,191,36,.18), transparent 62%),
    radial-gradient(closest-side at 55% 78%, rgba(167,139,250,.22), transparent 60%);
  filter: blur(14px);
  animation: dcAuroraFloat 18s ease-in-out infinite;
}
.mystic-night header,
.mystic-night main,
.mystic-night footer,
.mystic-night aside {
  position: relative;
  z-index: 1;
}
@keyframes dcStarDrift {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-140px, 220px, 0); }
}
@keyframes dcAuroraFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(40px, -30px, 0) scale(1.04); }
}

.gradient-hero-despertar {
  background: linear-gradient(145deg, #1e1b4b 0%, #312e81 35%, #4c1d95 55%, #1e3a8a 100%);
}

.btn-cta-shine {
  position: relative;
  overflow: hidden;
  color: #1e3a8a;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d4af37);
  box-shadow: 0 4px 24px rgba(251, 191, 36, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta-shine:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.45);
}

.glass-card-dark {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.violet-glow-frame {
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.35), 0 20px 50px rgba(76, 29, 149, 0.45);
}

.gold-glow-frame {
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.45), 0 20px 50px rgba(201, 162, 39, 0.25);
}

.icon-thin {
  stroke-width: 1.75;
}

.mobile-link {
  border-radius: 0.5rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-link:hover {
  background: rgba(109, 40, 217, 0.06);
}

/* —— Holística / mística —— */
.holistica-mesh {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(109, 40, 217, 0.08), transparent 55%),
    linear-gradient(180deg, #faf9f6 0%, #f3e8ff 40%, #faf9f6 100%);
}

.mystic-ornament {
  font-family: var(--font-base);
  letter-spacing: 0.35em;
  color: rgba(109, 40, 217, 0.55);
}

.destaques-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .destaques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.destaque-pill {
  position: relative;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 232, 255, 0.9));
  box-shadow: 0 12px 40px rgba(30, 58, 138, 0.08);
}
.destaque-pill strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1e3a8a;
  margin-bottom: 0.35rem;
}
.destaque-pill span {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

.pricing-grid-mystic {
  display: grid;
  gap: 1.25rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .pricing-grid-mystic {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing-grid-mystic {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card-mystic {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  border: 1px solid rgba(109, 40, 217, 0.15);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(30, 27, 75, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.pricing-card-mystic:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 40px rgba(76, 29, 149, 0.1);
  transform: translateY(-2px);
}
.pricing-card-mystic .price-tag {
  font-family: var(--font-base);
  font-size: 1.75rem;
  font-weight: 700;
  color: #4c1d95;
  margin-top: 0.5rem;
}
.pricing-card-mystic .wa-mini {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 9999px;
  border: 1px solid rgba(30, 58, 138, 0.2);
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e3a8a;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.pricing-card-mystic .wa-mini:hover {
  background: rgba(243, 232, 255, 0.6);
  border-color: rgba(109, 40, 217, 0.35);
}

.elevation-panel {
  position: relative;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: linear-gradient(160deg, rgba(30, 27, 75, 0.97) 0%, rgba(49, 46, 129, 0.95) 50%, rgba(76, 29, 149, 0.92) 100%);
  box-shadow: 0 24px 60px rgba(30, 27, 75, 0.35);
  text-align: center;
}
.elevation-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(251, 191, 36, 0.12), transparent 65%);
}
.elevation-panel > * {
  position: relative;
  z-index: 1;
}

.btn-iniciar-elevacao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14rem;
  padding: 1rem 1.75rem;
  border: none;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a8a;
  cursor: pointer;
  background: linear-gradient(135deg, #fef3c7, #fbbf24, #d4af37);
  box-shadow: 0 6px 28px rgba(251, 191, 36, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-iniciar-elevacao:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 10px 36px rgba(251, 191, 36, 0.55);
}
.btn-iniciar-elevacao:disabled {
  opacity: 0.65;
  cursor: wait;
}

#elevationStatus {
  min-height: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.9);
}

/* —— Footer —— */
.site-footer {
  background: linear-gradient(180deg, #453e58 0%, #2e2640 100%);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  color: #e9e4f2;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.footer-social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

/* —— WhatsApp FAB —— */
.wa-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .wa-fab {
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
}
.wa-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.wa-fab svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* FAB: entrada suave ao remover o atributo `hidden` após o delay (JS) */
@keyframes wa-fab-reveal {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wa-fab.wa-fab--delay-entry-visible {
  animation: wa-fab-reveal 0.4s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab.wa-fab--delay-entry-visible {
    animation: none;
  }
}

/* Atendimentos — destaque “O MAIS PEDIDO” */
.servico-mais-pedido-banner {
  padding: 0.55rem 1rem;
  text-align: center;
  font-family: var(--font-base);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fef2f2;
  background: linear-gradient(180deg, #b91c1c 0%, #7f1d1d 50%, #450a0a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.servico-mais-pedido-banner--pad4 {
  margin: -1rem -1rem 0.85rem;
  border-radius: 1rem 1rem 0 0;
}

/* —— Mural de Diamantes — depoimentos alunos (curso) —— */
.diamond-mural-section {
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(0, 0, 0, 0.35) 100%);
}

.diamond-mural-card-frame {
  height: 100%;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(45deg, #d4af37, #fdfc47);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.4s ease, transform 0.35s ease;
}

.diamond-mural-card:hover .diamond-mural-card-frame {
  box-shadow:
    0 0 32px rgba(253, 252, 71, 0.22),
    0 0 56px rgba(212, 175, 55, 0.42),
    0 16px 48px rgba(0, 0, 0, 0.55);
  transform: translateY(-3px);
}

.diamond-mural-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 19rem;
  height: 100%;
  padding: 1.75rem 1.35rem 1.35rem;
  border-radius: calc(1rem - 1px);
  background: #000000;
  box-shadow: inset 0 1px 0 rgba(253, 252, 71, 0.07);
}

.diamond-mural-photo {
  width: 5.75rem;
  height: 5.75rem;
  flex-shrink: 0;
  border-radius: 9999px;
  border: 2px solid #d4af37;
  box-shadow:
    0 0 0 1px rgba(253, 252, 71, 0.15),
    0 0 24px rgba(212, 175, 55, 0.3);
  background: linear-gradient(160deg, #1a1a1a 0%, #050505 100%);
  overflow: hidden;
}

.diamond-mural-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diamond-mural-name {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #c9a227, #fdfc47, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.diamond-mural-loc {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #efede8;
}

.diamond-mural-card-title {
  margin-top: 0.75rem;
  max-width: 100%;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #fdf6c8;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.diamond-mural-card-title + .diamond-mural-quote {
  margin-top: 0.65rem;
}

.diamond-mural-quote {
  margin-top: 0.75rem;
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #ffffff;
  font-style: italic;
}

.diamond-mural-highlight {
  font-style: normal;
  font-weight: 700;
  color: #fdf29a;
  text-shadow: 0 0 18px rgba(253, 224, 71, 0.35);
}

.diamond-mural-qopen,
.diamond-mural-qclose {
  color: #d4af37;
  font-style: normal;
  font-weight: 700;
  font-size: 1.2em;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.diamond-mural-seal {
  position: relative;
  margin-top: auto;
  width: 100%;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  line-height: 1.2;
  box-sizing: border-box;
}

.diamond-mural-seal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(35%, 5.25rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148, 163, 184, 0.22) 18%,
    rgba(148, 163, 184, 0.5) 50%,
    rgba(148, 163, 184, 0.22) 82%,
    transparent
  );
}

.diamond-mural-seal-ico {
  font-size: 1.35rem;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.55));
}

.diamond-mural-seal-txt {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #d4af37;
  font-style: normal;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.25);
}

/* Faixas pretas — tipografia alinhada ao site (Inter + tracking unificado) */
.soul-truth-banner,
.curso-whisper-band {
  --faixa-letter: clamp(0.12em, 0.38vw + 0.08em, 0.2em);
}

/* Faixa fina — entre o hero e “O que torna esta formação viva” */
.soul-truth-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #000000;
  border-top: 1px solid #d4af37;
  border-bottom: 1px solid #d4af37;
}

.soul-truth-banner__inner {
  margin: 0 auto;
  max-width: min(72rem, 100%);
  width: 100%;
  padding: 1.5rem clamp(0.875rem, 3.5vw, 2rem) 1.65rem;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .soul-truth-banner__inner {
    padding: 1.85rem clamp(1rem, 4vw, 2.5rem) 2rem;
  }
}

@media (min-width: 1024px) {
  .soul-truth-banner__inner {
    padding: 2.1rem clamp(1.25rem, 5vw, 3rem) 2.25rem;
  }
}

.soul-truth-banner__icon {
  display: block;
  width: fit-content;
  margin: 0 auto 0.6rem;
  font-size: clamp(0.62rem, 1.1vw + 0.45rem, 0.8125rem);
  line-height: 1;
  letter-spacing: 0;
  color: #d4af37;
  opacity: 0.88;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.45));
}

.soul-truth-banner__text {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.65vw + 0.55rem, 2.75rem);
  line-height: 1.35;
  letter-spacing: var(--faixa-letter);
  text-transform: uppercase;
  color: #d4af37;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    0 0 18px rgba(212, 175, 55, 0.65),
    0 0 38px rgba(212, 175, 55, 0.38),
    0 0 58px rgba(212, 175, 55, 0.18);
}

.soul-truth-banner__phrase {
  display: block;
}

.soul-truth-banner__phrase + .soul-truth-banner__phrase {
  margin-top: 0.55em;
}

/* CTA de oferta — faixa “A sua alma não se engana” (alto contraste + movimento suave) */
.soul-truth-banner__offer-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.35rem;
  width: 100%;
  max-width: min(44rem, 100%);
  min-height: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(0.95rem, 2vw, 1.25rem) clamp(1rem, 3vw, 1.75rem);
  box-sizing: border-box;
  /* overflow: hidden no <a> quebra pintura do conteúdo em alguns WebKit (iOS) com border-radius + filhos empilhados */
  overflow: visible;
  isolation: isolate;
  -webkit-tap-highlight-color: rgba(251, 191, 36, 0.35);
  font-family: var(--font-base);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #0a0f1c;
  border-radius: 9999px;
  border: 3px solid #fff7cc;
  background: linear-gradient(
    115deg,
    #ea580c 0%,
    #f59e0b 18%,
    #fbbf24 38%,
    #fef08a 50%,
    #fbbf24 62%,
    #f59e0b 82%,
    #ea580c 100%
  );
  box-shadow:
    0 0 0 1px rgba(234, 88, 12, 0.45),
    0 0 36px rgba(251, 191, 36, 0.65),
    0 0 72px rgba(251, 191, 36, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.5);
  animation: soulTruthOfferGlow 2.4s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.soul-truth-banner__offer-cta-shimmer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.soul-truth-banner__offer-cta-shimmer::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -40%;
  width: 35%;
  height: 140%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: soulTruthOfferShine 2.8s ease-in-out infinite;
}

.soul-truth-banner__offer-cta-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.soul-truth-banner__offer-cta-line {
  font-size: clamp(0.72rem, 1.65vw + 0.42rem, 1rem);
  line-height: 1.25;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.soul-truth-banner__offer-cta-price {
  font-size: clamp(1.35rem, 4.5vw + 0.55rem, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #0a0f1c;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.45);
}

.soul-truth-banner__offer-cta:hover {
  filter: brightness(1.08) saturate(1.05);
  box-shadow:
    0 0 0 1px rgba(234, 88, 12, 0.5),
    0 0 52px rgba(251, 191, 36, 0.85),
    0 0 96px rgba(251, 191, 36, 0.42),
    0 14px 40px rgba(0, 0, 0, 0.55);
  transform: translateY(-3px) scale(1.02);
}

.soul-truth-banner__offer-cta:focus-visible {
  outline: 3px solid #fef9c3;
  outline-offset: 4px;
}

@keyframes soulTruthOfferGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(234, 88, 12, 0.45),
      0 0 36px rgba(251, 191, 36, 0.6),
      0 0 72px rgba(251, 191, 36, 0.3),
      0 12px 32px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(234, 88, 12, 0.55),
      0 0 52px rgba(251, 191, 36, 0.88),
      0 0 100px rgba(251, 191, 36, 0.45),
      0 14px 36px rgba(0, 0, 0, 0.52);
  }
}

@keyframes soulTruthOfferShine {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  55%,
  100% {
    transform: translateX(380%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .soul-truth-banner__offer-cta {
    animation: none;
    transition: none;
  }

  .soul-truth-banner__offer-cta-shimmer::after {
    animation: none;
    display: none;
  }

  .soul-truth-banner__offer-cta:hover {
    transform: none;
  }
}

/* Segunda faixa — após depoimentos, antes da oferta: mais leve, “flutuando” entre seções */
.soul-truth-banner--float {
  margin-top: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
  margin-left: clamp(0.75rem, 4vw, 2.25rem);
  margin-right: clamp(0.75rem, 4vw, 2.25rem);
  width: auto;
  max-width: none;
  border-radius: 0.25rem;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.35);
}

.soul-truth-banner__inner--secondary {
  padding: 1.35rem clamp(0.75rem, 3vw, 1.75rem) 1.5rem;
}

@media (min-width: 768px) {
  .soul-truth-banner__inner--secondary {
    padding: 1.5rem clamp(1rem, 3.5vw, 2rem) 1.65rem;
  }
}

@media (min-width: 1024px) {
  .soul-truth-banner__inner--secondary {
    padding: 1.65rem clamp(1.25rem, 4vw, 2.5rem) 1.85rem;
  }
}

.soul-truth-banner__text--secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45em 0.65em;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: clamp(0.78rem, 1.35vw + 0.5rem, 1.35rem);
  line-height: 1.45;
  letter-spacing: var(--faixa-letter);
  text-transform: uppercase;
  color: #d4af37;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    0 0 14px rgba(212, 175, 55, 0.5),
    0 0 32px rgba(212, 175, 55, 0.22);
}

.soul-truth-banner__chunk {
  text-wrap: balance;
}

.soul-truth-banner__sep {
  flex-shrink: 0;
  font-size: 1.05em;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: #d4af37;
  opacity: 0.92;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.55));
}

/* Faixa pós-oferta — destaque visível, alinhada às outras faixas douradas */
.curso-whisper-band {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #000000;
  border-top: 1px solid #d4af37;
  border-bottom: 1px solid #d4af37;
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.12);
}

.curso-whisper-band__inner {
  margin: 0 auto;
  max-width: min(72rem, 100%);
  padding: 1.35rem clamp(1rem, 4vw, 2rem) 1.45rem;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .curso-whisper-band__inner {
    padding-top: 1.55rem;
    padding-bottom: 1.65rem;
  }
}

@media (min-width: 1024px) {
  .curso-whisper-band__inner {
    padding-top: 1.75rem;
    padding-bottom: 1.85rem;
  }
}

.curso-whisper-band__text {
  margin: 0;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.1vw + 0.45rem, 1.65rem);
  line-height: 1.4;
  letter-spacing: var(--faixa-letter);
  text-transform: uppercase;
  color: #d4af37;
  text-wrap: balance;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    0 0 16px rgba(212, 175, 55, 0.65),
    0 0 34px rgba(212, 175, 55, 0.4),
    0 0 52px rgba(212, 175, 55, 0.2);
}

.curso-whisper-band__gem {
  display: inline-block;
  margin-left: 0.2em;
  font-size: 1em;
  letter-spacing: 0;
  font-weight: 400;
  vertical-align: 0.05em;
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.7));
}

@media (prefers-reduced-motion: reduce) {
  .diamond-mural-card:hover .diamond-mural-card-frame {
    transform: none;
    transition-duration: 0.01ms;
  }

  .soul-truth-banner__text {
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  }

  .soul-truth-banner__icon {
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.35));
  }

  .soul-truth-banner__text--secondary {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }

  .soul-truth-banner__sep {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.35));
  }

  .curso-whisper-band__text {
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.4);
  }

  .curso-whisper-band__gem {
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.45));
  }
}
