:root {
  --bg: #05070d;
  --surface: #091018;
  --surface-deep: #060a11;
  --text: #8a91a0;
  --text-strong: #dfe4ed;
  --text-soft: #b2b8c4;
  --line: rgba(205, 214, 228, 0.18);
  --line-strong: rgba(223, 228, 237, 0.32);
  --button: #dfe4ed;
  --button-text: #05070d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  --container: min(1180px, calc(100vw - 64px));
  --hero-overlay: linear-gradient(180deg, rgba(5, 7, 13, 0.08), rgba(5, 7, 13, 0.52));
  --section-overlay: linear-gradient(180deg, rgba(5, 7, 13, 0.6), rgba(5, 7, 13, 0.82));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-ball-enabled,
  body.cursor-ball-enabled * {
    cursor: none !important;
  }
}

.cursor-ball {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.78);
  background: #f8a83c;
  transition:
    opacity 220ms ease,
    width 220ms ease,
    height 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.cursor-ball.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.cursor-ball.is-hovering {
  width: 16px;
  height: 16px;
  background: #f8a83c;
}

.cursor-ball.is-pressed {
  transform: translate3d(-50%, -50%, 0) scale(0.82);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  transition:
    background-color 260ms ease,
    backdrop-filter 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 13, 0.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 228, 237, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark,
.footer-brand {
  color: var(--text-strong);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scan-stroke {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding-right: 0.08em;
  color: transparent;
  -webkit-text-stroke-width: 0.3px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.scan-stroke::before {
  content: attr(data-scan-text);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  border-right: 2px solid transparent;
  border-image: linear-gradient(180deg, #f8a83c, #fff0c2) 1;
  animation: scanStrokeSweep 6s linear infinite;
  animation-delay: var(--scan-delay, 0s);
  text-shadow: 0 0 16px rgba(248, 168, 60, 0.12);
}

.scan-stroke strong {
  color: inherit;
  font-weight: inherit;
}

.serif.scan-stroke {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.investment-value.scan-stroke {
  display: table;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  text-align: left;
  -webkit-text-stroke-width: 0.6px;
}

@keyframes scanStrokeSweep {
  0%,
  10%,
  100% {
    width: 0%;
  }

  70%,
  90% {
    width: 100%;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.main-nav a,
.header-link {
  color: var(--text);
  transition: color 220ms ease, opacity 220ms ease;
}

.main-nav a:hover,
.header-link:hover,
.text-link:hover {
  color: var(--text-strong);
}

.header-link {
  font-size: 0.92rem;
  color: var(--text-soft);
  text-transform: uppercase;
}

.header-utility {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a[aria-current="page"],
.header-link[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--text-strong);
}

.section {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: var(--section-bg-position, center);
  background-repeat: no-repeat;
  background-size: var(--section-bg-size, cover);
  z-index: -3;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.section-hero {
  padding: 112px 0 92px;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: end;
}

.hero-particles {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: min(100vw, 1620px);
  height: clamp(360px, 44vw, 620px);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  opacity: 1;
}

.hero-particles::before {
  content: none;
}

.hero-particles::after {
  content: none;
}

.particle-cluster {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url("imagens/particulas.webp?v=20260418c") center 82% / 280% auto no-repeat;
  mix-blend-mode: screen;
  will-change: transform, opacity, filter;
  opacity: 0.92;
}

.particle-cluster::before,
.particle-cluster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("imagens/particulas.webp?v=20260418c") center 82% / 280% auto no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
}

.particle-cluster::before {
  opacity: 0.54;
  filter: blur(9px) brightness(1.4);
}

.particle-cluster::after {
  opacity: 1;
  filter:
    brightness(2.1)
    drop-shadow(0 0 24px rgba(223, 228, 237, 0.26))
    drop-shadow(0 0 52px rgba(223, 228, 237, 0.12));
}

.particle-cluster-left {
  left: 1.5%;
  width: 36%;
  opacity: 0.64;
  animation: particleDriftLeft 13s ease-in-out infinite;
}

.particle-cluster-left::before {
  transform: translateY(-8px) scale(1.08);
}

.particle-cluster-left-mid {
  left: 9%;
  width: 39%;
  opacity: 0.82;
  animation: particleDriftLeftMid 11s ease-in-out infinite;
}

.particle-cluster-center {
  left: 28%;
  width: 44%;
  opacity: 1;
  animation: particleDriftCenter 9s ease-in-out infinite;
}

.particle-cluster-center::before {
  transform: scale(1.12);
}

.particle-cluster-right-mid {
  right: 8.5%;
  width: 39%;
  opacity: 0.82;
  animation: particleDriftRightMid 12s ease-in-out infinite;
}

.particle-cluster-right {
  right: 1.5%;
  width: 36%;
  opacity: 0.64;
  animation: particleDriftRight 14s ease-in-out infinite;
}

.section-hero::before {
  background-image: url("imagens/fhero1.webp?v=20260418c");
}

.section-hero::after {
  background:
    radial-gradient(circle at 72% 30%, rgba(223, 228, 237, 0.12), transparent 30%),
    var(--hero-overlay);
}

.section-dark {
  padding: 96px 0;
}

.section-mid {
  padding: 92px 0;
}

.section-dark::before,
.section-mid::before {
  background-image: url("imagens/section.webp?v=20260418c");
}

.section-dark::after,
.section-mid::after {
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.55), rgba(5, 7, 13, 0.78)),
    var(--section-overlay);
}

.section-footer {
  padding: 96px 0 84px;
}

.section-footer::before,
.site-footer::before {
  background-image: url("imagens/rodape.webp?v=20260418c");
}

.section-footer::after,
.site-footer::after {
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.54), rgba(5, 7, 13, 0.86)),
    var(--section-overlay);
}

.hero-grid,
.split-band,
.services-layout,
.results-grid,
.about-grid {
  display: grid;
  gap: 40px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
  align-items: end;
}

.page-home .hero-grid,
.page-hero-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  max-width: 720px;
}

.page-home .hero-copy,
.page-hero-copy-title-only {
  max-width: 46rem;
}

.home-doc-kicker {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-doc-shell {
  display: grid;
  gap: 26px;
  max-width: 760px;
}

.doc-shell {
  display: grid;
  gap: 26px;
  max-width: 860px;
}

.doc-shell-compact {
  max-width: 760px;
}

.home-doc-shell-compact {
  max-width: 640px;
}

.home-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-bullet-list li {
  position: relative;
  padding: 20px 0 20px 30px;
  color: var(--text-strong);
  font-size: clamp(1.02rem, 1.75vw, 1.24rem);
  letter-spacing: -0.025em;
}

.home-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-soft);
  font-size: 1.1em;
}

.home-closing-line,
.home-statement,
.home-about-name {
  color: var(--text-strong);
  letter-spacing: -0.04em;
}

.page-home #servicos .section-label-visible {
  color: var(--text-soft);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 0.95;
}

