/* Landing Studio — sistema visual alinhado ao site institucional */
:root {
  --brand-paper: #fcfaf7;
  --brand-white: #ffffff;
  --brand-sand: #f2eadf;
  --brand-linen: #ded0be;
  --brand-cocoa: #593c31;
  --brand-coffee: #302824;
  --brand-earth: #805f4d;
  --brand-slate: #66737a;
  --brand-blue: #26343d;
  --brand-blue-soft: #4d5f69;
  --brand-red: #a43f35;
  --brand-container: min(1320px, calc(100% - 72px));
  --brand-narrow: min(920px, calc(100% - 72px));
  --brand-section-space: clamp(5.5rem, 8vw, 8rem);
  --brand-hero-title: clamp(3.5rem, 5.15vw, 5.45rem);
  --brand-section-title: clamp(2.55rem, 3.7vw, 3.9rem);
  --brand-radius-sm: 4px;
  --brand-radius-md: 6px;
  --brand-line: rgba(48, 40, 36, 0.14);
  --brand-line-dark: rgba(252, 250, 247, 0.16);
  --brand-shadow: 0 18px 45px rgba(48, 40, 36, 0.1);
  --brand-shadow-soft: 0 9px 25px rgba(48, 40, 36, 0.07);
  --brand-ease: 280ms cubic-bezier(0.22, 1, 0.36, 1);
  --brand-reveal: 850ms cubic-bezier(0.16, 1, 0.3, 1);
  --font-serif: Lora, Georgia, "Times New Roman", serif;
  --font-sans: Manrope, "Segoe UI", Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--brand-paper);
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--brand-coffee);
  background: var(--brand-paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
::selection {
  color: var(--brand-paper);
  background: var(--brand-cocoa);
}
:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 4px;
}
.public-skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #fff;
  background: var(--brand-blue);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.public-skip-link:focus {
  transform: none;
}
.container {
  width: var(--brand-container);
  margin-inline: auto;
}
.container-narrow {
  width: var(--brand-narrow);
  margin-inline: auto;
}
.text-center {
  text-align: center;
}
.mx-auto {
  margin-inline: auto;
}
.empty-public {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  text-align: center;
}
.empty-public h1 {
  max-width: 720px;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
}

/* Tipografia editorial */
.heading-serif {
  margin: 0;
  color: inherit;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.06;
  text-wrap: balance;
  font-feature-settings: "liga", "kern";
}
.heading-serif em {
  color: var(--brand-red);
  font-style: italic;
  font-weight: inherit;
}
.heading-serif--white em {
  color: var(--brand-sand);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.15rem;
  color: var(--brand-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kicker::before {
  width: 28px;
  height: 1.5px;
  content: "";
  background: currentColor;
}
.kicker--sand {
  color: var(--brand-sand);
}
.section-desc {
  max-width: 68ch;
  margin-top: 1.35rem;
  color: var(--brand-slate);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.78;
  text-wrap: pretty;
}
.section-desc--dark {
  color: rgba(252, 250, 247, 0.82);
}

/* Botões retangulares e precisos */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--brand-radius-md);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 4px 14px -3px rgba(48, 40, 36, 0.12);
  transition:
    color var(--brand-ease),
    background-color var(--brand-ease),
    border-color var(--brand-ease),
    box-shadow var(--brand-ease),
    transform var(--brand-ease);
}
.btn::after {
  content: "→";
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform var(--brand-ease);
}
.btn:hover::after {
  transform: translateX(3px);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(48, 40, 36, 0.12);
}
.btn-primary,
.btn-cocoa {
  color: var(--brand-paper);
  background: var(--brand-cocoa);
}
.btn-primary:hover,
.btn-cocoa:hover {
  color: var(--brand-paper);
  background: var(--brand-coffee);
  border-color: var(--brand-coffee);
  box-shadow: 0 10px 24px -4px rgba(48, 40, 36, 0.2);
  transform: translateY(-2px);
}
.btn-outline {
  color: var(--brand-cocoa);
  border-color: var(--brand-linen);
  background: transparent;
}
.btn-outline:hover {
  color: var(--brand-paper);
  border-color: var(--brand-cocoa);
  background: var(--brand-cocoa);
  box-shadow: 0 8px 20px -4px rgba(89, 60, 49, 0.18);
}
.btn-whatsapp {
  color: #fff;
  background: var(--brand-cocoa);
}
.btn-whatsapp:hover {
  background: var(--brand-coffee);
  box-shadow: 0 10px 24px -4px rgba(48, 40, 36, 0.2);
  transform: translateY(-2px);
}
.btn-pulse {
  animation: none;
}

/* Barra utilitária e cabeçalho */
.preview-bar {
  position: relative;
  z-index: 140;
  padding: 0.55rem 1rem;
  color: #fff;
  background: var(--brand-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.site-utility {
  position: relative;
  z-index: 120;
  color: rgba(252, 250, 247, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--brand-coffee);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-utility__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-utility__items {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-utility__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-utility__item svg {
  color: var(--brand-sand);
  flex-shrink: 0;
}
.site-utility__phone {
  font-weight: 800;
  color: var(--brand-sand);
}
.site-utility a:hover {
  color: #fff;
}
.header {
  position: sticky;
  z-index: 110;
  top: 0;
  border-bottom: 1px solid var(--brand-linen);
  background: rgba(252, 250, 247, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    box-shadow var(--brand-ease),
    background-color var(--brand-ease);
}
.header.is-scrolled {
  background: rgba(252, 250, 247, 0.99);
  box-shadow: 0 10px 30px rgba(48, 40, 36, 0.08);
}
.header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
}
.brand-logo {
  display: grid;
  min-width: 248px;
  gap: 4px;
  color: var(--brand-cocoa);
}
.brand-logo strong {
  font-family: var(--font-serif);
  font-size: 1.56rem;
  font-variant-caps: small-caps;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-logo small {
  color: var(--brand-earth);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-logo:hover strong {
  color: var(--brand-red);
}
.brand-logo strong {
  transition: color var(--brand-ease);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.header-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--brand-slate);
  border-radius: var(--brand-radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    color 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--brand-red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.header-nav a:hover {
  color: var(--brand-cocoa);
  background: rgba(89, 60, 49, 0.05);
  transform: translateY(-2px);
}
.header-nav a:hover::after {
  transform: scaleX(1);
}
.header-nav a.is-active {
  color: var(--brand-red);
  background: rgba(164, 63, 53, 0.08);
}
.header-nav a.is-active::after {
  transform: scaleX(1);
}
.header__cta {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 11px 22px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--brand-red);
  border-color: var(--brand-red);
  box-shadow: 0 6px 18px rgba(164, 63, 53, 0.3);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1), background-color 240ms var(--brand-ease);
}
.header__cta:hover {
  background: #8b322a;
  border-color: #8b322a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(164, 63, 53, 0.42);
}
.header__cta:active {
  transform: scale(0.98);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--brand-cocoa);
  border: 1.5px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: transparent;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--brand-ease);
}
.menu-toggle:hover {
  border-color: var(--brand-cocoa);
  background: var(--brand-sand);
}

/* Hero panorâmico integrado */
.hero {
  position: relative;
  display: grid;
  min-height: clamp(610px, calc(100svh - 122px), 700px);
  align-items: center;
  overflow: hidden;
  padding-block: clamp(2.5rem, 4vw, 3.75rem);
  isolation: isolate;
  background: #fbf9f7;
}
.hero__background {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: var(--brand-container);
  height: 100%;
  margin-inline: auto;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  user-select: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 0;
  align-items: center;
}
.hero__content {
  width: min(58%, 680px);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.15rem;
}
.badge-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  color: var(--brand-blue-soft);
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-sand);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-pill--red {
  color: var(--brand-red);
  border-color: rgba(164, 63, 53, 0.28);
  background: transparent;
}
.hero__title {
  max-width: 700px;
  margin-bottom: 1.25rem;
  color: var(--brand-cocoa);
  font-size: clamp(3.1rem, 4.35vw, 4.75rem);
  letter-spacing: -0.035em;
  line-height: 0.99;
  text-wrap: balance;
}
.hero__lead {
  max-width: 65ch;
  margin: 0 0 1.65rem;
  color: var(--brand-slate);
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.78;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.4rem;
}
.hero__guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  color: var(--brand-blue-soft);
  font-size: 0.78rem;
  font-weight: 600;
}
.hero__guarantee svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--brand-red);
}

