* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #080808;
  --text: #f7f1ea;
  --muted: #c9bfb5;
  --orange: #f06a1a;
  --orange-soft: #ff8a3d;
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(255, 255, 255, 0.06);
  --max-width: 1180px;
  --hero-glow-core: rgba(255, 111, 0, 0.92);
  --hero-glow-mid: rgba(255, 111, 0, 0.62);
  --button-glow: rgba(255, 128, 26, 0.58);
}

@property --hero-glow-core {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(255, 111, 0, 0.92);
}

@property --hero-glow-mid {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(255, 111, 0, 0.62);
}

@property --button-glow {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(255, 128, 26, 0.58);
}

body {
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

main {
  width: 100%;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, #101010 0%, #050505 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.62s ease,
    visibility 0.62s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-grid {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(rgba(255, 106, 0, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.09) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.28;
  transform: rotate(34deg);
  animation: loaderGridMove 5s linear infinite;
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.6) 46%, transparent 76%);
}

.loader-orb {
  display: none;
}

.loader-content {
  position: relative;
  z-index: 1;
  width: min(82vw, 420px);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.loader-brand {
  color: var(--orange);
  font-size: clamp(2.15rem, 7vw, 3.85rem);
  font-weight: 600;
  letter-spacing: -0.12em;
  line-height: 0.82;
  text-shadow: none;
}

.loader-line {
  width: min(72vw, 300px);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.loader-line::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  animation: loaderProgress 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.72rem, 2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px clamp(20px, 6vw, 80px) 150px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 88%, var(--hero-glow-core) 0%, var(--hero-glow-mid) 18%, transparent 46%),
    linear-gradient(180deg, #151515 0%, #171717 52%, #301306 100%);
  animation: heroGlowShift 7s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 111, 0, 0.1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 111, 0, 0.1) 2px, transparent 2px);
  background-size: 81px 55px;
  opacity: 0.72;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.92) 66%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -205px;
  z-index: 1;
  width: 122vw;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: #030303;
  box-shadow: 0 -34px 74px rgba(255, 106, 0, 0.42);
}

.navbar {
  width: min(calc(100% - 40px), 774px);
  position: absolute;
  top: 43px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 72px 0 33px;
  border-radius: 999px;
  background: rgba(91, 91, 91, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.brand {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.11em;
  line-height: 1;
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 46px);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange-soft);
}

.hero-copy {
  width: min(100%, var(--max-width));
  position: relative;
  z-index: 2;
  margin: 92px auto 0;
  text-align: center;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.2rem, 4.35vw, 3.8rem);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  position: relative;
  width: fit-content;
  margin: -8px auto -6px;
  font-family: "Allura", cursive;
  font-size: 0.82em;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.34);
}

.hero h1 em::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 50%;
  height: 58%;
  transform: translateY(-42%) rotate(-9deg);
  border: 1.5px solid var(--orange);
  border-radius: 50%;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.65));
}

.business-line {
  padding-left: 0;
}

.hero-button,
.intro-button,
.cases-button,
.final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 26px;
  padding: 0 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, #11181c, #080a0b);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.52);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-button:hover,
.intro-button:hover,
.cases-button:hover,
.final-button:hover {
  transform: translateY(-2px);
  border-color: var(--orange-soft);
}

.hero-description {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  width: min(92%, 520px);
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.55vw, 1.16rem);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.intro-button,
.cases-button,
.final-button {
  min-height: 48px;
  padding: 0 30px;
  border: none;
  background: var(--orange);
  color: #130904;
  box-shadow: none;
}

.intro-button:hover,
.cases-button:hover,
.final-button:hover {
  background: var(--orange-soft);
}

.intro-section,
.cases-section,
.orange-fade-section,
.faq-section {
  padding: clamp(72px, 11vw, 140px) clamp(20px, 6vw, 80px);
}