.page-home #servicos .home-statement {
  max-width: 22ch;
  color: var(--text-soft);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.page-home #servicos .home-statement .serif {
  color: var(--text-soft);
}

.home-closing-line,
.home-statement {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.home-service-list li {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.home-offer-stack {
  display: grid;
  border-top: 1px solid var(--line);
}

.page-home #solucoes .section-label-visible {
  display: block;
  max-width: 16ch;
  margin-bottom: 22px;
  color: var(--text-soft);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: none;
}

.home-offer-block {
  display: grid;
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.home-offer-copy {
  display: grid;
  gap: 8px;
}

.home-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  color: var(--text-strong);
  font-size: 0.98rem;
  line-height: 1.4;
}

.home-arrow-link strong {
  font-weight: 700;
}

.home-about-name {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.doc-emphasis-line {
  color: var(--text-strong);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.doc-strong-stack {
  display: grid;
  gap: 8px;
}

.doc-strong-stack p {
  color: var(--text-strong);
}

.page-agencia .doc-strong-stack p {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.doc-link-stack {
  display: grid;
  gap: 14px;
}

.doc-muted-line {
  color: var(--text);
}

.agency-hero-title {
  max-width: 14ch;
}

.agency-hero-title__eyebrow,
.agency-hero-title__main {
  display: block;
}

.agency-hero-title__eyebrow {
  margin-bottom: 0.14em;
  font-size: 0.62em;
  line-height: 1.04;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.page-about strong {
  color: var(--text-strong);
  font-weight: 700;
}

.about-link-list {
  display: grid;
  gap: 12px;
}

.about-link-list .text-link {
  font-size: 1rem;
}

.about-footer-copy {
  max-width: none;
  width: 100%;
}

.about-highlight-line {
  color: var(--text-strong);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.page-agencia strong {
  color: var(--text-strong);
  font-weight: 700;
}

.page-about .section-label-visible {
  display: block;
  max-width: 18ch;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: clamp(1.7rem, 3.1vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 0.96;
}

.page-consultoria .section-label-visible {
  display: block;
  max-width: none;
  margin-bottom: 18px;
  color: var(--text-strong);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.96;
}

.page-agencia .section-label-visible {
  display: block;
  max-width: none;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.96;
}

.page-cafe .section-label-visible {
  display: block;
  max-width: none;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.96;
}

.page-palestra .section-label-visible {
  display: block;
  max-width: none;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.94;
}

.page-palestra .step-row-no-number .step-copy h3 {
  position: relative;
  padding-left: 26px;
}

.page-palestra .step-row-no-number .step-copy h3::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f8a83c;
  font-size: 1.02em;
}

.page-agencia .step-copy h3 {
  font-weight: 700;
}

.investment-prefix {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}

.investment-label-plain {
  color: var(--text-strong);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.1;
}

.investment-label-large {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.investment-block {
  margin-top: 42px;
  gap: 10px;
}

.hero-copy.reveal.is-visible h1,
.page-hero-copy.reveal.is-visible h1,
.hero-copy.reveal.is-visible .hero-lead,
.page-hero-copy.reveal.is-visible .hero-lead {
  animation: heroTextFocusIn 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-copy.reveal.is-visible .hero-lead,
.page-hero-copy.reveal.is-visible .hero-lead {
  animation-delay: 0.14s;
}

@keyframes heroTextFocusIn {
  0% {
    letter-spacing: -0.5em;
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    filter: blur(0);
    opacity: 1;
  }
}

.section-label {
  display: none;
}

.section-label-visible {
  display: block;
  margin-bottom: 16px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  color: var(--text-strong);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.25rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.1rem);
  max-width: 11ch;
}

h3 {
  color: var(--text-strong);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.serif {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: #eff2f8;
  letter-spacing: 0;
}

.hero-lead,
.results-copy p,
.about-copy p,
.offer-copy p,
.service-row p {
  color: var(--text);
}

.hero-lead {
  margin-top: 26px;
  max-width: 40rem;
  font-size: 1.02rem;
}

.mobile-copy-break {
  display: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  --ink-button-bg: #f8a83c;
  --ink-button-text: #05070d;
  --ink-button-hover-text: #ffffff;
  --ink-button-glow: rgba(248, 168, 60, 0.32);
  --ink-button-glow-strong: rgba(248, 168, 60, 0.6);
  position: relative;
  padding: 0;
  overflow: visible;
  isolation: isolate;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-button-text);
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: none;
}

.button-primary .btn-ink-surface {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 0 30px;
  border-radius: inherit;
  overflow: hidden;
  background-color: var(--ink-button-bg);
  box-shadow: 0 0 15px var(--ink-button-glow);
  transition: transform 220ms ease, box-shadow 300ms ease;
}

.button-primary .btn-text {
  position: relative;
  z-index: 5;
  pointer-events: none;
  transition: color 400ms ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.button-primary .ink-splash {
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 0;
  height: 0;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: url(#ink-filter);
  transition: width 500ms ease, height 500ms ease;
  pointer-events: none;
}

.button-primary .particle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.button-primary:hover .btn-ink-surface,
.button-primary:focus-visible .btn-ink-surface {
  transform: scale(1.02);
  box-shadow: 0 10px 40px var(--ink-button-glow-strong);
}

.button-primary:hover .ink-splash,
.button-primary:focus-visible .ink-splash {
  width: 450%;
  height: 450%;
}

.button-primary:hover .btn-text,
.button-primary:focus-visible .btn-text {
  color: var(--ink-button-hover-text);
}

.button-primary:active .btn-ink-surface {
  transform: scale(0.95);
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  display: block;
}

.p-orange {
  background: #f8a83c;
  box-shadow:
    0 0 10px #f8a83c,
    0 0 20px rgba(248, 168, 60, 0.8);
  animation: implodeAnim var(--life, 0.6s) ease-in forwards;
}

@keyframes implodeAnim {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translate(calc(-50% - var(--startX)), calc(-50% - var(--startY))) scale(0.2);
    opacity: 0;
  }
}

.p-white {
  background: #fff;
  opacity: 0.9;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  animation: floatOutAnim var(--life, 1.5s) ease-out forwards;
}

@keyframes floatOutAnim {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }

  20% {
    opacity: 0.8;
  }

  100% {
    transform: translate(calc(-50% + var(--moveX)), calc(-50% + var(--moveY))) scale(0);
    opacity: 0;
  }
}

.button-ghost {
  border: 1px solid var(--line);
  color: var(--text-strong);
  background: rgba(223, 228, 237, 0.03);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 2.4vw, 28px);
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  color: #b3bac6;
  background: rgba(8, 12, 19, 0.38);
  border: 1px solid rgba(223, 228, 237, 0.22);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 20px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  z-index: 24;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 58%);
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
  transition: opacity 220ms ease, background 220ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  background: rgba(11, 16, 24, 0.46);
  border-color: rgba(248, 168, 60, 0.44);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(248, 168, 60, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.floating-whatsapp:hover::before,
.floating-whatsapp:focus-visible::before {
  background:
    linear-gradient(180deg, rgba(248, 168, 60, 0.14), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 58%);
  opacity: 1;
}

.floating-whatsapp__icon {
  position: relative;
  z-index: 1;
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  line-height: 0;
  object-fit: contain;
  filter: grayscale(1) brightness(1.3) contrast(0.86);
  opacity: 0.92;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.floating-whatsapp:hover .floating-whatsapp__icon,
.floating-whatsapp:focus-visible .floating-whatsapp__icon {
  filter:
    brightness(0)
    saturate(100%)
    invert(71%)
    sepia(51%)
    saturate(1407%)
    hue-rotate(342deg)
    brightness(101%)
    contrast(96%);
  opacity: 1;
  transform: scale(1.03);
}

.hero-side {
  display: grid;
  gap: 10px;
  justify-self: end;
  padding-bottom: 6px;
  min-width: 170px;
}

.hero-side-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  margin-bottom: 6px;
}

.hero-side p {
  color: var(--text-soft);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

.section-page-hero {
  --section-bg-position: center center;
  padding: 116px 0 96px;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: end;
}

.section-page-hero::before {
  background-image: url("imagens/section-hero.webp?v=20260418c");
}

.page-about .section-page-hero::before {
  background-image: url("imagens/fhero2.webp?v=20260418c");
}

.page-about .section-page-hero {
  --section-bg-position: 78% center;
}

.page-cafe .section-page-hero::before {
  background-image: url("imagens/fhero3.webp?v=20260418c");
}

.page-cafe .section-page-hero {
  --section-bg-position: 54% 44%;
}

.page-consultoria .section-page-hero::before {
  background-image: url("imagens/fhero4.webp?v=20260418c");
}

.page-consultoria .section-page-hero {
  --section-bg-position: 74% center;
}

.page-depoimentos .section-page-hero::before {
  background-image: url("imagens/fhero5.webp?v=20260418c");
}

.page-depoimentos .section-page-hero,
.page-depoimentos .section-video-testimonials {
  --section-bg-position: 50% 34%;
}

.page-palestra .section-page-hero::before {
  background-image: url("imagens/fhero7.webp?v=20260423b");
}

.page-agencia .section-page-hero::before {
  background-image: url("imagens/fhero8.webp?v=20260423c");
}

.hero-video-shell {
  display: none;
}

.section-page-hero::after {
  background:
    radial-gradient(circle at 70% 26%, rgba(223, 228, 237, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.2), rgba(5, 7, 13, 0.78));
}

.page-hero-grid,
.feature-columns,
.closing-grid {
  display: grid;
  gap: 40px;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.72fr);
  align-items: end;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-copy h1 {
  max-width: 11ch;
}

.page-aside {
  display: grid;
  gap: 16px;
  align-self: end;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.page-aside .mini-label {
  margin-bottom: -2px;
}

.page-aside p,
.page-aside li {
  color: var(--text-soft);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-aside .page-aside-note {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.page-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.page-depoimentos .section-video-testimonials {
  padding-top: 52px;
}

.page-depoimentos .section-video-testimonials::before {
  background-image: url("imagens/fhero5.webp?v=20260418c");
}

.page-depoimentos .section-video-testimonials::after {
  background:
    radial-gradient(circle at 70% 26%, rgba(223, 228, 237, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.16), rgba(5, 7, 13, 0.82));
}

.page-depoimentos .section-video-testimonials .hero-particles {
  top: -12px;
  bottom: auto;
  height: clamp(320px, 40vw, 560px);
  opacity: 0.92;
}

.section-copy,
.copy-stack {
  max-width: 42rem;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p,
.section-copy {
  color: var(--text);
}

.closing-note-line {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mini-label {
  display: none;
}

.quote-line {
  color: var(--text-strong);
  font-size: clamp(1.25rem, 2.1vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 18ch;
}

.page-about .quote-line {
  max-width: 30ch;
}

.about-news-section {
  padding-top: 8px;
  padding-bottom: 44px;
}

.about-news-carousel {
  position: relative;
  overflow: hidden;
}

.about-news-carousel::before,
.about-news-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(38px, 8vw, 108px);
  z-index: 2;
  pointer-events: none;
}

.about-news-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.98), transparent);
}

.about-news-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 7, 13, 0.98), transparent);
}

.about-news-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: 0;
  will-change: transform;
  animation: testimonialsRailScroll var(--news-duration, 42s) linear infinite;
}

.about-news-set {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-news-carousel:hover .about-news-track,
.about-news-carousel:focus-within .about-news-track {
  animation-play-state: paused;
}

.about-news-card {
  flex: 0 0 clamp(220px, 24vw, 312px);
  padding: 8px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 16, 24, 0.74);
  border: 1px solid rgba(223, 228, 237, 0.12);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-news-card__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(223, 228, 237, 0.08);
}

.page-consultoria .quote-line {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.04;
  max-width: 16ch;
}

.consultoria-format-band {
  padding-top: 118px;
  padding-bottom: 62px;
}

.closing-highlight-line {
  color: var(--text-strong);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 24ch;
}

.step-emphasis-line {
  color: var(--text-strong);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-intro-strong {
  color: var(--text-strong);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-cafe .section-intro-strong {
  max-width: none;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  white-space: nowrap;
}

.palestra-opening-line {
  color: var(--text-strong);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: none;
}

.palestra-closing-line {
  color: var(--text-strong);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 100%;
}

.palestra-final-line {
  color: var(--text-strong);
  font-size: clamp(1.35rem, 2.45vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: none;
  white-space: nowrap;
}

.palestra-positioning-line {
  color: var(--text-strong);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 100%;
}

.section-gap-top {
  margin-top: 34px;
}

.section-gap-large {
  margin-top: 44px;
}

.section-label-gap {
  margin-top: 40px;
}

.cafe-title-block {
  margin-top: 28px;
}

.cafe-title-block .section-label-visible {
  margin-bottom: 10px;
}

.footer-closing-line {
  color: var(--text-strong);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 18ch;
}

.cafe-emphasis-copy p {
  color: var(--text-strong);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 18ch;
}

.line-list,
.detail-list,
.meta-list,
.step-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.line-list,
.detail-list,
.meta-list {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-list-no-bottom {
  border-bottom: 0;
}

.line-list-no-top {
  border-top: 0;
}

.line-list-no-bottom {
  border-bottom: 0;
}

.line-list li,
.detail-list li,
.meta-list li {
  position: relative;
  padding: 18px 0 18px 28px;
}

.line-list li {
  color: var(--text-strong);
  font-size: clamp(1.02rem, 1.75vw, 1.22rem);
  letter-spacing: -0.025em;
}

.line-list li::before,
.detail-list li::before,
.meta-list li::before,
.step-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f8a83c;
  font-size: 1.02em;
}

.detail-list li,
.meta-list li,
.step-points li {
  color: var(--text);
}

.feature-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 48px;
}

.feature-group {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.step-stack {
  display: grid;
  border-top: 1px solid var(--line);
}

.step-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease;
}

.step-number {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-top: 6px;
}

.step-copy,
.step-detail {
  display: grid;
  gap: 10px;
}

.step-copy p,
.step-detail p {
  color: var(--text);
}

.step-points {
  display: grid;
  gap: 8px;
}

.step-points li {
  position: relative;
  padding-left: 24px;
}

main :is(p, li, h1, h2, h3) strong {
  color: #fff3d8;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(248, 168, 60, 0.2);
  background-image: linear-gradient(180deg, transparent 56%, rgba(248, 168, 60, 0.2) 56%);
  padding-inline: 0.12em;
  border-radius: 0.16em;
}

.closing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
}

.investment-note {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.investment-value {
  color: var(--text-strong);
  font-size: clamp(3rem, 5.6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.investment-value-strong {
  font-weight: 700;
}

.split-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.questions {
  display: grid;
  border-top: 1px solid var(--line);
}

.questions p {
  padding: 22px 0;
  color: var(--text-strong);
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  letter-spacing: -0.035em;
  border-bottom: 1px solid var(--line);
}

.services-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.services-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(240px, 0.8fr);
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-index,
.offer-index {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.heading-wide h2 {
  max-width: 13ch;
}

.offer-list {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.offer-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease;
}

.step-row:hover,
.service-row:hover,
.offer-row:hover {
  transform: translateX(6px);
  border-color: var(--line-strong);
}

.page-palestra .palestra-closing-band {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.page-palestra .palestra-closing-band .copy-stack:last-child {
  justify-self: end;
}

.page-palestra .palestra-closing-band .hero-actions {
  width: auto;
  justify-content: flex-end;
}

.offer-copy {
  display: grid;
  gap: 6px;
}

.offer-cta {
  justify-self: end;
  color: var(--text-strong);
  font-size: 0.95rem;
}

.results-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr);
  align-items: end;
}

.results-copy {
  display: grid;
  gap: 22px;
  max-width: 34rem;
}

.text-link {
  color: var(--text-strong);
  font-size: 0.96rem;
  font-weight: 600;
}

.marquee {
  position: relative;
  margin-top: 54px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12vw;
  z-index: 1;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.92), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 7, 13, 0.92), transparent);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  color: rgba(223, 228, 237, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-testimonials-showcase {
  padding-top: 86px;
}

.testimonials-marquee {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.testimonial-rail {
  position: relative;
  overflow: hidden;
}

.testimonial-rail::before,
.testimonial-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(42px, 8vw, 110px);
  z-index: 2;
  pointer-events: none;
}

.testimonial-rail::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.96), transparent);
}

.testimonial-rail::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 7, 13, 0.96), transparent);
}

.testimonial-rail__track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: 12px;
  will-change: transform;
  animation: testimonialsRailScroll var(--testimonial-duration, 50s) linear infinite;
}

.testimonial-rail__track.is-reverse {
  animation-direction: reverse;
}

.testimonial-rail__set {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.testimonial-card {
  flex: 0 0 clamp(220px, 26vw, 340px);
  align-self: flex-start;
  padding: 8px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 16, 24, 0.72);
  border: 1px solid rgba(223, 228, 237, 0.12);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.testimonial-card__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(223, 228, 237, 0.08);
}

.section-video-testimonials {
  padding-top: 84px;
}

.video-testimonials-heading h2 {
  max-width: 24ch;
  text-wrap: balance;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.video-testimonial-card {
  padding: 10px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 16, 24, 0.76);
  border: 1px solid rgba(223, 228, 237, 0.12);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.video-testimonial-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  border: 1px solid rgba(223, 228, 237, 0.08);
  background: rgba(5, 7, 13, 0.9);
  object-fit: cover;
}

.about-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.85fr);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 20px;
  max-width: 34rem;
}