/* Vídeo */
.video-section {
  position: relative;
  overflow: visible;
  padding-block: var(--brand-section-space);
  color: var(--brand-coffee);
  border-block: 1px solid var(--brand-linen);
  background: var(--brand-sand);
  z-index: 5;
}
.video-texture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  color: var(--brand-cocoa);
  opacity: 0.08;
  mask-image: radial-gradient(circle at center, transparent 30%, black 85%);
  -webkit-mask-image: radial-gradient(circle at center, transparent 30%, black 85%);
}
.video-texture svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section .container-narrow {
  position: relative;
  z-index: 1;
}
.video-header {
  max-width: 760px;
  margin: 0 auto 2.85rem;
}
.video-header .heading-serif {
  color: var(--brand-cocoa);
  font-size: var(--brand-section-title);
}
.video-header .kicker {
  margin-bottom: 0.6rem;
}
.video-header .section-desc {
  color: var(--brand-slate);
}
.video-frame {
  overflow: hidden;
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-md);
  background: var(--brand-white);
  box-shadow: 0 30px 75px -15px rgba(48, 40, 36, 0.18), 0 0 0 1px rgba(222, 208, 190, 0.6);
}
.video-frame__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  border-bottom: 1px solid var(--brand-linen);
  background: var(--brand-paper);
}
.video-frame__dots {
  display: flex;
  gap: 6px;
}
.video-frame__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-linen);
}
.video-frame__label {
  color: var(--brand-cocoa);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.video-aspect {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--brand-coffee);
}
.video-aspect iframe,
.video-aspect img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.video-placeholder {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 2rem;
  color: rgba(252, 250, 247, 0.72);
  text-align: center;
}
.video-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 2.2rem;
}
.video-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: var(--brand-coffee);
  border: 1px solid var(--brand-linen);
  border-radius: 999px;
  background: var(--brand-white);
  box-shadow: 0 4px 14px rgba(48, 40, 36, 0.05);
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform var(--brand-ease), border-color var(--brand-ease);
}
.video-badge-item:hover {
  border-color: var(--brand-earth);
  transform: translateY(-1px);
}
.video-badge-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-red);
  flex-shrink: 0;
}

/* Faixa de fundamentos */
.ticker-section {
  padding-block: 2.2rem;
  color: var(--brand-coffee);
  border-bottom: 1px solid var(--brand-linen);
  background: var(--brand-paper);
}
.ticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ticker-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 1.25rem 1.45rem;
  border-right: 1px solid rgba(89, 60, 49, 0.16);
  transition: background-color var(--brand-ease);
}
.ticker-item:first-child {
  border-left: 1px solid rgba(89, 60, 49, 0.16);
}
.ticker-item:hover {
  background: var(--brand-sand);
}
.ticker-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--brand-red);
  border: 1.5px solid rgba(164, 63, 53, 0.35);
  border-radius: 50%;
  font-size: 0.55rem;
}
.ticker-text h4 {
  margin: 0 0 6px;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.25;
}
.ticker-text p {
  margin: 0;
  color: var(--brand-slate);
  font-size: 0.73rem;
  line-height: 1.55;
  text-wrap: pretty;
}

