:root {
  --black: #050505;
  --deep: #071313;
  --petrol: #123c3b;
  --petrol-light: #1f5a56;

  --cream-bg: #eadca8;
  --cream-soft: #f3e9c7;

  --green: #7dbb42;
  --green-bright: #9bd84a;

  --purple-dark: #211126;
  --purple: #3a1f49;
  --purple-light: #5d3473;

  --text-dark: #10100c;
  --text: #f5f0de;
  --muted-dark: rgba(16, 16, 12, 0.68);
  --muted-light: rgba(245, 240, 222, 0.68);

  --line-dark: rgba(16, 16, 12, 0.14);
  --line-light: rgba(245, 240, 222, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream-bg);
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(125, 187, 66, 0.45);
  flex: 0 0 auto;
}

/* HEADER */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 82px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(234, 220, 168, 0.82);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

/* LOGO / SÍMBOLO DO HEADER */

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-symbol-only {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  position: relative;
  display: block;
}

.symbol-square {
  position: absolute;
  inset: 4px;
  border: 2px solid var(--text-dark);
}

.symbol-dot {
  position: absolute;
  right: 9px;
  bottom: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(125, 187, 66, 0.55);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(16, 16, 12, 0.74);
}

.nav a {
  position: relative;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--black);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  width: 34px;
  height: 26px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  margin: 8px 0;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 6vw 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream-bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 6vw 70px;
  height: 1px;
  background: rgba(16, 16, 12, 0.18);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.hero-big-dot {
  justify-self: center;
  width: clamp(82px, 10vw, 150px);
  height: clamp(82px, 10vw, 150px);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 60px rgba(125, 187, 66, 0.42);
}

.hero h1 {
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  max-width: 980px;
  color: var(--text-dark);
}

.hero-stair-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-stair-text .line {
  display: block;
  line-height: 0.88;
  color: var(--text-dark);
}

.hero-stair-text .line-1 {
  margin-left: 0;
}

.hero-stair-text .line-2 {
  margin-left: clamp(32px, 7vw, 120px);
}

.hero-stair-text .line-3 {
  margin-left: clamp(64px, 14vw, 240px);
}

.hero h1 .impact-logo-font {
  color: var(--green) !important;
  font-family: "joschmi", sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.22em;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.impact-logo-img {
  display: block;
  width: clamp(260px, 34vw, 620px);
  height: auto;
}
/* IMPACTO */

.impact-reveal {
  height: 280vh;
  background: var(--black);
}

.impact-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.impact-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, opacity, filter;
}

.impact-image-top {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.impact-image-bottom {
  z-index: 2;
  opacity: 0;
  transform: scale(1.08);
}

.impact-dark {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at center, transparent 18%, rgba(0,0,0,0.28) 58%, rgba(0,0,0,0.82) 100%),
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.42));
  pointer-events: none;
}

.impact-word {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-size: clamp(74px, 15vw, 230px);
  line-height: 0.8;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;

  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 240, 222, 0.72);

  background-image: url("assets/impacto-depois.jpg");
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;

  opacity: 1;
  will-change: transform, opacity, filter;
}

.impact-brand {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  text-align: center;
  will-change: opacity, transform;
  color: var(--cream-soft);
}

.impact-brand .brand-text strong,
.impact-brand .brand-text small {
  color: var(--cream-soft);
}

.impact-brand .symbol-square {
  border-color: var(--cream-soft);
}

.impact-brand-logo {
  justify-content: center;
}

.impact-brand-logo .brand-symbol {
  transform: scale(1.25);
}

.impact-brand-logo .brand-text strong {
  font-size: clamp(44px, 7vw, 92px);
}

.impact-brand-logo .brand-text small {
  font-size: 13px;
}

/* GERAL */

.section {
  padding: 110px 6vw;
  border-top: 1px solid var(--line-dark);
  background: var(--cream-bg);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(16, 16, 12, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 13px;
  margin-bottom: 24px;
}

.section-dot-only {
  margin-bottom: 36px;
}

.section-dot-only .dot {
  width: 14px;
  height: 14px;
}

.section h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.text-block {
  color: var(--muted-dark);
  font-size: 20px;
  line-height: 1.65;
}

.text-block p + p {
  margin-top: 20px;
}

.section-head {
  max-width: 850px;
  margin-bottom: 50px;
}

.section-head p {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 20px;
}

/* ESSÊNCIA / MOLDURA ORLA */

.problem-orla-frame {
  padding: 150px 6vw 180px;
  background: var(--cream-bg);
  border-top: 1px solid var(--line-dark);
}

.problem-frame-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-frame {
  position: relative;
  width: min(64vw, 760px);
  aspect-ratio: 1 / 1;
  border: 16px solid var(--green);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(34px, 5vw, 70px);
  background: transparent;
}

.problem-frame::before,
.problem-frame::after {
  display: none;
}

.problem-frame-inner {
  max-width: 560px;
}

.problem-frame h2 {
  max-width: 560px;
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--text-dark);
  font-weight: 900;
  margin: 0;
}