.about-intro {
  color: var(--text-strong);
  font-size: 1.05rem;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 0 0 40px;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.site-footer::before {
  z-index: -3;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(223, 228, 237, 0.1);
}

.footer-stack {
  display: grid;
  gap: 14px;
}

.footer-copy {
  max-width: 42rem;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--text);
  font-size: 0.93rem;
}

.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(16px);
  transition:
    opacity 820ms ease,
    transform 820ms ease,
    filter 820ms ease;
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes testimonialsRailScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes particleDriftLeft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.56;
  }

  50% {
    transform: translate3d(-10px, -16px, 0) scale(1.04);
    opacity: 0.76;
  }
}

@keyframes particleDriftLeftMid {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.78;
  }

  50% {
    transform: translate3d(10px, -12px, 0);
    opacity: 0.98;
  }
}

@keyframes particleDriftCenter {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.92;
  }

  50% {
    transform: translate3d(0, -20px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes particleDriftRightMid {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.78;
  }

  50% {
    transform: translate3d(-10px, -14px, 0);
    opacity: 0.98;
  }
}

@keyframes particleDriftRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.56;
  }

  50% {
    transform: translate3d(10px, -16px, 0) scale(1.04);
    opacity: 0.76;
  }
}

@media (max-width: 1080px) {
  :root {
    --container: min(100vw - 48px, 1080px);
  }

  .hero-grid,
  .page-hero-grid,
  .split-band,
  .services-layout,
  .results-grid,
  .about-grid,
  .feature-columns,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-self: start;
    max-width: 320px;
  }

  .page-aside {
    max-width: 360px;
  }

  .hero-particles {
    width: min(100vw, 1360px);
    height: 380px;
    bottom: -16px;
  }

  .hero-side p {
    text-align: left;
  }

  .service-row,
  .offer-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .service-row p,
  .offer-cta {
    grid-column: 2;
  }

  .offer-cta {
    justify-self: start;
    margin-top: 6px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .page-home .section-hero {
    --section-bg-position: 44% center;
  }

  .container {
    width: auto;
    margin-inline: 16px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding: 14px 0;
  }

  .page-depoimentos .section-video-testimonials {
    padding-top: 36px;
  }

  .header-inner {
    gap: 10px 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    flex: 0 0 100%;
  }

  .main-nav {
    order: 2;
    width: 100%;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 0.78rem;
    flex-wrap: wrap;
  }

  .header-utility {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .main-nav a,
  .header-link {
    white-space: nowrap;
  }

  .header-link {
    font-size: 0.78rem;
  }

  .section-hero {
    padding: 92px 0 72px;
    min-height: auto;
  }

  .home-doc-shell {
    gap: 22px;
  }

  .doc-shell {
    gap: 22px;
  }

  .section-page-hero {
    padding: 144px 0 72px;
    min-height: clamp(420px, 92svh, 640px);
  }

  .hero-particles {
      width: min(138vw, 1180px);
      height: 440px;
      bottom: -34px;
  }

  .particle-cluster {
    width: 72%;
    background-size: 205% auto;
  }

  .particle-cluster::before,
  .particle-cluster::after {
    background-size: 205% auto;
  }

  .particle-cluster-left {
    left: -34%;
  }

  .particle-cluster-left-mid {
    left: -16%;
  }

  .particle-cluster-center {
    left: 12%;
    width: 78%;
  }

  .particle-cluster-right-mid {
    right: -16%;
  }

  .particle-cluster-right {
      right: -34%;
  }

  .page-about .section-page-hero {
    --section-bg-position: 82% center;
  }

  .page-cafe .section-page-hero {
    --section-bg-position: 58% 44%;
  }

  .page-consultoria .section-page-hero {
    --section-bg-position: 80% 18%;
  }

  .page-palestra .section-page-hero {
    --section-bg-position: 44% center;
  }

  .page-agencia .section-page-hero {
    --section-bg-position: 42% center;
  }

  .page-depoimentos .section-page-hero,
  .page-depoimentos .section-video-testimonials {
    --section-bg-position: 50% 28%;
  }

  .page-depoimentos .section-video-testimonials {
    --section-bg-size: auto 100%;
  }

  .section-dark,
  .section-mid,
  .section-footer {
    padding: 72px 0;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .page-home .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.3rem, 10.6vw, 3.45rem);
  }

  .home-doc-kicker {
    margin-bottom: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.22em;
  }

  .home-bullet-list li {
    padding: 18px 0 18px 26px;
    font-size: 1rem;
  }

  .home-closing-line,
  .home-statement,
  .home-about-name {
    max-width: 12ch;
    font-size: clamp(1.95rem, 9vw, 2.95rem);
  }

  .home-arrow-link {
    align-items: flex-start;
    font-size: 0.95rem;
  }

  .doc-emphasis-line {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    max-width: 14ch;
  }

  h2 {
    max-width: 9.5ch;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .section-label {
    margin-bottom: 18px;
    letter-spacing: 0.26em;
  }

  .hero-lead,
  .results-copy p,
  .about-copy p,
  .offer-copy p,
  .service-row p {
    font-size: 0.97rem;
  }

  .mobile-copy-break {
    display: block;
  }

  .questions p {
    font-size: 1.15rem;
  }

  .service-row,
  .offer-row,
  .step-row {
    gap: 14px;
    padding: 20px 0;
  }

  .step-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .step-detail {
    grid-column: 2;
  }

  .button {
    width: 100%;
  }

  .page-palestra .page-hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(2.25rem, 10.6vw, 3.45rem);
  }

  .page-palestra .hero-lead {
    max-width: 15ch;
  }

  .page-palestra .section-label-visible {
    max-width: 100%;
    font-size: clamp(1.6rem, 7.4vw, 2.2rem);
    letter-spacing: 0.06em;
    line-height: 0.96;
  }

  .page-palestra .section-label-visible .scan-stroke {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    overflow-wrap: anywhere;
  }

  .palestra-final-line {
    max-width: 11ch;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp__icon {
    width: 20px;
    height: 20px;
  }

  .hero-actions {
    width: 100%;
  }

  .marquee-track {
    gap: 18px;
  }

  .marquee-track span {
    letter-spacing: 0.12em;
  }

  .testimonials-marquee {
    gap: 14px;
  }

  .testimonial-rail__track,
  .testimonial-rail__set {
    align-items: flex-start;
    gap: 10px;
  }

  .testimonial-card {
    flex-basis: clamp(210px, 70vw, 300px);
    border-radius: 22px;
    padding: 7px;
  }

  .about-news-section {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .about-news-track {
    gap: 0;
  }

  .about-news-set {
    gap: 10px;
  }

  .about-news-card {
    flex-basis: clamp(210px, 70vw, 300px);
    border-radius: 22px;
    padding: 7px;
  }

  .about-news-card__image {
    border-radius: 14px;
  }

  .testimonial-card__image {
    border-radius: 14px;
  }

  .video-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .video-testimonials-heading h2 {
    max-width: 20ch;
  }

  .video-testimonial-card {
    border-radius: 24px;
    padding: 8px;
  }

  .video-testimonial-card__media {
    border-radius: 16px;
  }

  .footer-links {
    gap: 10px 14px;
  }
}

@media (max-width: 560px) {
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body.js-ready .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .particle-cluster {
    animation: none !important;
  }

  .scan-stroke {
    color: var(--text-strong);
    -webkit-text-stroke-width: 0;
  }

  .scan-stroke::before {
    content: none;
    animation: none;
  }

  .hero-copy.reveal.is-visible h1,
  .page-hero-copy.reveal.is-visible h1,
  .hero-copy.reveal.is-visible .hero-lead,
  .page-hero-copy.reveal.is-visible .hero-lead {
    animation: none;
  }

  .button-primary .particle-container {
    display: none;
  }

  .button-primary .ink-splash {
    display: none;
  }

  .button-primary:hover .btn-ink-surface,
  .button-primary:focus-visible .btn-ink-surface,
  .button-primary:active .btn-ink-surface {
    transform: none;
    box-shadow: 0 0 15px var(--ink-button-glow);
  }

  .button-primary:hover .btn-text,
  .button-primary:focus-visible .btn-text {
    color: var(--ink-button-text);
  }

  .about-news-track {
    animation: none;
    transform: none;
  }
}