/* Indicador de Transição em Concha Suave (Curved Scoop Notch) */
.section-notch {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  width: 160px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.section-notch--down {
  bottom: -27px;
}
.section-notch--up {
  top: -27px;
  bottom: auto;
}
.section-notch__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.section-notch--coffee {
  color: var(--brand-coffee);
}
.section-notch--coffee .section-notch__bg {
  filter: drop-shadow(0 4px 8px rgba(48, 40, 36, 0.12));
}
.section-notch--coffee .section-notch__stroke {
  display: none;
}
.section-notch--sand {
  color: var(--brand-sand);
}
.section-notch--sand.section-notch--down .section-notch__bg {
  filter: drop-shadow(0 2px 5px rgba(48, 40, 36, 0.06));
}
.section-notch--sand.section-notch--up .section-notch__bg {
  filter: drop-shadow(0 -2px 5px rgba(48, 40, 36, 0.04));
}
.section-notch--sand .section-notch__stroke {
  stroke: var(--brand-linen);
  opacity: 0.85;
}
.section-notch__arrow {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: notchBounce 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.section-notch--down .section-notch__arrow {
  margin-top: 6px;
}
.section-notch--up .section-notch__arrow {
  margin-top: 10px;
}
.section-notch__chevron {
  width: 13px;
  height: 13px;
  color: var(--brand-red);
  stroke: var(--brand-red);
  flex-shrink: 0;
}
.section-notch--coffee .section-notch__chevron {
  color: var(--brand-sand, #f2eadf);
  stroke: var(--brand-sand, #f2eadf);
}
.section-notch--sand .section-notch__chevron {
  color: var(--brand-red, #a43f35);
  stroke: var(--brand-red, #a43f35);
}
@keyframes notchBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2.5px);
  }
}

/* Conceito (Fundo Escuro de Alto Impacto & Contraste Cromático) */
.concept-section {
  position: relative;
  overflow: visible;
  padding-block: var(--brand-section-space);
  color: var(--brand-paper);
  background: var(--brand-coffee);
  z-index: 5;
}
.concept-box {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}
.concept-box .kicker {
  color: #f4cf9f;
  letter-spacing: 0.2em;
}
.concept-box .kicker::before {
  background: #f4cf9f;
}
.concept-box h2 {
  color: #ffffff;
  font-size: var(--brand-section-title);
  line-height: 1.12;
  font-weight: 400;
}
.concept-box h2 em,
.concept-section .heading-serif em,
.method-section .heading-serif em,
.final-cta .heading-serif em,
.access-section .heading-serif em {
  color: #f28e7e !important;
  font-style: italic;
  font-weight: inherit;
  text-shadow: 0 0 1px rgba(242, 142, 126, 0.4);
}
.concept-box > p {
  max-width: 76ch;
  margin: 1.5rem auto 0;
  color: rgba(252, 250, 247, 0.94);
  font-size: 1.08rem;
  line-height: 1.85;
  text-wrap: pretty;
}
.concept-highlight-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
  border-block: 1px solid rgba(242, 234, 223, 0.22);
  text-align: left;
}
.concept-feature {
  padding: 2.2rem 2rem;
  border-right: 1px solid rgba(242, 234, 223, 0.22);
}
.concept-feature:last-child {
  border-right: 0;
}
.concept-feature strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.3;
}
.concept-feature strong em,
.concept-feature strong span {
  color: #f4cf9f;
}
.concept-feature p {
  margin: 0;
  color: rgba(252, 250, 247, 0.88);
  font-size: 0.88rem;
  line-height: 1.72;
  text-wrap: pretty;
}

/* Público */
.audience-section {
  padding-block: var(--brand-section-space);
  background: var(--brand-paper);
}
.audience-header {
  max-width: 820px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.audience-header h2 {
  color: var(--brand-cocoa);
  font-size: var(--brand-section-title);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-md);
  background: var(--brand-linen);
  box-shadow: var(--brand-shadow-soft);
}
.audience-card {
  padding: clamp(2.2rem, 4vw, 3.5rem);
  background: var(--brand-white);
  transition: background-color var(--brand-ease);
}
.audience-card--secondary {
  background: var(--brand-sand);
}
.audience-card__tag {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--brand-red);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.audience-card h3 {
  margin: 0 0 1.65rem;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: clamp(1.48rem, 2vw, 1.88rem);
  font-weight: 500;
  line-height: 1.22;
  text-wrap: balance;
}
.audience-list {
  display: grid;
  gap: 1.05rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.audience-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  color: var(--brand-slate);
  font-size: 0.88rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.audience-list svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--brand-red);
}
.audience-list strong {
  color: var(--brand-coffee);
  font-weight: 700;
}
/* Painel de não-recomendação (Critério de Elegibilidade) */
.not-for-panel {
  position: relative;
  width: 100%;
  margin: 3.2rem 0 3.5rem;
  padding: clamp(2rem, 3.5vw, 2.8rem) clamp(1.8rem, 4vw, 3.2rem);
  border: 1px solid var(--brand-linen);
  border-top: 3.5px solid var(--brand-red);
  border-radius: var(--brand-radius-md);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow-soft);
}
.not-for-panel__header {
  margin-bottom: 1.4rem;
}
.not-for-panel__header .kicker {
  margin-bottom: 0.55rem;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}
.not-for-panel__header h3 {
  margin: 0;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  text-wrap: balance;
}
.not-for-panel__header h3 em {
  color: var(--brand-red);
  font-style: italic;
  font-weight: inherit;
}
.not-for-panel__grid {
  display: grid;
  gap: 1rem;
}
.not-for-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 14px;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-sand);
}
.not-for-item__icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-top: 2px;
  color: #fff;
  border-radius: 50%;
  background: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.not-for-item p {
  margin: 0;
  color: var(--brand-coffee);
  font-size: 0.9rem;
  line-height: 1.68;
  text-wrap: pretty;
}

/* Metodologia */
.method-section {
  padding-block: var(--brand-section-space);
  color: var(--brand-paper);
  background: var(--brand-blue);
  position: relative;
}
.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.method-header h2 {
  color: #ffffff;
  font-size: var(--brand-section-title);
  line-height: 1.12;
}
.method-header .kicker {
  color: #f4cf9f;
  letter-spacing: 0.18em;
}
.method-header .kicker::before {
  background: #f4cf9f;
}