.intro-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(300px, 470px);
  gap: clamp(90px, 16vw, 230px);
  align-items: start;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(28px, 5vw, 64px) clamp(54px, 9vw, 120px) 0;
  overflow: hidden;
  background: #020202;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: -18% -10% -12% 35%;
  background:
    linear-gradient(rgba(255, 82, 0, 0.16) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 82, 0, 0.16) 2px, transparent 2px);
  background-size: 112px 112px;
  opacity: 0.62;
  transform: rotate(39deg);
  transform-origin: center;
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.78) 42%, transparent 78%);
}

.intro-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #020202 18%);
  pointer-events: none;
}

.intro-section > * {
  position: relative;
  z-index: 1;
}

.intro-section h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 430px;
  margin-left: clamp(42px, 8vw, 118px);
  font-size: clamp(1.55rem, 2.45vw, 2.18rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.inline-spark {
  display: inline-block;
  position: relative;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.22em;
  vertical-align: middle;
  background: var(--orange);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.65));
}

.inline-spark::before,
.inline-spark::after {
  content: "";
  position: absolute;
  background: var(--orange);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.inline-spark::before {
  right: -0.34em;
  top: -0.2em;
  width: 0.24em;
  height: 0.24em;
}

.inline-spark::after {
  display: none;
}

.intro-button {
  width: fit-content;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  min-height: 34px;
  margin-top: 255px;
  margin-left: clamp(42px, 8vw, 118px);
  padding: 0 22px;
  border: 1px solid var(--orange);
  background: linear-gradient(180deg, #11181c, #080a0b);
  color: #fff;
  box-shadow:
    0 0 22px rgba(255, 102, 0, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.intro-button:hover {
  border-color: var(--orange-soft);
}

.intro-timeline {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  justify-self: end;
  width: min(100%, 470px);
  gap: 24px;
  margin-top: 12px;
  align-self: start;
  border-left: 3px solid var(--orange);
  padding-left: 30px;
}

.timeline-item {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.45vw, 1.18rem);
  font-weight: 600;
  line-height: 1.18;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0.08em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.12);
}

.perspective-showcase {
  position: relative;
  height: 300vh;
  background: #020202;
}

.showcase-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vh, 18px);
  overflow: hidden;
  perspective: 1200px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(240, 106, 26, 0.12), transparent 46%),
    #020202;
}

/* Título 'CASES' posicionado próximo aos cards */
.cases-title {
  position: relative;
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin: 0;
  padding: 9px 28px 11px;
  border-radius: 999px;
  background: rgba(2, 2, 2, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 34px rgba(0, 0, 0, 0.65),
    0 0 28px rgba(240, 106, 26, 0.18);
  backdrop-filter: blur(8px);
  z-index: 4;
  pointer-events: none;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.32),
    0 0 18px rgba(240, 106, 26, 0.24);
}

@media (max-width: 480px) {
  .cases-title {
    font-size: 2rem;
  }
}

.showcase-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 200vw;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: color 0.3s ease;
}

.showcase-marquee {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: showcaseMarquee 30s linear infinite;
  color: rgba(255, 255, 255, 0.045);
  font-size: max(4rem, 7.5vw);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  text-transform: uppercase;
  mix-blend-mode: screen;
}

.showcase-marquee span {
  padding-right: 0.35em;
}

.showcase-stage {
  position: relative;
  z-index: 2;
  width: min(68vw, 760px);
  aspect-ratio: 16 / 9;
  transform-style: preserve-3d;
  transition: transform 0.12s linear;
}

.showcase-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #0a0a0a;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.55);
  backface-visibility: hidden;
  transform: rotateX(calc(var(--card-index) * 180deg));
}