.problem-frame-dot {
  position: absolute;
  right: 7%;
  bottom: 31%;
  width: clamp(22px, 3vw, 46px);
  height: clamp(22px, 3vw, 46px);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 28px rgba(125, 187, 66, 0.42);
}

.problem-support-text {
  width: min(64vw, 760px);
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.problem-support-text p {
  max-width: 420px;
  text-align: left;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--muted-dark);
  margin: 0;
}

.orla-inline {
  display: inline-block;
  font-family: "joschmi", sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.24em;
  line-height: 0.85;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--text-dark);
  transform: translateY(0.04em);
}

/* fallback caso o HTML antigo ainda esteja ativo */

.problem:not(.problem-orla-frame) {
  padding-top: 120px;
  padding-bottom: 120px;
}

.problem:not(.problem-orla-frame) .split h2 {
  max-width: 760px;
}

/* DIREÇÃO / TIMELINE PRETA */

.services-timeline {
  position: relative;
  padding: 130px 6vw 170px;
  background: var(--black);
  color: var(--cream-soft);
  border-top: 1px solid rgba(245, 240, 222, 0.12);
}

.services-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(125, 187, 66, 0.10), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(18, 60, 59, 0.34), transparent 34%);
  pointer-events: none;
}

.timeline-title {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto 110px;
  text-align: center;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--cream-soft);
}

.timeline-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 70px;
  height: 600px;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: rgba(245, 240, 222, 0.28);
  overflow: hidden;
  border-radius: 999px;
  z-index: 1;
}

.timeline-progress {
  width: 100%;
  height: 0%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(125, 187, 66, 0.45);
  transition: height 0.08s linear;
}

.timeline-item {
  position: relative;
  height: 300px;
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  align-items: center;
}

.timeline-marker {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid rgba(245, 240, 222, 0.62);
  z-index: 3;
  transition: 0.35s ease;
}

.timeline-content {
  max-width: 390px;
  opacity: 0;
  transform: translateY(42px);
  transition: 0.6s ease;
}

.timeline-item.left .timeline-content {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  padding-right: 34px;
}

.timeline-item.right .timeline-content {
  grid-column: 3;
  justify-self: start;
  text-align: left;
  padding-left: 34px;
}

.timeline-content h3 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: var(--cream-soft);
}

.timeline-content p {
  color: rgba(245, 240, 222, 0.68);
  font-size: 18px;
  line-height: 1.55;
}

.timeline-item.active .timeline-content {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.active .timeline-marker {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(125, 187, 66, 0.62);
}

/* SOLUÇÕES / ÓRBITA ORLA */

.offers-orbit-section {
  position: relative;
  padding: 130px 6vw 135px;
  background: var(--cream-bg);
  color: var(--text-dark);
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
}

.offers-orbit-section::before {
  content: "";
  position: absolute;
  right: -18vw;
  top: 14%;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 26, 68, 0.12), transparent 66%);
  pointer-events: none;
}

.offers-orbit-section::after {
  content: "";
  position: absolute;
  left: -20vw;
  bottom: -28vw;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 187, 66, 0.10), transparent 66%);
  pointer-events: none;
}

.offers-orbit-head {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin-bottom: 86px;
}

.offers-orbit-head .section-dot-only {
  margin-bottom: 34px;
}

.offers-orbit-head .section-dot-only .dot {
  width: 14px;
  height: 14px;
}

.offers-orbit-head h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--text-dark);
}

.offers-orbit-head p {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted-dark);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

/* LAYOUT */

.offers-orbit-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) 420px;
  gap: clamp(70px, 8vw, 120px);
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}

/* MAPA ORBITAL */

.orbit-map {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 1.25 / 1;
  min-height: 560px;
  overflow: visible;
}