/* Timeline Conectada */
.steps-timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  margin-top: 2.8rem;
}
.steps-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 23px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--brand-red) 0%,
    rgba(244, 207, 159, 0.4) 50%,
    rgba(244, 207, 159, 0.15) 100%
  );
  z-index: 1;
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(242, 234, 223, 0.14);
  border-radius: var(--brand-radius-md);
  background: rgba(38, 52, 61, 0.55);
  backdrop-filter: blur(8px);
  transition: transform var(--brand-ease), border-color var(--brand-ease), background var(--brand-ease);
  z-index: 2;
}
.step-card:hover {
  transform: translateX(8px);
  border-color: rgba(244, 207, 159, 0.45);
  background: rgba(48, 40, 36, 0.7);
}
.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border: 1.5px solid rgba(244, 207, 159, 0.4);
  border-radius: 50%;
  background: var(--brand-coffee);
  box-shadow: 0 0 0 4px var(--brand-blue), 0 4px 12px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
  padding: 2px;
  transition: border-color var(--brand-ease), transform var(--brand-ease), background var(--brand-ease), box-shadow var(--brand-ease);
}
.step-card:hover .step-node {
  border-color: var(--brand-red);
  background: var(--brand-red);
  transform: scale(1.08);
  box-shadow: 0 0 0 5px var(--brand-blue), 0 6px 18px rgba(164, 63, 53, 0.4);
}
.step-badge-prefix {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.50rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4cf9f;
  line-height: 1;
  margin-bottom: 2px;
  transition: color var(--brand-ease);
}
.step-badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  transition: color var(--brand-ease);
}
.step-card:hover .step-badge-prefix,
.step-card:hover .step-badge-number {
  color: #ffffff;
}
.step-info h3 {
  margin: 0 0 0.35rem;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.step-info p {
  margin: 0;
  color: rgba(252, 250, 247, 0.88);
  font-size: 0.88rem;
  line-height: 1.68;
  text-wrap: pretty;
}

/* Device Mockup — Interface de Streaming LMS */
.method-mockup {
  position: relative;
}
.method-mockup::before {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 72px;
  height: 72px;
  content: "";
  border-top: 2px solid var(--brand-red);
  border-right: 2px solid var(--brand-red);
  z-index: 1;
}
.device-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 234, 223, 0.22);
  border-radius: var(--brand-radius-md);
  background: #1e2930;
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 2;
}
.device-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(242, 234, 223, 0.12);
  background: rgba(30, 41, 48, 0.95);
}
.device-window-dots {
  display: flex;
  gap: 6px;
}
.device-window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(242, 234, 223, 0.25);
}
.device-window-dots span:nth-child(1) { background: #e06c75; }
.device-window-dots span:nth-child(2) { background: #e5c07b; }
.device-window-dots span:nth-child(3) { background: #98c379; }
.device-window-title {
  color: #f4cf9f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.device-window-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  color: #fff;
  border-radius: 999px;
  background: rgba(164, 63, 53, 0.2);
  border: 1px solid rgba(164, 63, 53, 0.4);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.device-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 6px var(--brand-red);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.device-screen {
  padding: 18px;
  background: #182228;
}

/* Card de Player de Vídeo em Destaque */
.device-player-preview {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(242, 234, 223, 0.18);
  border-radius: var(--brand-radius-sm);
  background: linear-gradient(145deg, #2a3b45 0%, #1a252c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}
.device-player-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.device-player-tag span {
  display: inline-block;
  padding: 2px 7px;
  color: #ffffff;
  border-radius: var(--brand-radius-sm);
  background: var(--brand-red);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.device-player-tag small {
  color: #f4cf9f;
  font-size: 0.64rem;
  font-weight: 700;
}
.device-player-center {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.device-play-btn {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 4px 14px rgba(164, 63, 53, 0.4);
  transition: transform var(--brand-ease);
}
.device-player-preview:hover .device-play-btn {
  transform: scale(1.08);
}
.device-player-title {
  display: grid;
  gap: 3px;
}
.device-player-title small {
  color: #f4cf9f;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.device-player-title strong {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.25;
}
.device-player-bar {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.device-player-progress {
  height: 100%;
  border-radius: 2px;
  background: var(--brand-red);
}

/* Playlist de Aulas */
.device-playlist {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.device-lesson {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(242, 234, 223, 0.10);
  border-radius: var(--brand-radius-sm);
  background: rgba(38, 52, 61, 0.5);
  transition: padding-left var(--brand-ease), background var(--brand-ease), border-color var(--brand-ease);
}
.device-lesson:hover {
  padding-left: 16px;
  background: rgba(48, 40, 36, 0.7);
  border-color: rgba(244, 207, 159, 0.35);
}
.device-lesson__icon {
  display: grid;
  place-items: center;
  color: #f4cf9f;
  opacity: 1;
}
.device-lesson__text {
  display: grid;
  gap: 2px;
}
.device-lesson__text small {
  color: #f4cf9f;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}
.device-lesson__text strong {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.25;
}

/* Footer de Recursos */
.device-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px dashed rgba(244, 207, 159, 0.35);
  border-radius: var(--brand-radius-sm);
  background: rgba(30, 41, 48, 0.8);
  color: #f4cf9f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
.device-footer svg {
  color: var(--brand-red);
  flex-shrink: 0;
}
.device-footer svg {
  color: var(--brand-red);
  flex-shrink: 0;
}

/* Módulos e bônus */
.modules-section {
  padding-block: var(--brand-section-space);
  background: var(--brand-paper);
}
.modules-header {
  max-width: 820px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.modules-header h2 {
  color: var(--brand-cocoa);
  font-size: var(--brand-section-title);
}
.modules-header .section-desc--dark {
  color: var(--brand-slate);
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--brand-linen);
  border-left: 1px solid var(--brand-linen);
  box-shadow: var(--brand-shadow-soft);
}
.module-card {
  position: relative;
  min-height: 250px;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-right: 1px solid var(--brand-linen);
  border-bottom: 1px solid var(--brand-linen);
  background: var(--brand-white);
  transition:
    background-color var(--brand-ease),
    transform var(--brand-ease);
}
.module-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 3px;
  content: "";
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--brand-ease);
}
.module-card:hover::before {
  transform: scaleX(1);
}
.module-card:hover {
  background: #fdfbf8;
}
.module-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
}
.module-tag {
  display: inline-block;
  padding: 3px 8px;
  color: var(--brand-cocoa);
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-sand);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.module-number {
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
}
.module-card h3 {
  margin: 0.6rem 0 0.75rem;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.25;
  text-wrap: balance;
}
.module-card p {
  margin: 0;
  color: var(--brand-slate);
  font-size: 0.84rem;
  line-height: 1.72;
  text-wrap: pretty;
}

/* Banner de Bônus / Aceleradores Clínicos */
.bonus-banner {
  margin-top: 4rem;
  padding: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--brand-paper);
  border: 1px solid rgba(242, 234, 223, 0.18);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--brand-radius-md);
  background: linear-gradient(175deg, #322621 0%, #201a17 100%);
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.45);
}
.bonus-heading {
  margin-bottom: 2.5rem;
  text-align: center;
}
.bonus-heading .badge-pill--red {
  color: var(--brand-sand);
  border-color: rgba(242, 234, 223, 0.35);
  background: rgba(164, 63, 53, 0.3);
}
.bonus-heading h3 {
  margin: 0.95rem auto 0.5rem;
  max-width: 800px;
  color: #fff;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  text-wrap: balance;
}
.bonus-heading__subtitle {
  max-width: 62ch;
  margin: 0 auto;
  color: rgba(252, 250, 247, 0.8);
  font-size: 0.92rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bonus-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(242, 234, 223, 0.14);
  border-radius: var(--brand-radius-sm);
  background: rgba(48, 40, 36, 0.6);
  backdrop-filter: blur(8px);
  transition: transform var(--brand-ease), border-color var(--brand-ease), background var(--brand-ease);
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(164, 63, 53, 0.6);
  background: rgba(60, 48, 42, 0.8);
}
.bonus-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}
.bonus-card__tag {
  color: var(--brand-sand);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bonus-card__free {
  display: inline-block;
  padding: 2px 7px;
  color: #fff;
  border-radius: var(--brand-radius-sm);
  background: var(--brand-red);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bonus-card__body {
  margin-bottom: 1.4rem;
}
.bonus-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  border-radius: 50%;
  background: rgba(164, 63, 53, 0.25);
  border: 1px solid rgba(164, 63, 53, 0.4);
}
.bonus-card h4 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
}
.bonus-card p {
  margin: 0;
  color: rgba(252, 250, 247, 0.76);
  font-size: 0.84rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.bonus-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(242, 234, 223, 0.12);
}
.bonus-card__val {
  color: rgba(242, 234, 223, 0.6);
  font-size: 0.66rem;
  font-weight: 700;
  text-decoration: line-through;
  text-transform: uppercase;
}
.bonus-card__zero {
  color: var(--brand-sand);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Value Stack Summary Footer */
.bonus-stack-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 2.2rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(242, 234, 223, 0.16);
  border-radius: var(--brand-radius-sm);
  background: rgba(0, 0, 0, 0.25);
}
.bonus-stack-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bonus-stack-icon {
  font-size: 1.7rem;
  line-height: 1;
}
.bonus-stack-info strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}
.bonus-stack-info p {
  margin: 2px 0 0;
  color: rgba(252, 250, 247, 0.75);
  font-size: 0.78rem;
}
.bonus-stack-footer .btn-primary {
  padding: 12px 22px;
  font-size: 0.78rem;
  color: var(--brand-coffee);
  background: var(--brand-sand);
  border-color: var(--brand-sand);
}
.bonus-stack-footer .btn-primary:hover {
  color: #fff;
  background: var(--brand-red);
  border-color: var(--brand-red);
}

/* Investimento */
.pricing-section {
  position: relative;
  overflow: visible;
  padding-block: var(--brand-section-space);
  color: var(--brand-paper);
  background: var(--brand-coffee);
  z-index: 5;
}
.pricing-header {
  max-width: 760px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.pricing-header .kicker {
  color: var(--brand-sand);
}
.pricing-header h2 {
  color: #fff;
  font-size: var(--brand-section-title);
}
.pricing-card {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  padding: clamp(2.4rem, 5vw, 4rem);
  color: var(--brand-coffee);
  border: 1px solid var(--brand-linen);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--brand-radius-md);
  background: var(--brand-white);
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(242, 234, 223, 0.15);
}
.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 18px;
  color: #fff;
  border-radius: 0 var(--brand-radius-md) 0 var(--brand-radius-md);
  background: var(--brand-red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-plan-name {
  margin: 0.5rem 0 0.45rem;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}
.pricing-subtitle {
  margin: 0;
  color: var(--brand-slate);
  font-size: 0.86rem;
  text-align: center;
  text-wrap: pretty;
}
.pricing-box {
  margin-block: 1.9rem;
  padding: 1.8rem 1.4rem;
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-sand);
  text-align: center;
}
.pricing-savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.8rem;
  padding: 4px 10px;
  color: #fff;
  border-radius: 999px;
  background: var(--brand-red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-old {
  margin: 0;
  color: var(--brand-slate);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: line-through;
}
.pricing-installments {
  margin: 0.6rem 0 0;
  color: var(--brand-earth);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-main {
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-block: 4px;
}
.pricing-cash {
  margin: 0.55rem 0 0;
  color: var(--brand-coffee);
  font-size: 0.84rem;
  font-weight: 600;
}
.pricing-checklist {
  display: grid;
  gap: 1.05rem;
  margin: 0 0 2.2rem;
  padding: 0;
  list-style: none;
}
.pricing-checklist li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--brand-coffee);
  font-size: 0.88rem;
  line-height: 1.6;
  text-wrap: pretty;
}
.pricing-checklist svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--brand-red);
}
.pricing-cta {
  width: 100%;
  padding: 16px 28px;
  font-size: 0.92rem;
  background: var(--brand-red);
  border-color: var(--brand-red);
  box-shadow: 0 8px 24px rgba(164, 63, 53, 0.35);
}
.pricing-cta:hover {
  background: #8b322a;
  border-color: #8b322a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(164, 63, 53, 0.45);
}
.pricing-security {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--brand-linen);
}
.pricing-security-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-slate);
  font-size: 0.7rem;
  font-weight: 700;
}
.pricing-security-item svg {
  color: var(--brand-red);
  flex-shrink: 0;
}
.lead-form {
  display: grid;
  gap: 1.1rem;
  margin: 1.6rem 0;
}
.lead-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--brand-coffee);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}
.lead-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1.1rem;
  color: var(--brand-coffee);
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: #fff;
  transition:
    border-color var(--brand-ease),
    box-shadow var(--brand-ease);
}
.lead-form input:not([type="checkbox"]):focus {
  border-color: var(--brand-cocoa);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(89, 60, 49, 0.12);
}
.lead-form .consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--brand-slate);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
}
.form-message {
  padding: 0.9rem 1.1rem;
  border-left: 3px solid;
  border-radius: var(--brand-radius-sm);
  font-size: 0.82rem;
}
.form-message--success {
  color: var(--brand-blue);
  border-color: var(--brand-blue-soft);
  background: var(--brand-sand);
}
.form-message--error {
  color: var(--brand-red);
  border-color: var(--brand-red);
  background: var(--brand-sand);
}