.showcase-shot {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(135deg, #191919, #070707);
}

.showcase-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.showcase-shot::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.case-shot-1 {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 72% 26%, rgba(240, 106, 26, 0.58), transparent 24%),
    linear-gradient(135deg, #191919, #050505);
}

.case-shot-2 {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 70% 28%, rgba(110, 210, 185, 0.5), transparent 24%),
    linear-gradient(135deg, #111b18, #050706);
}

.case-shot-3 {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 72% 30%, rgba(232, 156, 190, 0.5), transparent 24%),
    linear-gradient(135deg, #1b1117, #070505);
}

.shot-nav,
.shot-hero,
.shot-lines {
  position: absolute;
  left: 12%;
  right: 12%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.shot-nav {
  top: 13%;
  height: 8%;
}

.shot-hero {
  top: 29%;
  width: 44%;
  height: 16%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.shot-lines {
  top: 52%;
  width: 34%;
  height: 7%;
  box-shadow:
    0 36px 0 rgba(255, 255, 255, 0.1),
    0 72px 0 rgba(255, 255, 255, 0.08);
}

.showcase-card-content {
  position: absolute;
  left: clamp(24px, 5vw, 48px);
  right: clamp(24px, 5vw, 48px);
  bottom: clamp(18px, 3.2vw, 32px);
  display: grid;
  gap: 10px;
}

.showcase-card-content h3 {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-tags span {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 600;
}

.showcase-link {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: linear-gradient(180deg, #11181c, #080a0b);
  color: #fff;
  font-size: clamp(0.82rem, 1.15vw, 0.96rem);
  font-weight: 700;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.24),
    0 0 22px rgba(240, 106, 26, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.showcase-link:hover {
  transform: translateY(-2px);
  border-color: var(--orange-soft);
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.3),
    0 0 28px rgba(240, 106, 26, 0.36);
}

.story-section {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 38px;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 6vw, 80px) clamp(44px, 6vw, 72px);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(240, 106, 26, 0.12), transparent 46%),
    #020202;
}

.story-section h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffd3a6 0%, #ff7a21 48%, #c84200 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.2rem, 4.8vw, 4.55rem);
  line-height: 1.16;
  letter-spacing: -0.05em;
  text-shadow: 0 0 18px rgba(240, 106, 26, 0.18);
}

.story-section em {
  position: relative;
  display: inline-block;
  font-family: "Allura", cursive;
  font-size: 1.12em;
  font-weight: 400;
  background: none;
  color: #fff;
  letter-spacing: 0;
}

.story-section em::before {
  content: "";
  position: absolute;
  left: -70px;
  right: -82px;
  top: 49%;
  height: 102px;
  transform: translateY(-50%) rotate(-11deg);
  border: 1.5px solid rgba(255, 122, 32, 0.78);
  border-radius: 50%;
  pointer-events: none;
}

.story-button {
  position: relative;
  z-index: 1;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: linear-gradient(180deg, #11181c, #080a0b);
  color: #fff;
  font-weight: 700;
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.28),
    0 0 30px rgba(255, 177, 74, 0.55);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.story-button:hover {
  transform: translateY(-2px);
  border-color: var(--orange-soft);
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.32),
    0 0 36px rgba(255, 177, 74, 0.68);
}

.hero-button,
.intro-button,
.showcase-link,
.story-button,
.cases-button,
.final-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-button::before,
.intro-button::before,
.showcase-link::before,
.story-button::before,
.cases-button::before,
.final-button::before {
  display: none;
}

.hero-button,
.intro-button,
.showcase-link,
.story-button,
.cases-button,
.final-button {
  z-index: 1;
}

.hero-button:hover::before,
.intro-button:hover::before,
.showcase-link:hover::before,
.story-button:hover::before,
.cases-button:hover::before,
.final-button:hover::before {
  transform: none;
}

.hero-button:hover,
.intro-button:hover,
.showcase-link:hover,
.story-button:hover,
.cases-button:hover,
.final-button:hover {
  color: #120804;
}

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

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

@keyframes heroGlowShift {
  0%,
  100% {
    --hero-glow-core: rgba(255, 128, 26, 0.95);
    --hero-glow-mid: rgba(255, 104, 0, 0.62);
  }

  33% {
    --hero-glow-core: rgba(255, 211, 72, 0.95);
    --hero-glow-mid: rgba(255, 174, 28, 0.62);
  }

  66% {
    --hero-glow-core: rgba(191, 67, 0, 0.92);
    --hero-glow-mid: rgba(117, 38, 0, 0.64);
  }
}

.cases-section {
  position: relative;
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: clamp(28px, 5vw, 56px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 105%, rgba(255, 102, 0, 0.96) 0%, rgba(255, 102, 0, 0.82) 22%, rgba(255, 102, 0, 0.4) 48%, transparent 72%),
    linear-gradient(180deg, #020202 0%, #020202 58%, #ff5f00 100%);
}

.cases-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: min(82vw, 670px);
  height: 15px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--orange);
}

.cases-section > * {
  position: relative;
  z-index: 1;
}

/* Mobile adjustments: empurra a timeline mais para baixo em telas pequenas */
@media (max-width: 900px) {
  .intro-section {
    grid-template-columns: 1fr;
    padding: clamp(20px, 6vw, 40px);
    gap: 28px;
  }

  .intro-button {
    margin-top: 20px;
    margin-left: 0;
    justify-self: center;
  }

  .intro-timeline {
    grid-column: 1;
    width: 100%;
    justify-self: start;
    margin-top: 48px; /* espaçamento extra quando a coluna fica única */
    padding-left: 24px;
  }
}

@media (max-width: 480px) {
  /* No mobile pequeno, empurra ainda mais a timeline para baixo */
  .intro-timeline {
    margin-top: 160px;
    padding-left: 20px;
  }

  .timeline-item::before {
    left: -32px; /* ajusta o ponto circular para telas pequenas */
  }
}

.cases-kicker {
  width: min(82vw, 670px);
  height: 15px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.58rem, 1.2vw, 0.84rem);
  font-weight: 700;
  line-height: 1;
}