.orbit-origin {
  position: absolute;
  left: 12%;
  top: 50%;
  z-index: 6;
  width: clamp(34px, 3.5vw, 52px);
  height: clamp(34px, 3.5vw, 52px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 0 14px rgba(125, 187, 66, 0.08),
    0 0 34px rgba(125, 187, 66, 0.38);
}

/* CÍRCULOS ORBITAIS */

.orbit-node {
  position: absolute;
  z-index: 5;
  width: clamp(142px, 13vw, 190px);
  height: clamp(142px, 13vw, 190px);
  border: 1px solid rgba(16, 16, 12, 0.14);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  overflow: hidden;

  background:
    radial-gradient(circle at 34% 28%, rgba(245, 240, 222, 0.72), rgba(245, 240, 222, 0.22) 54%, rgba(234, 220, 168, 0.12) 100%),
    rgba(245, 240, 222, 0.26);

  box-shadow:
    0 24px 70px rgba(16, 16, 12, 0.10),
    inset 0 0 0 1px rgba(245, 240, 222, 0.32);

  backdrop-filter: blur(4px);

  transition:
    transform 0.36s ease,
    box-shadow 0.36s ease,
    border-color 0.36s ease,
    background 0.36s ease;
}

/* remove riscos internos antigos */
.orbit-node::before,
.orbit-node::after {
  display: none;
}

.orbit-node span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 18px;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--green);
  opacity: 1;
  transform: translateY(0);
}

/* Disposição sem linhas: constelação mais limpa */
.orbit-node-diagnostic {
  left: 42%;
  top: 16%;
  transform: translate(-50%, -50%);
}

.orbit-node-presence {
  left: 84%;
  top: 42%;
  transform: translate(-50%, -50%);
}

.orbit-node-movement {
  left: 56%;
  top: 78%;
  transform: translate(-50%, -50%);
}

.orbit-node:hover,
.orbit-node.hover-active {
  border-color: rgba(125, 187, 66, 0.58);
  background:
    radial-gradient(circle at 34% 28%, rgba(245, 240, 222, 0.86), rgba(125, 187, 66, 0.16) 58%, rgba(245, 240, 222, 0.18) 100%),
    rgba(245, 240, 222, 0.32);

  box-shadow:
    0 34px 90px rgba(16, 16, 12, 0.16),
    0 0 0 1px rgba(125, 187, 66, 0.38),
    0 0 34px rgba(125, 187, 66, 0.20),
    inset 0 0 0 1px rgba(245, 240, 222, 0.38);
}

.orbit-node-diagnostic:hover,
.orbit-node-diagnostic.hover-active,
.orbit-node-presence:hover,
.orbit-node-presence.hover-active,
.orbit-node-movement:hover,
.orbit-node-movement.hover-active {
  transform: translate(-50%, -50%) scale(1.08);
}

/* CARD LATERAL / FILME FOTOGRÁFICO */

.orbit-detail {
  position: relative;
  z-index: 8;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-self: end;
  width: 420px;
}

/* garante que o card antigo com ponto/texto não apareça */
.orbit-detail-empty {
  display: none !important;
}

.orbit-detail-card {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  min-height: 540px;
  padding: 54px 56px 46px;
  border-radius: 32px;
  color: var(--cream-soft);

  background:
    radial-gradient(circle at 18% 0%, rgba(125, 187, 66, 0.12), transparent 34%),
    linear-gradient(145deg, #060606 0%, #101410 52%, #050505 100%);

  box-shadow:
    0 36px 96px rgba(16, 16, 12, 0.30),
    inset 0 0 0 1px rgba(245, 240, 222, 0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(24px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.34s ease,
    transform 0.34s ease,
    visibility 0.34s ease;
}

/* perfurações laterais mais reais, sem transformar o card em retângulo seco */
.orbit-detail-card::before,
.orbit-detail-card::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  width: 11px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(245, 240, 222, 0.34) 0,
      rgba(245, 240, 222, 0.34) 10px,
      transparent 10px,
      transparent 28px
    );
  opacity: 0.58;
  pointer-events: none;
}

.orbit-detail-card::before {
  left: 18px;
}

.orbit-detail-card::after {
  right: 18px;
}

.orbit-detail-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0) scale(1);
  pointer-events: auto;
}

.orbit-detail-card h3 {
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--cream-soft);
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245, 240, 222, 0.18);
}

.detail-subtitle {
  color: var(--green-bright);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.24;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245, 240, 222, 0.14);
}