/* Garantia */
.guarantee-section {
  padding-block: clamp(3.8rem, 6vw, 5.5rem);
  background: var(--brand-paper);
}
.guarantee-card {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(2.4rem, 4.5vw, 3.8rem);
  border: 1px solid var(--brand-linen);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--brand-radius-md);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow-soft);
}
.guarantee-header-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--brand-linen);
}
.guarantee-seal {
  display: grid;
  width: 140px;
  height: 140px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--brand-earth);
  border-radius: 50%;
  background: var(--brand-sand);
  box-shadow: 
    0 0 0 5px var(--brand-white),
    0 0 0 7px var(--brand-linen),
    0 8px 24px rgba(89, 60, 49, 0.12);
}
.guarantee-seal__inner {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--brand-cocoa);
}
.guarantee-seal__stars {
  color: var(--brand-earth);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  margin-bottom: -2px;
}
.guarantee-seal strong {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 0.95;
  color: var(--brand-cocoa);
}
.guarantee-seal span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-coffee);
}
.guarantee-seal small {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.guarantee-content .kicker {
  margin-bottom: 0.5rem;
}
.guarantee-content h3 {
  margin: 0 0 0.65rem;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 500;
  text-wrap: balance;
}
.guarantee-content p {
  max-width: 64ch;
  margin: 0;
  color: var(--brand-slate);
  font-size: 0.88rem;
  line-height: 1.72;
  text-wrap: pretty;
}

/* 3 Pilares de Garantia */
.guarantee-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 2rem;
}
.guarantee-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-sand);
}
.guarantee-pillar__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--brand-cocoa);
}
.guarantee-pillar__text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--brand-cocoa);
  font-size: 0.84rem;
  font-weight: 700;
}
.guarantee-pillar__text p {
  margin: 0;
  color: var(--brand-slate);
  font-size: 0.78rem;
  line-height: 1.55;
  text-wrap: pretty;
}