.cases-section h2,
.faq-section h2 {
  margin-top: 4px;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 1;
  letter-spacing: 0.06em;
}

.cases-section h2 {
  margin-top: 0;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  letter-spacing: -0.04em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.cases-carousel {
  width: min(100%, 980px);
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
}

.cases-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  display: grid;
  gap: 0;
  position: relative;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.case-media {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 5px;
  border: 1px solid rgba(255, 102, 0, 0.72);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.78rem, 1.2vw, 0.98rem);
  font-weight: 700;
  line-height: 1.16;
  background: #020202;
}

.case1 {
  background: #020202;
}

.case2 {
  background: #020202;
}

.case3 {
  background: #020202;
}

.case-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  font-weight: 700;
  font-size: clamp(0.74rem, 1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.92);
}

.cases-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 102, 0, 0.8);
  border-radius: 50%;
  background: linear-gradient(180deg, #10171a, #070809);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(255, 102, 0, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cases-arrow:hover {
  transform: translateY(-2px);
  border-color: var(--orange-soft);
  box-shadow: 0 0 22px rgba(255, 102, 0, 0.48);
}

.cases-button {
  min-height: 36px;
  margin-top: 36px;
  padding: 0 36px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: linear-gradient(180deg, #10171a, #070809);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}

.cases-button:hover {
  border-color: var(--orange-soft);
}

.is-changing-left,
.is-changing-right {
  opacity: 0;
}

.is-changing-left {
  transform: translateX(-18px);
}

.is-changing-right {
  transform: translateX(18px);
}

.is-entering-left,
.is-entering-right {
  animation: enterCase 0.18s ease both;
}

.orange-fade-section {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding-top: clamp(72px, 8vw, 96px);
  padding-bottom: clamp(86px, 9vw, 118px);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 122, 24, 0.34) 0%, rgba(255, 102, 0, 0.18) 42%, rgba(255, 102, 0, 0) 72%),
    linear-gradient(180deg, #ff5f00 0%, #f35a00 22%, #a83200 48%, #421300 68%, #090302 86%, #020202 100%);
}

.orange-fade-section > * {
  position: relative;
  z-index: 1;
}

.orange-fade-section h2 {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.9vw, 3.35rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.24);
}