.orbit-detail-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  color: rgba(245, 240, 222, 0.70);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 240, 222, 0.14);
}

.orbit-detail-card li::before {
  content: "●";
  color: var(--green);
  margin-right: 10px;
  font-size: 9px;
}

.detail-price {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.detail-price small {
  color: rgba(245, 240, 222, 0.52);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 900;
}

.detail-price strong {
  color: var(--cream-soft);
  font-size: 19px;
  letter-spacing: -0.02em;
}
.orbit-note {
  max-width: 1220px;
  margin: 76px auto 0;
  text-align: center;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* BASTIDORES */

.method-scenes {
  position: relative;
  padding: 130px 6vw 150px;
  background: var(--black);
  color: var(--cream-soft);
  overflow: hidden;
}

.method-dot-only {
  margin-bottom: 42px;
}

.method-dot-only .dot {
  width: 14px;
  height: 14px;
}

.method-scenes-head {
  max-width: 1050px;
  margin-bottom: 80px;
}

.method-scenes-head h2 {
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--cream-soft);
}

.method-scenes-head h2 span {
  display: block;
  margin-top: 18px;
  max-width: 840px;
  color: var(--green-bright);
  font-size: 0.46em;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.curve-method {
  position: relative;
  max-width: 1180px;
  height: 900px;
  margin: 0 auto;
}

.curve-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

.curve-base,
.curve-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.curve-base {
  stroke: rgba(245, 240, 222, 0.16);
  stroke-width: 5;
}

.curve-progress {
  stroke: var(--green-bright);
  stroke-width: 6;
  filter: drop-shadow(0 0 16px rgba(125, 187, 66, 0.45));
}

.curve-dot {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid rgba(245, 240, 222, 0.5);
  z-index: 3;
  transition: 0.35s ease;
}

.curve-dot.active {
  background: var(--green-bright);
  border-color: var(--green-bright);
  box-shadow: 0 0 24px rgba(125, 187, 66, 0.62);
}

.curve-dot-1 {
  left: 9.5%;
  top: 9%;
}

.curve-dot-2 {
  left: 46.5%;
  top: 36%;
}

.curve-dot-3 {
  left: 71%;
  top: 48%;
}

.curve-dot-4 {
  left: 14%;
  top: 92%;
}

.curve-scene {
  position: absolute;
  width: min(340px, 30vw);
  z-index: 4;
  opacity: 0;
  transform: translateY(34px);
  transition: 0.6s ease;
}

.curve-scene.active {
  opacity: 1;
  transform: translateY(0);
}

.curve-scene h3 {
  font-size: clamp(30px, 3.5vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}

.curve-scene p {
  color: rgba(245, 240, 222, 0.68);
  font-size: 17px;
  line-height: 1.55;
}

.curve-scene-1 {
  left: 18%;
  top: 0;
}

.curve-scene-2 {
  left: 35%;
  top: 20%;
  text-align: right;
}

.curve-scene-3 {
  right: 0%;
  top: 53%;
  text-align: left;
}

.curve-scene-4 {
  left: 0%;
  top: 94%;
  bottom: 0;
}

/* PARA QUEM É */

.audience-reveal {
  position: relative;
  padding: 130px 6vw 120px;
  background: var(--cream-bg);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.audience-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.audience-question {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  color: var(--text-dark);
  opacity: 0;
  transform: translateY(40px);
  transition: 0.75s ease;
}

.question-line {
  display: block;
}

.question-para {
  margin-left: 0;
}

.question-quem {
  margin-left: clamp(54px, 9vw, 150px);
  color: var(--green);
  font-size: 1.18em;
  font-family: "joschmi", sans-serif;
  font-weight: 400;
}

.question-e {
  margin-left: 0;
}

.audience-answer {
  max-width: 900px;
  margin: 58px 0 0;
  color: var(--muted-dark);
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.75s ease;
}

.audience-tags {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(7, auto);
  justify-content: center;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(42px);
  transition: 0.8s ease;
}

.audience-tags span {
  padding: 16px 20px;
  border: 1px solid var(--line-dark);
  background: rgba(245, 240, 222, 0.24);
  color: rgba(16, 16, 12, 0.72);
  font-weight: 700;
  white-space: nowrap;
}

.audience-tags .main-company {
  padding: 24px 34px;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--green);
  border: 2px solid var(--green);
  background: rgba(125, 187, 66, 0.08);
  animation: companyPulse 2.4s ease-in-out infinite;
}

@keyframes companyPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(125, 187, 66, 0);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 0 26px rgba(125, 187, 66, 0.28);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(125, 187, 66, 0);
  }
}

.audience-reveal.question-active .audience-question {
  opacity: 1;
  transform: translateY(0);
}

.audience-reveal.answer-active .audience-answer {
  opacity: 1;
  transform: translateY(0);
}

.audience-reveal.tags-active .audience-tags {
  opacity: 1;
  transform: translateY(0);
}

/* CONTATO */

.final-cta {
  margin: 80px 6vw 80px;
  padding: 70px;
  border: 2px solid var(--text-dark);
  background: rgba(245, 240, 222, 0.24);
  border-radius: 28px;
}

.final-cta .contact-content {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 360px !important;
  gap: 60px !important;
  align-items: end !important;
  width: 100% !important;
}

.final-cta .contact-main {
  max-width: 820px;
}

.contact-text {
  max-width: 760px;
  color: var(--muted-dark);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.whatsapp-button {
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  background: var(--green);
  color: var(--text-dark);
  font-weight: 900;
  border: 2px solid var(--green);
  border-radius: 999px !important;
  overflow: hidden;
  transition: 0.25s ease;
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(125, 187, 66, 0.34);
}

.whatsapp-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon svg {
  width: 22px !important;
  height: 22px !important;
  display: block;
  fill: currentColor !important;
  stroke: none !important;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(125, 187, 66, 0.32);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(125, 187, 66, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(125, 187, 66, 0);
  }
}

.final-cta .contact-side {
  display: grid !important;
  gap: 16px !important;
  justify-self: end !important;
  align-self: end !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  width: 360px !important;
  max-width: 360px !important;
}

.final-cta .contact-side-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100% !important;
  padding: 18px 20px;
  border: 1px solid rgba(16, 16, 12, 0.18);
  border-radius: 22px;
  background: rgba(245, 240, 222, 0.32);
  color: rgba(16, 16, 12, 0.78);
  font-weight: 800;
  transition: 0.25s ease;
}

.final-cta .contact-side-link:hover {
  transform: translateX(4px);
  border-color: var(--green);
  color: var(--text-dark);
  background: rgba(125, 187, 66, 0.08);
}

.final-cta .contact-side-link small {
  display: block;
  margin-bottom: 4px;
  color: rgba(16, 16, 12, 0.52);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-cta .side-icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  border-radius: 50% !important;
  overflow: hidden;
  background: var(--green) !important;
  color: var(--text-dark) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.final-cta .side-icon svg {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.final-cta .side-icon svg rect,
.final-cta .side-icon svg circle,
.final-cta .side-icon svg path {
  fill: none !important;
  stroke: currentColor !important;
}

/* FOOTER */

.footer {
  padding: 42px 6vw;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-dark);
  background: var(--cream-bg);
}

.footer-brand .brand-symbol {
  transform: scale(0.8);
  transform-origin: left center;

  .footer-logo-img {
  display: block;
  width: 104px;
  height: auto;
}
}

.footer p span {
  color: var(--green);
}

/* RESPONSIVO */

@media (max-width: 980px) {
  .header {
    height: 76px;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav.active {
    display: grid;
    gap: 18px;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 24px 6vw;
    background: rgba(234, 220, 168, 0.96);
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-big-dot {
    justify-self: start;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .problem-orla-frame {
    padding-top: 110px;
    padding-bottom: 120px;
  }

  .problem-frame {
    width: min(86vw, 620px);
    border-width: 12px;
    padding: 38px;
  }

  .problem-frame h2 {
    font-size: clamp(30px, 6vw, 48px);
  }

  .problem-frame-dot {
    right: 7%;
    bottom: 31%;
  }

  .problem-support-text {
    width: min(86vw, 620px);
    margin-top: 24px;
  }

  .problem-support-text p {
    max-width: 100%;
  }

  .timeline-line {
    left: 21px;
    top: 65px;
    height: calc(100% - 130px);
    width: 5px;
  }

  .timeline-item {
    grid-template-columns: 54px 1fr;
    height: 220px;
    min-height: auto;
    padding: 0;
  }

  .timeline-marker {
    grid-column: 1;
    width: 42px;
    height: 42px;
  }

  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    grid-column: 2;
    justify-self: start;
    text-align: left;
    padding-left: 12px;
    padding-right: 0;
  }

  .offers-orbit-section {
    padding: 100px 6vw 120px;
  }

  .offers-orbit-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) 420px;
  gap: clamp(70px, 8vw, 120px);
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}

  .orbit-map {
    width: 100%;
    max-width: 760px;
    min-height: 520px;
    margin: 0 auto;
  }

  .orbit-detail {
  min-height: 560px;
  width: 100%;
  max-width: 420px;
  justify-self: start;
}

  .curve-method {
    height: auto;
    display: grid;
    gap: 48px;
  }

  .curve-svg,
  .curve-dot {
    display: none;
  }

  .curve-scene {
    position: relative;
    width: 100%;
    inset: auto;
    opacity: 1;
    transform: none;
  }

  .curve-scene.active {
    opacity: 1;
    transform: none;
  }

  .audience-tags {
    grid-template-columns: repeat(2, auto);
  }

  .final-cta .contact-content {
    grid-template-columns: 1fr !important;
  }

  .final-cta .contact-side {
    justify-self: start !important;
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 480px !important;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .brand-text strong {
    font-size: 22px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 130px 22px 90px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .hero-big-dot {
    width: 74px;
    height: 74px;
  }

  .impact-reveal {
    height: 240vh;
  }

  .impact-word {
    font-size: clamp(64px, 18vw, 110px);
  }

  .impact-brand {
    width: 90%;
  }

  .impact-brand-logo {
    transform: scale(0.86);
  }

  .section,
  .services-timeline,
  .method-scenes,
  .audience-reveal {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .problem-orla-frame {
    padding: 90px 22px 100px;
  }

  .problem-frame {
    width: 100%;
    border-width: 10px;
    padding: 26px;
  }

  .problem-frame h2 {
    font-size: clamp(26px, 8vw, 40px);
    line-height: 0.98;
  }

  .problem-frame-dot {
    width: 24px;
    height: 24px;
    right: 8%;
    bottom: 32%;
  }

  .problem-support-text {
    width: 100%;
    margin-top: 22px;
  }

  .problem-support-text p {
    font-size: 17px;
    line-height: 1.42;
  }

  .services-timeline {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .timeline-title {
    text-align: left;
  }

  .offers-orbit-section {
    padding: 90px 22px 100px;
  }

  .orbit-map {
    display: grid;
    gap: 16px;
    min-height: auto;
    aspect-ratio: auto;
    max-width: none;
  }

  .orbit-center,
  .orbit-lines {
    display: none;
  }

 .orbit-node,
.orbit-node-diagnostic,
.orbit-node-presence,
.orbit-node-movement {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  width: 100%;
  height: auto;
  min-height: 92px;
  border-radius: 28px;
}

.orbit-node:hover,
.orbit-node.hover-active,
.orbit-node-diagnostic:hover,
.orbit-node-diagnostic.hover-active,
.orbit-node-presence:hover,
.orbit-node-presence.hover-active,
.orbit-node-movement:hover,
.orbit-node-movement.hover-active {
  transform: none;
}

  .orbit-node span {
    opacity: 1;
    transform: none;
    font-size: 26px;
  }

  .orbit-node:hover,
  .orbit-node.hover-active,
  .orbit-node-diagnostic:hover,
  .orbit-node-diagnostic.hover-active,
  .orbit-node-presence:hover,
  .orbit-node-presence.hover-active,
  .orbit-node-movement:hover,
  .orbit-node-movement.hover-active {
    transform: none;
  }

  .orbit-detail {
    min-height: 520px;
    width: 100%;
    max-width: none;
  }

  .orbit-detail-card h3 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .method-scenes {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .method-scenes-head h2 span {
    font-size: 0.5em;
  }

  .audience-reveal {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .audience-tags {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .audience-tags span {
    text-align: center;
  }

  .audience-tags .main-company {
    width: 100%;
  }

  .final-cta {
    margin: 60px 22px 60px;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .contact-text {
    font-size: clamp(24px, 8vw, 38px);
  }

  .whatsapp-button {
    width: 100%;
  }

  .final-cta .contact-side {
    max-width: 100% !important;
  }

  .final-cta .contact-side-link {
    align-items: flex-start;
  }
}
.orbit-detail {
  min-height: 560px;
  width: 100%;
  max-width: none;
}

.orbit-detail-card {
  min-height: 520px;
  padding: 46px 42px 40px;
}