/* Especialista */
.bio-section {
  padding-block: var(--brand-section-space);
  background: var(--brand-paper);
}
.bio-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  border: 1px solid var(--brand-linen);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--brand-radius-md);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow);
  overflow: hidden;
}
.bio-photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--brand-sand);
}
.bio-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 74px;
  height: 74px;
  content: "";
  border-right: 3px solid var(--brand-red);
  border-bottom: 3px solid var(--brand-red);
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92);
}
.bio-photo__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(48, 40, 36, 0.88);
  backdrop-filter: blur(8px);
}
.bio-photo__badge span {
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bio-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 5vw, 4.8rem);
}
.bio-content .kicker {
  margin-bottom: 0.5rem;
}
.bio-content h2 {
  margin: 0;
  color: var(--brand-cocoa);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.15;
  text-wrap: balance;
}
.bio-specialty {
  display: block;
  margin: 0.75rem 0 1.5rem;
  color: var(--brand-earth);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bio-content p {
  max-width: 65ch;
  margin: 0 0 1.05rem;
  color: var(--brand-slate);
  font-size: 0.92rem;
  line-height: 1.76;
  text-wrap: pretty;
}
.bio-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin: 1.2rem 0 1.6rem;
  width: 100%;
}
.bio-credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-sand);
  color: var(--brand-cocoa);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  transition: border-color var(--brand-ease);
}
.bio-credential-item:hover {
  border-color: var(--brand-earth);
}
.bio-credential-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-white);
  color: var(--brand-red);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.bio-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  padding: 13px 22px;
  border-radius: var(--brand-radius-sm);
  background: var(--brand-cocoa);
  color: var(--brand-paper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color var(--brand-ease), transform var(--brand-ease);
}
.bio-btn:hover {
  background: var(--brand-coffee);
  transform: translateY(-2px);
}
.bio-btn svg {
  color: #ff3333;
}

/* Acesso */
.access-section {
  padding-block: 2.8rem;
  color: var(--brand-paper);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--brand-coffee);
}
.access-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.access-info {
  display: grid;
  gap: 6px;
}
.access-kicker {
  color: #f4cf9f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.access-section .heading-serif {
  max-width: 440px;
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.access-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}
.access-badge {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(242, 234, 223, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  color: rgba(252, 250, 247, 0.96);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background-color var(--brand-ease), border-color var(--brand-ease), transform var(--brand-ease);
}
.access-badge:hover {
  border-color: #f4cf9f;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.access-badge svg {
  width: 18px;
  height: 18px;
  color: #f4cf9f;
  flex-shrink: 0;
}

/* FAQ */
.faq-section {
  padding-block: var(--brand-section-space);
  background: var(--brand-paper);
}
.faq-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.faq-header h2 {
  color: var(--brand-cocoa);
  font-size: var(--brand-section-title);
}
.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--brand-linen);
}
.faq-item {
  border-bottom: 1px solid var(--brand-linen);
  transition: background-color var(--brand-ease);
}
.faq-trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 38px;
  align-items: center;
  gap: 20px;
  padding: 1.4rem 0.3rem;
  color: var(--brand-coffee);
  border: 0;
  background: transparent;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  text-align: left;
  transition: color var(--brand-ease);
}
.faq-trigger:hover {
  color: var(--brand-red);
}
.faq-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--brand-cocoa);
  border: 1.5px solid var(--brand-linen);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  transition:
    color var(--brand-ease),
    background-color var(--brand-ease),
    border-color var(--brand-ease),
    transform var(--brand-ease);
}
.faq-item.is-open .faq-icon {
  color: #fff;
  border-color: var(--brand-cocoa);
  background: var(--brand-cocoa);
  transform: rotate(45deg);
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-body p {
  max-width: 70ch;
  margin: 0;
  padding: 0 55px 1.5rem 0.3rem;
  color: var(--brand-slate);
  font-size: 0.86rem;
  line-height: 1.78;
  text-wrap: pretty;
}
.faq-whatsapp-card {
  display: grid;
  max-width: 900px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 2.8rem auto 0;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-md);
  background: var(--brand-sand);
}
.faq-whatsapp-card h4 {
  margin: 0 0 6px;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
}
.faq-whatsapp-card p {
  margin: 0;
  color: var(--brand-slate);
  font-size: 0.86rem;
  line-height: 1.6;
}
.faq-whatsapp-card .btn-whatsapp {
  grid-column: 2;
}