.orange-fade-section em {
  position: relative;
  display: inline-block;
  font-family: "Allura", cursive;
  font-size: 1.18em;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
}

.orange-fade-section em::before {
  content: "";
  position: absolute;
  left: -46px;
  right: -58px;
  top: 48%;
  height: 72px;
  transform: translateY(-50%) rotate(-11deg);
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  pointer-events: none;
}

.final-button {
  min-height: 34px;
  margin-top: 0;
  padding: 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: linear-gradient(180deg, #10171a, #070809);
  color: #fff;
  box-shadow:
    0 0 26px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(255, 177, 74, 0.58);
}

.final-button:hover {
  border-color: var(--orange-soft);
}

.faq-section {
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(18px, 3.5vw, 34px);
  padding-bottom: clamp(88px, 10vw, 124px);
  background: #020202;
}

.faq-section h2 {
  text-align: center;
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  letter-spacing: -0.02em;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.22);
}

.faq-list {
  width: min(64vw, 560px);
  margin: 30px auto 0;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: none;
  border-radius: 999px;
  background: var(--orange);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 700;
  text-align: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-35%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #111;
}

.intro-section {
  grid-template-columns: minmax(300px, 430px) minmax(360px, 500px);
  grid-template-rows: auto auto;
  column-gap: clamp(56px, 12vw, 170px);
  row-gap: 22px;
  align-items: start;
  justify-content: center;
  padding: clamp(44px, 6vw, 72px) clamp(42px, 8vw, 110px) clamp(42px, 6vw, 72px);
}

.intro-section h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 430px;
  margin-left: clamp(36px, 6vw, 92px);
  font-size: clamp(1.72rem, 2.55vw, 2.22rem);
  line-height: 1.32;
}

.intro-button {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 0;
  margin-left: clamp(36px, 6vw, 92px);
}

.intro-timeline {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: start;
  margin-top: 0;
}

@media (max-width: 980px) {
  .intro-section {
    grid-template-columns: minmax(230px, 320px) minmax(320px, 460px);
    column-gap: clamp(34px, 8vw, 80px);
    padding-inline: clamp(28px, 6vw, 64px);
  }

  .intro-section h2 {
    font-size: clamp(1.45rem, 3vw, 1.9rem);
  }

  .timeline-item {
    font-size: clamp(0.86rem, 1.8vw, 1.02rem);
  }
}

@media (max-width: 760px) {
  .intro-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 28px;
  }

  .intro-section h2,
  .intro-button,
  .intro-timeline {
    grid-column: 1;
    grid-row: auto;
  }

  .intro-timeline {
    align-self: start;
    width: 100%;
  }
}

.site-footer {
  background: var(--orange);
  color: #fff;
}

.footer-content {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 30px;
  padding: clamp(76px, 10vw, 120px) 20px;
}

.footer-logo {
  color: #050505;
  font-size: clamp(5rem, 13vw, 8.6rem);
  font-weight: 600;
  letter-spacing: -0.12em;
  line-height: 0.8;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-action {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  overflow: hidden;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition:
    width 0.32s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.footer-action svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-action span {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    max-width 0.28s ease,
    opacity 0.18s ease;
}

.footer-action:hover {
  width: 150px;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.footer-action:hover span {
  max-width: 92px;
  opacity: 1;
}

.footer-action-contact:hover {
  color: #128c3a;
}

.footer-action-instagram:hover {
  color: #e1306c;
}

.footer-bottom {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px clamp(24px, 5vw, 58px);
  background: var(--orange);
  color: #050505;
  font-size: clamp(0.78rem, 1.3vw, 0.98rem);
  font-weight: 700;
}

@keyframes enterCase {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .navbar {
    width: min(calc(100% - 28px), 680px);
    position: absolute;
    top: 24px;
    transform: translateX(-50%);
    padding: 0 28px;
    margin-bottom: 0;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.68rem;
  }

  .hero {
    justify-content: center;
    padding-top: 110px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 0;
  }

  .intro-button,
  .intro-timeline {
    grid-column: auto;
    grid-row: auto;
  }

  .intro-button {
    grid-row: auto;
    margin-top: 0;
    margin-left: 0;
  }

  .intro-timeline {
    margin-top: 8px;
    justify-self: start;
    width: 100%;
  }

  .intro-section h2 {
    grid-row: auto;
    margin-left: 0;
  }

  .cases-carousel {
    width: min(100%, 620px);
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .cases-arrow {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .cases-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .perspective-showcase {
    height: 300vh;
  }

  .showcase-stage {
    width: min(76vw, 560px);
    aspect-ratio: 4 / 3;
  }

  .showcase-card {
    border-radius: 22px;
  }

  .story-section {
    min-height: 500px;
  }

  .story-section em::before {
    left: -44px;
    right: -54px;
    height: 78px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 92vh;
    padding-bottom: 138px;
  }

  .navbar {
    min-height: 50px;
    align-items: center;
    padding: 0 18px;
  }

  .nav-links {
    gap: 9px;
    font-size: 0.58rem;
  }

  .brand {
    font-size: 1.9rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero h1 em::after {
    right: -34px;
    width: 18px;
    height: 18px;
  }

  .hero-description br,
  .timeline-item br {
    display: none;
  }

  .case-media {
    min-height: 190px;
  }

  .cases-track {
    grid-template-columns: 1fr;
  }

  .faq-list {
    width: min(100%, 420px);
  }

  .showcase-marquee {
    font-size: 4rem;
  }

  .showcase-stage {
    width: 76vw;
    aspect-ratio: 3 / 4;
  }

  .showcase-card-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .showcase-card-content h3 {
    font-size: 1.65rem;
  }

  .story-section {
    min-height: 440px;
    padding-top: 76px;
    padding-bottom: 110px;
  }

  .story-section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .story-section em::before {
    left: -30px;
    right: -36px;
    height: 58px;
  }

  .footer-content {
    min-height: 300px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 8px 16px;
    text-align: center;
  }
}

.hero-button,
.intro-button,
.showcase-link,
.story-button,
.cases-button,
.final-button {
  --button-base-bg: linear-gradient(180deg, #11181c, #080a0b);
  background:
    linear-gradient(90deg, var(--orange), var(--orange-soft)) left center / 0% 100% no-repeat,
    var(--button-base-bg);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-size 0.32s ease,
    color 0.2s ease;
  animation: buttonGlowShift 7s ease-in-out infinite;
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.22),
    0 0 30px var(--button-glow);
}

.hero-button:hover,
.intro-button:hover,
.showcase-link:hover,
.story-button:hover,
.cases-button:hover,
.final-button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #120804;
  box-shadow:
    0 0 26px rgba(255, 255, 255, 0.3),
    0 0 38px var(--button-glow);
}

@keyframes buttonGlowShift {
  0%,
  100% {
    --button-glow: rgba(255, 128, 26, 0.58);
  }

  33% {
    --button-glow: rgba(255, 211, 72, 0.62);
  }

  66% {
    --button-glow: rgba(191, 67, 0, 0.58);
  }
}

@keyframes loaderGridMove {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 156px 78px, 156px 78px;
  }
}

@keyframes loaderOrbPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes loaderProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.faq-section {
  width: 100%;
  padding: clamp(28px, 5vw, 52px) clamp(20px, 6vw, 80px) clamp(96px, 12vw, 140px);
  background: #020202;
  text-align: center;
}

.faq-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.28);
}

.faq-list {
  width: min(70vw, 630px);
  margin: 34px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 0;
  border-radius: 18px;
  background: var(--orange);
  overflow: hidden;
}

.faq-item:not([open]) {
  border-radius: 999px;
}

.faq-item summary {
  position: relative;
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px 0 28px;
  color: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 700;
  list-style: none;
  text-align: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-35%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #111;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-55%) rotate(180deg);
}

.faq-item p {
  max-width: 92%;
  margin: 0 auto;
  padding: 4px 28px 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.76rem, 1.05vw, 0.92rem);
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.story-section,
.faq-section {
  position: relative;
  overflow: hidden;
}

.story-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: -32%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(240, 106, 26, 0.14) 2px, transparent 2px),
    linear-gradient(90deg, rgba(240, 106, 26, 0.14) 2px, transparent 2px);
  background-size: 92px 92px;
  opacity: 0.42;
  transform: rotate(34deg);
  animation: floatingOrangeGrid 18s linear infinite;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 46%, transparent 78%);
}