/* CTA final e rodapé */
.final-cta {
  padding-block: var(--brand-section-space);
  color: var(--brand-paper);
  text-align: center;
  background: var(--brand-cocoa);
}
.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
  color: #ffffff;
  font-size: var(--brand-section-title);
  line-height: 1.12;
  text-wrap: balance;
}
.final-cta p {
  max-width: 64ch;
  margin: 1.35rem auto 2.2rem;
  color: rgba(252, 250, 247, 0.92);
  font-size: 1.05rem;
  line-height: 1.78;
  text-wrap: pretty;
}
.final-cta .btn-primary {
  color: var(--brand-coffee);
  background: var(--brand-sand);
}
.final-cta .btn-primary:hover {
  color: #fff;
  background: var(--brand-coffee);
  border-color: var(--brand-sand);
}
.footer {
  padding: 68px 0 28px;
  color: rgba(252, 250, 247, 0.88);
  background: var(--brand-coffee);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.8fr;
  gap: clamp(32px, 4vw, 62px);
  padding-bottom: 48px;
}
.footer__brand strong {
  color: var(--brand-paper);
  font-family: var(--font-serif);
  font-size: 1.58rem;
  font-variant-caps: small-caps;
  font-weight: 500;
}
.footer p {
  max-width: 390px;
  margin: 8px 0 0;
  color: rgba(252, 250, 247, 0.88);
  font-size: 0.82rem;
  line-height: 1.72;
}
.footer__label {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__links a {
  color: rgba(252, 250, 247, 0.85);
  font-size: 0.80rem;
  transition: color var(--brand-ease), transform var(--brand-ease);
}
.footer__links a:hover {
  color: #ffffff;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.66rem;
  color: rgba(242, 234, 223, 0.78);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer__bottom p {
  max-width: none;
  margin: 0;
  font-size: inherit;
  color: inherit;
}

/* Imagens opcionais */
.section-art {
  overflow: hidden;
  width: min(100%, 920px);
  margin: 2rem auto;
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-md);
  background: var(--brand-paper);
  box-shadow: var(--brand-shadow-soft);
}
.section-art img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
.section-art--dark {
  border-color: rgba(242, 234, 223, 0.18);
  background: var(--brand-blue);
}
.section-art--compact {
  width: min(100%, 420px);
  margin: 1.25rem auto;
}
.guarantee-grid .section-art {
  flex: 0 1 260px;
  margin: 0;
}
.final-cta .section-art {
  margin: 1.5rem auto 2rem;
}

/* Entrada editorial linha a linha & Scroll Stagger (estilo Eloqwnt / Framer) */
.split-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.15;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.split-inner {
  display: inline-block;
  transform: translateY(118%);
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 750ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-index, 0) * 40ms + 100ms);
}
.is-visible .split-inner,
.hero.is-visible .split-inner,
[data-reveal].is-visible .split-inner {
  transform: translateY(0);
  opacity: 1;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js [data-reveal] .kicker {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms var(--brand-ease) 50ms,
    transform 700ms var(--brand-ease) 50ms;
}
.js [data-reveal].is-visible .kicker {
  opacity: 1;
  transform: none;
}

.js [data-reveal] :where(.section-desc, .hero__lead, .concept-box > p) {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 850ms var(--brand-ease) 220ms,
    transform 850ms var(--brand-ease) 220ms;
}
.js [data-reveal].is-visible :where(.section-desc, .hero__lead, .concept-box > p) {
  opacity: 1;
  transform: none;
}

.js [data-reveal] :where(.hero__actions, .final-cta__actions, .video-badges, .hero-bullets) {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 850ms var(--brand-ease) 300ms,
    transform 850ms var(--brand-ease) 300ms;
}
.js [data-reveal].is-visible :where(.hero__actions, .final-cta__actions, .video-badges, .hero-bullets) {
  opacity: 1;
  transform: none;
}

.js [data-reveal] :where(.audience-card, .module-card, .step-card, .pricing-card, .guarantee-card, .bio-card, .video-frame, .faq-item, .ticker-item) {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js [data-reveal].is-visible :where(.audience-card, .module-card, .step-card, .pricing-card, .guarantee-card, .bio-card, .video-frame, .faq-item, .ticker-item) {
  opacity: 1;
  transform: none;
}

.js [data-reveal].is-visible :where(.audience-card, .module-card, .step-card, .pricing-card, .faq-item, .ticker-item):nth-child(1) {
  transition-delay: 200ms;
}
.js [data-reveal].is-visible :where(.audience-card, .module-card, .step-card, .pricing-card, .faq-item, .ticker-item):nth-child(2) {
  transition-delay: 300ms;
}
.js [data-reveal].is-visible :where(.audience-card, .module-card, .step-card, .pricing-card, .faq-item, .ticker-item):nth-child(3) {
  transition-delay: 400ms;
}
.js [data-reveal].is-visible :where(.audience-card, .module-card, .step-card, .pricing-card, .faq-item, .ticker-item):nth-child(4) {
  transition-delay: 500ms;
}
.js [data-reveal].is-visible :where(.audience-card, .module-card, .step-card, .pricing-card, .faq-item, .ticker-item):nth-child(n+5) {
  transition-delay: 600ms;
}

@media (prefers-reduced-motion: reduce) {
  .split-inner,
  .js [data-reveal],
  .js [data-reveal] * {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .header-nav {
    gap: 12px;
  }
  .header-nav a {
    font-size: 0.55rem;
  }
  .header__cta {
    display: none;
  }
  .ticker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ticker-item:nth-child(2) {
    border-right: 0;
  }
  .ticker-item:nth-child(n + 3) {
    border-top: 1px solid rgba(89, 60, 49, 0.16);
  }
}
@media (max-width: 1023px) {
  :root {
    --brand-container: min(100% - 48px, 980px);
    --brand-narrow: min(100% - 48px, 900px);
  }
  .header__inner {
    min-height: 76px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .header-nav {
    position: absolute;
    z-index: 115;
    inset: 100% 0 auto;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 18px 24px 24px;
    color: #fff;
    background: var(--brand-blue);
    box-shadow: 0 20px 40px rgba(38, 52, 61, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity var(--brand-ease),
      transform var(--brand-ease),
      visibility var(--brand-ease);
  }
  .header-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .header-nav a {
    padding: 14px 4px;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.65rem;
  }
  .header-nav a::after {
    display: none;
  }
  .header-nav a:hover {
    color: #fff;
  }
  .hero {
    min-height: 610px;
    padding-block: 2.75rem;
  }
  .hero__grid {
    display: flex;
  }
  .method-grid {
    grid-template-columns: 1fr;
  }
  .hero__content {
    width: min(58%, 620px);
  }
  .hero__background {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
  }
  .method-mockup {
    width: min(100%, 560px);
    margin-inline: auto;
  }
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .bio-card {
    grid-template-columns: 1fr;
  }
  .bio-photo {
    min-height: auto;
    aspect-ratio: 16/10;
  }
  .bio-photo img {
    object-position: center 18%;
  }
  .access-section .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .access-badges {
    justify-content: flex-start;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  :root {
    --brand-container: calc(100% - 28px);
    --brand-narrow: calc(100% - 28px);
    --brand-section-space: 5rem;
    --brand-hero-title: clamp(2.9rem, 13.5vw, 4rem);
    --brand-section-title: clamp(2.2rem, 10vw, 3rem);
  }
  .site-utility__inner {
    min-height: 34px;
    justify-content: center;
  }
  .site-utility__items {
    display: none;
  }
  .brand-logo {
    min-width: 0;
  }
  .brand-logo strong {
    font-size: 1.13rem;
  }
  .brand-logo small {
    display: none;
  }
  .hero {
    min-height: auto;
    align-items: start;
    padding: 3.25rem 0 21rem;
  }
  .hero__grid {
    display: block;
  }
  .hero__content {
    width: 100%;
  }
  .hero__background {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 21rem;
    object-fit: cover;
    object-position: 72% top;
  }
  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .ticker-grid,
  .audience-grid,
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .ticker-item {
    border-right: 0;
    border-bottom: 1px solid rgba(89, 60, 49, 0.16);
  }
  .ticker-item:first-child {
    border-left: 0;
  }
  .ticker-item:last-child {
    border-bottom: 0;
  }
  .steps-timeline::before {
    left: 19px;
  }
  .step-card {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 1rem;
  }
  .step-node {
    width: 38px;
    height: 38px;
  }
  .step-number {
    font-size: 0.95rem;
  }
  .device-screen {
    padding: 14px;
  }
  .device-player-preview {
    padding: 14px;
  }
  .concept-highlight-card {
    grid-template-columns: 1fr;
  }
  .concept-feature {
    border-right: 0;
    border-bottom: 1px solid var(--brand-line-dark);
  }
  .concept-feature:last-child {
    border-bottom: 0;
  }
  .bonus-banner {
    padding: 2rem 1.2rem;
  }
  .bonus-stack-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem;
  }
  .bonus-stack-footer .btn-primary {
    width: 100%;
    text-align: center;
  }
  .pricing-card {
    padding: 2rem 1.35rem;
  }
  .guarantee-card {
    padding: 2rem 1.25rem;
  }
  .guarantee-header-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 1.5rem;
  }
  .guarantee-content .kicker {
    margin-inline: auto;
  }
  .guarantee-pillars {
    grid-template-columns: 1fr;
  }
  .guarantee-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .guarantee-grid .section-art {
    width: 100%;
    flex-basis: auto;
  }
  .bio-photo {
    aspect-ratio: 4/5;
  }
  .bio-credentials {
    grid-template-columns: 1fr;
  }
  .access-badges {
    display: grid;
    width: 100%;
  }
  .faq-whatsapp-card {
    grid-template-columns: 1fr;
  }
  .faq-whatsapp-card h4,
  .faq-whatsapp-card p,
  .faq-whatsapp-card .btn {
    grid-row: auto;
    grid-column: 1;
  }
  .faq-body p {
    padding-right: 0;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: auto;
  }
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Botão Voltar ao Topo (Back to Top) com indicador circular de leitura */
.back-to-top {
  position: fixed;
  z-index: 120;
  right: 28px;
  bottom: 28px;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--brand-cocoa);
  border: 1px solid var(--brand-linen);
  border-radius: 50%;
  background: rgba(252, 250, 247, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(48, 40, 36, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.88);
  transition:
    opacity 320ms var(--brand-ease),
    transform 320ms var(--brand-ease),
    background-color var(--brand-ease),
    border-color var(--brand-ease),
    box-shadow var(--brand-ease),
    color var(--brand-ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  color: var(--brand-red);
  border-color: var(--brand-cocoa);
  background: var(--brand-white);
  box-shadow: 0 12px 30px rgba(48, 40, 36, 0.18);
  transform: translateY(-3px) scale(1.04);
}

.back-to-top:active {
  transform: translateY(0) scale(0.96);
}

.back-to-top__progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.back-to-top__track {
  stroke: rgba(222, 208, 190, 0.45);
}

.back-to-top__bar {
  stroke: var(--brand-red);
  stroke-linecap: round;
  transition: stroke-dashoffset 100ms linear;
}

.back-to-top__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--brand-ease);
}

.back-to-top:hover .back-to-top__icon {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   PÁGINA DE TERMOS DE USO & POLÍTICA DE PRIVACIDADE (Legal Page)
   ========================================================================== */
.header-back-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  color: var(--brand-cocoa);
  border: 1px solid var(--brand-linen);
  border-radius: 999px;
  background: var(--brand-white);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(48, 40, 36, 0.04);
  transition: all var(--brand-ease);
}
.header-back-pill__icon {
  color: var(--brand-red);
  flex-shrink: 0;
  transition: transform var(--brand-ease);
}
.header-back-pill:hover {
  color: var(--brand-paper);
  background: var(--brand-cocoa);
  border-color: var(--brand-cocoa);
  box-shadow: var(--brand-shadow-soft);
  transform: translateY(-1px);
}
.header-back-pill:hover .header-back-pill__icon {
  color: var(--brand-sand);
  transform: translateX(-4px);
}

.legal-page {
  background: var(--brand-paper);
}
.legal-content-wrap {
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.legal-hero {
  padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem;
  border-bottom: 1px solid var(--brand-linen);
  background: linear-gradient(180deg, rgba(242, 234, 223, 0.45) 0%, rgba(252, 250, 247, 0) 100%);
  margin-bottom: 3rem;
}
.legal-nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}
.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  color: var(--brand-coffee);
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-white);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--brand-shadow-soft);
  transition: all var(--brand-ease);
}
.legal-pill svg {
  color: var(--brand-red);
  flex-shrink: 0;
}
.legal-pill:hover {
  color: var(--brand-paper);
  background: var(--brand-cocoa);
  border-color: var(--brand-cocoa);
  transform: translateY(-2px);
  box-shadow: var(--brand-shadow);
}
.legal-pill:hover svg {
  color: var(--brand-sand);
}
.legal-card {
  margin-bottom: 2.5rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-md);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow-soft);
  scroll-margin-top: 100px;
}
.legal-card--highlight {
  border-top: 4px solid var(--brand-red);
  background: rgba(242, 234, 223, 0.35);
}
.legal-card__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--brand-line);
}
.legal-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: var(--brand-radius-sm);
  background: rgba(164, 63, 53, 0.08);
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.legal-card__tag svg {
  flex-shrink: 0;
}
.legal-card__title {
  margin: 0 0 10px;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
}
.legal-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--brand-slate);
  font-size: 0.78rem;
  font-weight: 600;
}
.legal-card__body {
  color: var(--brand-coffee);
  font-size: 0.98rem;
  line-height: 1.85;
}
.legal-card__body p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.legal-section-block {
  margin: 2rem 0 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(48, 40, 36, 0.08);
}
.legal-section-block:first-of-type {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: 0;
}
.legal-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--brand-cocoa);
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.3;
}
.legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: var(--brand-radius-sm);
  background: var(--brand-sand);
  color: var(--brand-cocoa);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.legal-callout {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3.5px solid var(--brand-red);
  border-radius: 0 var(--brand-radius-md) var(--brand-radius-md) 0;
  background: rgba(164, 63, 53, 0.06);
}
.legal-callout__badge {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-callout p {
  margin: 0;
  color: var(--brand-coffee);
  font-size: 0.96rem;
  line-height: 1.75;
}
.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--brand-linen);
  border-radius: var(--brand-radius-sm);
  background: var(--brand-white);
}
.legal-contact-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-contact-grid strong {
  color: var(--brand-cocoa);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legal-contact-grid a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
}
.legal-contact-grid a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .legal-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal],
  .js [data-reveal] :where(.heading-serif, .kicker) {
    opacity: 1;
    transform: none;
  }
  .btn:hover {
    transform: none;
  }
}