.story-section > *,
.faq-section > * {
  position: relative;
  z-index: 1;
}

@keyframes floatingOrangeGrid {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 184px 92px, 184px 92px;
  }
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 20;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  background: #25d366;
  color: #061208;
  box-shadow:
    0 0 0 0 rgba(37, 211, 102, 0.52),
    0 14px 36px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(37, 211, 102, 0.52);
  overflow: hidden;
  animation: whatsappPulse 1.9s ease-out infinite;
  transition:
    width 0.28s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  fill: currentColor;
  transform: translate(-50%, -50%);
  transition: left 0.28s ease, transform 0.28s ease;
}

.whatsapp-float span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  color: #061208;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    max-width 0.28s ease,
    opacity 0.2s ease;
}

.whatsapp-float:hover {
  width: 154px;
  gap: 10px;
  transform: translateY(-3px);
  box-shadow:
    0 0 0 9px rgba(37, 211, 102, 0.1),
    0 16px 38px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(37, 211, 102, 0.68);
}

.whatsapp-float:hover svg {
  left: 31px;
}

.whatsapp-float:hover span {
  margin-left: 42px;
  max-width: 86px;
  opacity: 1;
}

@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.52),
      0 14px 36px rgba(0, 0, 0, 0.34),
      0 0 28px rgba(37, 211, 102, 0.52);
  }

  70% {
    box-shadow:
      0 0 0 15px rgba(37, 211, 102, 0),
      0 14px 36px rgba(0, 0, 0, 0.34),
      0 0 28px rgba(37, 211, 102, 0.52);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 14px 36px rgba(0, 0, 0, 0.34),
      0 0 28px rgba(37, 211, 102, 0.52);
  }
}

/* Scroll choreography */
.navbar {
  opacity: 0;
  transform: translateX(-50%) translateY(-18px);
}

.hero::after {
  opacity: 0;
  transform: translateX(-50%) translateY(70px) scale(0.92);
}

.hero-description,
.hero h1 span,
.hero h1 em,
.hero-button {
  opacity: 0;
}

.hero h1 span,
.hero h1 em {
  transform: translateY(24px);
}

.hero h1 em::before,
.hero h1 em::after {
  opacity: 0;
}

.page-ready .navbar {
  animation: heroNavIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.page-ready .hero::after {
  animation: heroArcIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

.page-ready .hero-description {
  animation: heroDescriptionIn 0.75s ease 0.7s both;
}

.page-ready .hero h1 span,
.page-ready .hero h1 em {
  animation: heroTextIn 0.82s cubic-bezier(0.16, 1, 0.3, 1) 0.86s both;
}

.page-ready .hero h1 .business-line {
  animation-delay: 1s;
}

.page-ready .hero h1 em::before {
  animation: heroEllipseIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.28s both;
}

.page-ready .hero h1 em::after {
  animation: heroSparkIn 0.58s cubic-bezier(0.16, 1, 0.3, 1) 1.42s both;
}

.page-ready .hero-button {
  animation:
    heroButtonIn 0.68s cubic-bezier(0.16, 1, 0.3, 1) 1.62s both,
    buttonGlowShift 7s ease-in-out infinite;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 34px), 0) scale(0.98);
  transition:
    opacity 0.62s ease var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.reveal-from-left {
  --reveal-x: -36px;
  --reveal-y: 0;
}

.scroll-reveal[data-reveal="left"] {
  --reveal-x: -36px;
  --reveal-y: 0;
}

.scroll-reveal.reveal-from-right {
  --reveal-x: 36px;
  --reveal-y: 0;
}

.scroll-reveal[data-reveal="right"] {
  --reveal-x: 36px;
  --reveal-y: 0;
}

.scroll-reveal.reveal-from-bottom {
  --reveal-x: 0;
  --reveal-y: 34px;
}

.scroll-reveal[data-reveal="bottom"] {
  --reveal-x: 0;
  --reveal-y: 34px;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes heroNavIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes heroArcIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(70px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes heroDescriptionIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroEllipseIn {
  from {
    opacity: 0;
    transform: translateY(-42%) rotate(-9deg) scale(0.72);
  }

  to {
    opacity: 1;
    transform: translateY(-42%) rotate(-9deg) scale(1);
  }
}

@keyframes heroSparkIn {
  from {
    opacity: 0;
    transform: scale(0.35) rotate(-25deg);
  }

  70% {
    opacity: 1;
    transform: scale(1.18) rotate(8deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes heroButtonIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar,
  .hero::after,
  .hero-description,
  .hero h1 span,
  .hero h1 em,
  .hero h1 em::before,
  .hero h1 em::after,
  .hero-button,
  .whatsapp-float,
  .loader-grid,
  .loader-orb {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .loader-line::before {
    animation: loaderProgress 1.15s linear forwards;
  }

  .scroll-reveal {
    transform: none;
    transition: opacity 0.24s ease;
  }

  .navbar {
    transform: translateX(-50%);
  }

  .hero::after {
    transform: translateX(-50%);
  }

  .hero-description {
    transform: translateX(-50%);
  }

  .hero h1 em::before {
    transform: translateY(-42%) rotate(-9deg);
  }
}

@media (max-width: 760px) {
  .hero-description {
    bottom: 0;
  }

  .intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 16px 34px;
  }

  .intro-section h2 {
    width: min(100%, 320px);
    margin: 0 auto;
    text-align: center !important;
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.28;
  }

  .intro-section h2 br {
    display: none;
  }

  .intro-button {
    align-self: center;
    margin: 18px auto 46px;
  }

  .intro-timeline {
    width: min(100%, 335px);
    margin: 0 auto;
    align-self: center;
  }

  .timeline-item {
    padding-left: 34px;
    font-size: clamp(0.66rem, 2.65vw, 0.78rem);
    text-align: left;
  }
}

.cases-title {
  position: relative !important;
  isolation: isolate;
  z-index: 10 !important;
  padding: 10px 34px 12px !important;
  color: #ffffff !important;
  background: #050505 !important;
  border: 1px solid rgba(240, 106, 26, 0.6) !important;
  box-shadow:
    0 0 0 7px rgba(0, 0, 0, 0.72),
    0 16px 38px rgba(0, 0, 0, 0.85),
    0 0 26px rgba(240, 106, 26, 0.34) !important;
  text-shadow: none !important;
}

.cases-title::before {
  content: "";
  position: absolute;
  inset: -20px -80px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 48%, transparent 72%);
  pointer-events: none;
}

.showcase-bg-text {
  z-index: 0;
}

.showcase-stage {
  z-index: 2;
}
