@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #020203;
  --bg-soft: #07060b;
  --card: #0b0911;
  --card-2: #100d19;
  --purple: #7b22ff;
  --purple-2: #a855ff;
  --purple-3: #d8c1ff;
  --white: #ffffff;
  --text: #f6f2ff;
  --muted: #a9a0bc;
  --line: rgba(255, 255, 255, .12);
  --radius: 34px;
  --max: 1180px;
}

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

html,
body,
body *:not(.fa):not(.fa-solid):not(.fa-regular):not(.fa-brands):not([class^="fa-"]):not([class*=" fa-"]) {
  font-family: 'Magistral', Arial, sans-serif !important;
}

.fa,
.fa-solid {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

body,
button,
input,
select,
textarea,
a,
h1,
h2,
h3,
p,
span,
div {
  font-style: normal !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%
}

body {

  font-style: normal;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
}

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

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

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: auto;
  position: relative;
  z-index: 2
}

.purple {
  color: var(--purple-2)
}

.muted {
  color: var(--muted)
}

.glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .34;
  background: var(--purple);
  z-index: 0;
}

.glow.g1 {
  width: 420px;
  height: 420px;
  left: -180px;
  top: 140px
}

.glow.g2 {
  width: 520px;
  height: 520px;
  right: -260px;
  top: 12%
}

.glow.g3 {
  width: 420px;
  height: 420px;
  left: 50%;
  bottom: -220px;
  transform: translateX(-50%)
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(2, 2, 3, .78);
  backdrop-filter: blur(18px);

}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 178px;
  height: auto
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ddd7ec;
}

.menu a {
  opacity: .82;
  transition: .2s;
  white-space: nowrap;
}

.menu a:hover {
  opacity: 1;
  color: var(--purple-3)
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  transition: .26s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 44px rgba(123, 34, 255, .45);
}

.btn.outline {
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(10px);
}

.btn.white {
  background: #fff;
  color: #07050d
}

section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #020203;
}

.hero {
  min-height: 100vh;
  padding: 146px 0 80px;
  display: flex;
  align-items: center;
  border-top: 0;
  background: #020203;
  perspective: 1200px;
}

.hero-bg {
  position: absolute;
  inset: -4%;
  opacity: .34;
  background:
    linear-gradient(90deg, #020203 0%, rgba(2, 2, 3, .94) 38%, rgba(2, 2, 3, .44) 72%, #020203 100%),
    linear-gradient(180deg, rgba(2, 2, 3, .08), #020203 96%),
    url("../img/hero/banner-3.jpg") center/cover no-repeat;
  transform: translate3d(calc(var(--mx, 0) * -10px), calc(var(--my, 0) * -8px), 0) scale(1.08);
  transition: transform .12s linear;
}

.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.star-field span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  opacity: .45;
  box-shadow: 0 0 14px rgba(255, 255, 255, .8);
  animation: starDrift 8s linear infinite;
}

.star-field span:nth-child(1) {
  left: 8%;
  top: 22%;
  animation-delay: -1s
}

.star-field span:nth-child(2) {
  left: 18%;
  top: 68%;
  animation-delay: -3s
}

.star-field span:nth-child(3) {
  left: 34%;
  top: 16%;
  animation-delay: -5s
}

.star-field span:nth-child(4) {
  left: 48%;
  top: 76%;
  animation-delay: -2s
}

.star-field span:nth-child(5) {
  left: 62%;
  top: 28%;
  animation-delay: -6s
}

.star-field span:nth-child(6) {
  left: 76%;
  top: 64%;
  animation-delay: -4s
}

.star-field span:nth-child(7) {
  left: 86%;
  top: 20%;
  animation-delay: -7s
}

.star-field span:nth-child(8) {
  left: 92%;
  top: 82%;
  animation-delay: -2.5s
}

@keyframes starDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .15
  }

  45% {
    opacity: .75
  }

  100% {
    transform: translate3d(-70px, 55px, 0) scale(.7);
    opacity: .05
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--purple-3);
  background: rgba(255, 255, 255, .045);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: rise .8s ease both;
  transform: translate3d(calc(var(--mx, 0) * 5px), calc(var(--my, 0) * 4px), 0);
  transition: transform .12s linear;
}

.eyebrow:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple-2);
  box-shadow: 0 0 18px var(--purple-2);
}

h1 {
  font-size: 108px;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: rise .9s cubic-bezier(.2, .8, .2, 1) both .08s;
  transform: translate3d(calc(var(--mx, 0) * 7px), calc(var(--my, 0) * 5px), 0);
  transition: transform .12s linear;
}

.gradient {
  background: linear-gradient(100deg, #fff 0%, #d8c1ff 44%, #7b22ff 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 620px;
  margin: 30px 0 36px;
  color: #d7d0e6;
  font-size: 21px;
  line-height: 1.55;
  animation: rise .9s both .2s;
  transform: translate3d(calc(var(--mx, 0) * 4px), calc(var(--my, 0) * 3px), 0);
  transition: transform .12s linear;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: rise .9s both .32s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(38px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.space-art {
  min-height: 590px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.space-art:before {
  content: "";
  position: absolute;
  width: min(620px, 92vw);
  height: min(620px, 92vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 34, 255, .18), transparent 62%);
  filter: blur(10px);
  transform: translate3d(calc(var(--mx, 0) * 16px), calc(var(--my, 0) * 14px), -80px);
}

.planet {
  width: min(420px, 76vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at calc(32% + var(--mx, 0) * 5%) calc(24% + var(--my, 0) * 5%), #fff 0%, #d8c1ff 8%, rgba(168, 85, 255, .52) 20%, transparent 38%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .92), rgba(123, 34, 255, .22) 46%, transparent 68%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(123, 34, 255, .16));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 80px rgba(123, 34, 255, .42), inset 0 0 70px rgba(255, 255, 255, .07);
  animation: planetFloat 5s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
  transform: translate3d(calc(var(--mx, 0) * 22px), calc(var(--my, 0) * 18px), 70px) rotateX(calc(var(--my, 0) * -7deg)) rotateY(calc(var(--mx, 0) * 9deg));
  transition: transform .12s linear, background .12s linear;
}

.planet:after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 58%, rgba(168, 85, 255, .15) 64%, transparent 72%);
  animation: haloPulse 3.8s ease-in-out infinite alternate;
}

@keyframes haloPulse {
  to {
    transform: scale(1.08);
    opacity: .62
  }
}

@keyframes planetFloat {
  to {
    margin-top: -26px
  }
}

.orbit {
  position: absolute;
  width: min(580px, 92vw);
  height: 166px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  transform: translate3d(calc(var(--mx, 0) * 12px), calc(var(--my, 0) * 10px), 30px) rotate(-15deg);
  box-shadow: 0 0 34px rgba(123, 34, 255, .24);
  z-index: 1;
  animation: orbitPulse 4.2s ease-in-out infinite alternate;
  transition: transform .12s linear;
}

@keyframes orbitPulse {
  to {
    opacity: .58
  }
}

.astronaut {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: min(230px, 42vw);
  z-index: 3;
  filter: drop-shadow(0 0 34px rgba(123, 34, 255, .42));
  transform: translate3d(calc(var(--mx, 0) * -28px), calc(var(--my, 0) * -22px), 115px) rotate(calc(var(--mx, 0) * -7deg));
  transition: transform .12s linear;
  animation: astroBreath 5.8s ease-in-out infinite alternate;
}

@keyframes astroBreath {
  to {
    margin-bottom: 20px;
    margin-right: 12px
  }
}

.comet {
  position: absolute;
  z-index: 3;
  width: 150px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #fff, var(--purple-2));
  opacity: .65;
  transform: rotate(-28deg);
  animation: comet 5.5s ease-in-out infinite;
}

.comet.c1 {
  left: 10%;
  top: 22%;
  animation-delay: -1s
}

.comet.c2 {
  right: 8%;
  top: 14%;
  animation-delay: -3.2s;
  transform: rotate(-18deg) scale(.72)
}

@keyframes comet {

  0%,
  70%,
  100% {
    opacity: 0;
    translate: 0 0
  }

  74% {
    opacity: .85
  }

  88% {
    opacity: 0;
    translate: -260px 130px
  }
}

.hero-card {
  position: absolute;
  left: 0;
  bottom: 48px;
  z-index: 4;
  width: 270px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(8, 6, 14, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
  transform: translate3d(calc(var(--mx, 0) * -14px), calc(var(--my, 0) * -10px), 100px);
  transition: transform .12s linear;
}

.hero-card strong {
  display: block;
  font-size: 42px;
  letter-spacing: 0;
  color: #fff;
}

.hero-card span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.45;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  gap: 44px;
  align-items: end;
  margin-bottom: 46px;
}

.kicker {
  color: var(--purple-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(42px, 6vw, 88px);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  line-height: 1.65;
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card), var(--card-2));
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.panel:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(90px);
  opacity: .22;
}

.panel>* {
  position: relative;
  z-index: 2
}

.about-main {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-main p {
  font-size: 23px;
  line-height: 1.55;
  color: #eee9ff;
  margin-top: 28px;
}

.about-image {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #08070d;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.08) saturate(1.08);
  transition: .7s ease;
}

.about-image:hover img {
  transform: scale(1.06)
}

.about-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 2, 3, .9));
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.chip {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  color: #eee8ff;
  font-size: 14px;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat {
  min-height: 188px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #08070d;
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.stat:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(70px);
  opacity: .25;
}

.stat:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 255, .45)
}

.stat strong {
  display: block;
  font-size: 48px;
  letter-spacing: 0;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.stat p {
  color: var(--muted);
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 24px;
  align-items: stretch;
}

.service-large {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 42px;
  border: 1px solid var(--line);
  padding: 44px;
  background:
    linear-gradient(180deg, rgba(2, 2, 3, .18), rgba(2, 2, 3, .96)),
    url("../img/shape/team-2.png") center 75% / 68% no-repeat,
    linear-gradient(145deg, rgba(123, 34, 255, .20), var(--card));
  position: relative;
  overflow: hidden;
}

.service-large h3 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: .9;
  letter-spacing: 0;
  margin: 18px 0;
  max-width: 640px;
}

.service-large p,
.service-small p {
  color: #d8d1e8;
  line-height: 1.6;
  font-size: 17px;
}

.service-column {
  display: grid;
  gap: 18px;
}

.service-small {
  min-height: 204px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #08070d;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: .25s ease;
}

.service-small:nth-child(2) {
  background: linear-gradient(145deg, rgba(123, 34, 255, .16), #08070d)
}

.service-small:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 255, .5)
}

.service-small h3 {
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0;
  margin: 12px 0 10px;
}

.num {
  display: inline-block;
  color: var(--purple-2);
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 900;
  text-transform: uppercase;
}


.special-carousel-wrap {
  position: relative;
  margin-top: 10px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.carousel-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #08070d;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: .25s ease;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  transform: translateY(-4px);
  box-shadow: 0 0 34px rgba(123, 34, 255, .38);
}

.special-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 2px 26px;
  scrollbar-width: none;
}

.special-carousel::-webkit-scrollbar {
  display: none
}

.special-card {
  scroll-snap-align: start;
  flex: 0 0 min(520px, 88vw);
  min-height: 520px;
  border-radius: 38px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 18%, rgba(168, 85, 255, .18), transparent 34%),
    linear-gradient(145deg, #0b0911, #050409);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .38s cubic-bezier(.2, .8, .2, 1);
}

.special-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 38px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(168, 85, 255, .75), transparent 38%, rgba(255, 255, 255, .18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .25;
  transition: .3s ease;
}

.special-card:after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(90px);
  opacity: .18;
  transition: .4s ease;
}

.special-card:hover {
  transform: translateY(-14px) scale(1.015);
  border-color: rgba(168, 85, 255, .52);
  box-shadow: 0 0 60px rgba(123, 34, 255, .28), 0 30px 90px rgba(0, 0, 0, .45);
}

.special-card:hover:before {
  opacity: .75
}

.special-card:hover:after {
  opacity: .38;
  transform: scale(1.15)
}

.special-icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  transition: .32s ease;
}

.special-card:hover .special-icon {
  transform: rotate(-6deg) scale(1.08);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
}

.special-icon img {
  max-width: 60px;
  max-height: 60px;
  filter: drop-shadow(0 0 24px rgba(168, 85, 255, .34));
}

.special-card h3 {
  position: relative;
  z-index: 2;
  font-size: 44px;
  line-height: .92;
  letter-spacing: 0;
  margin: 14px 0 18px;
}

.special-card p {
  position: relative;
  z-index: 2;
  color: #d8d1e8;
  line-height: 1.62;
  font-size: 17px;
  max-width: 430px;
}

.special-card .chips {
  position: relative;
  z-index: 2;
  margin-top: 26px;
}

.special-number {
  position: absolute;
  right: 28px;
  top: 24px;
  font-size: 82px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .045);
  z-index: 1;
}

.special-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
}

.special-link {
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  transition: .25s ease;
}

.special-card:hover .special-link {
  color: var(--purple-3);
  transform: translateX(8px)
}

.process {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 118px;
}

.year {
  margin-top: 24px;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #08070d;
  transition: .25s ease;
}

.step:hover {
  transform: translateX(-8px);
  border-color: rgba(168, 85, 255, .48);
  background: linear-gradient(145deg, rgba(123, 34, 255, .13), #08070d);
}

.step-n {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #030205;
  border: 1px solid var(--line);
  color: var(--purple-2);
  font-size: 27px;
  font-weight: 900;
  box-shadow: 0 0 32px rgba(123, 34, 255, .22);
}

.step h3 {
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 6px 0 10px;
}

.step p {
  color: var(--muted);
  line-height: 1.55
}

.portfolio {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}

.project {
  min-height: 330px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: #08070d;
  overflow: hidden;
  position: relative;
  transition: .28s ease;
}

.project.tall {
  min-height: 684px
}

.project img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.74) saturate(1.05) contrast(1.04);
  transition: .55s ease;
}

.project:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 2, 3, .95));
}

.project-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.project h3 {
  font-size: clamp(31px, 4vw, 56px);
  line-height: .95;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.project p {
  color: #ded8ee;
  font-weight: 800
}

.project:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 255, .46)
}

.project:hover img {
  transform: scale(1.07);
  filter: brightness(.88) saturate(1.18)
}

.project-stack {
  display: grid;
  gap: 24px
}

.clients-box {
  border-radius: 40px;
  border: 1px solid var(--line);
  background: #08070d;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.clients-box:before {
  content: "";
  position: absolute;
  left: -160px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(120px);
  opacity: .18;
}

.clients {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}

.client {
  min-height: 96px;
  border-radius: 20px;
  background: #f4efdf;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: .24s ease;
}

.client:hover {
  transform: translateY(-7px)
}

.client img {
  max-height: 68px;
  object-fit: contain
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 38px;
  align-items: center;
  border-radius: 42px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(2, 2, 3, .98), rgba(2, 2, 3, .84)),
    url("../img/hero/banner-3.jpg") center/cover no-repeat;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.contact-card:before {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(130px);
  opacity: .24;
}

.contact-card>* {
  position: relative;
  z-index: 2
}

.contact-title {
  font-size: clamp(44px, 6vw, 88px);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-copy p {
  margin: 24px 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 18px;
}

form {
  display: grid;
  gap: 12px
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(5, 4, 9, .86);
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  font: inherit;
  outline: none;
  transition: .2s ease;
}

textarea {
  min-height: 130px;
  resize: vertical
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--purple-2);
  box-shadow: 0 0 0 4px rgba(123, 34, 255, .14);
}

option {
  color: #111
}

footer {
  position: relative;
  z-index: 2;

  padding: 34px 0;
  color: var(--muted);
  background: #020203;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition: 1s cubic-bezier(.2, .8, .2, 1);
}

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


.mobile-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 120;
}

.mobile-toggle span {
  width: 21px;
  height: 2px;
  background: #fff;
  position: relative;
  display: block;
  transition: .25s ease;
}

.mobile-toggle span:before,
.mobile-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 21px;
  height: 2px;
  background: #fff;
  transition: .25s ease;
}

.mobile-toggle span:before {
  top: -7px
}

.mobile-toggle span:after {
  top: 7px
}

body.menu-open .mobile-toggle {
  position: relative;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 0 34px rgba(123, 34, 255, .42);
}

body.menu-open .mobile-toggle span {
  background: transparent;
}

body.menu-open .mobile-toggle span:before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
  height: 2.5px;
}

body.menu-open .mobile-toggle span:after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
  height: 2.5px;
}

body.menu-open .mobile-toggle {
  position: fixed;
  top: 14px;
  right: 14px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(2, 2, 3, .96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  transform: translateX(100%);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

body.menu-open .mobile-menu {
  transform: translateX(0)
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;

  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.mobile-menu a:after {
  content: "→";
  color: var(--purple-2);
  font-size: 22px;
}

.mobile-menu .mobile-cta {
  margin-top: 28px;
  font-size: 18px;
  justify-content: center;
  border-bottom: 0;
}

.mobile-menu .mobile-cta:after {
  display: none
}


.astro-card {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: min(300px, 48vw);
  aspect-ratio: 0.82;
  border-radius: 34px;
  border: 1px solid rgba(168, 85, 255, .5);
  background: rgba(8, 6, 14, .52);
  backdrop-filter: blur(14px);
  overflow: hidden;
  z-index: 4;
  box-shadow: 0 0 44px rgba(123, 34, 255, .38), inset 0 0 28px rgba(255, 255, 255, .05);
  transform: translate3d(calc(var(--mx, 0) * -28px), calc(var(--my, 0) * -22px), 115px) rotate(calc(var(--mx, 0) * -5deg));
  transition: transform .12s linear, box-shadow .25s ease;
  animation: astroBreath 5.8s ease-in-out infinite alternate;
}

.astro-card:before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  z-index: 3;
  pointer-events: none;
}

.astro-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(168, 85, 255, .28), transparent 36%),
    linear-gradient(180deg, transparent 50%, rgba(2, 2, 3, .72));
  z-index: 2;
  pointer-events: none;
}

.astro-card .astronaut {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(.9) contrast(1.08) saturate(1.08) drop-shadow(0 0 34px rgba(123, 34, 255, .42));
  transform: none;
  animation: none;
}

.astro-card:hover {
  box-shadow: 0 0 66px rgba(123, 34, 255, .56), inset 0 0 30px rgba(255, 255, 255, .08);
}

.comet {
  position: absolute;
  z-index: 3;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .95) 48%, var(--purple-2) 75%, transparent 100%);
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(168, 85, 255, .9)) drop-shadow(0 0 24px rgba(123, 34, 255, .7));
  transform: rotate(-28deg);
  animation: cometStrong 4.8s ease-in-out infinite;
}

.comet:before {
  content: "";
  position: absolute;
  right: 18%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 0 24px #fff, 0 0 46px var(--purple-2);
}

.comet.c1 {
  width: 240px;
  left: 8%;
  top: 18%;
  animation-delay: -.4s
}

.comet.c2 {
  width: 190px;
  right: 6%;
  top: 18%;
  animation-delay: -1.8s;
  transform: rotate(-18deg)
}

.comet.c3 {
  width: 280px;
  left: 36%;
  top: 30%;
  animation-delay: -3.1s;
  transform: rotate(-24deg)
}

.comet.c4 {
  width: 210px;
  left: 18%;
  top: 54%;
  animation-delay: -2.4s;
  transform: rotate(-30deg)
}

.comet.c5 {
  width: 260px;
  right: 14%;
  top: 66%;
  animation-delay: -4.2s;
  transform: rotate(-22deg)
}

.comet.c6 {
  width: 170px;
  left: 66%;
  top: 10%;
  animation-delay: -.9s;
  transform: rotate(-34deg)
}

@keyframes cometStrong {

  0%,
  58%,
  100% {
    opacity: 0;
    translate: 0 0;
    scale: .8
  }

  63% {
    opacity: 1;
    scale: 1
  }

  82% {
    opacity: .9
  }

  94% {
    opacity: 0;
    translate: -420px 210px;
    scale: 1.18
  }
}

@media(max-width:720px) {
  .astro-card {
    width: 180px;
    right: 0;
    bottom: 0;
    border-radius: 26px;
  }

  .astro-card:before {
    border-radius: 19px;
    inset: 9px
  }

  .comet.c1,
  .comet.c2,
  .comet.c3,
  .comet.c4,
  .comet.c5,
  .comet.c6 {
    width: 150px
  }
}


.about-premium-section {
  background: #020203;
  padding: 118px 0 108px;
}

.about-glow-one {
  width: 460px;
  height: 460px;
  left: -230px;
  top: 12%;
  opacity: .22;
}

.about-glow-two {
  width: 560px;
  height: 560px;
  right: -280px;
  bottom: 2%;
  opacity: .18;
}

.about-premium {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.42fr);
  gap: 26px;
  align-items: stretch;
}

.about-visual {
  min-height: 560px;
  border-radius: 42px;
  border: 1px solid rgba(168, 85, 255, .42);
  background: #08070d;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 50px rgba(123, 34, 255, .18);
  transform-style: preserve-3d;
}

.about-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) contrast(1.1) saturate(1.15);
  transition: .7s ease;
}

.about-visual:hover img {
  transform: scale(1.08);
  filter: brightness(.88) contrast(1.12) saturate(1.2);
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(168, 85, 255, .35), transparent 28%),
    linear-gradient(180deg, transparent 48%, rgba(2, 2, 3, .92));
  z-index: 2;
}

.video-pill {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  font-size: 13px;
}

.play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 85, 255, .78);
  background: rgba(123, 34, 255, .18);
  box-shadow: 0 0 32px rgba(123, 34, 255, .45);
  transition: .25s ease;
}

.about-visual:hover .play-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
}

.about-content-card {
  min-height: 560px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 62% 0%, rgba(123, 34, 255, .16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 1px minmax(280px, .85fr);
  gap: 36px;
  align-items: center;
  box-shadow: 0 0 60px rgba(0, 0, 0, .34);
  transform-style: preserve-3d;
}

.about-content-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(168, 85, 255, .42), transparent 30%, rgba(255, 255, 255, .08));
  opacity: .25;
  pointer-events: none;
}

.about-main-copy,
.about-specialties,
.about-divider,
.about-orbital-mark,
.about-comet {
  position: relative;
  z-index: 2;
}

.about-content-card h2 {
  font-size: 74px;
  line-height: .86;
  margin: 18px 0 24px;
}

.about-content-card p {
  max-width: 570px;
  color: #d8d1e8;
  font-size: 19px;
  line-height: 1.62;
}

.about-whats {
  margin-top: 34px;
  width: max-content;
  min-height: 56px;
  padding: 0 10px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 255, .65);
  background: rgba(255, 255, 255, .035);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 900;
  font-size: 13px;
  transition: .25s ease;
}

.about-whats span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(123, 34, 255, .3);
  color: #fff;
}

.about-whats:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 0 36px rgba(123, 34, 255, .42);
}

.about-divider {
  width: 1px;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .38), transparent);
  justify-self: center;
}

.about-specialties {
  display: grid;
  gap: 20px;
}

.specialty-line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  transition: .25s ease;
}

.specialty-line:hover {
  transform: translateX(8px);
  color: var(--purple-3);
}

.specialty-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(123, 34, 255, .12);
  color: #fff;
  box-shadow: inset 0 0 18px rgba(123, 34, 255, .18);
  transition: .25s ease;
}

.specialty-line:hover .specialty-icon {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 0 28px rgba(123, 34, 255, .44);
  transform: rotate(-8deg) scale(1.06);
}

.about-orbital-mark {
  position: absolute;
  right: 36px;
  top: 32px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 85, 255, .48);
  color: var(--purple-2);
  font-size: 42px;
  font-weight: 900;
  box-shadow: 0 0 38px rgba(123, 34, 255, .26);
  animation: aboutMark 8s linear infinite;
}

@keyframes aboutMark {
  to {
    transform: rotate(360deg)
  }
}

.about-comet {
  position: absolute;
  right: 6%;
  top: 10%;
  width: 220px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff, var(--purple-2), transparent);
  filter: drop-shadow(0 0 14px rgba(168, 85, 255, .9));
  transform: rotate(-24deg);
  animation: aboutComet 4.8s ease-in-out infinite;
}

@keyframes aboutComet {

  0%,
  62%,
  100% {
    opacity: 0;
    translate: 0 0
  }

  68% {
    opacity: 1
  }

  90% {
    opacity: 0;
    translate: -280px 120px
  }
}

.about-stats-premium {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-stat-card {
  min-height: 270px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 82% 92%, rgba(123, 34, 255, .25), transparent 34%),
    linear-gradient(145deg, #0b0911, #050409);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: .28s ease;
  transform-style: preserve-3d;
}

.about-stat-card:before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 255, .26);
  box-shadow: 0 0 44px rgba(123, 34, 255, .2);
}

.about-stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 42px rgba(123, 34, 255, .28);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 85, 255, .4);
  background: rgba(123, 34, 255, .14);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 0 28px rgba(123, 34, 255, .22);
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

.about-stat-card h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.about-stat-card strong {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 70px;
  line-height: .9;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 0 28px rgba(168, 85, 255, .2);
  margin-bottom: 20px;
}

.about-stat-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  line-height: 1.45;
  max-width: 220px;
}


/* Especialidades full-width */
#especialidades .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(22px, 5vw, 78px);
  padding-right: clamp(22px, 5vw, 78px);
}

#especialidades .section-head {
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}

#especialidades .special-carousel-wrap {
  width: 100%;
}

#especialidades .special-carousel {
  padding-left: clamp(0px, 2vw, 28px);
  padding-right: clamp(0px, 2vw, 28px);
}

#especialidades .special-card {
  flex-basis: min(560px, 86vw);
  min-height: 540px;
}

#especialidades .special-card:first-child {
  margin-left: clamp(0px, 2vw, 28px);
}

#especialidades .special-card:last-child {
  margin-right: clamp(0px, 2vw, 28px);
}

/* Footer completo */
.footer-complete {
  position: relative;
  z-index: 3;
  background:
    radial-gradient(circle at 18% 18%, rgba(123, 34, 255, .18), transparent 30%),
    radial-gradient(circle at 82% 76%, rgba(168, 85, 255, .14), transparent 34%),
    #020203;

  padding: 0;
  color: var(--text);
  overflow: hidden;
}

.footer-complete:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -260px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(123, 34, 255, .18), transparent 62%);
  pointer-events: none;
}

.footer-cta {
  padding: 72px 0 54px;

}

.footer-cta-card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(123, 34, 255, .18), rgba(255, 255, 255, .035)),
    #08070d;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.footer-cta-card:after {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(110px);
  opacity: .24;
}

.footer-cta-card>* {
  position: relative;
  z-index: 2
}

.footer-cta-card h2 {
  font-size: 58px;
  line-height: .9;
  letter-spacing: 0;
  max-width: 850px;
}

.footer-cta-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 620px;
}

.footer-main {
  padding: 58px 0 42px;
}

.footer-grid-complete {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr .95fr;
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  width: 178px;
  margin-bottom: 22px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 360px;
  font-size: 15px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .045);
  color: #fff;
  font-weight: 900;
  transition: .25s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(123, 34, 255, .32);
}

.footer-col h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
  display: block;
  color: var(--muted);
  margin-bottom: 13px;
  line-height: 1.45;
  transition: .22s ease;
  font-size: 15px;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(6px);
}

.footer-contact-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  border-radius: 26px;
  padding: 24px;
}

.footer-contact-card strong {
  display: block;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.footer-contact-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.footer-bottom {

  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media(max-width:980px) {

  .footer-cta-card,
  .footer-grid-complete {
    grid-template-columns: 1fr;
  }

  .footer-grid-complete {
    gap: 28px;
  }
}

@media(max-width:720px) {
  #especialidades .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  #especialidades .section-head {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-cta-card {
    padding: 28px;
    border-radius: 28px;
  }

  .footer-main {
    padding: 44px 0 34px
  }
}


.process-timeline-section {
  background:
    radial-gradient(circle at 50% 18%, rgba(123, 34, 255, .16), transparent 34%),
    #020203;
  padding: 120px 0;
}

.process-glow-one {
  width: 520px;
  height: 520px;
  left: -260px;
  top: 18%;
  opacity: .18
}

.process-glow-two {
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: 8%;
  opacity: .16
}

.timeline-stage {
  position: relative;
  min-height: 980px;
  padding: 26px 0 80px;
}

.timeline-center {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(168, 85, 255, .75), rgba(255, 255, 255, .16), rgba(168, 85, 255, .75), transparent);
  box-shadow: 0 0 28px rgba(123, 34, 255, .42);
}

.timeline-center span {
  position: sticky;
  top: 120px;
  display: block;
  width: 18px;
  height: 18px;
  margin-left: -8.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px #fff, 0 0 54px var(--purple-2);
}

.timeline-item {
  position: relative;
  width: 50%;
  min-height: 220px;
  margin-bottom: 28px;
  transform-style: preserve-3d;
}

.timeline-left {
  padding-right: 54px;
  text-align: right
}

.timeline-right {
  margin-left: 50%;
  padding-left: 54px;
  text-align: left
}

.timeline-dot {
  position: absolute;
  top: 34px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #06050a;
  border: 1px solid rgba(168, 85, 255, .48);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(123, 34, 255, .36), inset 0 0 22px rgba(123, 34, 255, .16);
  z-index: 3;
}

.timeline-left .timeline-dot {
  right: -37px
}

.timeline-right .timeline-dot {
  left: -37px
}

.timeline-card {
  min-height: 220px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 82% 12%, rgba(168, 85, 255, .18), transparent 28%),
    linear-gradient(145deg, #0b0911, #050409);
  position: relative;
  overflow: hidden;
  transition: .28s ease;
}

.timeline-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(168, 85, 255, .36), transparent 34%, rgba(255, 255, 255, .08));
  opacity: .22;
  pointer-events: none;
}

.timeline-card:after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(92px);
  opacity: .14;
  transition: .28s ease;
}

.timeline-item:hover .timeline-card {
  border-color: rgba(168, 85, 255, .56);
  box-shadow: 0 0 48px rgba(123, 34, 255, .28), 0 28px 80px rgba(0, 0, 0, .32);
}

.timeline-item:hover .timeline-card:after {
  opacity: .32
}

.timeline-card>* {
  position: relative;
  z-index: 2
}

.timeline-card h3 {
  font-size: 38px;
  line-height: .95;
  letter-spacing: 0;
  margin: 14px 0 16px;
  color: #fff;
}

.timeline-card p {
  color: var(--muted);
  line-height: 1.58;
  font-size: 17px;
}

.timeline-year {
  width: min(520px, 100%);
  margin: 48px auto 0;
  text-align: center;
  border: 1px solid rgba(168, 85, 255, .38);
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
  padding: 22px 28px;
  box-shadow: 0 0 38px rgba(123, 34, 255, .22);
}

.timeline-year strong {
  display: block;
  color: #fff;
  font-size: 34px;
  letter-spacing: 0;
}

.timeline-year span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

@media(max-width:860px) {
  .timeline-stage {
    min-height: auto;
    padding-left: 16px
  }

  .timeline-center {
    left: 34px
  }

  .timeline-item,
  .timeline-left,
  .timeline-right {
    width: 100%;
    margin-left: 0;
    padding-left: 82px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-left .timeline-dot,
  .timeline-right .timeline-dot {
    left: -19px;
    right: auto;
  }

  .timeline-dot {
    width: 64px;
    height: 64px;
    font-size: 21px
  }

  .timeline-card {
    padding: 28px;
    border-radius: 28px
  }
}


.projects-impact-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(123, 34, 255, .13), transparent 32%),
    #020203;
  padding: 118px 0;
}

.projects-glow-one {
  width: 480px;
  height: 480px;
  left: -240px;
  top: 18%;
  opacity: .16
}

.projects-glow-two {
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: 4%;
  opacity: .14
}

.projects-impact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-auto-rows: 330px;
  gap: 22px;
}

.project-impact {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #08070d;
  isolation: isolate;
  transition: .32s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .26);
}

.project-impact.featured {
  grid-row: span 2;
}

.project-impact.wide {
  grid-column: span 1;
}

.project-impact img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(1.05) contrast(1.06);
  transform: scale(1.01);
  transition: .65s cubic-bezier(.2, .8, .2, 1);
  z-index: 1;
}

.project-impact-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 45%, rgba(123, 34, 255, .08), transparent 35%),
    linear-gradient(180deg, rgba(2, 2, 3, .04) 20%, rgba(2, 2, 3, .92) 100%);
  transition: .35s ease;
}

.project-impact-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.project-impact-content span {
  display: block;
  color: #d8c9ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.project-impact-content h3 {
  color: #fff;
  font-size: 42px;
  line-height: .92;
  letter-spacing: 0;
  max-width: 720px;
}

.project-hover-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%) scale(.82);
  opacity: 0;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  box-shadow: 0 0 40px rgba(123, 34, 255, .48);
  transition: .32s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
}

.project-impact:before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  z-index: 3;
  opacity: 0;
  transform: scale(.96);
  transition: .32s ease;
  pointer-events: none;
}

.project-impact:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .58);
  box-shadow: 0 0 54px rgba(123, 34, 255, .28), 0 34px 100px rgba(0, 0, 0, .38);
}

.project-impact:hover img {
  transform: scale(1.1);
  filter: brightness(.52) saturate(1.22) contrast(1.1);
}

.project-impact:hover .project-impact-shade {
  background:
    radial-gradient(circle at 50% 45%, rgba(123, 34, 255, .34), transparent 40%),
    linear-gradient(180deg, rgba(2, 2, 3, .18), rgba(2, 2, 3, .9));
}

.project-impact:hover .project-hover-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project-impact:hover:before {
  opacity: 1;
  transform: scale(1);
}

.project-impact:hover .project-impact-content {
  transform: translateY(14px);
  opacity: .52;
}

.orbital-cta-section {
  padding: 104px 0 58px;
  background: #020203;

}

.cta-glow {
  width: 580px;
  height: 580px;
  right: -220px;
  top: -180px;
  opacity: .18
}

.orbital-cta-card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 42px;
  background:
    radial-gradient(circle at 84% 10%, rgba(168, 85, 255, .24), transparent 34%),
    linear-gradient(135deg, rgba(123, 34, 255, .18), rgba(255, 255, 255, .035)),
    #08070d;
  padding: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 70px rgba(123, 34, 255, .12);
}

.orbital-cta-card:before {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(110px);
  opacity: .23;
}

.orbital-cta-card:after {
  content: "";
  position: absolute;
  right: 52px;
  top: 50%;
  width: 280px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  transform: translateY(-50%) rotate(-14deg);
  opacity: .62;
}

.orbital-cta-card>* {
  position: relative;
  z-index: 2
}

.orbital-cta-card h2 {
  font-size: 64px;
  line-height: .88;
  letter-spacing: 0;
  max-width: 930px;
}

.orbital-cta-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 650px;
}

@media(max-width:980px) {
  .projects-impact-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .project-impact.featured {
    grid-row: auto
  }

  .orbital-cta-card {
    grid-template-columns: 1fr;
  }
}

@media(max-width:720px) {
  .projects-impact-section {
    padding: 76px 0
  }

  .projects-impact-grid {
    grid-auto-rows: 340px;
    gap: 16px
  }

  .project-impact {
    border-radius: 28px
  }

  .project-impact-content {
    left: 22px;
    right: 22px;
    bottom: 22px
  }

  .orbital-cta-section {
    padding: 76px 0 42px
  }

  .orbital-cta-card {
    padding: 28px;
    border-radius: 28px
  }

  .orbital-cta-card:after {
    display: none
  }
}


section+section {
  margin-top: -1px;
}


.contact-full-section {
  position: relative;
  background: #020203;
  padding: 120px 0;
  overflow: hidden;
}

.contact-glow {
  width: 620px;
  height: 620px;
  right: -240px;
  top: 10%;
  opacity: .22;
}

.container-fluid-contact {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 5vw, 78px);
  padding-right: clamp(20px, 5vw, 78px);
  position: relative;
  z-index: 4;
}

.contact-full-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: stretch;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 8% 50%, rgba(123, 34, 255, .16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  padding: clamp(28px, 4vw, 54px);
  position: relative;
  overflow: hidden;
}

.contact-full-grid:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 2, 3, .72), rgba(2, 2, 3, .25), rgba(2, 2, 3, .76));
  pointer-events: none;
}

.contact-full-copy,
.contact-form-panel {
  position: relative;
  z-index: 3;
}

.contact-full-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: min(320px, 18vw);
}

.contact-full-copy h2 {
  font-size: 70px;
  line-height: .86;
  letter-spacing: 0;
  max-width: 780px;
}

.contact-full-copy p {
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
  max-width: 620px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 620px;
}

.contact-info-row a {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
  padding: 20px;
  transition: .25s ease;
}

.contact-info-row a:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 255, .5);
  box-shadow: 0 0 34px rgba(123, 34, 255, .25);
}

.contact-info-row strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info-row span {
  color: var(--muted);
  font-size: 14px;
}

.contact-form-panel {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(5, 4, 9, .78);
  backdrop-filter: blur(16px);
  padding: clamp(24px, 3.2vw, 42px);
  display: flex;
  align-items: center;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .32);
}

.contact-form-panel form {
  width: 100%;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-planet-wrap {
  position: absolute;
  left: clamp(-180px, -8vw, -60px);
  top: 50%;
  width: min(520px, 42vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.contact-planet {
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .46) 22%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .9), rgba(123, 34, 255, .22) 48%, transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(123, 34, 255, .12));
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 90px rgba(123, 34, 255, .38), inset 0 0 70px rgba(255, 255, 255, .07);
  animation: contactPlanetFloat 5.4s ease-in-out infinite alternate;
}

.contact-orbit {
  position: absolute;
  left: -4%;
  right: -4%;
  top: 42%;
  height: 28%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  transform: rotate(-17deg);
  box-shadow: 0 0 34px rgba(123, 34, 255, .22);
  animation: contactOrbit 4.4s ease-in-out infinite alternate;
}

@keyframes contactPlanetFloat {
  to {
    transform: translateY(-24px) rotate(5deg)
  }
}

@keyframes contactOrbit {
  to {
    transform: rotate(-17deg) scale(1.08);
    opacity: .58
  }
}


/* Correção contato: texto não invade formulário */
.contact-full-grid {
  grid-template-columns: minmax(320px, .78fr) minmax(560px, 1.22fr) !important;
  gap: clamp(34px, 5vw, 78px) !important;
}

.contact-full-copy {
  padding-left: clamp(140px, 13vw, 260px) !important;
  min-width: 0;
}

.contact-full-copy h2 {
  font-size: clamp(44px, 5vw, 82px) !important;
  max-width: 560px !important;
  word-break: normal;
  overflow-wrap: normal;
}

.contact-full-copy p {
  max-width: 470px !important;
}

.contact-form-panel {
  width: 100%;
  min-width: 0;
}

.contact-planet-wrap {
  left: clamp(-220px, -11vw, -120px) !important;
  width: min(460px, 34vw) !important;
}

@media(max-width:1240px) {
  .contact-full-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-full-copy {
    padding-left: 0 !important;
    max-width: 760px;
  }

  .contact-full-copy h2 {
    max-width: 760px !important;
  }

  .contact-full-copy p {
    max-width: 620px !important;
  }

  .contact-planet-wrap {
    opacity: .18;
    left: auto !important;
    right: -160px !important;
    top: 22% !important;
    width: 420px !important;
  }
}


/* Ajuste carrossel especialidades: controles abaixo + drag */
.carousel-controls {
  justify-content: center !important;
  margin: 26px 0 0 !important;
}

.carousel-controls-bottom {
  display: flex;
}

.special-carousel {
  cursor: default;
  user-select: auto;
  -webkit-user-select: auto;
}


.about-cinematic-section {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 112px;
  background: #020203;
  overflow: hidden;
}

.about-cine-glow-one {
  width: 620px;
  height: 620px;
  left: -300px;
  top: 10%;
  opacity: .18;
}

.about-cine-glow-two {
  width: 680px;
  height: 680px;
  right: -320px;
  bottom: 0;
  opacity: .16;
}

.about-cinematic-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.about-cine-planet {
  position: absolute;
  right: -10vw;
  top: 15%;
  width: min(720px, 48vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .94), rgba(216, 193, 255, .44) 10%, transparent 30%),
    radial-gradient(circle at 64% 72%, rgba(123, 34, 255, .72), rgba(123, 34, 255, .16) 48%, transparent 72%);
  box-shadow: 0 0 100px rgba(123, 34, 255, .28), inset 0 0 80px rgba(255, 255, 255, .05);
  opacity: .48;
  animation: aboutCinePlanet 7s ease-in-out infinite alternate;
}

@keyframes aboutCinePlanet {
  to {
    transform: translateY(-28px) rotate(6deg) scale(1.03)
  }
}

.about-cine-orbit {
  position: absolute;
  right: -12vw;
  top: 37%;
  width: min(900px, 60vw);
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  transform: rotate(-16deg);
  box-shadow: 0 0 42px rgba(123, 34, 255, .22);
  animation: aboutCineOrbit 5.2s ease-in-out infinite alternate;
}

@keyframes aboutCineOrbit {
  to {
    opacity: .48;
    transform: rotate(-16deg) scale(1.06)
  }
}

.about-cinematic-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  gap: 46px;
  align-items: center;
  min-height: 620px;
}

.about-cinematic-copy h2 {
  font-size: 112px;
  line-height: .8;
  letter-spacing: 0;
  margin-top: 18px;
}

.about-cinematic-copy p {
  margin-top: 30px;
  max-width: 650px;
  color: #d8d1e8;
  font-size: 28px;
  line-height: 1.28;
  letter-spacing: 0;
}

.about-cinematic-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.about-cinematic-actions span {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.about-cinematic-visual {
  position: relative;
  min-height: 620px;
  border-radius: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 62% 28%, rgba(168, 85, 255, .18), transparent 32%),
    rgba(255, 255, 255, .035);
  box-shadow: 0 0 80px rgba(123, 34, 255, .16);
  transform-style: preserve-3d;
  transition: .22s ease;
}

.about-cinematic-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.08) saturate(1.12);
  transform: scale(1.03);
  transition: .7s ease;
}

.about-cinematic-visual:hover img {
  transform: scale(1.09);
  filter: brightness(.9) contrast(1.1) saturate(1.2);
}

.about-cinematic-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, transparent 18%, rgba(2, 2, 3, .18) 52%, rgba(2, 2, 3, .92) 100%),
    linear-gradient(180deg, transparent 48%, rgba(2, 2, 3, .86));
  z-index: 2;
}

.about-cine-frame {
  position: absolute;
  inset: 22px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 34px;
  pointer-events: none;
}

.about-floating-pill {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(5, 4, 9, .68);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  transition: .28s ease;
}

.about-floating-pill:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 42px rgba(123, 34, 255, .28);
}

.about-floating-pill strong {
  display: block;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}

.about-floating-pill span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-floating-pill.p1 {
  left: 26px;
  bottom: 28px
}

.about-floating-pill.p2 {
  right: 26px;
  bottom: 28px
}

.about-floating-pill.p3 {
  right: 28px;
  top: 28px
}

.about-cinematic-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-strip-card {
  min-height: 190px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .2), transparent 36%),
    linear-gradient(145deg, #0b0911, #050409);
  padding: 26px;
  transition: .28s ease;
  transform-style: preserve-3d;
  overflow: hidden;
  position: relative;
}

.about-strip-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 255, .25), transparent 42%);
  opacity: .18;
  pointer-events: none;
}

.about-strip-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .5);
  box-shadow: 0 0 42px rgba(123, 34, 255, .22);
}

.about-strip-card span {
  display: block;
  color: var(--purple-2);
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.about-strip-card strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.about-strip-card p {
  color: var(--muted);
  line-height: 1.45;
  position: relative;
  z-index: 2;
}


.projects-showcase-section {
  background: #020203;
  padding: 118px 0;
  position: relative;
  overflow: hidden;
}

.projects-showcase-glow-one {
  width: 520px;
  height: 520px;
  left: -260px;
  top: 18%;
  opacity: .14;
}

.projects-showcase-glow-two {
  width: 620px;
  height: 620px;
  right: -320px;
  bottom: 0;
  opacity: .16;
}

.projects-showcase-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 4.5vw, 74px);
  padding-right: clamp(18px, 4.5vw, 74px);
  position: relative;
  z-index: 3;
}

.projects-showcase-head {
  max-width: 1380px;
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 42px;
  align-items: end;
}

.projects-showcase-head h2 {
  font-size: 68px;
  line-height: .88;
  letter-spacing: 0;
  max-width: 920px;
}

.projects-showcase-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  max-width: 460px;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 340px;
  gap: 22px;
  max-width: 1680px;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #08070d;
  min-height: 340px;
  isolation: isolate;
  transition: .34s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.showcase-large {
  grid-row: span 2;
}

.showcase-wide {
  grid-column: span 2;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(1.05) contrast(1.08);
  transform: scale(1.015);
  transition: .75s cubic-bezier(.2, .8, .2, 1);
  z-index: 1;
}

.showcase-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 34, 255, .08), transparent 32%),
    linear-gradient(180deg, rgba(2, 2, 3, .02) 18%, rgba(2, 2, 3, .92) 100%);
  transition: .35s ease;
}

.showcase-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  z-index: 4;
  opacity: 0;
  transform: scale(.96);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.showcase-card:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.7);
  background: radial-gradient(circle, rgba(123, 34, 255, .34), transparent 62%);
  filter: blur(30px);
  opacity: 0;
  z-index: 3;
  transition: .35s ease;
  pointer-events: none;
}

.showcase-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.showcase-content span {
  display: block;
  color: #d8c9ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.showcase-content h3 {
  color: #fff;
  font-size: 42px;
  line-height: .92;
  letter-spacing: 0;
  max-width: 720px;
}

.showcase-hover-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  transform: translate(-50%, -50%) scale(.78);
  opacity: 0;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 0 46px rgba(123, 34, 255, .52);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.showcase-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .6);
  box-shadow: 0 0 60px rgba(123, 34, 255, .26), 0 36px 110px rgba(0, 0, 0, .42);
}

.showcase-card:hover img {
  transform: scale(1.11);
  filter: brightness(.46) saturate(1.22) contrast(1.12);
}

.showcase-card:hover .showcase-layer {
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 34, 255, .34), transparent 42%),
    linear-gradient(180deg, rgba(2, 2, 3, .24), rgba(2, 2, 3, .9));
}

.showcase-card:hover:before {
  opacity: 1;
  transform: scale(1);
}

.showcase-card:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.showcase-card:hover .showcase-hover-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.showcase-card:hover .showcase-content {
  opacity: .38;
  transform: translateY(14px);
}

@media(max-width:1180px) {
  .projects-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-large {
    grid-row: span 1;
  }

  .showcase-wide {
    grid-column: span 2;
  }
}

@media(max-width:820px) {
  .projects-showcase-section {
    padding: 78px 0;
  }

  .projects-showcase-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .projects-showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
    gap: 16px;
  }

  .showcase-wide {
    grid-column: span 1;
  }

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

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


.btn i,
.project-hover-btn i,
.showcase-hover-button i,
.special-link i,
.footer-social i,
.carousel-btn i {
  margin-right: 10px;
}

.carousel-btn i {
  margin-right: 0;
  font-size: 16px;
}

.footer-social i {
  margin-right: 0;
  font-size: 18px;
}

.specialty-icon i,
.stat-icon i {
  font-size: 20px;
}

.play-icon i {
  font-size: 16px;
  margin-left: 3px;
}

.contact-info-row strong i {
  margin-right: 8px;
}


h1,
h2,
h3,
.showcase-content h3,
.timeline-card h3,
.about-strip-card strong,
.special-card h3,
.orbital-cta-card h2,
.contact-full-copy h2 {
  letter-spacing: 0 !important;
}


h1 {
  font-size: 108px !important;
}

h2,
.orbital-cta-card h2,
.contact-full-copy h2,
.projects-showcase-head h2 {
  font-size: 68px !important;
  line-height: .95 !important;
}

h3,
.showcase-content h3,
.timeline-card h3,
.special-card h3 {
  font-size: 40px !important;
  line-height: 1 !important;
}

.about-cinematic-copy p {
  font-size: 26px !important;
}

@media(max-width:980px) {
  h1 {
    font-size: 74px !important;
  }

  h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .projects-showcase-head h2 {
    font-size: 52px !important;
  }

  h3,
  .showcase-content h3,
  .timeline-card h3,
  .special-card h3 {
    font-size: 32px !important;
  }
}

@media(max-width:720px) {
  h1 {
    font-size: 54px !important;
  }

  h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .projects-showcase-head h2 {
    font-size: 38px !important;
  }

  h3,
  .showcase-content h3,
  .timeline-card h3,
  .special-card h3 {
    font-size: 26px !important;
  }

  .about-cinematic-copy p {
    font-size: 20px !important;
  }
}


/* Correção fina da seção contato */
.contact-full-grid {
  grid-template-columns: minmax(420px, 1.05fr) minmax(520px, .95fr) !important;
  gap: 52px !important;
  align-items: center !important;
}

.contact-full-copy {
  padding-left: clamp(90px, 9vw, 180px) !important;
  max-width: 680px !important;
}

.contact-full-copy h2,
.contact-title {
  font-size: 58px !important;
  line-height: .92 !important;
  max-width: 620px !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.contact-full-copy p {
  max-width: 480px !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.contact-info-row {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 500px !important;
}

.contact-info-row a {
  min-width: 0 !important;
  overflow: hidden !important;
}

.contact-info-row span {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.contact-info-row strong {
  font-size: 17px !important;
  white-space: nowrap !important;
}

.contact-form-panel {
  max-width: 860px !important;
  justify-self: end !important;
  padding: 34px !important;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  padding: 16px !important;
}

.contact-form-panel textarea {
  min-height: 118px !important;
}

.contact-planet-wrap {
  left: -180px !important;
  width: 400px !important;
  opacity: .92 !important;
}

@media(max-width:1240px) {
  .contact-full-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-full-copy {
    padding-left: 0 !important;
    max-width: 760px !important;
  }

  .contact-full-copy h2,
  .contact-title {
    font-size: 52px !important;
    max-width: 760px !important;
  }

  .contact-form-panel {
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media(max-width:720px) {

  .contact-full-copy h2,
  .contact-title {
    font-size: 36px !important;
  }

  .contact-info-row {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  .contact-form-panel {
    padding: 22px !important;
  }
}


/* Correção Font Awesome: impede a fonte Magistral de sobrescrever os ícones */
i.fa,
i.fa-solid,
i.fa-regular,
i.fa-brands,
.fa,
.fa-solid,
.fa-regular,
.fa-brands {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal !important;
  font-weight: 900 !important;
  display: inline-block;
  line-height: 1;
}

i.fa-brands,
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

i.fa-regular,
.fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}


.timeline-launch-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 52px;
  position: relative;
  z-index: 5;
}

.timeline-launch-btn {
  position: relative;
  min-width: 520px;
  min-height: 108px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 255, .55);
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 34, 255, .24), transparent 52%),
    linear-gradient(135deg, rgba(123, 34, 255, .18), rgba(255, 255, 255, .03)),
    #08070d;
  color: #fff;
  box-shadow:
    0 0 44px rgba(123, 34, 255, .24),
    inset 0 0 32px rgba(123, 34, 255, .14);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.timeline-launch-btn:before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  opacity: .7;
}

.timeline-launch-btn:after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-24deg);
  transition: .7s ease;
}

.timeline-launch-btn:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(168, 85, 255, .9);
  box-shadow:
    0 0 60px rgba(123, 34, 255, .4),
    0 24px 90px rgba(0, 0, 0, .4);
}

.timeline-launch-btn:hover:after {
  left: 140%;
}

.timeline-launch-btn i {
  font-size: 28px;
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(168, 85, 255, .8));
}

.timeline-launch-btn span {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0 !important;
  color: #fff;
  line-height: 1;
}

@media(max-width:720px) {
  .timeline-launch-btn {
    min-width: 100%;
    min-height: 88px;
    padding: 0 24px;
  }

  .timeline-launch-btn span {
    font-size: 28px;
  }

  .timeline-launch-btn i {
    font-size: 22px;
  }
}


/* Correção botão WhatsApp no footer/contato */
.footer-contact-card .btn,
.contact-info-row .btn,
a.btn,
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
  text-align: center !important;
  line-height: 1 !important;
}

.footer-contact-card .btn {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 22px !important;
  font-size: 15px !important;
  border-radius: 18px !important;
}

.footer-contact-card .btn i,
.btn i {
  margin: 0 !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.footer-contact-card {
  overflow: hidden;
}

@media(max-width:720px) {
  .footer-contact-card .btn {
    width: 100% !important;
    font-size: 14px !important;
    padding: 0 18px !important;
  }
}


/* Especialidades: planetas + arraste */
.special-carousel {
  cursor: grab !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  scroll-behavior: smooth;
}

.special-carousel.dragging {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
}

.special-carousel.dragging .special-card {
  pointer-events: none;
}

.special-icon {
  overflow: hidden;
  position: relative;
}

.planet-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: block;
  position: relative;
  background:
    radial-gradient(circle at 32% 25%, #fff 0%, #d8c1ff 10%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(123, 34, 255, .92), rgba(123, 34, 255, .26) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(123, 34, 255, .12));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 28px rgba(123, 34, 255, .46), inset 0 0 24px rgba(255, 255, 255, .07);
}

.planet-service-icon:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 16px rgba(168, 85, 255, .3);
}

.planet-service-icon:after {
  content: "";
  position: absolute;
  right: 9px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px #fff;
  opacity: .9;
}

.special-card:hover .planet-service-icon {
  animation: planetServiceSpin 1.8s ease-in-out infinite alternate;
}

@keyframes planetServiceSpin {
  to {
    transform: translateY(-4px) rotate(8deg) scale(1.06)
  }
}


/* Carrossel suave + planetas únicos */
.special-carousel {
  cursor: grab !important;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
}

.special-carousel.dragging {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

.special-carousel.dragging .special-card {
  pointer-events: none;
}

.planet-service-icon.planet-1 {
  background:
    radial-gradient(circle at 30% 22%, #fff 0%, #d8c1ff 9%, rgba(168, 85, 255, .54) 24%, transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .26) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(123, 34, 255, .12));
}

.planet-service-icon.planet-2 {
  background:
    radial-gradient(circle at 65% 24%, #fff 0%, #ece2ff 8%, rgba(120, 80, 255, .5) 23%, transparent 40%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #16091f 100%);
}

.planet-service-icon.planet-2:before {
  width: 84px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(20deg);
  border-color: rgba(216, 193, 255, .46);
}

.planet-service-icon.planet-3 {
  background:
    radial-gradient(circle at 36% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.planet-service-icon.planet-3:before {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 255, .34);
  transform: translate(-50%, -50%) rotate(0deg);
}

.planet-service-icon.planet-4 {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .4) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.planet-service-icon.planet-4:before {
  width: 88px;
  height: 24px;
  transform: translate(-50%, -50%) rotate(-34deg);
  border-color: rgba(255, 255, 255, .32);
}


.special-carousel {
  overflow-x: auto !important;
}

.special-carousel .special-card[aria-hidden="true"] {
  pointer-events: auto;
}


.fan-specialties-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  min-height: 100vh;
}

.fan-glow-one {
  width: 620px;
  height: 620px;
  left: -300px;
  top: 18%;
  opacity: .17;
}

.fan-glow-two {
  width: 720px;
  height: 720px;
  right: -360px;
  bottom: -120px;
  opacity: .18;
}

.fan-specialties-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  position: relative;
  z-index: 3;
}

.fan-specialties-head {
  max-width: 1480px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 42px;
  align-items: end;
}

.fan-specialties-head h2 {
  max-width: 900px;
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}

.fan-specialties-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
}

.fan-stage {
  position: relative;
  width: min(1480px, 100%);
  height: 680px;
  margin: 0 auto;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.fan-stage:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 780px;
  height: 180px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(123, 34, 255, .22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.fan-card {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 420px;
  height: 560px;
  margin-left: -210px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 72% 18%, rgba(168, 85, 255, .2), transparent 32%),
    linear-gradient(145deg, #0b0911, #050409);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
  overflow: hidden;
  padding: 34px;
  transform-origin: 50% 105%;
  transform: translateY(90px) rotate(0deg) scale(.92);
  opacity: 0;
  transition:
    transform .9s cubic-bezier(.2, .9, .15, 1),
    opacity .8s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    filter .35s ease;
  isolation: isolate;
}

.fan-stage.active .fan-card {
  opacity: 1;
}

.fan-stage.active .fan-card-1 {
  transform: translateX(-390px) translateY(24px) rotate(-18deg) scale(.96);
  transition-delay: .05s;
}

.fan-stage.active .fan-card-2 {
  transform: translateX(-130px) translateY(-18px) rotate(-6deg) scale(1);
  transition-delay: .12s;
}

.fan-stage.active .fan-card-3 {
  transform: translateX(130px) translateY(-18px) rotate(6deg) scale(1);
  transition-delay: .19s;
}

.fan-stage.active .fan-card-4 {
  transform: translateX(390px) translateY(24px) rotate(18deg) scale(.96);
  transition-delay: .26s;
}

.fan-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  z-index: 3;
  pointer-events: none;
  opacity: .75;
}

.fan-card:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(100px);
  opacity: .18;
  transition: .35s ease;
  z-index: 1;
}

.fan-card:hover {
  z-index: 20;
  border-color: rgba(168, 85, 255, .68);
  box-shadow: 0 0 70px rgba(123, 34, 255, .36), 0 42px 120px rgba(0, 0, 0, .48);
  filter: saturate(1.18);
}

.fan-stage.active .fan-card-1:hover {
  transform: translateX(-390px) translateY(-26px) rotate(-11deg) scale(1.08);
}

.fan-stage.active .fan-card-2:hover {
  transform: translateX(-130px) translateY(-56px) rotate(-2deg) scale(1.08);
}

.fan-stage.active .fan-card-3:hover {
  transform: translateX(130px) translateY(-56px) rotate(2deg) scale(1.08);
}

.fan-stage.active .fan-card-4:hover {
  transform: translateX(390px) translateY(-26px) rotate(11deg) scale(1.08);
}

.fan-stage:hover .fan-card:not(:hover) {
  opacity: .62;
}

.fan-card:hover:after {
  opacity: .36;
}

.fan-number {
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 2;
  color: rgba(255, 255, 255, .07);
  font-size: 76px;
  font-weight: 700 !important;
  line-height: 1;
}

.fan-planet {
  position: relative;
  z-index: 4;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin-bottom: 54px;
  background:
    radial-gradient(circle at 32% 24%, #fff 0%, #d8c1ff 9%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .28) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(123, 34, 255, .12));
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 34px rgba(123, 34, 255, .42), inset 0 0 28px rgba(255, 255, 255, .07);
  transition: .35s ease;
}

.fan-planet:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 126px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .32);
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 18px rgba(168, 85, 255, .28);
}

.fan-card-2 .fan-planet {
  background:
    radial-gradient(circle at 62% 26%, #fff 0%, #eee4ff 9%, rgba(120, 80, 255, .48) 24%, transparent 42%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #13071f 100%);
}

.fan-card-2 .fan-planet:before {
  transform: translate(-50%, -50%) rotate(22deg);
}

.fan-card-3 .fan-planet {
  background:
    radial-gradient(circle at 34% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.fan-card-3 .fan-planet:before {
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-color: rgba(168, 85, 255, .3);
}

.fan-card-4 .fan-planet {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .42) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.fan-card-4 .fan-planet:before {
  transform: translate(-50%, -50%) rotate(-34deg);
}

.fan-card:hover .fan-planet {
  transform: translateY(-8px) rotate(8deg) scale(1.06);
}

.fan-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.fan-content h3 {
  margin: 16px 0 18px;
  color: #fff;
  font-size: 38px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.fan-content p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
  max-width: 340px;
}

.fan-content a {
  margin-top: auto;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700 !important;
  transition: .25s ease;
}

.fan-content a:hover {
  color: var(--purple-3);
  transform: translateX(8px);
}

.fan-hint {
  width: max-content;
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}

.fan-hint i {
  color: var(--purple-2);
  filter: drop-shadow(0 0 12px rgba(168, 85, 255, .7));
}

@media(max-width:1180px) {
  .fan-stage {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    perspective: none;
  }

  .fan-stage:before {
    display: none;
  }

  .fan-card,
  .fan-stage.active .fan-card,
  .fan-stage.active .fan-card-1,
  .fan-stage.active .fan-card-2,
  .fan-stage.active .fan-card-3,
  .fan-stage.active .fan-card-4,
  .fan-stage.active .fan-card-1:hover,
  .fan-stage.active .fan-card-2:hover,
  .fan-stage.active .fan-card-3:hover,
  .fan-stage.active .fan-card-4:hover {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 520px;
    margin: 0;
    transform: none;
    opacity: 1;
  }
}

@media(max-width:720px) {
  .fan-specialties-section {
    padding: 82px 0;
  }

  .fan-specialties-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .fan-specialties-head h2 {
    font-size: 38px !important;
  }

  .fan-stage {
    grid-template-columns: 1fr;
  }

  .fan-card {
    border-radius: 28px;
    padding: 28px;
    min-height: 480px !important;
  }

  .fan-content h3 {
    font-size: 30px !important;
  }

  .fan-hint {
    width: auto;
    text-align: center;
    justify-content: center;
  }
}


.stack-specialties-section {
  background: #020203;
  position: relative;
  overflow: visible;
  padding: 120px 0 80px;
}

.stack-glow-one {
  width: 620px;
  height: 620px;
  left: -310px;
  top: 10%;
  opacity: .16;
}

.stack-glow-two {
  width: 760px;
  height: 760px;
  right: -380px;
  bottom: 15%;
  opacity: .17;
}

.stack-specialties-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  position: relative;
  z-index: 3;
}

.stack-specialties-head {
  max-width: 1420px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 42px;
  align-items: end;
}

.stack-specialties-head h2 {
  max-width: 900px;
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}

.stack-specialties-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
}

.stack-cards {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  min-height: 260vh;
}

.stack-card {
  position: sticky;
  top: 112px;
  min-height: 620px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 84% 14%, rgba(168, 85, 255, .16), transparent 30%),
    linear-gradient(145deg, #0b0911, #050409);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 48px;
  align-items: center;
  padding: 52px;
  margin-bottom: 90px;
  overflow: hidden;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .42);
  transform-origin: 50% 18%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.stack-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  z-index: 2;
  pointer-events: none;
}

.stack-card:after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(130px);
  opacity: .14;
  transition: .3s ease;
  pointer-events: none;
}

.stack-card:hover {
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 70px rgba(123, 34, 255, .22), 0 42px 130px rgba(0, 0, 0, .5);
}

.stack-card:hover:after {
  opacity: .28;
}

.stack-card-1 {
  transform: rotate(-2.5deg);
  z-index: 1;
}

.stack-card-2 {
  transform: rotate(0deg);
  z-index: 2;
}

.stack-card-3 {
  transform: rotate(1.8deg);
  z-index: 3;
}

.stack-card-4 {
  transform: rotate(-1deg);
  z-index: 4;
}

.stack-card-copy,
.stack-card-visual {
  position: relative;
  z-index: 4;
}

.stack-card-copy h3 {
  margin: 16px 0 24px;
  color: #fff;
  font-size: 52px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.stack-card-copy p {
  color: #d8d1e8;
  font-size: 18px;
  line-height: 1.6;
  max-width: 670px;
}

.stack-list {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 30px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  max-width: 680px;
}

.stack-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
}

.stack-list i {
  color: var(--purple-3);
  filter: drop-shadow(0 0 10px rgba(168, 85, 255, .55));
}

.stack-cta {
  margin-top: 38px;
  min-height: 58px;
  width: max-content;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700 !important;
  transition: .25s ease;
  background: rgba(255, 255, 255, .035);
}

.stack-cta:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border-color: rgba(168, 85, 255, .8);
  box-shadow: 0 0 38px rgba(123, 34, 255, .36);
}

.stack-card-visual {
  min-height: 390px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 34, 255, .2), transparent 55%),
    linear-gradient(145deg, #12051f, #050409);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 36px rgba(255, 255, 255, .04);
}

.stack-planet {
  width: min(270px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 90px rgba(123, 34, 255, .38), inset 0 0 80px rgba(255, 255, 255, .06);
  animation: stackPlanetFloat 5.2s ease-in-out infinite alternate;
}

.stack-planet:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 30%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 30px rgba(168, 85, 255, .22);
}

.stack-planet:after {
  content: "";
  position: absolute;
  right: 22%;
  top: 20%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px #fff, 0 0 48px var(--purple-2);
}

.stack-planet-1 {
  background:
    radial-gradient(circle at 32% 24%, #fff 0%, #d8c1ff 8%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .28) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(123, 34, 255, .12));
}

.stack-planet-2 {
  background:
    radial-gradient(circle at 58% 26%, #fff 0%, #eee4ff 8%, rgba(120, 80, 255, .46) 24%, transparent 42%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #13071f 100%);
}

.stack-planet-2:before {
  transform: translate(-50%, -50%) rotate(22deg);
}

.stack-planet-3 {
  background:
    radial-gradient(circle at 34% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.stack-planet-3:before {
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-color: rgba(168, 85, 255, .28);
}

.stack-planet-4 {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .42) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.stack-planet-4:before {
  transform: translate(-50%, -50%) rotate(-34deg);
}

@keyframes stackPlanetFloat {
  to {
    transform: translateY(-24px) rotate(6deg) scale(1.03)
  }
}

@media(max-width:980px) {
  .stack-specialties-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stack-cards {
    min-height: auto;
  }

  .stack-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    transform: none !important;
    margin-bottom: 24px;
    min-height: auto;
    padding: 32px;
  }

  .stack-card-visual {
    min-height: 320px;
  }
}

@media(max-width:720px) {
  .stack-specialties-section {
    padding: 82px 0;
  }

  .stack-specialties-head h2 {
    font-size: 38px !important;
  }

  .stack-card {
    border-radius: 28px;
    padding: 26px;
  }

  .stack-card-copy h3 {
    font-size: 34px !important;
  }

  .stack-card-copy p {
    font-size: 16px;
  }

  .stack-list {
    grid-template-columns: 1fr;
  }

  .stack-card-visual {
    min-height: 260px;
  }
}


/* Timeline: conteúdo surgindo no scroll */
.timeline-item {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity .75s cubic-bezier(.2, .8, .2, 1),
    transform .85s cubic-bezier(.2, .8, .2, 1),
    filter .75s ease;
}

.timeline-left {
  transform: translateX(-80px) translateY(40px) scale(.96);
}

.timeline-right {
  transform: translateX(80px) translateY(40px) scale(.96);
}

.timeline-item.timeline-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) translateY(0) scale(1);
}

.timeline-dot {
  opacity: .35;
  transform: scale(.82);
  transition:
    opacity .6s ease,
    transform .7s cubic-bezier(.2, .8, .2, 1),
    box-shadow .7s ease;
}

.timeline-item.timeline-visible .timeline-dot {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 34px rgba(123, 34, 255, .5),
    0 0 70px rgba(123, 34, 255, .26),
    inset 0 0 22px rgba(123, 34, 255, .16);
}

.timeline-card {
  transition:
    transform .28s ease,
    opacity .75s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.timeline-item.timeline-visible .timeline-card {
  animation: timelineCardGlow 1.1s ease both;
}

@keyframes timelineCardGlow {
  0% {
    box-shadow: 0 0 0 rgba(123, 34, 255, 0)
  }

  45% {
    box-shadow: 0 0 54px rgba(123, 34, 255, .28)
  }

  100% {
    box-shadow: 0 0 0 rgba(123, 34, 255, 0)
  }
}

.timeline-center {
  opacity: .42;
  transition: opacity .8s ease;
}

.process-timeline-section.timeline-active .timeline-center {
  opacity: 1;
}

@media(max-width:860px) {

  .timeline-left,
  .timeline-right {
    transform: translateY(44px) scale(.96);
  }

  .timeline-item.timeline-visible {
    transform: translateY(0) scale(1);
  }
}


.clients-marquee-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 118px 0;
}

.clients-glow-one {
  width: 580px;
  height: 580px;
  left: -290px;
  top: 8%;
  opacity: .14;
}

.clients-glow-two {
  width: 680px;
  height: 680px;
  right: -340px;
  bottom: -160px;
  opacity: .17;
}

.clients-marquee-head {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto 56px;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: 42px;
  align-items: end;
  position: relative;
  z-index: 3;
}

.clients-marquee-head h2 {
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
  max-width: 900px;
}

.clients-marquee-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
}

.clients-marquee-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  gap: 22px;
  padding: 12px 0;
}

.clients-marquee-wrap:before,
.clients-marquee-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18vw;
  z-index: 5;
  pointer-events: none;
}

.clients-marquee-wrap:before {
  left: 0;
  background: linear-gradient(90deg, #020203, transparent);
}

.clients-marquee-wrap:after {
  right: 0;
  background: linear-gradient(270deg, #020203, transparent);
}

.clients-marquee-row {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.row-one {
  animation: clientMarqueeLeft 36s linear infinite;
}

.row-two {
  animation: clientMarqueeRight 42s linear infinite;
  transform: translateX(-360px);
}

.clients-marquee-wrap:hover .clients-marquee-row {
  animation-play-state: paused;
}

@keyframes clientMarqueeLeft {
  from {
    transform: translateX(0)
  }

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

@keyframes clientMarqueeRight {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.client-marquee-card {
  flex: 0 0 310px;
  height: 128px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .18), transparent 36%),
    rgba(255, 255, 255, .045);
  display: grid;
  place-items: center;
  padding: 26px;
  transition: .28s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.client-marquee-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 255, .22), transparent 46%);
  opacity: 0;
  transition: .28s ease;
}

.client-marquee-card img {
  max-width: 210px;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(1.05);
  position: relative;
  z-index: 2;
  transition: .28s ease;
}

.client-marquee-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(168, 85, 255, .56);
  box-shadow: 0 0 42px rgba(123, 34, 255, .28), 0 24px 80px rgba(0, 0, 0, .34);
  background: #f4efdf;
}

.client-marquee-card:hover:before {
  opacity: 1;
}

.client-marquee-card:hover img {
  transform: scale(1.06);
}

.clients-impact-strip {
  width: min(1180px, calc(100% - 44px));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 4;
}

.clients-impact-strip div {
  min-height: 132px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .2), transparent 38%),
    linear-gradient(145deg, #0b0911, #050409);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: .28s ease;
}

.clients-impact-strip div:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 255, .5);
  box-shadow: 0 0 38px rgba(123, 34, 255, .22);
}

.clients-impact-strip strong {
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: 700 !important;
  margin-bottom: 8px;
}

.clients-impact-strip span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

@media(max-width:920px) {
  .clients-marquee-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clients-marquee-head h2 {
    font-size: 46px !important;
  }

  .client-marquee-card {
    flex-basis: 240px;
    height: 112px;
  }

  .client-marquee-card img {
    max-width: 170px;
    max-height: 62px;
  }

  .clients-impact-strip {
    grid-template-columns: 1fr;
  }
}

@media(max-width:720px) {
  .clients-marquee-section {
    padding: 82px 0;
  }

  .clients-marquee-head h2 {
    font-size: 38px !important;
  }

  .client-marquee-card {
    flex-basis: 220px;
    border-radius: 22px;
  }
}


/* Footer: títulos menores e mais refinados */
footer h2,
.footer-title,
.footer-grid h2,
.footer-grid h3 {
  font-size: 22px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  margin-bottom: 18px !important;
}

.footer-grid {
  gap: 48px !important;
}

.footer-contact-card h3 {
  font-size: 18px !important;
  line-height: 1.1 !important;
}

@media(max-width:720px) {

  footer h2,
  .footer-title,
  .footer-grid h2,
  .footer-grid h3 {
    font-size: 18px !important;
  }
}


.footer-col h3 {
  font-size: 25px !important;
}


.about-orbit-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.about-orbit-glow-one {
  width: 640px;
  height: 640px;
  left: -320px;
  top: 12%;
  opacity: .16;
}

.about-orbit-glow-two {
  width: 640px;
  height: 640px;
  right: -280px;
  bottom: -120px;
  opacity: .14;
}

.about-orbit-container {
  width: min(1500px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.about-orbit-grid {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.about-orbit-image {
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #08070d;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
}

.about-orbit-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.08) saturate(1.1);
  transform: scale(1.04);
  transition: 1s cubic-bezier(.2, .8, .2, 1);
}

.about-orbit-image:hover img {
  transform: scale(1.1);
  filter: brightness(.9) contrast(1.1) saturate(1.2);
}

.about-orbit-image:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 24%, rgba(168, 85, 255, .28), transparent 32%),
    linear-gradient(180deg, transparent 44%, rgba(2, 2, 3, .88));
  pointer-events: none;
}

45%,
55% {
  opacity: 1
}

100% {
  transform: translateY(360%)
}
}

.about-title-line h2 {
  font-size: 88px !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
  margin-top: 12px;
}

.about-orbit-columns {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: 34px;
  align-items: stretch;
}

.about-copy-card,
.about-special-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 84% 0%, rgba(168, 85, 255, .14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  padding: 34px;
  overflow: hidden;
}

.about-copy-card:after,
.about-special-card:after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(90px);
  opacity: .14;
  pointer-events: none;
}

.about-copy-card>*,
.about-special-card>* {
  position: relative;
  z-index: 2;
}

.about-copy-card h3 {
  font-size: 34px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  margin-bottom: 20px;
  color: #fff;
}

.about-copy-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
}

.about-orbit-btn {
  margin-top: 30px;
  min-height: 56px;
  width: max-content;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #050409;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700 !important;
  transition: .25s ease;
}

.about-orbit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 38px rgba(123, 34, 255, .34);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
}

.about-special-card h3 {
  font-size: 28px !important;
  margin-bottom: 22px;
  color: #fff;
}

.about-special-card ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.about-special-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  transition: .25s ease;
}

.about-special-card li:hover {
  color: #fff;
  transform: translateX(8px);
}

.about-special-card li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(123, 34, 255, .16);
  color: var(--purple-3);
  flex-shrink: 0;
}

.about-numbers-orbit {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-number-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 82% 100%, rgba(123, 34, 255, .2), transparent 38%),
    #08070d;
  transition: .28s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.about-number-card:before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 255, .25);
  box-shadow: 0 0 42px rgba(123, 34, 255, .18);
}

.about-number-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 42px rgba(123, 34, 255, .25);
}

.about-number-card span {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700 !important;
  max-width: 220px;
}

.about-number-card strong {
  display: block;
  margin: 26px 0 14px;
  color: #fff;
  font-size: 58px;
  line-height: .9;
  font-weight: 700 !important;
}

.about-number-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  max-width: 220px;
}

.about-reveal-left,
.about-reveal-up {
  opacity: 0;
  filter: blur(10px);
  transition: opacity .85s ease, transform .9s cubic-bezier(.2, .8, .2, 1), filter .85s ease;
}

.about-reveal-left {
  transform: translateX(-80px) scale(.96);
}

.about-reveal-up {
  transform: translateY(54px) scale(.98);
}

.about-orbit-section.about-visible .about-reveal-left,
.about-orbit-section.about-visible .about-reveal-up {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.about-orbit-section.about-visible .about-reveal-up:nth-child(1) {
  transition-delay: .08s
}

.about-orbit-section.about-visible .about-reveal-up:nth-child(2) {
  transition-delay: .16s
}

@media(max-width:1100px) {

  .about-orbit-grid,
  .about-orbit-columns {
    grid-template-columns: 1fr;
  }

  .about-title-line h2 {
    font-size: 64px !important;
  }

  .about-orbit-image {
    min-height: 520px;
  }

  .about-numbers-orbit {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:720px) {
  .about-orbit-section {
    padding: 82px 0;
  }

  .about-orbit-container {
    width: min(100% - 28px, 1500px);
  }

  .about-title-line h2 {
    font-size: 42px !important;
  }

  .about-orbit-image {
    min-height: 390px;
    border-radius: 28px;
  }

  .about-copy-card,
  .about-special-card {
    padding: 26px;
    border-radius: 24px;
  }

  .about-copy-card h3 {
    font-size: 28px !important;
  }

  .about-numbers-orbit {
    grid-template-columns: 1fr;
  }
}


/* Sistema global de surgimento no scroll */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-scale {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity .85s ease,
    transform .95s cubic-bezier(.2, .8, .2, 1),
    filter .85s ease;
  will-change: opacity, transform, filter;
}

.scroll-reveal {
  transform: translateY(54px);
}

.scroll-reveal-left {
  transform: translateX(-70px) translateY(24px);
}

.scroll-reveal-right {
  transform: translateX(70px) translateY(24px);
}

.scroll-reveal-scale {
  transform: translateY(40px) scale(.94);
}

.scroll-visible {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: none !important;
}

.scroll-delay-1 {
  transition-delay: .08s
}

.scroll-delay-2 {
  transition-delay: .16s
}

.scroll-delay-3 {
  transition-delay: .24s
}

.scroll-delay-4 {
  transition-delay: .32s
}

.scroll-delay-5 {
  transition-delay: .40s
}

@media(prefers-reduced-motion:reduce) {

  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-scale {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Preserva o efeito original dos cards sticky da seção Especialidades */
.stack-card.scroll-reveal,
.stack-card.scroll-reveal-left,
.stack-card.scroll-reveal-right,
.stack-card.scroll-reveal-scale,
.stack-card.scroll-visible {
  opacity: 1 !important;
  filter: none !important;
}

.stack-card.scroll-reveal,
.stack-card.scroll-reveal-left,
.stack-card.scroll-reveal-right,
.stack-card.scroll-reveal-scale {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease !important;
}


.faq-orbit-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #020203;
}

.faq-glow-one {
  width: 560px;
  height: 560px;
  left: -260px;
  top: 10%;
  opacity: .14;
}

.faq-glow-two {
  width: 640px;
  height: 640px;
  right: -320px;
  bottom: -180px;
  opacity: .16;
}

.faq-orbit-container {
  width: min(1450px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.faq-head {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 42px;
  align-items: end;
}

.faq-head h2 {
  font-size: 72px !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
}

.faq-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 85, 255, .16), transparent 34%),
    linear-gradient(145deg, #0b0911, #050409);
  overflow: hidden;
  transition: .28s ease;
}

.faq-item:hover {
  border-color: rgba(168, 85, 255, .48);
  box-shadow: 0 0 42px rgba(123, 34, 255, .18);
}

.faq-question {
  width: 100%;
  min-height: 92px;
  padding: 28px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #fff;
  text-align: left;
}

.faq-question span {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700 !important;
}

.faq-question i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(168, 85, 255, .12);
  color: var(--purple-3);
  flex-shrink: 0;
  transition: .28s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease;
}

.faq-answer p {
  padding: 0 28px 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  box-shadow: 0 0 28px rgba(123, 34, 255, .28);
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

@media(max-width:980px) {
  .faq-head {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-head h2 {
    font-size: 48px !important;
  }
}

@media(max-width:720px) {
  .faq-orbit-section {
    padding: 82px 0;
  }

  .faq-orbit-container {
    width: min(100% - 28px, 1450px);
  }

  .faq-head h2 {
    font-size: 38px !important;
  }

  .faq-question {
    padding: 22px;
    min-height: 84px;
  }

  .faq-question span {
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
  }
}


/* FAQ corrigido: fechado por padrão e abre ao clicar */
.faq-item .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .42s ease !important;
}

.faq-item.active .faq-answer {
  max-height: 360px !important;
}

.faq-question {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.faq-question i {
  display: grid !important;
  transition: .28s ease !important;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg) !important;
}


.stack-card-visual {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.stack-specialty-img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 24px;
  filter: brightness(.82) contrast(1.08) saturate(1.16);
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s ease;
}

.stack-card-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(123, 34, 255, .08), transparent 40%),
    linear-gradient(180deg, transparent 42%, rgba(2, 2, 3, .72));
  pointer-events: none;
  border-radius: 24px;
}

.stack-card:hover .stack-specialty-img {
  transform: scale(1.08);
  filter: brightness(.95) contrast(1.12) saturate(1.24);
}

@media(max-width:720px) {
  .stack-specialty-img {
    min-height: 260px;
  }
}

@media(max-width:1080px) {
  .about-cinematic-grid {
    grid-template-columns: 1fr;
  }

  .about-cinematic-visual {
    min-height: 520px;
  }

  .about-cinematic-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cine-planet {
    width: 620px;
    right: -260px;
    opacity: .25;
  }
}

@media(max-width:720px) {
  .about-cinematic-section {
    min-height: auto;
    padding: 84px 0;
  }

  .about-cinematic-copy h2 {
    font-size: 72px;
  }

  .about-cinematic-copy p {
    font-size: 22px;
  }

  .about-cinematic-visual {
    min-height: 430px;
    border-radius: 30px;
  }

  .about-floating-pill {
    min-width: 150px;
    padding: 14px;
    border-radius: 18px;
  }

  .about-floating-pill strong {
    font-size: 28px;
  }

  .about-floating-pill.p2 {
    display: none
  }

  .about-floating-pill.p3 {
    top: 18px;
    right: 18px
  }

  .about-floating-pill.p1 {
    left: 18px;
    bottom: 18px
  }

  .about-cinematic-strip {
    grid-template-columns: 1fr;
  }
}


.projects-showcase-section {
  background: #020203;
  padding: 118px 0;
  position: relative;
  overflow: hidden;
}

.projects-showcase-glow-one {
  width: 520px;
  height: 520px;
  left: -260px;
  top: 18%;
  opacity: .14;
}

.projects-showcase-glow-two {
  width: 620px;
  height: 620px;
  right: -320px;
  bottom: 0;
  opacity: .16;
}

.projects-showcase-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 4.5vw, 74px);
  padding-right: clamp(18px, 4.5vw, 74px);
  position: relative;
  z-index: 3;
}

.projects-showcase-head {
  max-width: 1380px;
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 42px;
  align-items: end;
}

.projects-showcase-head h2 {
  font-size: 68px;
  line-height: .88;
  letter-spacing: 0;
  max-width: 920px;
}

.projects-showcase-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  max-width: 460px;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 340px;
  gap: 22px;
  max-width: 1680px;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #08070d;
  min-height: 340px;
  isolation: isolate;
  transition: .34s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.showcase-large {
  grid-row: span 2;
}

.showcase-wide {
  grid-column: span 2;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(1.05) contrast(1.08);
  transform: scale(1.015);
  transition: .75s cubic-bezier(.2, .8, .2, 1);
  z-index: 1;
}

.showcase-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 34, 255, .08), transparent 32%),
    linear-gradient(180deg, rgba(2, 2, 3, .02) 18%, rgba(2, 2, 3, .92) 100%);
  transition: .35s ease;
}

.showcase-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  z-index: 4;
  opacity: 0;
  transform: scale(.96);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.showcase-card:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.7);
  background: radial-gradient(circle, rgba(123, 34, 255, .34), transparent 62%);
  filter: blur(30px);
  opacity: 0;
  z-index: 3;
  transition: .35s ease;
  pointer-events: none;
}

.showcase-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.showcase-content span {
  display: block;
  color: #d8c9ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.showcase-content h3 {
  color: #fff;
  font-size: 42px;
  line-height: .92;
  letter-spacing: 0;
  max-width: 720px;
}

.showcase-hover-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  transform: translate(-50%, -50%) scale(.78);
  opacity: 0;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 0 46px rgba(123, 34, 255, .52);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.showcase-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .6);
  box-shadow: 0 0 60px rgba(123, 34, 255, .26), 0 36px 110px rgba(0, 0, 0, .42);
}

.showcase-card:hover img {
  transform: scale(1.11);
  filter: brightness(.46) saturate(1.22) contrast(1.12);
}

.showcase-card:hover .showcase-layer {
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 34, 255, .34), transparent 42%),
    linear-gradient(180deg, rgba(2, 2, 3, .24), rgba(2, 2, 3, .9));
}

.showcase-card:hover:before {
  opacity: 1;
  transform: scale(1);
}

.showcase-card:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.showcase-card:hover .showcase-hover-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.showcase-card:hover .showcase-content {
  opacity: .38;
  transform: translateY(14px);
}

@media(max-width:1180px) {
  .projects-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-large {
    grid-row: span 1;
  }

  .showcase-wide {
    grid-column: span 2;
  }
}

@media(max-width:820px) {
  .projects-showcase-section {
    padding: 78px 0;
  }

  .projects-showcase-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .projects-showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
    gap: 16px;
  }

  .showcase-wide {
    grid-column: span 1;
  }

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

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


.btn i,
.project-hover-btn i,
.showcase-hover-button i,
.special-link i,
.footer-social i,
.carousel-btn i {
  margin-right: 10px;
}

.carousel-btn i {
  margin-right: 0;
  font-size: 16px;
}

.footer-social i {
  margin-right: 0;
  font-size: 18px;
}

.specialty-icon i,
.stat-icon i {
  font-size: 20px;
}

.play-icon i {
  font-size: 16px;
  margin-left: 3px;
}

.contact-info-row strong i {
  margin-right: 8px;
}


h1,
h2,
h3,
.showcase-content h3,
.timeline-card h3,
.about-strip-card strong,
.special-card h3,
.orbital-cta-card h2,
.contact-full-copy h2 {
  letter-spacing: 0 !important;
}


h1 {
  font-size: 108px !important;
}

h2,
.orbital-cta-card h2,
.contact-full-copy h2,
.projects-showcase-head h2 {
  font-size: 68px !important;
  line-height: .95 !important;
}

h3,
.showcase-content h3,
.timeline-card h3,
.special-card h3 {
  font-size: 40px !important;
  line-height: 1 !important;
}

.about-cinematic-copy p {
  font-size: 26px !important;
}

@media(max-width:980px) {
  h1 {
    font-size: 74px !important;
  }

  h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .projects-showcase-head h2 {
    font-size: 52px !important;
  }

  h3,
  .showcase-content h3,
  .timeline-card h3,
  .special-card h3 {
    font-size: 32px !important;
  }
}

@media(max-width:720px) {
  h1 {
    font-size: 54px !important;
  }

  h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .projects-showcase-head h2 {
    font-size: 38px !important;
  }

  h3,
  .showcase-content h3,
  .timeline-card h3,
  .special-card h3 {
    font-size: 26px !important;
  }

  .about-cinematic-copy p {
    font-size: 20px !important;
  }
}


/* Correção fina da seção contato */
.contact-full-grid {
  grid-template-columns: minmax(420px, 1.05fr) minmax(520px, .95fr) !important;
  gap: 52px !important;
  align-items: center !important;
}

.contact-full-copy {
  padding-left: clamp(90px, 9vw, 180px) !important;
  max-width: 680px !important;
}

.contact-full-copy h2,
.contact-title {
  font-size: 58px !important;
  line-height: .92 !important;
  max-width: 620px !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.contact-full-copy p {
  max-width: 480px !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.contact-info-row {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 500px !important;
}

.contact-info-row a {
  min-width: 0 !important;
  overflow: hidden !important;
}

.contact-info-row span {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.contact-info-row strong {
  font-size: 17px !important;
  white-space: nowrap !important;
}

.contact-form-panel {
  max-width: 860px !important;
  justify-self: end !important;
  padding: 34px !important;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  padding: 16px !important;
}

.contact-form-panel textarea {
  min-height: 118px !important;
}

.contact-planet-wrap {
  left: -180px !important;
  width: 400px !important;
  opacity: .92 !important;
}

@media(max-width:1240px) {
  .contact-full-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-full-copy {
    padding-left: 0 !important;
    max-width: 760px !important;
  }

  .contact-full-copy h2,
  .contact-title {
    font-size: 52px !important;
    max-width: 760px !important;
  }

  .contact-form-panel {
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media(max-width:720px) {

  .contact-full-copy h2,
  .contact-title {
    font-size: 36px !important;
  }

  .contact-info-row {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  .contact-form-panel {
    padding: 22px !important;
  }
}


/* Correção Font Awesome: impede a fonte Magistral de sobrescrever os ícones */
i.fa,
i.fa-solid,
i.fa-regular,
i.fa-brands,
.fa,
.fa-solid,
.fa-regular,
.fa-brands {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal !important;
  font-weight: 900 !important;
  display: inline-block;
  line-height: 1;
}

i.fa-brands,
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

i.fa-regular,
.fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}


.timeline-launch-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 52px;
  position: relative;
  z-index: 5;
}

.timeline-launch-btn {
  position: relative;
  min-width: 520px;
  min-height: 108px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 255, .55);
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 34, 255, .24), transparent 52%),
    linear-gradient(135deg, rgba(123, 34, 255, .18), rgba(255, 255, 255, .03)),
    #08070d;
  color: #fff;
  box-shadow:
    0 0 44px rgba(123, 34, 255, .24),
    inset 0 0 32px rgba(123, 34, 255, .14);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.timeline-launch-btn:before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  opacity: .7;
}

.timeline-launch-btn:after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-24deg);
  transition: .7s ease;
}

.timeline-launch-btn:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(168, 85, 255, .9);
  box-shadow:
    0 0 60px rgba(123, 34, 255, .4),
    0 24px 90px rgba(0, 0, 0, .4);
}

.timeline-launch-btn:hover:after {
  left: 140%;
}

.timeline-launch-btn i {
  font-size: 28px;
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(168, 85, 255, .8));
}

.timeline-launch-btn span {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0 !important;
  color: #fff;
  line-height: 1;
}

@media(max-width:720px) {
  .timeline-launch-btn {
    min-width: 100%;
    min-height: 88px;
    padding: 0 24px;
  }

  .timeline-launch-btn span {
    font-size: 28px;
  }

  .timeline-launch-btn i {
    font-size: 22px;
  }
}


/* Correção botão WhatsApp no footer/contato */
.footer-contact-card .btn,
.contact-info-row .btn,
a.btn,
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
  text-align: center !important;
  line-height: 1 !important;
}

.footer-contact-card .btn {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 22px !important;
  font-size: 15px !important;
  border-radius: 18px !important;
}

.footer-contact-card .btn i,
.btn i {
  margin: 0 !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.footer-contact-card {
  overflow: hidden;
}

@media(max-width:720px) {
  .footer-contact-card .btn {
    width: 100% !important;
    font-size: 14px !important;
    padding: 0 18px !important;
  }
}


/* Especialidades: planetas + arraste */
.special-carousel {
  cursor: grab !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  scroll-behavior: smooth;
}

.special-carousel.dragging {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
}

.special-carousel.dragging .special-card {
  pointer-events: none;
}

.special-icon {
  overflow: hidden;
  position: relative;
}

.planet-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: block;
  position: relative;
  background:
    radial-gradient(circle at 32% 25%, #fff 0%, #d8c1ff 10%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(123, 34, 255, .92), rgba(123, 34, 255, .26) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(123, 34, 255, .12));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 28px rgba(123, 34, 255, .46), inset 0 0 24px rgba(255, 255, 255, .07);
}

.planet-service-icon:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 16px rgba(168, 85, 255, .3);
}

.planet-service-icon:after {
  content: "";
  position: absolute;
  right: 9px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px #fff;
  opacity: .9;
}

.special-card:hover .planet-service-icon {
  animation: planetServiceSpin 1.8s ease-in-out infinite alternate;
}

@keyframes planetServiceSpin {
  to {
    transform: translateY(-4px) rotate(8deg) scale(1.06)
  }
}


/* Carrossel suave + planetas únicos */
.special-carousel {
  cursor: grab !important;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
}

.special-carousel.dragging {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

.special-carousel.dragging .special-card {
  pointer-events: none;
}

.planet-service-icon.planet-1 {
  background:
    radial-gradient(circle at 30% 22%, #fff 0%, #d8c1ff 9%, rgba(168, 85, 255, .54) 24%, transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .26) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(123, 34, 255, .12));
}

.planet-service-icon.planet-2 {
  background:
    radial-gradient(circle at 65% 24%, #fff 0%, #ece2ff 8%, rgba(120, 80, 255, .5) 23%, transparent 40%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #16091f 100%);
}

.planet-service-icon.planet-2:before {
  width: 84px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(20deg);
  border-color: rgba(216, 193, 255, .46);
}

.planet-service-icon.planet-3 {
  background:
    radial-gradient(circle at 36% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.planet-service-icon.planet-3:before {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 255, .34);
  transform: translate(-50%, -50%) rotate(0deg);
}

.planet-service-icon.planet-4 {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .4) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.planet-service-icon.planet-4:before {
  width: 88px;
  height: 24px;
  transform: translate(-50%, -50%) rotate(-34deg);
  border-color: rgba(255, 255, 255, .32);
}


.special-carousel {
  overflow-x: auto !important;
}

.special-carousel .special-card[aria-hidden="true"] {
  pointer-events: auto;
}


.fan-specialties-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  min-height: 100vh;
}

.fan-glow-one {
  width: 620px;
  height: 620px;
  left: -300px;
  top: 18%;
  opacity: .17;
}

.fan-glow-two {
  width: 720px;
  height: 720px;
  right: -360px;
  bottom: -120px;
  opacity: .18;
}

.fan-specialties-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  position: relative;
  z-index: 3;
}

.fan-specialties-head {
  max-width: 1480px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 42px;
  align-items: end;
}

.fan-specialties-head h2 {
  max-width: 900px;
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}

.fan-specialties-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
}

.fan-stage {
  position: relative;
  width: min(1480px, 100%);
  height: 680px;
  margin: 0 auto;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.fan-stage:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 780px;
  height: 180px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(123, 34, 255, .22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.fan-card {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 420px;
  height: 560px;
  margin-left: -210px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 72% 18%, rgba(168, 85, 255, .2), transparent 32%),
    linear-gradient(145deg, #0b0911, #050409);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
  overflow: hidden;
  padding: 34px;
  transform-origin: 50% 105%;
  transform: translateY(90px) rotate(0deg) scale(.92);
  opacity: 0;
  transition:
    transform .9s cubic-bezier(.2, .9, .15, 1),
    opacity .8s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    filter .35s ease;
  isolation: isolate;
}

.fan-stage.active .fan-card {
  opacity: 1;
}

.fan-stage.active .fan-card-1 {
  transform: translateX(-390px) translateY(24px) rotate(-18deg) scale(.96);
  transition-delay: .05s;
}

.fan-stage.active .fan-card-2 {
  transform: translateX(-130px) translateY(-18px) rotate(-6deg) scale(1);
  transition-delay: .12s;
}

.fan-stage.active .fan-card-3 {
  transform: translateX(130px) translateY(-18px) rotate(6deg) scale(1);
  transition-delay: .19s;
}

.fan-stage.active .fan-card-4 {
  transform: translateX(390px) translateY(24px) rotate(18deg) scale(.96);
  transition-delay: .26s;
}

.fan-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  z-index: 3;
  pointer-events: none;
  opacity: .75;
}

.fan-card:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(100px);
  opacity: .18;
  transition: .35s ease;
  z-index: 1;
}

.fan-card:hover {
  z-index: 20;
  border-color: rgba(168, 85, 255, .68);
  box-shadow: 0 0 70px rgba(123, 34, 255, .36), 0 42px 120px rgba(0, 0, 0, .48);
  filter: saturate(1.18);
}

.fan-stage.active .fan-card-1:hover {
  transform: translateX(-390px) translateY(-26px) rotate(-11deg) scale(1.08);
}

.fan-stage.active .fan-card-2:hover {
  transform: translateX(-130px) translateY(-56px) rotate(-2deg) scale(1.08);
}

.fan-stage.active .fan-card-3:hover {
  transform: translateX(130px) translateY(-56px) rotate(2deg) scale(1.08);
}

.fan-stage.active .fan-card-4:hover {
  transform: translateX(390px) translateY(-26px) rotate(11deg) scale(1.08);
}

.fan-stage:hover .fan-card:not(:hover) {
  opacity: .62;
}

.fan-card:hover:after {
  opacity: .36;
}

.fan-number {
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 2;
  color: rgba(255, 255, 255, .07);
  font-size: 76px;
  font-weight: 700 !important;
  line-height: 1;
}

.fan-planet {
  position: relative;
  z-index: 4;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin-bottom: 54px;
  background:
    radial-gradient(circle at 32% 24%, #fff 0%, #d8c1ff 9%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .28) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(123, 34, 255, .12));
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 34px rgba(123, 34, 255, .42), inset 0 0 28px rgba(255, 255, 255, .07);
  transition: .35s ease;
}

.fan-planet:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 126px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .32);
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 18px rgba(168, 85, 255, .28);
}

.fan-card-2 .fan-planet {
  background:
    radial-gradient(circle at 62% 26%, #fff 0%, #eee4ff 9%, rgba(120, 80, 255, .48) 24%, transparent 42%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #13071f 100%);
}

.fan-card-2 .fan-planet:before {
  transform: translate(-50%, -50%) rotate(22deg);
}

.fan-card-3 .fan-planet {
  background:
    radial-gradient(circle at 34% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.fan-card-3 .fan-planet:before {
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-color: rgba(168, 85, 255, .3);
}

.fan-card-4 .fan-planet {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .42) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.fan-card-4 .fan-planet:before {
  transform: translate(-50%, -50%) rotate(-34deg);
}

.fan-card:hover .fan-planet {
  transform: translateY(-8px) rotate(8deg) scale(1.06);
}

.fan-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.fan-content h3 {
  margin: 16px 0 18px;
  color: #fff;
  font-size: 38px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.fan-content p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
  max-width: 340px;
}

.fan-content a {
  margin-top: auto;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700 !important;
  transition: .25s ease;
}

.fan-content a:hover {
  color: var(--purple-3);
  transform: translateX(8px);
}

.fan-hint {
  width: max-content;
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}

.fan-hint i {
  color: var(--purple-2);
  filter: drop-shadow(0 0 12px rgba(168, 85, 255, .7));
}

@media(max-width:1180px) {
  .fan-stage {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    perspective: none;
  }

  .fan-stage:before {
    display: none;
  }

  .fan-card,
  .fan-stage.active .fan-card,
  .fan-stage.active .fan-card-1,
  .fan-stage.active .fan-card-2,
  .fan-stage.active .fan-card-3,
  .fan-stage.active .fan-card-4,
  .fan-stage.active .fan-card-1:hover,
  .fan-stage.active .fan-card-2:hover,
  .fan-stage.active .fan-card-3:hover,
  .fan-stage.active .fan-card-4:hover {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 520px;
    margin: 0;
    transform: none;
    opacity: 1;
  }
}

@media(max-width:720px) {
  .fan-specialties-section {
    padding: 82px 0;
  }

  .fan-specialties-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .fan-specialties-head h2 {
    font-size: 38px !important;
  }

  .fan-stage {
    grid-template-columns: 1fr;
  }

  .fan-card {
    border-radius: 28px;
    padding: 28px;
    min-height: 480px !important;
  }

  .fan-content h3 {
    font-size: 30px !important;
  }

  .fan-hint {
    width: auto;
    text-align: center;
    justify-content: center;
  }
}


.stack-specialties-section {
  background: #020203;
  position: relative;
  overflow: visible;
  padding: 120px 0 80px;
}

.stack-glow-one {
  width: 620px;
  height: 620px;
  left: -310px;
  top: 10%;
  opacity: .16;
}

.stack-glow-two {
  width: 760px;
  height: 760px;
  right: -380px;
  bottom: 15%;
  opacity: .17;
}

.stack-specialties-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  position: relative;
  z-index: 3;
}

.stack-specialties-head {
  max-width: 1420px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 42px;
  align-items: end;
}

.stack-specialties-head h2 {
  max-width: 900px;
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}

.stack-specialties-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
}

.stack-cards {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  min-height: 260vh;
}

.stack-card {
  position: sticky;
  top: 112px;
  min-height: 620px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 84% 14%, rgba(168, 85, 255, .16), transparent 30%),
    linear-gradient(145deg, #0b0911, #050409);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 48px;
  align-items: center;
  padding: 52px;
  margin-bottom: 90px;
  overflow: hidden;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .42);
  transform-origin: 50% 18%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.stack-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  z-index: 2;
  pointer-events: none;
}

.stack-card:after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(130px);
  opacity: .14;
  transition: .3s ease;
  pointer-events: none;
}

.stack-card:hover {
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 70px rgba(123, 34, 255, .22), 0 42px 130px rgba(0, 0, 0, .5);
}

.stack-card:hover:after {
  opacity: .28;
}

.stack-card-1 {
  transform: rotate(-2.5deg);
  z-index: 1;
}

.stack-card-2 {
  transform: rotate(0deg);
  z-index: 2;
}

.stack-card-3 {
  transform: rotate(1.8deg);
  z-index: 3;
}

.stack-card-4 {
  transform: rotate(-1deg);
  z-index: 4;
}

.stack-card-copy,
.stack-card-visual {
  position: relative;
  z-index: 4;
}

.stack-card-copy h3 {
  margin: 16px 0 24px;
  color: #fff;
  font-size: 52px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.stack-card-copy p {
  color: #d8d1e8;
  font-size: 18px;
  line-height: 1.6;
  max-width: 670px;
}

.stack-list {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 30px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  max-width: 680px;
}

.stack-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
}

.stack-list i {
  color: var(--purple-3);
  filter: drop-shadow(0 0 10px rgba(168, 85, 255, .55));
}

.stack-cta {
  margin-top: 38px;
  min-height: 58px;
  width: max-content;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700 !important;
  transition: .25s ease;
  background: rgba(255, 255, 255, .035);
}

.stack-cta:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border-color: rgba(168, 85, 255, .8);
  box-shadow: 0 0 38px rgba(123, 34, 255, .36);
}

.stack-card-visual {
  min-height: 390px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 34, 255, .2), transparent 55%),
    linear-gradient(145deg, #12051f, #050409);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 36px rgba(255, 255, 255, .04);
}

.stack-planet {
  width: min(270px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 90px rgba(123, 34, 255, .38), inset 0 0 80px rgba(255, 255, 255, .06);
  animation: stackPlanetFloat 5.2s ease-in-out infinite alternate;
}

.stack-planet:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 30%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 30px rgba(168, 85, 255, .22);
}

.stack-planet:after {
  content: "";
  position: absolute;
  right: 22%;
  top: 20%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px #fff, 0 0 48px var(--purple-2);
}

.stack-planet-1 {
  background:
    radial-gradient(circle at 32% 24%, #fff 0%, #d8c1ff 8%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .28) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(123, 34, 255, .12));
}

.stack-planet-2 {
  background:
    radial-gradient(circle at 58% 26%, #fff 0%, #eee4ff 8%, rgba(120, 80, 255, .46) 24%, transparent 42%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #13071f 100%);
}

.stack-planet-2:before {
  transform: translate(-50%, -50%) rotate(22deg);
}

.stack-planet-3 {
  background:
    radial-gradient(circle at 34% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.stack-planet-3:before {
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-color: rgba(168, 85, 255, .28);
}

.stack-planet-4 {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .42) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.stack-planet-4:before {
  transform: translate(-50%, -50%) rotate(-34deg);
}

@keyframes stackPlanetFloat {
  to {
    transform: translateY(-24px) rotate(6deg) scale(1.03)
  }
}

@media(max-width:980px) {
  .stack-specialties-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stack-cards {
    min-height: auto;
  }

  .stack-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    transform: none !important;
    margin-bottom: 24px;
    min-height: auto;
    padding: 32px;
  }

  .stack-card-visual {
    min-height: 320px;
  }
}

@media(max-width:720px) {
  .stack-specialties-section {
    padding: 82px 0;
  }

  .stack-specialties-head h2 {
    font-size: 38px !important;
  }

  .stack-card {
    border-radius: 28px;
    padding: 26px;
  }

  .stack-card-copy h3 {
    font-size: 34px !important;
  }

  .stack-card-copy p {
    font-size: 16px;
  }

  .stack-list {
    grid-template-columns: 1fr;
  }

  .stack-card-visual {
    min-height: 260px;
  }
}


/* Timeline: conteúdo surgindo no scroll */
.timeline-item {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity .75s cubic-bezier(.2, .8, .2, 1),
    transform .85s cubic-bezier(.2, .8, .2, 1),
    filter .75s ease;
}

.timeline-left {
  transform: translateX(-80px) translateY(40px) scale(.96);
}

.timeline-right {
  transform: translateX(80px) translateY(40px) scale(.96);
}

.timeline-item.timeline-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) translateY(0) scale(1);
}

.timeline-dot {
  opacity: .35;
  transform: scale(.82);
  transition:
    opacity .6s ease,
    transform .7s cubic-bezier(.2, .8, .2, 1),
    box-shadow .7s ease;
}

.timeline-item.timeline-visible .timeline-dot {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 34px rgba(123, 34, 255, .5),
    0 0 70px rgba(123, 34, 255, .26),
    inset 0 0 22px rgba(123, 34, 255, .16);
}

.timeline-card {
  transition:
    transform .28s ease,
    opacity .75s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.timeline-item.timeline-visible .timeline-card {
  animation: timelineCardGlow 1.1s ease both;
}

@keyframes timelineCardGlow {
  0% {
    box-shadow: 0 0 0 rgba(123, 34, 255, 0)
  }

  45% {
    box-shadow: 0 0 54px rgba(123, 34, 255, .28)
  }

  100% {
    box-shadow: 0 0 0 rgba(123, 34, 255, 0)
  }
}

.timeline-center {
  opacity: .42;
  transition: opacity .8s ease;
}

.process-timeline-section.timeline-active .timeline-center {
  opacity: 1;
}

@media(max-width:860px) {

  .timeline-left,
  .timeline-right {
    transform: translateY(44px) scale(.96);
  }

  .timeline-item.timeline-visible {
    transform: translateY(0) scale(1);
  }
}


.clients-marquee-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 118px 0;
}

.clients-glow-one {
  width: 580px;
  height: 580px;
  left: -290px;
  top: 8%;
  opacity: .14;
}

.clients-glow-two {
  width: 680px;
  height: 680px;
  right: -340px;
  bottom: -160px;
  opacity: .17;
}

.clients-marquee-head {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto 56px;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: 42px;
  align-items: end;
  position: relative;
  z-index: 3;
}

.clients-marquee-head h2 {
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
  max-width: 900px;
}

.clients-marquee-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
}

.clients-marquee-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  gap: 22px;
  padding: 12px 0;
}

.clients-marquee-wrap:before,
.clients-marquee-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18vw;
  z-index: 5;
  pointer-events: none;
}

.clients-marquee-wrap:before {
  left: 0;
  background: linear-gradient(90deg, #020203, transparent);
}

.clients-marquee-wrap:after {
  right: 0;
  background: linear-gradient(270deg, #020203, transparent);
}

.clients-marquee-row {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.row-one {
  animation: clientMarqueeLeft 36s linear infinite;
}

.row-two {
  animation: clientMarqueeRight 42s linear infinite;
  transform: translateX(-360px);
}

.clients-marquee-wrap:hover .clients-marquee-row {
  animation-play-state: paused;
}

@keyframes clientMarqueeLeft {
  from {
    transform: translateX(0)
  }

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

@keyframes clientMarqueeRight {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.client-marquee-card {
  flex: 0 0 310px;
  height: 128px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .18), transparent 36%),
    rgba(255, 255, 255, .045);
  display: grid;
  place-items: center;
  padding: 26px;
  transition: .28s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.client-marquee-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 255, .22), transparent 46%);
  opacity: 0;
  transition: .28s ease;
}

.client-marquee-card img {
  max-width: 210px;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(1.05);
  position: relative;
  z-index: 2;
  transition: .28s ease;
}

.client-marquee-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(168, 85, 255, .56);
  box-shadow: 0 0 42px rgba(123, 34, 255, .28), 0 24px 80px rgba(0, 0, 0, .34);
  background: #f4efdf;
}

.client-marquee-card:hover:before {
  opacity: 1;
}

.client-marquee-card:hover img {
  transform: scale(1.06);
}

.clients-impact-strip {
  width: min(1180px, calc(100% - 44px));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 4;
}

.clients-impact-strip div {
  min-height: 132px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .2), transparent 38%),
    linear-gradient(145deg, #0b0911, #050409);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: .28s ease;
}

.clients-impact-strip div:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 255, .5);
  box-shadow: 0 0 38px rgba(123, 34, 255, .22);
}

.clients-impact-strip strong {
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: 700 !important;
  margin-bottom: 8px;
}

.clients-impact-strip span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

@media(max-width:920px) {
  .clients-marquee-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clients-marquee-head h2 {
    font-size: 46px !important;
  }

  .client-marquee-card {
    flex-basis: 240px;
    height: 112px;
  }

  .client-marquee-card img {
    max-width: 170px;
    max-height: 62px;
  }

  .clients-impact-strip {
    grid-template-columns: 1fr;
  }
}

@media(max-width:720px) {
  .clients-marquee-section {
    padding: 82px 0;
  }

  .clients-marquee-head h2 {
    font-size: 38px !important;
  }

  .client-marquee-card {
    flex-basis: 220px;
    border-radius: 22px;
  }
}


/* Footer: títulos menores e mais refinados */
footer h2,
.footer-title,
.footer-grid h2,
.footer-grid h3 {
  font-size: 22px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  margin-bottom: 18px !important;
}

.footer-grid {
  gap: 48px !important;
}

.footer-contact-card h3 {
  font-size: 18px !important;
  line-height: 1.1 !important;
}

@media(max-width:720px) {

  footer h2,
  .footer-title,
  .footer-grid h2,
  .footer-grid h3 {
    font-size: 18px !important;
  }
}


.footer-col h3 {
  font-size: 25px !important;
}


.about-orbit-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.about-orbit-glow-one {
  width: 640px;
  height: 640px;
  left: -320px;
  top: 12%;
  opacity: .16;
}

.about-orbit-glow-two {
  width: 640px;
  height: 640px;
  right: -280px;
  bottom: -120px;
  opacity: .14;
}

.about-orbit-container {
  width: min(1500px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.about-orbit-grid {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.about-orbit-image {
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #08070d;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
}

.about-orbit-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.08) saturate(1.1);
  transform: scale(1.04);
  transition: 1s cubic-bezier(.2, .8, .2, 1);
}

.about-orbit-image:hover img {
  transform: scale(1.1);
  filter: brightness(.9) contrast(1.1) saturate(1.2);
}

.about-orbit-image:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 24%, rgba(168, 85, 255, .28), transparent 32%),
    linear-gradient(180deg, transparent 44%, rgba(2, 2, 3, .88));
  pointer-events: none;
}

45%,
55% {
  opacity: 1
}

100% {
  transform: translateY(360%)
}
}

.about-title-line h2 {
  font-size: 88px !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
  margin-top: 12px;
}

.about-orbit-columns {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: 34px;
  align-items: stretch;
}

.about-copy-card,
.about-special-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 84% 0%, rgba(168, 85, 255, .14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  padding: 34px;
  overflow: hidden;
}

.about-copy-card:after,
.about-special-card:after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(90px);
  opacity: .14;
  pointer-events: none;
}

.about-copy-card>*,
.about-special-card>* {
  position: relative;
  z-index: 2;
}

.about-copy-card h3 {
  font-size: 34px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  margin-bottom: 20px;
  color: #fff;
}

.about-copy-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
}

.about-orbit-btn {
  margin-top: 30px;
  min-height: 56px;
  width: max-content;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #050409;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700 !important;
  transition: .25s ease;
}

.about-orbit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 38px rgba(123, 34, 255, .34);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
}

.about-special-card h3 {
  font-size: 28px !important;
  margin-bottom: 22px;
  color: #fff;
}

.about-special-card ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.about-special-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  transition: .25s ease;
}

.about-special-card li:hover {
  color: #fff;
  transform: translateX(8px);
}

.about-special-card li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(123, 34, 255, .16);
  color: var(--purple-3);
  flex-shrink: 0;
}

.about-numbers-orbit {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-number-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 82% 100%, rgba(123, 34, 255, .2), transparent 38%),
    #08070d;
  transition: .28s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.about-number-card:before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 255, .25);
  box-shadow: 0 0 42px rgba(123, 34, 255, .18);
}

.about-number-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 42px rgba(123, 34, 255, .25);
}

.about-number-card span {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700 !important;
  max-width: 220px;
}

.about-number-card strong {
  display: block;
  margin: 26px 0 14px;
  color: #fff;
  font-size: 58px;
  line-height: .9;
  font-weight: 700 !important;
}

.about-number-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  max-width: 220px;
}

.about-reveal-left,
.about-reveal-up {
  opacity: 0;
  filter: blur(10px);
  transition: opacity .85s ease, transform .9s cubic-bezier(.2, .8, .2, 1), filter .85s ease;
}

.about-reveal-left {
  transform: translateX(-80px) scale(.96);
}

.about-reveal-up {
  transform: translateY(54px) scale(.98);
}

.about-orbit-section.about-visible .about-reveal-left,
.about-orbit-section.about-visible .about-reveal-up {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.about-orbit-section.about-visible .about-reveal-up:nth-child(1) {
  transition-delay: .08s
}

.about-orbit-section.about-visible .about-reveal-up:nth-child(2) {
  transition-delay: .16s
}

@media(max-width:1100px) {

  .about-orbit-grid,
  .about-orbit-columns {
    grid-template-columns: 1fr;
  }

  .about-title-line h2 {
    font-size: 64px !important;
  }

  .about-orbit-image {
    min-height: 520px;
  }

  .about-numbers-orbit {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:720px) {
  .about-orbit-section {
    padding: 82px 0;
  }

  .about-orbit-container {
    width: min(100% - 28px, 1500px);
  }

  .about-title-line h2 {
    font-size: 42px !important;
  }

  .about-orbit-image {
    min-height: 390px;
    border-radius: 28px;
  }

  .about-copy-card,
  .about-special-card {
    padding: 26px;
    border-radius: 24px;
  }

  .about-copy-card h3 {
    font-size: 28px !important;
  }

  .about-numbers-orbit {
    grid-template-columns: 1fr;
  }
}


/* Sistema global de surgimento no scroll */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-scale {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity .85s ease,
    transform .95s cubic-bezier(.2, .8, .2, 1),
    filter .85s ease;
  will-change: opacity, transform, filter;
}

.scroll-reveal {
  transform: translateY(54px);
}

.scroll-reveal-left {
  transform: translateX(-70px) translateY(24px);
}

.scroll-reveal-right {
  transform: translateX(70px) translateY(24px);
}

.scroll-reveal-scale {
  transform: translateY(40px) scale(.94);
}

.scroll-visible {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: none !important;
}

.scroll-delay-1 {
  transition-delay: .08s
}

.scroll-delay-2 {
  transition-delay: .16s
}

.scroll-delay-3 {
  transition-delay: .24s
}

.scroll-delay-4 {
  transition-delay: .32s
}

.scroll-delay-5 {
  transition-delay: .40s
}

@media(prefers-reduced-motion:reduce) {

  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-scale {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Preserva o efeito original dos cards sticky da seção Especialidades */
.stack-card.scroll-reveal,
.stack-card.scroll-reveal-left,
.stack-card.scroll-reveal-right,
.stack-card.scroll-reveal-scale,
.stack-card.scroll-visible {
  opacity: 1 !important;
  filter: none !important;
}

.stack-card.scroll-reveal,
.stack-card.scroll-reveal-left,
.stack-card.scroll-reveal-right,
.stack-card.scroll-reveal-scale {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease !important;
}


.faq-orbit-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #020203;
}

.faq-glow-one {
  width: 560px;
  height: 560px;
  left: -260px;
  top: 10%;
  opacity: .14;
}

.faq-glow-two {
  width: 640px;
  height: 640px;
  right: -320px;
  bottom: -180px;
  opacity: .16;
}

.faq-orbit-container {
  width: min(1450px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.faq-head {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 42px;
  align-items: end;
}

.faq-head h2 {
  font-size: 72px !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
}

.faq-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 85, 255, .16), transparent 34%),
    linear-gradient(145deg, #0b0911, #050409);
  overflow: hidden;
  transition: .28s ease;
}

.faq-item:hover {
  border-color: rgba(168, 85, 255, .48);
  box-shadow: 0 0 42px rgba(123, 34, 255, .18);
}

.faq-question {
  width: 100%;
  min-height: 92px;
  padding: 28px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #fff;
  text-align: left;
}

.faq-question span {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700 !important;
}

.faq-question i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(168, 85, 255, .12);
  color: var(--purple-3);
  flex-shrink: 0;
  transition: .28s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease;
}

.faq-answer p {
  padding: 0 28px 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  box-shadow: 0 0 28px rgba(123, 34, 255, .28);
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

@media(max-width:980px) {
  .faq-head {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-head h2 {
    font-size: 48px !important;
  }
}

@media(max-width:720px) {
  .faq-orbit-section {
    padding: 82px 0;
  }

  .faq-orbit-container {
    width: min(100% - 28px, 1450px);
  }

  .faq-head h2 {
    font-size: 38px !important;
  }

  .faq-question {
    padding: 22px;
    min-height: 84px;
  }

  .faq-question span {
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
  }
}


/* FAQ corrigido: fechado por padrão e abre ao clicar */
.faq-item .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .42s ease !important;
}

.faq-item.active .faq-answer {
  max-height: 360px !important;
}

.faq-question {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.faq-question i {
  display: grid !important;
  transition: .28s ease !important;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg) !important;
}


.stack-card-visual {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.stack-specialty-img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 24px;
  filter: brightness(.82) contrast(1.08) saturate(1.16);
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s ease;
}

.stack-card-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(123, 34, 255, .08), transparent 40%),
    linear-gradient(180deg, transparent 42%, rgba(2, 2, 3, .72));
  pointer-events: none;
  border-radius: 24px;
}

.stack-card:hover .stack-specialty-img {
  transform: scale(1.08);
  filter: brightness(.95) contrast(1.12) saturate(1.24);
}

@media(max-width:720px) {
  .stack-specialty-img {
    min-height: 260px;
  }
}

@media(max-width:1080px) {
  .contact-full-grid {
    grid-template-columns: 1fr;
  }

  .contact-full-copy {
    padding-left: 0;
  }

  .contact-planet-wrap {
    opacity: .22;
    left: auto;
    right: -160px;
    top: 20%;
    width: 420px;
  }
}

@media(max-width:720px) {
  .contact-full-section {
    padding: 76px 0;
  }

  .container-fluid-contact {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-full-grid {
    min-height: auto;
    border-radius: 28px;
    padding: 26px;
  }

  .contact-info-row,
  .form-two {
    grid-template-columns: 1fr;
  }

  .contact-planet-wrap {
    display: none;
  }

  .contact-form-panel {
    border-radius: 24px;
    padding: 22px;
  }
}


/* Correção contato: texto não invade formulário */
.contact-full-grid {
  grid-template-columns: minmax(320px, .78fr) minmax(560px, 1.22fr) !important;
  gap: clamp(34px, 5vw, 78px) !important;
}

.contact-full-copy {
  padding-left: clamp(140px, 13vw, 260px) !important;
  min-width: 0;
}

.contact-full-copy h2 {
  font-size: clamp(44px, 5vw, 82px) !important;
  max-width: 560px !important;
  word-break: normal;
  overflow-wrap: normal;
}

.contact-full-copy p {
  max-width: 470px !important;
}

.contact-form-panel {
  width: 100%;
  min-width: 0;
}

.contact-planet-wrap {
  left: clamp(-220px, -11vw, -120px) !important;
  width: min(460px, 34vw) !important;
}

@media(max-width:1240px) {
  .contact-full-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-full-copy {
    padding-left: 0 !important;
    max-width: 760px;
  }

  .contact-full-copy h2 {
    max-width: 760px !important;
  }

  .contact-full-copy p {
    max-width: 620px !important;
  }

  .contact-planet-wrap {
    opacity: .18;
    left: auto !important;
    right: -160px !important;
    top: 22% !important;
    width: 420px !important;
  }
}


/* Ajuste carrossel especialidades: controles abaixo + drag */
.carousel-controls {
  justify-content: center !important;
  margin: 26px 0 0 !important;
}

.carousel-controls-bottom {
  display: flex;
}

.special-carousel {
  cursor: default;
  user-select: auto;
  -webkit-user-select: auto;
}


.about-cinematic-section {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 112px;
  background: #020203;
  overflow: hidden;
}

.about-cine-glow-one {
  width: 620px;
  height: 620px;
  left: -300px;
  top: 10%;
  opacity: .18;
}

.about-cine-glow-two {
  width: 680px;
  height: 680px;
  right: -320px;
  bottom: 0;
  opacity: .16;
}

.about-cinematic-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.about-cine-planet {
  position: absolute;
  right: -10vw;
  top: 15%;
  width: min(720px, 48vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .94), rgba(216, 193, 255, .44) 10%, transparent 30%),
    radial-gradient(circle at 64% 72%, rgba(123, 34, 255, .72), rgba(123, 34, 255, .16) 48%, transparent 72%);
  box-shadow: 0 0 100px rgba(123, 34, 255, .28), inset 0 0 80px rgba(255, 255, 255, .05);
  opacity: .48;
  animation: aboutCinePlanet 7s ease-in-out infinite alternate;
}

@keyframes aboutCinePlanet {
  to {
    transform: translateY(-28px) rotate(6deg) scale(1.03)
  }
}

.about-cine-orbit {
  position: absolute;
  right: -12vw;
  top: 37%;
  width: min(900px, 60vw);
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  transform: rotate(-16deg);
  box-shadow: 0 0 42px rgba(123, 34, 255, .22);
  animation: aboutCineOrbit 5.2s ease-in-out infinite alternate;
}

@keyframes aboutCineOrbit {
  to {
    opacity: .48;
    transform: rotate(-16deg) scale(1.06)
  }
}

.about-cinematic-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  gap: 46px;
  align-items: center;
  min-height: 620px;
}

.about-cinematic-copy h2 {
  font-size: 112px;
  line-height: .8;
  letter-spacing: 0;
  margin-top: 18px;
}

.about-cinematic-copy p {
  margin-top: 30px;
  max-width: 650px;
  color: #d8d1e8;
  font-size: 28px;
  line-height: 1.28;
  letter-spacing: 0;
}

.about-cinematic-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.about-cinematic-actions span {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.about-cinematic-visual {
  position: relative;
  min-height: 620px;
  border-radius: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 62% 28%, rgba(168, 85, 255, .18), transparent 32%),
    rgba(255, 255, 255, .035);
  box-shadow: 0 0 80px rgba(123, 34, 255, .16);
  transform-style: preserve-3d;
  transition: .22s ease;
}

.about-cinematic-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.08) saturate(1.12);
  transform: scale(1.03);
  transition: .7s ease;
}

.about-cinematic-visual:hover img {
  transform: scale(1.09);
  filter: brightness(.9) contrast(1.1) saturate(1.2);
}

.about-cinematic-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, transparent 18%, rgba(2, 2, 3, .18) 52%, rgba(2, 2, 3, .92) 100%),
    linear-gradient(180deg, transparent 48%, rgba(2, 2, 3, .86));
  z-index: 2;
}

.about-cine-frame {
  position: absolute;
  inset: 22px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 34px;
  pointer-events: none;
}

.about-floating-pill {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(5, 4, 9, .68);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  transition: .28s ease;
}

.about-floating-pill:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 42px rgba(123, 34, 255, .28);
}

.about-floating-pill strong {
  display: block;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}

.about-floating-pill span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-floating-pill.p1 {
  left: 26px;
  bottom: 28px
}

.about-floating-pill.p2 {
  right: 26px;
  bottom: 28px
}

.about-floating-pill.p3 {
  right: 28px;
  top: 28px
}

.about-cinematic-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-strip-card {
  min-height: 190px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .2), transparent 36%),
    linear-gradient(145deg, #0b0911, #050409);
  padding: 26px;
  transition: .28s ease;
  transform-style: preserve-3d;
  overflow: hidden;
  position: relative;
}

.about-strip-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 255, .25), transparent 42%);
  opacity: .18;
  pointer-events: none;
}

.about-strip-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .5);
  box-shadow: 0 0 42px rgba(123, 34, 255, .22);
}

.about-strip-card span {
  display: block;
  color: var(--purple-2);
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.about-strip-card strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.about-strip-card p {
  color: var(--muted);
  line-height: 1.45;
  position: relative;
  z-index: 2;
}


.projects-showcase-section {
  background: #020203;
  padding: 118px 0;
  position: relative;
  overflow: hidden;
}

.projects-showcase-glow-one {
  width: 520px;
  height: 520px;
  left: -260px;
  top: 18%;
  opacity: .14;
}

.projects-showcase-glow-two {
  width: 620px;
  height: 620px;
  right: -320px;
  bottom: 0;
  opacity: .16;
}

.projects-showcase-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 4.5vw, 74px);
  padding-right: clamp(18px, 4.5vw, 74px);
  position: relative;
  z-index: 3;
}

.projects-showcase-head {
  max-width: 1380px;
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 42px;
  align-items: end;
}

.projects-showcase-head h2 {
  font-size: 68px;
  line-height: .88;
  letter-spacing: 0;
  max-width: 920px;
}

.projects-showcase-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  max-width: 460px;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 340px;
  gap: 22px;
  max-width: 1680px;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #08070d;
  min-height: 340px;
  isolation: isolate;
  transition: .34s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.showcase-large {
  grid-row: span 2;
}

.showcase-wide {
  grid-column: span 2;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(1.05) contrast(1.08);
  transform: scale(1.015);
  transition: .75s cubic-bezier(.2, .8, .2, 1);
  z-index: 1;
}

.showcase-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 34, 255, .08), transparent 32%),
    linear-gradient(180deg, rgba(2, 2, 3, .02) 18%, rgba(2, 2, 3, .92) 100%);
  transition: .35s ease;
}

.showcase-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  z-index: 4;
  opacity: 0;
  transform: scale(.96);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.showcase-card:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.7);
  background: radial-gradient(circle, rgba(123, 34, 255, .34), transparent 62%);
  filter: blur(30px);
  opacity: 0;
  z-index: 3;
  transition: .35s ease;
  pointer-events: none;
}

.showcase-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.showcase-content span {
  display: block;
  color: #d8c9ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.showcase-content h3 {
  color: #fff;
  font-size: 42px;
  line-height: .92;
  letter-spacing: 0;
  max-width: 720px;
}

.showcase-hover-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  transform: translate(-50%, -50%) scale(.78);
  opacity: 0;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 0 46px rgba(123, 34, 255, .52);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.showcase-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .6);
  box-shadow: 0 0 60px rgba(123, 34, 255, .26), 0 36px 110px rgba(0, 0, 0, .42);
}

.showcase-card:hover img {
  transform: scale(1.11);
  filter: brightness(.46) saturate(1.22) contrast(1.12);
}

.showcase-card:hover .showcase-layer {
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 34, 255, .34), transparent 42%),
    linear-gradient(180deg, rgba(2, 2, 3, .24), rgba(2, 2, 3, .9));
}

.showcase-card:hover:before {
  opacity: 1;
  transform: scale(1);
}

.showcase-card:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.showcase-card:hover .showcase-hover-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.showcase-card:hover .showcase-content {
  opacity: .38;
  transform: translateY(14px);
}

@media(max-width:1180px) {
  .projects-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-large {
    grid-row: span 1;
  }

  .showcase-wide {
    grid-column: span 2;
  }
}

@media(max-width:820px) {
  .projects-showcase-section {
    padding: 78px 0;
  }

  .projects-showcase-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .projects-showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
    gap: 16px;
  }

  .showcase-wide {
    grid-column: span 1;
  }

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

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


.btn i,
.project-hover-btn i,
.showcase-hover-button i,
.special-link i,
.footer-social i,
.carousel-btn i {
  margin-right: 10px;
}

.carousel-btn i {
  margin-right: 0;
  font-size: 16px;
}

.footer-social i {
  margin-right: 0;
  font-size: 18px;
}

.specialty-icon i,
.stat-icon i {
  font-size: 20px;
}

.play-icon i {
  font-size: 16px;
  margin-left: 3px;
}

.contact-info-row strong i {
  margin-right: 8px;
}


h1,
h2,
h3,
.showcase-content h3,
.timeline-card h3,
.about-strip-card strong,
.special-card h3,
.orbital-cta-card h2,
.contact-full-copy h2 {
  letter-spacing: 0 !important;
}


h1 {
  font-size: 108px !important;
}

h2,
.orbital-cta-card h2,
.contact-full-copy h2,
.projects-showcase-head h2 {
  font-size: 68px !important;
  line-height: .95 !important;
}

h3,
.showcase-content h3,
.timeline-card h3,
.special-card h3 {
  font-size: 40px !important;
  line-height: 1 !important;
}

.about-cinematic-copy p {
  font-size: 26px !important;
}

@media(max-width:980px) {
  h1 {
    font-size: 74px !important;
  }

  h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .projects-showcase-head h2 {
    font-size: 52px !important;
  }

  h3,
  .showcase-content h3,
  .timeline-card h3,
  .special-card h3 {
    font-size: 32px !important;
  }
}

@media(max-width:720px) {
  h1 {
    font-size: 54px !important;
  }

  h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .projects-showcase-head h2 {
    font-size: 38px !important;
  }

  h3,
  .showcase-content h3,
  .timeline-card h3,
  .special-card h3 {
    font-size: 26px !important;
  }

  .about-cinematic-copy p {
    font-size: 20px !important;
  }
}


/* Correção fina da seção contato */
.contact-full-grid {
  grid-template-columns: minmax(420px, 1.05fr) minmax(520px, .95fr) !important;
  gap: 52px !important;
  align-items: center !important;
}

.contact-full-copy {
  padding-left: clamp(90px, 9vw, 180px) !important;
  max-width: 680px !important;
}

.contact-full-copy h2,
.contact-title {
  font-size: 58px !important;
  line-height: .92 !important;
  max-width: 620px !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.contact-full-copy p {
  max-width: 480px !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.contact-info-row {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 500px !important;
}

.contact-info-row a {
  min-width: 0 !important;
  overflow: hidden !important;
}

.contact-info-row span {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.contact-info-row strong {
  font-size: 17px !important;
  white-space: nowrap !important;
}

.contact-form-panel {
  max-width: 860px !important;
  justify-self: end !important;
  padding: 34px !important;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  padding: 16px !important;
}

.contact-form-panel textarea {
  min-height: 118px !important;
}

.contact-planet-wrap {
  left: -180px !important;
  width: 400px !important;
  opacity: .92 !important;
}

@media(max-width:1240px) {
  .contact-full-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-full-copy {
    padding-left: 0 !important;
    max-width: 760px !important;
  }

  .contact-full-copy h2,
  .contact-title {
    font-size: 52px !important;
    max-width: 760px !important;
  }

  .contact-form-panel {
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media(max-width:720px) {

  .contact-full-copy h2,
  .contact-title {
    font-size: 36px !important;
  }

  .contact-info-row {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  .contact-form-panel {
    padding: 22px !important;
  }
}


/* Correção Font Awesome: impede a fonte Magistral de sobrescrever os ícones */
i.fa,
i.fa-solid,
i.fa-regular,
i.fa-brands,
.fa,
.fa-solid,
.fa-regular,
.fa-brands {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal !important;
  font-weight: 900 !important;
  display: inline-block;
  line-height: 1;
}

i.fa-brands,
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

i.fa-regular,
.fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}


.timeline-launch-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 52px;
  position: relative;
  z-index: 5;
}

.timeline-launch-btn {
  position: relative;
  min-width: 520px;
  min-height: 108px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 255, .55);
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 34, 255, .24), transparent 52%),
    linear-gradient(135deg, rgba(123, 34, 255, .18), rgba(255, 255, 255, .03)),
    #08070d;
  color: #fff;
  box-shadow:
    0 0 44px rgba(123, 34, 255, .24),
    inset 0 0 32px rgba(123, 34, 255, .14);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.timeline-launch-btn:before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  opacity: .7;
}

.timeline-launch-btn:after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-24deg);
  transition: .7s ease;
}

.timeline-launch-btn:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(168, 85, 255, .9);
  box-shadow:
    0 0 60px rgba(123, 34, 255, .4),
    0 24px 90px rgba(0, 0, 0, .4);
}

.timeline-launch-btn:hover:after {
  left: 140%;
}

.timeline-launch-btn i {
  font-size: 28px;
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(168, 85, 255, .8));
}

.timeline-launch-btn span {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0 !important;
  color: #fff;
  line-height: 1;
}

@media(max-width:720px) {
  .timeline-launch-btn {
    min-width: 100%;
    min-height: 88px;
    padding: 0 24px;
  }

  .timeline-launch-btn span {
    font-size: 28px;
  }

  .timeline-launch-btn i {
    font-size: 22px;
  }
}


/* Correção botão WhatsApp no footer/contato */
.footer-contact-card .btn,
.contact-info-row .btn,
a.btn,
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
  text-align: center !important;
  line-height: 1 !important;
}

.footer-contact-card .btn {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 22px !important;
  font-size: 15px !important;
  border-radius: 18px !important;
}

.footer-contact-card .btn i,
.btn i {
  margin: 0 !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.footer-contact-card {
  overflow: hidden;
}

@media(max-width:720px) {
  .footer-contact-card .btn {
    width: 100% !important;
    font-size: 14px !important;
    padding: 0 18px !important;
  }
}


/* Especialidades: planetas + arraste */
.special-carousel {
  cursor: grab !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  scroll-behavior: smooth;
}

.special-carousel.dragging {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
}

.special-carousel.dragging .special-card {
  pointer-events: none;
}

.special-icon {
  overflow: hidden;
  position: relative;
}

.planet-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: block;
  position: relative;
  background:
    radial-gradient(circle at 32% 25%, #fff 0%, #d8c1ff 10%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(123, 34, 255, .92), rgba(123, 34, 255, .26) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(123, 34, 255, .12));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 28px rgba(123, 34, 255, .46), inset 0 0 24px rgba(255, 255, 255, .07);
}

.planet-service-icon:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 16px rgba(168, 85, 255, .3);
}

.planet-service-icon:after {
  content: "";
  position: absolute;
  right: 9px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px #fff;
  opacity: .9;
}

.special-card:hover .planet-service-icon {
  animation: planetServiceSpin 1.8s ease-in-out infinite alternate;
}

@keyframes planetServiceSpin {
  to {
    transform: translateY(-4px) rotate(8deg) scale(1.06)
  }
}


/* Carrossel suave + planetas únicos */
.special-carousel {
  cursor: grab !important;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
}

.special-carousel.dragging {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

.special-carousel.dragging .special-card {
  pointer-events: none;
}

.planet-service-icon.planet-1 {
  background:
    radial-gradient(circle at 30% 22%, #fff 0%, #d8c1ff 9%, rgba(168, 85, 255, .54) 24%, transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .26) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(123, 34, 255, .12));
}

.planet-service-icon.planet-2 {
  background:
    radial-gradient(circle at 65% 24%, #fff 0%, #ece2ff 8%, rgba(120, 80, 255, .5) 23%, transparent 40%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #16091f 100%);
}

.planet-service-icon.planet-2:before {
  width: 84px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(20deg);
  border-color: rgba(216, 193, 255, .46);
}

.planet-service-icon.planet-3 {
  background:
    radial-gradient(circle at 36% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.planet-service-icon.planet-3:before {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 255, .34);
  transform: translate(-50%, -50%) rotate(0deg);
}

.planet-service-icon.planet-4 {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .4) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.planet-service-icon.planet-4:before {
  width: 88px;
  height: 24px;
  transform: translate(-50%, -50%) rotate(-34deg);
  border-color: rgba(255, 255, 255, .32);
}


.special-carousel {
  overflow-x: auto !important;
}

.special-carousel .special-card[aria-hidden="true"] {
  pointer-events: auto;
}


.fan-specialties-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  min-height: 100vh;
}

.fan-glow-one {
  width: 620px;
  height: 620px;
  left: -300px;
  top: 18%;
  opacity: .17;
}

.fan-glow-two {
  width: 720px;
  height: 720px;
  right: -360px;
  bottom: -120px;
  opacity: .18;
}

.fan-specialties-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  position: relative;
  z-index: 3;
}

.fan-specialties-head {
  max-width: 1480px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 42px;
  align-items: end;
}

.fan-specialties-head h2 {
  max-width: 900px;
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}

.fan-specialties-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
}

.fan-stage {
  position: relative;
  width: min(1480px, 100%);
  height: 680px;
  margin: 0 auto;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.fan-stage:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 780px;
  height: 180px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(123, 34, 255, .22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.fan-card {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 420px;
  height: 560px;
  margin-left: -210px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 72% 18%, rgba(168, 85, 255, .2), transparent 32%),
    linear-gradient(145deg, #0b0911, #050409);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
  overflow: hidden;
  padding: 34px;
  transform-origin: 50% 105%;
  transform: translateY(90px) rotate(0deg) scale(.92);
  opacity: 0;
  transition:
    transform .9s cubic-bezier(.2, .9, .15, 1),
    opacity .8s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    filter .35s ease;
  isolation: isolate;
}

.fan-stage.active .fan-card {
  opacity: 1;
}

.fan-stage.active .fan-card-1 {
  transform: translateX(-390px) translateY(24px) rotate(-18deg) scale(.96);
  transition-delay: .05s;
}

.fan-stage.active .fan-card-2 {
  transform: translateX(-130px) translateY(-18px) rotate(-6deg) scale(1);
  transition-delay: .12s;
}

.fan-stage.active .fan-card-3 {
  transform: translateX(130px) translateY(-18px) rotate(6deg) scale(1);
  transition-delay: .19s;
}

.fan-stage.active .fan-card-4 {
  transform: translateX(390px) translateY(24px) rotate(18deg) scale(.96);
  transition-delay: .26s;
}

.fan-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  z-index: 3;
  pointer-events: none;
  opacity: .75;
}

.fan-card:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(100px);
  opacity: .18;
  transition: .35s ease;
  z-index: 1;
}

.fan-card:hover {
  z-index: 20;
  border-color: rgba(168, 85, 255, .68);
  box-shadow: 0 0 70px rgba(123, 34, 255, .36), 0 42px 120px rgba(0, 0, 0, .48);
  filter: saturate(1.18);
}

.fan-stage.active .fan-card-1:hover {
  transform: translateX(-390px) translateY(-26px) rotate(-11deg) scale(1.08);
}

.fan-stage.active .fan-card-2:hover {
  transform: translateX(-130px) translateY(-56px) rotate(-2deg) scale(1.08);
}

.fan-stage.active .fan-card-3:hover {
  transform: translateX(130px) translateY(-56px) rotate(2deg) scale(1.08);
}

.fan-stage.active .fan-card-4:hover {
  transform: translateX(390px) translateY(-26px) rotate(11deg) scale(1.08);
}

.fan-stage:hover .fan-card:not(:hover) {
  opacity: .62;
}

.fan-card:hover:after {
  opacity: .36;
}

.fan-number {
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 2;
  color: rgba(255, 255, 255, .07);
  font-size: 76px;
  font-weight: 700 !important;
  line-height: 1;
}

.fan-planet {
  position: relative;
  z-index: 4;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin-bottom: 54px;
  background:
    radial-gradient(circle at 32% 24%, #fff 0%, #d8c1ff 9%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .28) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(123, 34, 255, .12));
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 34px rgba(123, 34, 255, .42), inset 0 0 28px rgba(255, 255, 255, .07);
  transition: .35s ease;
}

.fan-planet:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 126px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .32);
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 18px rgba(168, 85, 255, .28);
}

.fan-card-2 .fan-planet {
  background:
    radial-gradient(circle at 62% 26%, #fff 0%, #eee4ff 9%, rgba(120, 80, 255, .48) 24%, transparent 42%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #13071f 100%);
}

.fan-card-2 .fan-planet:before {
  transform: translate(-50%, -50%) rotate(22deg);
}

.fan-card-3 .fan-planet {
  background:
    radial-gradient(circle at 34% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.fan-card-3 .fan-planet:before {
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-color: rgba(168, 85, 255, .3);
}

.fan-card-4 .fan-planet {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .42) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.fan-card-4 .fan-planet:before {
  transform: translate(-50%, -50%) rotate(-34deg);
}

.fan-card:hover .fan-planet {
  transform: translateY(-8px) rotate(8deg) scale(1.06);
}

.fan-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.fan-content h3 {
  margin: 16px 0 18px;
  color: #fff;
  font-size: 38px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.fan-content p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
  max-width: 340px;
}

.fan-content a {
  margin-top: auto;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700 !important;
  transition: .25s ease;
}

.fan-content a:hover {
  color: var(--purple-3);
  transform: translateX(8px);
}

.fan-hint {
  width: max-content;
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}

.fan-hint i {
  color: var(--purple-2);
  filter: drop-shadow(0 0 12px rgba(168, 85, 255, .7));
}

@media(max-width:1180px) {
  .fan-stage {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    perspective: none;
  }

  .fan-stage:before {
    display: none;
  }

  .fan-card,
  .fan-stage.active .fan-card,
  .fan-stage.active .fan-card-1,
  .fan-stage.active .fan-card-2,
  .fan-stage.active .fan-card-3,
  .fan-stage.active .fan-card-4,
  .fan-stage.active .fan-card-1:hover,
  .fan-stage.active .fan-card-2:hover,
  .fan-stage.active .fan-card-3:hover,
  .fan-stage.active .fan-card-4:hover {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 520px;
    margin: 0;
    transform: none;
    opacity: 1;
  }
}

@media(max-width:720px) {
  .fan-specialties-section {
    padding: 82px 0;
  }

  .fan-specialties-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .fan-specialties-head h2 {
    font-size: 38px !important;
  }

  .fan-stage {
    grid-template-columns: 1fr;
  }

  .fan-card {
    border-radius: 28px;
    padding: 28px;
    min-height: 480px !important;
  }

  .fan-content h3 {
    font-size: 30px !important;
  }

  .fan-hint {
    width: auto;
    text-align: center;
    justify-content: center;
  }
}


.stack-specialties-section {
  background: #020203;
  position: relative;
  overflow: visible;
  padding: 120px 0 80px;
}

.stack-glow-one {
  width: 620px;
  height: 620px;
  left: -310px;
  top: 10%;
  opacity: .16;
}

.stack-glow-two {
  width: 760px;
  height: 760px;
  right: -380px;
  bottom: 15%;
  opacity: .17;
}

.stack-specialties-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  position: relative;
  z-index: 3;
}

.stack-specialties-head {
  max-width: 1420px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 42px;
  align-items: end;
}

.stack-specialties-head h2 {
  max-width: 900px;
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}

.stack-specialties-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
}

.stack-cards {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  min-height: 260vh;
}

.stack-card {
  position: sticky;
  top: 112px;
  min-height: 620px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 84% 14%, rgba(168, 85, 255, .16), transparent 30%),
    linear-gradient(145deg, #0b0911, #050409);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 48px;
  align-items: center;
  padding: 52px;
  margin-bottom: 90px;
  overflow: hidden;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .42);
  transform-origin: 50% 18%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.stack-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  z-index: 2;
  pointer-events: none;
}

.stack-card:after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(130px);
  opacity: .14;
  transition: .3s ease;
  pointer-events: none;
}

.stack-card:hover {
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 70px rgba(123, 34, 255, .22), 0 42px 130px rgba(0, 0, 0, .5);
}

.stack-card:hover:after {
  opacity: .28;
}

.stack-card-1 {
  transform: rotate(-2.5deg);
  z-index: 1;
}

.stack-card-2 {
  transform: rotate(0deg);
  z-index: 2;
}

.stack-card-3 {
  transform: rotate(1.8deg);
  z-index: 3;
}

.stack-card-4 {
  transform: rotate(-1deg);
  z-index: 4;
}

.stack-card-copy,
.stack-card-visual {
  position: relative;
  z-index: 4;
}

.stack-card-copy h3 {
  margin: 16px 0 24px;
  color: #fff;
  font-size: 52px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.stack-card-copy p {
  color: #d8d1e8;
  font-size: 18px;
  line-height: 1.6;
  max-width: 670px;
}

.stack-list {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 30px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  max-width: 680px;
}

.stack-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
}

.stack-list i {
  color: var(--purple-3);
  filter: drop-shadow(0 0 10px rgba(168, 85, 255, .55));
}

.stack-cta {
  margin-top: 38px;
  min-height: 58px;
  width: max-content;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700 !important;
  transition: .25s ease;
  background: rgba(255, 255, 255, .035);
}

.stack-cta:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border-color: rgba(168, 85, 255, .8);
  box-shadow: 0 0 38px rgba(123, 34, 255, .36);
}

.stack-card-visual {
  min-height: 390px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 34, 255, .2), transparent 55%),
    linear-gradient(145deg, #12051f, #050409);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 36px rgba(255, 255, 255, .04);
}

.stack-planet {
  width: min(270px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 90px rgba(123, 34, 255, .38), inset 0 0 80px rgba(255, 255, 255, .06);
  animation: stackPlanetFloat 5.2s ease-in-out infinite alternate;
}

.stack-planet:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 30%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 30px rgba(168, 85, 255, .22);
}

.stack-planet:after {
  content: "";
  position: absolute;
  right: 22%;
  top: 20%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px #fff, 0 0 48px var(--purple-2);
}

.stack-planet-1 {
  background:
    radial-gradient(circle at 32% 24%, #fff 0%, #d8c1ff 8%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .28) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(123, 34, 255, .12));
}

.stack-planet-2 {
  background:
    radial-gradient(circle at 58% 26%, #fff 0%, #eee4ff 8%, rgba(120, 80, 255, .46) 24%, transparent 42%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #13071f 100%);
}

.stack-planet-2:before {
  transform: translate(-50%, -50%) rotate(22deg);
}

.stack-planet-3 {
  background:
    radial-gradient(circle at 34% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.stack-planet-3:before {
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-color: rgba(168, 85, 255, .28);
}

.stack-planet-4 {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .42) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.stack-planet-4:before {
  transform: translate(-50%, -50%) rotate(-34deg);
}

@keyframes stackPlanetFloat {
  to {
    transform: translateY(-24px) rotate(6deg) scale(1.03)
  }
}

@media(max-width:980px) {
  .stack-specialties-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stack-cards {
    min-height: auto;
  }

  .stack-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    transform: none !important;
    margin-bottom: 24px;
    min-height: auto;
    padding: 32px;
  }

  .stack-card-visual {
    min-height: 320px;
  }
}

@media(max-width:720px) {
  .stack-specialties-section {
    padding: 82px 0;
  }

  .stack-specialties-head h2 {
    font-size: 38px !important;
  }

  .stack-card {
    border-radius: 28px;
    padding: 26px;
  }

  .stack-card-copy h3 {
    font-size: 34px !important;
  }

  .stack-card-copy p {
    font-size: 16px;
  }

  .stack-list {
    grid-template-columns: 1fr;
  }

  .stack-card-visual {
    min-height: 260px;
  }
}


/* Timeline: conteúdo surgindo no scroll */
.timeline-item {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity .75s cubic-bezier(.2, .8, .2, 1),
    transform .85s cubic-bezier(.2, .8, .2, 1),
    filter .75s ease;
}

.timeline-left {
  transform: translateX(-80px) translateY(40px) scale(.96);
}

.timeline-right {
  transform: translateX(80px) translateY(40px) scale(.96);
}

.timeline-item.timeline-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) translateY(0) scale(1);
}

.timeline-dot {
  opacity: .35;
  transform: scale(.82);
  transition:
    opacity .6s ease,
    transform .7s cubic-bezier(.2, .8, .2, 1),
    box-shadow .7s ease;
}

.timeline-item.timeline-visible .timeline-dot {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 34px rgba(123, 34, 255, .5),
    0 0 70px rgba(123, 34, 255, .26),
    inset 0 0 22px rgba(123, 34, 255, .16);
}

.timeline-card {
  transition:
    transform .28s ease,
    opacity .75s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.timeline-item.timeline-visible .timeline-card {
  animation: timelineCardGlow 1.1s ease both;
}

@keyframes timelineCardGlow {
  0% {
    box-shadow: 0 0 0 rgba(123, 34, 255, 0)
  }

  45% {
    box-shadow: 0 0 54px rgba(123, 34, 255, .28)
  }

  100% {
    box-shadow: 0 0 0 rgba(123, 34, 255, 0)
  }
}

.timeline-center {
  opacity: .42;
  transition: opacity .8s ease;
}

.process-timeline-section.timeline-active .timeline-center {
  opacity: 1;
}

@media(max-width:860px) {

  .timeline-left,
  .timeline-right {
    transform: translateY(44px) scale(.96);
  }

  .timeline-item.timeline-visible {
    transform: translateY(0) scale(1);
  }
}


.clients-marquee-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 118px 0;
}

.clients-glow-one {
  width: 580px;
  height: 580px;
  left: -290px;
  top: 8%;
  opacity: .14;
}

.clients-glow-two {
  width: 680px;
  height: 680px;
  right: -340px;
  bottom: -160px;
  opacity: .17;
}

.clients-marquee-head {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto 56px;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: 42px;
  align-items: end;
  position: relative;
  z-index: 3;
}

.clients-marquee-head h2 {
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
  max-width: 900px;
}

.clients-marquee-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
}

.clients-marquee-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  gap: 22px;
  padding: 12px 0;
}

.clients-marquee-wrap:before,
.clients-marquee-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18vw;
  z-index: 5;
  pointer-events: none;
}

.clients-marquee-wrap:before {
  left: 0;
  background: linear-gradient(90deg, #020203, transparent);
}

.clients-marquee-wrap:after {
  right: 0;
  background: linear-gradient(270deg, #020203, transparent);
}

.clients-marquee-row {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.row-one {
  animation: clientMarqueeLeft 36s linear infinite;
}

.row-two {
  animation: clientMarqueeRight 42s linear infinite;
  transform: translateX(-360px);
}

.clients-marquee-wrap:hover .clients-marquee-row {
  animation-play-state: paused;
}

@keyframes clientMarqueeLeft {
  from {
    transform: translateX(0)
  }

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

@keyframes clientMarqueeRight {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.client-marquee-card {
  flex: 0 0 310px;
  height: 128px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .18), transparent 36%),
    rgba(255, 255, 255, .045);
  display: grid;
  place-items: center;
  padding: 26px;
  transition: .28s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.client-marquee-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 255, .22), transparent 46%);
  opacity: 0;
  transition: .28s ease;
}

.client-marquee-card img {
  max-width: 210px;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(1.05);
  position: relative;
  z-index: 2;
  transition: .28s ease;
}

.client-marquee-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(168, 85, 255, .56);
  box-shadow: 0 0 42px rgba(123, 34, 255, .28), 0 24px 80px rgba(0, 0, 0, .34);
  background: #f4efdf;
}

.client-marquee-card:hover:before {
  opacity: 1;
}

.client-marquee-card:hover img {
  transform: scale(1.06);
}

.clients-impact-strip {
  width: min(1180px, calc(100% - 44px));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 4;
}

.clients-impact-strip div {
  min-height: 132px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .2), transparent 38%),
    linear-gradient(145deg, #0b0911, #050409);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: .28s ease;
}

.clients-impact-strip div:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 255, .5);
  box-shadow: 0 0 38px rgba(123, 34, 255, .22);
}

.clients-impact-strip strong {
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: 700 !important;
  margin-bottom: 8px;
}

.clients-impact-strip span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

@media(max-width:920px) {
  .clients-marquee-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clients-marquee-head h2 {
    font-size: 46px !important;
  }

  .client-marquee-card {
    flex-basis: 240px;
    height: 112px;
  }

  .client-marquee-card img {
    max-width: 170px;
    max-height: 62px;
  }

  .clients-impact-strip {
    grid-template-columns: 1fr;
  }
}

@media(max-width:720px) {
  .clients-marquee-section {
    padding: 82px 0;
  }

  .clients-marquee-head h2 {
    font-size: 38px !important;
  }

  .client-marquee-card {
    flex-basis: 220px;
    border-radius: 22px;
  }
}


/* Footer: títulos menores e mais refinados */
footer h2,
.footer-title,
.footer-grid h2,
.footer-grid h3 {
  font-size: 22px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  margin-bottom: 18px !important;
}

.footer-grid {
  gap: 48px !important;
}

.footer-contact-card h3 {
  font-size: 18px !important;
  line-height: 1.1 !important;
}

@media(max-width:720px) {

  footer h2,
  .footer-title,
  .footer-grid h2,
  .footer-grid h3 {
    font-size: 18px !important;
  }
}


.footer-col h3 {
  font-size: 25px !important;
}


.about-orbit-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.about-orbit-glow-one {
  width: 640px;
  height: 640px;
  left: -320px;
  top: 12%;
  opacity: .16;
}

.about-orbit-glow-two {
  width: 640px;
  height: 640px;
  right: -280px;
  bottom: -120px;
  opacity: .14;
}

.about-orbit-container {
  width: min(1500px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.about-orbit-grid {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.about-orbit-image {
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #08070d;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
}

.about-orbit-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.08) saturate(1.1);
  transform: scale(1.04);
  transition: 1s cubic-bezier(.2, .8, .2, 1);
}

.about-orbit-image:hover img {
  transform: scale(1.1);
  filter: brightness(.9) contrast(1.1) saturate(1.2);
}

.about-orbit-image:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 24%, rgba(168, 85, 255, .28), transparent 32%),
    linear-gradient(180deg, transparent 44%, rgba(2, 2, 3, .88));
  pointer-events: none;
}

45%,
55% {
  opacity: 1
}

100% {
  transform: translateY(360%)
}
}

.about-title-line h2 {
  font-size: 88px !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
  margin-top: 12px;
}

.about-orbit-columns {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: 34px;
  align-items: stretch;
}

.about-copy-card,
.about-special-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 84% 0%, rgba(168, 85, 255, .14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  padding: 34px;
  overflow: hidden;
}

.about-copy-card:after,
.about-special-card:after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(90px);
  opacity: .14;
  pointer-events: none;
}

.about-copy-card>*,
.about-special-card>* {
  position: relative;
  z-index: 2;
}

.about-copy-card h3 {
  font-size: 34px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  margin-bottom: 20px;
  color: #fff;
}

.about-copy-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
}

.about-orbit-btn {
  margin-top: 30px;
  min-height: 56px;
  width: max-content;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #050409;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700 !important;
  transition: .25s ease;
}

.about-orbit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 38px rgba(123, 34, 255, .34);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
}

.about-special-card h3 {
  font-size: 28px !important;
  margin-bottom: 22px;
  color: #fff;
}

.about-special-card ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.about-special-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  transition: .25s ease;
}

.about-special-card li:hover {
  color: #fff;
  transform: translateX(8px);
}

.about-special-card li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(123, 34, 255, .16);
  color: var(--purple-3);
  flex-shrink: 0;
}

.about-numbers-orbit {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-number-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 82% 100%, rgba(123, 34, 255, .2), transparent 38%),
    #08070d;
  transition: .28s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.about-number-card:before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 255, .25);
  box-shadow: 0 0 42px rgba(123, 34, 255, .18);
}

.about-number-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 42px rgba(123, 34, 255, .25);
}

.about-number-card span {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700 !important;
  max-width: 220px;
}

.about-number-card strong {
  display: block;
  margin: 26px 0 14px;
  color: #fff;
  font-size: 58px;
  line-height: .9;
  font-weight: 700 !important;
}

.about-number-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  max-width: 220px;
}

.about-reveal-left,
.about-reveal-up {
  opacity: 0;
  filter: blur(10px);
  transition: opacity .85s ease, transform .9s cubic-bezier(.2, .8, .2, 1), filter .85s ease;
}

.about-reveal-left {
  transform: translateX(-80px) scale(.96);
}

.about-reveal-up {
  transform: translateY(54px) scale(.98);
}

.about-orbit-section.about-visible .about-reveal-left,
.about-orbit-section.about-visible .about-reveal-up {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.about-orbit-section.about-visible .about-reveal-up:nth-child(1) {
  transition-delay: .08s
}

.about-orbit-section.about-visible .about-reveal-up:nth-child(2) {
  transition-delay: .16s
}

@media(max-width:1100px) {

  .about-orbit-grid,
  .about-orbit-columns {
    grid-template-columns: 1fr;
  }

  .about-title-line h2 {
    font-size: 64px !important;
  }

  .about-orbit-image {
    min-height: 520px;
  }

  .about-numbers-orbit {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:720px) {
  .about-orbit-section {
    padding: 82px 0;
  }

  .about-orbit-container {
    width: min(100% - 28px, 1500px);
  }

  .about-title-line h2 {
    font-size: 42px !important;
  }

  .about-orbit-image {
    min-height: 390px;
    border-radius: 28px;
  }

  .about-copy-card,
  .about-special-card {
    padding: 26px;
    border-radius: 24px;
  }

  .about-copy-card h3 {
    font-size: 28px !important;
  }

  .about-numbers-orbit {
    grid-template-columns: 1fr;
  }
}


/* Sistema global de surgimento no scroll */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-scale {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity .85s ease,
    transform .95s cubic-bezier(.2, .8, .2, 1),
    filter .85s ease;
  will-change: opacity, transform, filter;
}

.scroll-reveal {
  transform: translateY(54px);
}

.scroll-reveal-left {
  transform: translateX(-70px) translateY(24px);
}

.scroll-reveal-right {
  transform: translateX(70px) translateY(24px);
}

.scroll-reveal-scale {
  transform: translateY(40px) scale(.94);
}

.scroll-visible {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: none !important;
}

.scroll-delay-1 {
  transition-delay: .08s
}

.scroll-delay-2 {
  transition-delay: .16s
}

.scroll-delay-3 {
  transition-delay: .24s
}

.scroll-delay-4 {
  transition-delay: .32s
}

.scroll-delay-5 {
  transition-delay: .40s
}

@media(prefers-reduced-motion:reduce) {

  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-scale {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Preserva o efeito original dos cards sticky da seção Especialidades */
.stack-card.scroll-reveal,
.stack-card.scroll-reveal-left,
.stack-card.scroll-reveal-right,
.stack-card.scroll-reveal-scale,
.stack-card.scroll-visible {
  opacity: 1 !important;
  filter: none !important;
}

.stack-card.scroll-reveal,
.stack-card.scroll-reveal-left,
.stack-card.scroll-reveal-right,
.stack-card.scroll-reveal-scale {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease !important;
}


.faq-orbit-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #020203;
}

.faq-glow-one {
  width: 560px;
  height: 560px;
  left: -260px;
  top: 10%;
  opacity: .14;
}

.faq-glow-two {
  width: 640px;
  height: 640px;
  right: -320px;
  bottom: -180px;
  opacity: .16;
}

.faq-orbit-container {
  width: min(1450px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.faq-head {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 42px;
  align-items: end;
}

.faq-head h2 {
  font-size: 72px !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
}

.faq-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 85, 255, .16), transparent 34%),
    linear-gradient(145deg, #0b0911, #050409);
  overflow: hidden;
  transition: .28s ease;
}

.faq-item:hover {
  border-color: rgba(168, 85, 255, .48);
  box-shadow: 0 0 42px rgba(123, 34, 255, .18);
}

.faq-question {
  width: 100%;
  min-height: 92px;
  padding: 28px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #fff;
  text-align: left;
}

.faq-question span {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700 !important;
}

.faq-question i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(168, 85, 255, .12);
  color: var(--purple-3);
  flex-shrink: 0;
  transition: .28s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease;
}

.faq-answer p {
  padding: 0 28px 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  box-shadow: 0 0 28px rgba(123, 34, 255, .28);
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

@media(max-width:980px) {
  .faq-head {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-head h2 {
    font-size: 48px !important;
  }
}

@media(max-width:720px) {
  .faq-orbit-section {
    padding: 82px 0;
  }

  .faq-orbit-container {
    width: min(100% - 28px, 1450px);
  }

  .faq-head h2 {
    font-size: 38px !important;
  }

  .faq-question {
    padding: 22px;
    min-height: 84px;
  }

  .faq-question span {
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
  }
}


/* FAQ corrigido: fechado por padrão e abre ao clicar */
.faq-item .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .42s ease !important;
}

.faq-item.active .faq-answer {
  max-height: 360px !important;
}

.faq-question {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.faq-question i {
  display: grid !important;
  transition: .28s ease !important;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg) !important;
}


.stack-card-visual {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.stack-specialty-img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 24px;
  filter: brightness(.82) contrast(1.08) saturate(1.16);
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s ease;
}

.stack-card-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(123, 34, 255, .08), transparent 40%),
    linear-gradient(180deg, transparent 42%, rgba(2, 2, 3, .72));
  pointer-events: none;
  border-radius: 24px;
}

.stack-card:hover .stack-specialty-img {
  transform: scale(1.08);
  filter: brightness(.95) contrast(1.12) saturate(1.24);
}

@media(max-width:720px) {
  .stack-specialty-img {
    min-height: 260px;
  }
}

@media(max-width:1080px) {
  .about-cinematic-grid {
    grid-template-columns: 1fr;
  }

  .about-cinematic-visual {
    min-height: 520px;
  }

  .about-cinematic-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cine-planet {
    width: 620px;
    right: -260px;
    opacity: .25;
  }
}

@media(max-width:720px) {
  .about-cinematic-section {
    min-height: auto;
    padding: 84px 0;
  }

  .about-cinematic-copy h2 {
    font-size: 72px;
  }

  .about-cinematic-copy p {
    font-size: 22px;
  }

  .about-cinematic-visual {
    min-height: 430px;
    border-radius: 30px;
  }

  .about-floating-pill {
    min-width: 150px;
    padding: 14px;
    border-radius: 18px;
  }

  .about-floating-pill strong {
    font-size: 28px;
  }

  .about-floating-pill.p2 {
    display: none
  }

  .about-floating-pill.p3 {
    top: 18px;
    right: 18px
  }

  .about-floating-pill.p1 {
    left: 18px;
    bottom: 18px
  }

  .about-cinematic-strip {
    grid-template-columns: 1fr;
  }
}


.projects-showcase-section {
  background: #020203;
  padding: 118px 0;
  position: relative;
  overflow: hidden;
}

.projects-showcase-glow-one {
  width: 520px;
  height: 520px;
  left: -260px;
  top: 18%;
  opacity: .14;
}

.projects-showcase-glow-two {
  width: 620px;
  height: 620px;
  right: -320px;
  bottom: 0;
  opacity: .16;
}

.projects-showcase-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 4.5vw, 74px);
  padding-right: clamp(18px, 4.5vw, 74px);
  position: relative;
  z-index: 3;
}

.projects-showcase-head {
  max-width: 1380px;
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 42px;
  align-items: end;
}

.projects-showcase-head h2 {
  font-size: 68px;
  line-height: .88;
  letter-spacing: 0;
  max-width: 920px;
}

.projects-showcase-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  max-width: 460px;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 340px;
  gap: 22px;
  max-width: 1680px;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #08070d;
  min-height: 340px;
  isolation: isolate;
  transition: .34s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.showcase-large {
  grid-row: span 2;
}

.showcase-wide {
  grid-column: span 2;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(1.05) contrast(1.08);
  transform: scale(1.015);
  transition: .75s cubic-bezier(.2, .8, .2, 1);
  z-index: 1;
}

.showcase-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 34, 255, .08), transparent 32%),
    linear-gradient(180deg, rgba(2, 2, 3, .02) 18%, rgba(2, 2, 3, .92) 100%);
  transition: .35s ease;
}

.showcase-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  z-index: 4;
  opacity: 0;
  transform: scale(.96);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.showcase-card:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.7);
  background: radial-gradient(circle, rgba(123, 34, 255, .34), transparent 62%);
  filter: blur(30px);
  opacity: 0;
  z-index: 3;
  transition: .35s ease;
  pointer-events: none;
}

.showcase-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.showcase-content span {
  display: block;
  color: #d8c9ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.showcase-content h3 {
  color: #fff;
  font-size: 42px;
  line-height: .92;
  letter-spacing: 0;
  max-width: 720px;
}

.showcase-hover-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  transform: translate(-50%, -50%) scale(.78);
  opacity: 0;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 0 46px rgba(123, 34, 255, .52);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.showcase-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .6);
  box-shadow: 0 0 60px rgba(123, 34, 255, .26), 0 36px 110px rgba(0, 0, 0, .42);
}

.showcase-card:hover img {
  transform: scale(1.11);
  filter: brightness(.46) saturate(1.22) contrast(1.12);
}

.showcase-card:hover .showcase-layer {
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 34, 255, .34), transparent 42%),
    linear-gradient(180deg, rgba(2, 2, 3, .24), rgba(2, 2, 3, .9));
}

.showcase-card:hover:before {
  opacity: 1;
  transform: scale(1);
}

.showcase-card:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.showcase-card:hover .showcase-hover-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.showcase-card:hover .showcase-content {
  opacity: .38;
  transform: translateY(14px);
}

@media(max-width:1180px) {
  .projects-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-large {
    grid-row: span 1;
  }

  .showcase-wide {
    grid-column: span 2;
  }
}

@media(max-width:820px) {
  .projects-showcase-section {
    padding: 78px 0;
  }

  .projects-showcase-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .projects-showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
    gap: 16px;
  }

  .showcase-wide {
    grid-column: span 1;
  }

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

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


.btn i,
.project-hover-btn i,
.showcase-hover-button i,
.special-link i,
.footer-social i,
.carousel-btn i {
  margin-right: 10px;
}

.carousel-btn i {
  margin-right: 0;
  font-size: 16px;
}

.footer-social i {
  margin-right: 0;
  font-size: 18px;
}

.specialty-icon i,
.stat-icon i {
  font-size: 20px;
}

.play-icon i {
  font-size: 16px;
  margin-left: 3px;
}

.contact-info-row strong i {
  margin-right: 8px;
}


h1,
h2,
h3,
.showcase-content h3,
.timeline-card h3,
.about-strip-card strong,
.special-card h3,
.orbital-cta-card h2,
.contact-full-copy h2 {
  letter-spacing: 0 !important;
}


h1 {
  font-size: 108px !important;
}

h2,
.orbital-cta-card h2,
.contact-full-copy h2,
.projects-showcase-head h2 {
  font-size: 68px !important;
  line-height: .95 !important;
}

h3,
.showcase-content h3,
.timeline-card h3,
.special-card h3 {
  font-size: 40px !important;
  line-height: 1 !important;
}

.about-cinematic-copy p {
  font-size: 26px !important;
}

@media(max-width:980px) {
  h1 {
    font-size: 74px !important;
  }

  h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .projects-showcase-head h2 {
    font-size: 52px !important;
  }

  h3,
  .showcase-content h3,
  .timeline-card h3,
  .special-card h3 {
    font-size: 32px !important;
  }
}

@media(max-width:720px) {
  h1 {
    font-size: 54px !important;
  }

  h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .projects-showcase-head h2 {
    font-size: 38px !important;
  }

  h3,
  .showcase-content h3,
  .timeline-card h3,
  .special-card h3 {
    font-size: 26px !important;
  }

  .about-cinematic-copy p {
    font-size: 20px !important;
  }
}


/* Correção fina da seção contato */
.contact-full-grid {
  grid-template-columns: minmax(420px, 1.05fr) minmax(520px, .95fr) !important;
  gap: 52px !important;
  align-items: center !important;
}

.contact-full-copy {
  padding-left: clamp(90px, 9vw, 180px) !important;
  max-width: 680px !important;
}

.contact-full-copy h2,
.contact-title {
  font-size: 58px !important;
  line-height: .92 !important;
  max-width: 620px !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.contact-full-copy p {
  max-width: 480px !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.contact-info-row {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 500px !important;
}

.contact-info-row a {
  min-width: 0 !important;
  overflow: hidden !important;
}

.contact-info-row span {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.contact-info-row strong {
  font-size: 17px !important;
  white-space: nowrap !important;
}

.contact-form-panel {
  max-width: 860px !important;
  justify-self: end !important;
  padding: 34px !important;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  padding: 16px !important;
}

.contact-form-panel textarea {
  min-height: 118px !important;
}

.contact-planet-wrap {
  left: -180px !important;
  width: 400px !important;
  opacity: .92 !important;
}

@media(max-width:1240px) {
  .contact-full-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-full-copy {
    padding-left: 0 !important;
    max-width: 760px !important;
  }

  .contact-full-copy h2,
  .contact-title {
    font-size: 52px !important;
    max-width: 760px !important;
  }

  .contact-form-panel {
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media(max-width:720px) {

  .contact-full-copy h2,
  .contact-title {
    font-size: 36px !important;
  }

  .contact-info-row {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  .contact-form-panel {
    padding: 22px !important;
  }
}


/* Correção Font Awesome: impede a fonte Magistral de sobrescrever os ícones */
i.fa,
i.fa-solid,
i.fa-regular,
i.fa-brands,
.fa,
.fa-solid,
.fa-regular,
.fa-brands {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal !important;
  font-weight: 900 !important;
  display: inline-block;
  line-height: 1;
}

i.fa-brands,
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

i.fa-regular,
.fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}


.timeline-launch-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 52px;
  position: relative;
  z-index: 5;
}

.timeline-launch-btn {
  position: relative;
  min-width: 520px;
  min-height: 108px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 255, .55);
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 34, 255, .24), transparent 52%),
    linear-gradient(135deg, rgba(123, 34, 255, .18), rgba(255, 255, 255, .03)),
    #08070d;
  color: #fff;
  box-shadow:
    0 0 44px rgba(123, 34, 255, .24),
    inset 0 0 32px rgba(123, 34, 255, .14);
  transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.timeline-launch-btn:before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  opacity: .7;
}

.timeline-launch-btn:after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-24deg);
  transition: .7s ease;
}

.timeline-launch-btn:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(168, 85, 255, .9);
  box-shadow:
    0 0 60px rgba(123, 34, 255, .4),
    0 24px 90px rgba(0, 0, 0, .4);
}

.timeline-launch-btn:hover:after {
  left: 140%;
}

.timeline-launch-btn i {
  font-size: 28px;
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(168, 85, 255, .8));
}

.timeline-launch-btn span {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0 !important;
  color: #fff;
  line-height: 1;
}

@media(max-width:720px) {
  .timeline-launch-btn {
    min-width: 100%;
    min-height: 88px;
    padding: 0 24px;
  }

  .timeline-launch-btn span {
    font-size: 28px;
  }

  .timeline-launch-btn i {
    font-size: 22px;
  }
}


/* Correção botão WhatsApp no footer/contato */
.footer-contact-card .btn,
.contact-info-row .btn,
a.btn,
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
  text-align: center !important;
  line-height: 1 !important;
}

.footer-contact-card .btn {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 22px !important;
  font-size: 15px !important;
  border-radius: 18px !important;
}

.footer-contact-card .btn i,
.btn i {
  margin: 0 !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.footer-contact-card {
  overflow: hidden;
}

@media(max-width:720px) {
  .footer-contact-card .btn {
    width: 100% !important;
    font-size: 14px !important;
    padding: 0 18px !important;
  }
}


/* Especialidades: planetas + arraste */
.special-carousel {
  cursor: grab !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  scroll-behavior: smooth;
}

.special-carousel.dragging {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
}

.special-carousel.dragging .special-card {
  pointer-events: none;
}

.special-icon {
  overflow: hidden;
  position: relative;
}

.planet-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: block;
  position: relative;
  background:
    radial-gradient(circle at 32% 25%, #fff 0%, #d8c1ff 10%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(123, 34, 255, .92), rgba(123, 34, 255, .26) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(123, 34, 255, .12));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 28px rgba(123, 34, 255, .46), inset 0 0 24px rgba(255, 255, 255, .07);
}

.planet-service-icon:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 16px rgba(168, 85, 255, .3);
}

.planet-service-icon:after {
  content: "";
  position: absolute;
  right: 9px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px #fff;
  opacity: .9;
}

.special-card:hover .planet-service-icon {
  animation: planetServiceSpin 1.8s ease-in-out infinite alternate;
}

@keyframes planetServiceSpin {
  to {
    transform: translateY(-4px) rotate(8deg) scale(1.06)
  }
}


/* Carrossel suave + planetas únicos */
.special-carousel {
  cursor: grab !important;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
}

.special-carousel.dragging {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

.special-carousel.dragging .special-card {
  pointer-events: none;
}

.planet-service-icon.planet-1 {
  background:
    radial-gradient(circle at 30% 22%, #fff 0%, #d8c1ff 9%, rgba(168, 85, 255, .54) 24%, transparent 42%),
    radial-gradient(circle at 70% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .26) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(123, 34, 255, .12));
}

.planet-service-icon.planet-2 {
  background:
    radial-gradient(circle at 65% 24%, #fff 0%, #ece2ff 8%, rgba(120, 80, 255, .5) 23%, transparent 40%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #16091f 100%);
}

.planet-service-icon.planet-2:before {
  width: 84px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(20deg);
  border-color: rgba(216, 193, 255, .46);
}

.planet-service-icon.planet-3 {
  background:
    radial-gradient(circle at 36% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.planet-service-icon.planet-3:before {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 255, .34);
  transform: translate(-50%, -50%) rotate(0deg);
}

.planet-service-icon.planet-4 {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .4) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.planet-service-icon.planet-4:before {
  width: 88px;
  height: 24px;
  transform: translate(-50%, -50%) rotate(-34deg);
  border-color: rgba(255, 255, 255, .32);
}


.special-carousel {
  overflow-x: auto !important;
}

.special-carousel .special-card[aria-hidden="true"] {
  pointer-events: auto;
}


.fan-specialties-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  min-height: 100vh;
}

.fan-glow-one {
  width: 620px;
  height: 620px;
  left: -300px;
  top: 18%;
  opacity: .17;
}

.fan-glow-two {
  width: 720px;
  height: 720px;
  right: -360px;
  bottom: -120px;
  opacity: .18;
}

.fan-specialties-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  position: relative;
  z-index: 3;
}

.fan-specialties-head {
  max-width: 1480px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 42px;
  align-items: end;
}

.fan-specialties-head h2 {
  max-width: 900px;
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}

.fan-specialties-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
}

.fan-stage {
  position: relative;
  width: min(1480px, 100%);
  height: 680px;
  margin: 0 auto;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.fan-stage:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 780px;
  height: 180px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(123, 34, 255, .22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.fan-card {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 420px;
  height: 560px;
  margin-left: -210px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 72% 18%, rgba(168, 85, 255, .2), transparent 32%),
    linear-gradient(145deg, #0b0911, #050409);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
  overflow: hidden;
  padding: 34px;
  transform-origin: 50% 105%;
  transform: translateY(90px) rotate(0deg) scale(.92);
  opacity: 0;
  transition:
    transform .9s cubic-bezier(.2, .9, .15, 1),
    opacity .8s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    filter .35s ease;
  isolation: isolate;
}

.fan-stage.active .fan-card {
  opacity: 1;
}

.fan-stage.active .fan-card-1 {
  transform: translateX(-390px) translateY(24px) rotate(-18deg) scale(.96);
  transition-delay: .05s;
}

.fan-stage.active .fan-card-2 {
  transform: translateX(-130px) translateY(-18px) rotate(-6deg) scale(1);
  transition-delay: .12s;
}

.fan-stage.active .fan-card-3 {
  transform: translateX(130px) translateY(-18px) rotate(6deg) scale(1);
  transition-delay: .19s;
}

.fan-stage.active .fan-card-4 {
  transform: translateX(390px) translateY(24px) rotate(18deg) scale(.96);
  transition-delay: .26s;
}

.fan-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  z-index: 3;
  pointer-events: none;
  opacity: .75;
}

.fan-card:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(100px);
  opacity: .18;
  transition: .35s ease;
  z-index: 1;
}

.fan-card:hover {
  z-index: 20;
  border-color: rgba(168, 85, 255, .68);
  box-shadow: 0 0 70px rgba(123, 34, 255, .36), 0 42px 120px rgba(0, 0, 0, .48);
  filter: saturate(1.18);
}

.fan-stage.active .fan-card-1:hover {
  transform: translateX(-390px) translateY(-26px) rotate(-11deg) scale(1.08);
}

.fan-stage.active .fan-card-2:hover {
  transform: translateX(-130px) translateY(-56px) rotate(-2deg) scale(1.08);
}

.fan-stage.active .fan-card-3:hover {
  transform: translateX(130px) translateY(-56px) rotate(2deg) scale(1.08);
}

.fan-stage.active .fan-card-4:hover {
  transform: translateX(390px) translateY(-26px) rotate(11deg) scale(1.08);
}

.fan-stage:hover .fan-card:not(:hover) {
  opacity: .62;
}

.fan-card:hover:after {
  opacity: .36;
}

.fan-number {
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 2;
  color: rgba(255, 255, 255, .07);
  font-size: 76px;
  font-weight: 700 !important;
  line-height: 1;
}

.fan-planet {
  position: relative;
  z-index: 4;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin-bottom: 54px;
  background:
    radial-gradient(circle at 32% 24%, #fff 0%, #d8c1ff 9%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .28) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(123, 34, 255, .12));
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 34px rgba(123, 34, 255, .42), inset 0 0 28px rgba(255, 255, 255, .07);
  transition: .35s ease;
}

.fan-planet:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 126px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .32);
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 18px rgba(168, 85, 255, .28);
}

.fan-card-2 .fan-planet {
  background:
    radial-gradient(circle at 62% 26%, #fff 0%, #eee4ff 9%, rgba(120, 80, 255, .48) 24%, transparent 42%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #13071f 100%);
}

.fan-card-2 .fan-planet:before {
  transform: translate(-50%, -50%) rotate(22deg);
}

.fan-card-3 .fan-planet {
  background:
    radial-gradient(circle at 34% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.fan-card-3 .fan-planet:before {
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-color: rgba(168, 85, 255, .3);
}

.fan-card-4 .fan-planet {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .42) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.fan-card-4 .fan-planet:before {
  transform: translate(-50%, -50%) rotate(-34deg);
}

.fan-card:hover .fan-planet {
  transform: translateY(-8px) rotate(8deg) scale(1.06);
}

.fan-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.fan-content h3 {
  margin: 16px 0 18px;
  color: #fff;
  font-size: 38px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.fan-content p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
  max-width: 340px;
}

.fan-content a {
  margin-top: auto;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700 !important;
  transition: .25s ease;
}

.fan-content a:hover {
  color: var(--purple-3);
  transform: translateX(8px);
}

.fan-hint {
  width: max-content;
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}

.fan-hint i {
  color: var(--purple-2);
  filter: drop-shadow(0 0 12px rgba(168, 85, 255, .7));
}

@media(max-width:1180px) {
  .fan-stage {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    perspective: none;
  }

  .fan-stage:before {
    display: none;
  }

  .fan-card,
  .fan-stage.active .fan-card,
  .fan-stage.active .fan-card-1,
  .fan-stage.active .fan-card-2,
  .fan-stage.active .fan-card-3,
  .fan-stage.active .fan-card-4,
  .fan-stage.active .fan-card-1:hover,
  .fan-stage.active .fan-card-2:hover,
  .fan-stage.active .fan-card-3:hover,
  .fan-stage.active .fan-card-4:hover {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 520px;
    margin: 0;
    transform: none;
    opacity: 1;
  }
}

@media(max-width:720px) {
  .fan-specialties-section {
    padding: 82px 0;
  }

  .fan-specialties-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .fan-specialties-head h2 {
    font-size: 38px !important;
  }

  .fan-stage {
    grid-template-columns: 1fr;
  }

  .fan-card {
    border-radius: 28px;
    padding: 28px;
    min-height: 480px !important;
  }

  .fan-content h3 {
    font-size: 30px !important;
  }

  .fan-hint {
    width: auto;
    text-align: center;
    justify-content: center;
  }
}


.stack-specialties-section {
  background: #020203;
  position: relative;
  overflow: visible;
  padding: 120px 0 80px;
}

.stack-glow-one {
  width: 620px;
  height: 620px;
  left: -310px;
  top: 10%;
  opacity: .16;
}

.stack-glow-two {
  width: 760px;
  height: 760px;
  right: -380px;
  bottom: 15%;
  opacity: .17;
}

.stack-specialties-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  position: relative;
  z-index: 3;
}

.stack-specialties-head {
  max-width: 1420px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 42px;
  align-items: end;
}

.stack-specialties-head h2 {
  max-width: 900px;
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}

.stack-specialties-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
}

.stack-cards {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  min-height: 260vh;
}

.stack-card {
  position: sticky;
  top: 112px;
  min-height: 620px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 84% 14%, rgba(168, 85, 255, .16), transparent 30%),
    linear-gradient(145deg, #0b0911, #050409);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 48px;
  align-items: center;
  padding: 52px;
  margin-bottom: 90px;
  overflow: hidden;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .42);
  transform-origin: 50% 18%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.stack-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  z-index: 2;
  pointer-events: none;
}

.stack-card:after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(130px);
  opacity: .14;
  transition: .3s ease;
  pointer-events: none;
}

.stack-card:hover {
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 70px rgba(123, 34, 255, .22), 0 42px 130px rgba(0, 0, 0, .5);
}

.stack-card:hover:after {
  opacity: .28;
}

.stack-card-1 {
  transform: rotate(-2.5deg);
  z-index: 1;
}

.stack-card-2 {
  transform: rotate(0deg);
  z-index: 2;
}

.stack-card-3 {
  transform: rotate(1.8deg);
  z-index: 3;
}

.stack-card-4 {
  transform: rotate(-1deg);
  z-index: 4;
}

.stack-card-copy,
.stack-card-visual {
  position: relative;
  z-index: 4;
}

.stack-card-copy h3 {
  margin: 16px 0 24px;
  color: #fff;
  font-size: 52px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.stack-card-copy p {
  color: #d8d1e8;
  font-size: 18px;
  line-height: 1.6;
  max-width: 670px;
}

.stack-list {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 30px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  max-width: 680px;
}

.stack-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
}

.stack-list i {
  color: var(--purple-3);
  filter: drop-shadow(0 0 10px rgba(168, 85, 255, .55));
}

.stack-cta {
  margin-top: 38px;
  min-height: 58px;
  width: max-content;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700 !important;
  transition: .25s ease;
  background: rgba(255, 255, 255, .035);
}

.stack-cta:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border-color: rgba(168, 85, 255, .8);
  box-shadow: 0 0 38px rgba(123, 34, 255, .36);
}

.stack-card-visual {
  min-height: 390px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 34, 255, .2), transparent 55%),
    linear-gradient(145deg, #12051f, #050409);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 36px rgba(255, 255, 255, .04);
}

.stack-planet {
  width: min(270px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 90px rgba(123, 34, 255, .38), inset 0 0 80px rgba(255, 255, 255, .06);
  animation: stackPlanetFloat 5.2s ease-in-out infinite alternate;
}

.stack-planet:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 30%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 30px rgba(168, 85, 255, .22);
}

.stack-planet:after {
  content: "";
  position: absolute;
  right: 22%;
  top: 20%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px #fff, 0 0 48px var(--purple-2);
}

.stack-planet-1 {
  background:
    radial-gradient(circle at 32% 24%, #fff 0%, #d8c1ff 8%, rgba(168, 85, 255, .52) 24%, transparent 42%),
    radial-gradient(circle at 68% 72%, rgba(123, 34, 255, .94), rgba(123, 34, 255, .28) 52%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(123, 34, 255, .12));
}

.stack-planet-2 {
  background:
    radial-gradient(circle at 58% 26%, #fff 0%, #eee4ff 8%, rgba(120, 80, 255, .46) 24%, transparent 42%),
    linear-gradient(155deg, #2e0f65 0%, #7b22ff 46%, #13071f 100%);
}

.stack-planet-2:before {
  transform: translate(-50%, -50%) rotate(22deg);
}

.stack-planet-3 {
  background:
    radial-gradient(circle at 34% 28%, #fff 0%, #d8c1ff 7%, rgba(255, 255, 255, .12) 17%, transparent 34%),
    radial-gradient(circle at 62% 62%, #9b5cff 0%, #42127d 42%, #09030f 78%);
}

.stack-planet-3:before {
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  border-color: rgba(168, 85, 255, .28);
}

.stack-planet-4 {
  background:
    radial-gradient(circle at 28% 28%, #fff 0%, #dcc8ff 8%, rgba(168, 85, 255, .42) 21%, transparent 38%),
    conic-gradient(from 140deg, #12051f, #7b22ff, #d8c1ff, #4a1192, #12051f);
}

.stack-planet-4:before {
  transform: translate(-50%, -50%) rotate(-34deg);
}

@keyframes stackPlanetFloat {
  to {
    transform: translateY(-24px) rotate(6deg) scale(1.03)
  }
}

@media(max-width:980px) {
  .stack-specialties-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stack-cards {
    min-height: auto;
  }

  .stack-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    transform: none !important;
    margin-bottom: 24px;
    min-height: auto;
    padding: 32px;
  }

  .stack-card-visual {
    min-height: 320px;
  }
}

@media(max-width:720px) {
  .stack-specialties-section {
    padding: 82px 0;
  }

  .stack-specialties-head h2 {
    font-size: 38px !important;
  }

  .stack-card {
    border-radius: 28px;
    padding: 26px;
  }

  .stack-card-copy h3 {
    font-size: 34px !important;
  }

  .stack-card-copy p {
    font-size: 16px;
  }

  .stack-list {
    grid-template-columns: 1fr;
  }

  .stack-card-visual {
    min-height: 260px;
  }
}


/* Timeline: conteúdo surgindo no scroll */
.timeline-item {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity .75s cubic-bezier(.2, .8, .2, 1),
    transform .85s cubic-bezier(.2, .8, .2, 1),
    filter .75s ease;
}

.timeline-left {
  transform: translateX(-80px) translateY(40px) scale(.96);
}

.timeline-right {
  transform: translateX(80px) translateY(40px) scale(.96);
}

.timeline-item.timeline-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) translateY(0) scale(1);
}

.timeline-dot {
  opacity: .35;
  transform: scale(.82);
  transition:
    opacity .6s ease,
    transform .7s cubic-bezier(.2, .8, .2, 1),
    box-shadow .7s ease;
}

.timeline-item.timeline-visible .timeline-dot {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 34px rgba(123, 34, 255, .5),
    0 0 70px rgba(123, 34, 255, .26),
    inset 0 0 22px rgba(123, 34, 255, .16);
}

.timeline-card {
  transition:
    transform .28s ease,
    opacity .75s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.timeline-item.timeline-visible .timeline-card {
  animation: timelineCardGlow 1.1s ease both;
}

@keyframes timelineCardGlow {
  0% {
    box-shadow: 0 0 0 rgba(123, 34, 255, 0)
  }

  45% {
    box-shadow: 0 0 54px rgba(123, 34, 255, .28)
  }

  100% {
    box-shadow: 0 0 0 rgba(123, 34, 255, 0)
  }
}

.timeline-center {
  opacity: .42;
  transition: opacity .8s ease;
}

.process-timeline-section.timeline-active .timeline-center {
  opacity: 1;
}

@media(max-width:860px) {

  .timeline-left,
  .timeline-right {
    transform: translateY(44px) scale(.96);
  }

  .timeline-item.timeline-visible {
    transform: translateY(0) scale(1);
  }
}


.clients-marquee-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 118px 0;
}

.clients-glow-one {
  width: 580px;
  height: 580px;
  left: -290px;
  top: 8%;
  opacity: .14;
}

.clients-glow-two {
  width: 680px;
  height: 680px;
  right: -340px;
  bottom: -160px;
  opacity: .17;
}

.clients-marquee-head {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto 56px;
  padding-left: clamp(18px, 5vw, 78px);
  padding-right: clamp(18px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: 42px;
  align-items: end;
  position: relative;
  z-index: 3;
}

.clients-marquee-head h2 {
  font-size: 68px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
  max-width: 900px;
}

.clients-marquee-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
}

.clients-marquee-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  gap: 22px;
  padding: 12px 0;
}

.clients-marquee-wrap:before,
.clients-marquee-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18vw;
  z-index: 5;
  pointer-events: none;
}

.clients-marquee-wrap:before {
  left: 0;
  background: linear-gradient(90deg, #020203, transparent);
}

.clients-marquee-wrap:after {
  right: 0;
  background: linear-gradient(270deg, #020203, transparent);
}

.clients-marquee-row {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.row-one {
  animation: clientMarqueeLeft 36s linear infinite;
}

.row-two {
  animation: clientMarqueeRight 42s linear infinite;
  transform: translateX(-360px);
}

.clients-marquee-wrap:hover .clients-marquee-row {
  animation-play-state: paused;
}

@keyframes clientMarqueeLeft {
  from {
    transform: translateX(0)
  }

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

@keyframes clientMarqueeRight {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.client-marquee-card {
  flex: 0 0 310px;
  height: 128px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .18), transparent 36%),
    rgba(255, 255, 255, .045);
  display: grid;
  place-items: center;
  padding: 26px;
  transition: .28s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.client-marquee-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 255, .22), transparent 46%);
  opacity: 0;
  transition: .28s ease;
}

.client-marquee-card img {
  max-width: 210px;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(1.05);
  position: relative;
  z-index: 2;
  transition: .28s ease;
}

.client-marquee-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(168, 85, 255, .56);
  box-shadow: 0 0 42px rgba(123, 34, 255, .28), 0 24px 80px rgba(0, 0, 0, .34);
  background: #f4efdf;
}

.client-marquee-card:hover:before {
  opacity: 1;
}

.client-marquee-card:hover img {
  transform: scale(1.06);
}

.clients-impact-strip {
  width: min(1180px, calc(100% - 44px));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 4;
}

.clients-impact-strip div {
  min-height: 132px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 80% 100%, rgba(123, 34, 255, .2), transparent 38%),
    linear-gradient(145deg, #0b0911, #050409);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: .28s ease;
}

.clients-impact-strip div:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 255, .5);
  box-shadow: 0 0 38px rgba(123, 34, 255, .22);
}

.clients-impact-strip strong {
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: 700 !important;
  margin-bottom: 8px;
}

.clients-impact-strip span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

@media(max-width:920px) {
  .clients-marquee-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clients-marquee-head h2 {
    font-size: 46px !important;
  }

  .client-marquee-card {
    flex-basis: 240px;
    height: 112px;
  }

  .client-marquee-card img {
    max-width: 170px;
    max-height: 62px;
  }

  .clients-impact-strip {
    grid-template-columns: 1fr;
  }
}

@media(max-width:720px) {
  .clients-marquee-section {
    padding: 82px 0;
  }

  .clients-marquee-head h2 {
    font-size: 38px !important;
  }

  .client-marquee-card {
    flex-basis: 220px;
    border-radius: 22px;
  }
}


/* Footer: títulos menores e mais refinados */
footer h2,
.footer-title,
.footer-grid h2,
.footer-grid h3 {
  font-size: 22px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  margin-bottom: 18px !important;
}

.footer-grid {
  gap: 48px !important;
}

.footer-contact-card h3 {
  font-size: 18px !important;
  line-height: 1.1 !important;
}

@media(max-width:720px) {

  footer h2,
  .footer-title,
  .footer-grid h2,
  .footer-grid h3 {
    font-size: 18px !important;
  }
}


.footer-col h3 {
  font-size: 25px !important;
}


.about-orbit-section {
  background: #020203;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.about-orbit-glow-one {
  width: 640px;
  height: 640px;
  left: -320px;
  top: 12%;
  opacity: .16;
}

.about-orbit-glow-two {
  width: 640px;
  height: 640px;
  right: -280px;
  bottom: -120px;
  opacity: .14;
}

.about-orbit-container {
  width: min(1500px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.about-orbit-grid {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.about-orbit-image {
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #08070d;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34);
}

.about-orbit-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.08) saturate(1.1);
  transform: scale(1.04);
  transition: 1s cubic-bezier(.2, .8, .2, 1);
}

.about-orbit-image:hover img {
  transform: scale(1.1);
  filter: brightness(.9) contrast(1.1) saturate(1.2);
}

.about-orbit-image:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 24%, rgba(168, 85, 255, .28), transparent 32%),
    linear-gradient(180deg, transparent 44%, rgba(2, 2, 3, .88));
  pointer-events: none;
}

45%,
55% {
  opacity: 1
}

100% {
  transform: translateY(360%)
}
}

.about-title-line h2 {
  font-size: 88px !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
  margin-top: 12px;
}

.about-orbit-columns {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: 34px;
  align-items: stretch;
}

.about-copy-card,
.about-special-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 84% 0%, rgba(168, 85, 255, .14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  padding: 34px;
  overflow: hidden;
}

.about-copy-card:after,
.about-special-card:after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(90px);
  opacity: .14;
  pointer-events: none;
}

.about-copy-card>*,
.about-special-card>* {
  position: relative;
  z-index: 2;
}

.about-copy-card h3 {
  font-size: 34px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  margin-bottom: 20px;
  color: #fff;
}

.about-copy-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
}

.about-orbit-btn {
  margin-top: 30px;
  min-height: 56px;
  width: max-content;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #050409;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700 !important;
  transition: .25s ease;
}

.about-orbit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 38px rgba(123, 34, 255, .34);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
}

.about-special-card h3 {
  font-size: 28px !important;
  margin-bottom: 22px;
  color: #fff;
}

.about-special-card ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.about-special-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  transition: .25s ease;
}

.about-special-card li:hover {
  color: #fff;
  transform: translateX(8px);
}

.about-special-card li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(123, 34, 255, .16);
  color: var(--purple-3);
  flex-shrink: 0;
}

.about-numbers-orbit {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-number-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    radial-gradient(circle at 82% 100%, rgba(123, 34, 255, .2), transparent 38%),
    #08070d;
  transition: .28s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

.about-number-card:before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 255, .25);
  box-shadow: 0 0 42px rgba(123, 34, 255, .18);
}

.about-number-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 255, .55);
  box-shadow: 0 0 42px rgba(123, 34, 255, .25);
}

.about-number-card span {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700 !important;
  max-width: 220px;
}

.about-number-card strong {
  display: block;
  margin: 26px 0 14px;
  color: #fff;
  font-size: 58px;
  line-height: .9;
  font-weight: 700 !important;
}

.about-number-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  max-width: 220px;
}

.about-reveal-left,
.about-reveal-up {
  opacity: 0;
  filter: blur(10px);
  transition: opacity .85s ease, transform .9s cubic-bezier(.2, .8, .2, 1), filter .85s ease;
}

.about-reveal-left {
  transform: translateX(-80px) scale(.96);
}

.about-reveal-up {
  transform: translateY(54px) scale(.98);
}

.about-orbit-section.about-visible .about-reveal-left,
.about-orbit-section.about-visible .about-reveal-up {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.about-orbit-section.about-visible .about-reveal-up:nth-child(1) {
  transition-delay: .08s
}

.about-orbit-section.about-visible .about-reveal-up:nth-child(2) {
  transition-delay: .16s
}

@media(max-width:1100px) {

  .about-orbit-grid,
  .about-orbit-columns {
    grid-template-columns: 1fr;
  }

  .about-title-line h2 {
    font-size: 64px !important;
  }

  .about-orbit-image {
    min-height: 520px;
  }

  .about-numbers-orbit {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:720px) {
  .about-orbit-section {
    padding: 82px 0;
  }

  .about-orbit-container {
    width: min(100% - 28px, 1500px);
  }

  .about-title-line h2 {
    font-size: 42px !important;
  }

  .about-orbit-image {
    min-height: 390px;
    border-radius: 28px;
  }

  .about-copy-card,
  .about-special-card {
    padding: 26px;
    border-radius: 24px;
  }

  .about-copy-card h3 {
    font-size: 28px !important;
  }

  .about-numbers-orbit {
    grid-template-columns: 1fr;
  }
}


/* Sistema global de surgimento no scroll */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-scale {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity .85s ease,
    transform .95s cubic-bezier(.2, .8, .2, 1),
    filter .85s ease;
  will-change: opacity, transform, filter;
}

.scroll-reveal {
  transform: translateY(54px);
}

.scroll-reveal-left {
  transform: translateX(-70px) translateY(24px);
}

.scroll-reveal-right {
  transform: translateX(70px) translateY(24px);
}

.scroll-reveal-scale {
  transform: translateY(40px) scale(.94);
}

.scroll-visible {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: none !important;
}

.scroll-delay-1 {
  transition-delay: .08s
}

.scroll-delay-2 {
  transition-delay: .16s
}

.scroll-delay-3 {
  transition-delay: .24s
}

.scroll-delay-4 {
  transition-delay: .32s
}

.scroll-delay-5 {
  transition-delay: .40s
}

@media(prefers-reduced-motion:reduce) {

  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-scale {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Preserva o efeito original dos cards sticky da seção Especialidades */
.stack-card.scroll-reveal,
.stack-card.scroll-reveal-left,
.stack-card.scroll-reveal-right,
.stack-card.scroll-reveal-scale,
.stack-card.scroll-visible {
  opacity: 1 !important;
  filter: none !important;
}

.stack-card.scroll-reveal,
.stack-card.scroll-reveal-left,
.stack-card.scroll-reveal-right,
.stack-card.scroll-reveal-scale {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease !important;
}


.faq-orbit-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #020203;
}

.faq-glow-one {
  width: 560px;
  height: 560px;
  left: -260px;
  top: 10%;
  opacity: .14;
}

.faq-glow-two {
  width: 640px;
  height: 640px;
  right: -320px;
  bottom: -180px;
  opacity: .16;
}

.faq-orbit-container {
  width: min(1450px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.faq-head {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 42px;
  align-items: end;
}

.faq-head h2 {
  font-size: 72px !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
}

.faq-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 85, 255, .16), transparent 34%),
    linear-gradient(145deg, #0b0911, #050409);
  overflow: hidden;
  transition: .28s ease;
}

.faq-item:hover {
  border-color: rgba(168, 85, 255, .48);
  box-shadow: 0 0 42px rgba(123, 34, 255, .18);
}

.faq-question {
  width: 100%;
  min-height: 92px;
  padding: 28px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #fff;
  text-align: left;
}

.faq-question span {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700 !important;
}

.faq-question i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(168, 85, 255, .12);
  color: var(--purple-3);
  flex-shrink: 0;
  transition: .28s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease;
}

.faq-answer p {
  padding: 0 28px 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  box-shadow: 0 0 28px rgba(123, 34, 255, .28);
}

.faq-item.active .faq-answer {
  max-height: 320px;
}

@media(max-width:980px) {
  .faq-head {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-head h2 {
    font-size: 48px !important;
  }
}

@media(max-width:720px) {
  .faq-orbit-section {
    padding: 82px 0;
  }

  .faq-orbit-container {
    width: min(100% - 28px, 1450px);
  }

  .faq-head h2 {
    font-size: 38px !important;
  }

  .faq-question {
    padding: 22px;
    min-height: 84px;
  }

  .faq-question span {
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
  }
}


/* FAQ corrigido: fechado por padrão e abre ao clicar */
.faq-item .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .42s ease !important;
}

.faq-item.active .faq-answer {
  max-height: 360px !important;
}

.faq-question {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.faq-question i {
  display: grid !important;
  transition: .28s ease !important;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg) !important;
}


.stack-card-visual {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.stack-specialty-img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 24px;
  filter: brightness(.82) contrast(1.08) saturate(1.16);
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s ease;
}

.stack-card-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(123, 34, 255, .08), transparent 40%),
    linear-gradient(180deg, transparent 42%, rgba(2, 2, 3, .72));
  pointer-events: none;
  border-radius: 24px;
}

.stack-card:hover .stack-specialty-img {
  transform: scale(1.08);
  filter: brightness(.95) contrast(1.12) saturate(1.24);
}

@media(max-width:720px) {
  .stack-specialty-img {
    min-height: 260px;
  }
}

@media(max-width:1080px) {
  .menu {
    display: none
  }

  .mobile-toggle {
    position: relative;
    display: flex
  }

  .hero-grid,
  .about-premium,
  .about-content-card,
  .about-grid,
  .services,
  .process,
  .portfolio,
  .contact-card,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto
  }

  .space-art {
    min-height: 470px
  }

  .process-intro {
    position: relative;
    top: auto
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-stats-premium {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-divider {
    display: none
  }

  .about-content-card {
    min-height: auto
  }

  .project.tall {
    min-height: 440px
  }

  .clients {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:720px) {
  .container {
    width: min(100% - 28px, var(--max))
  }

  .nav {
    height: 76px
  }

  .brand img {
    width: 145px
  }

  header .nav-cta {
    display: none
  }

  .hero {
    padding: 112px 0 60px
  }

  .hero p {
    font-size: 18px
  }

  .space-art {
    min-height: 330px
  }

  .planet {
    width: 275px
  }

  .orbit {
    width: 340px;
    height: 110px
  }

  .astronaut {
    width: 100%;
    right: auto
  }

  .hero-card {
    display: none
  }

  section {
    padding: 76px 0
  }

  .panel,
  .service-large,
  .contact-card {
    padding: 28px;
    border-radius: 28px
  }

  .about-main,
  .about-image,
  .service-large {
    min-height: auto
  }

  .about-image {
    height: 370px
  }

  .about-premium-section {
    padding: 76px 0
  }

  .about-visual {
    min-height: 430px;
    border-radius: 30px
  }

  .about-content-card {
    padding: 28px;
    border-radius: 30px;
    gap: 28px
  }

  .about-orbital-mark {
    display: none
  }

  .about-stats-premium {
    grid-template-columns: 1fr
  }

  .about-stat-card {
    min-height: 240px
  }

  .stats {
    grid-template-columns: 1fr
  }

  .service-small {
    padding: 26px
  }

  .step {
    grid-template-columns: 1fr;
    padding: 24px
  }

  .step:hover {
    transform: translateY(-6px)
  }

  .project,
  .project.tall {
    min-height: 360px
  }

  .clients-box {
    padding: 22px;
    border-radius: 28px
  }

  .clients {
    grid-template-columns: repeat(2, 1fr)
  }

  .client {
    min-height: 82px
  }
}

@media(max-width:440px) {
  .actions {
    display: grid
  }

  .actions .btn {
    width: 100%
  }

  .clients {
    grid-template-columns: 1fr
  }
}

/* ===== AJUSTE SOMENTE MOBILE — NÃO ALTERA DESKTOP ===== */
@media(max-width: 768px) {

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    background: #020203 !important;
  }

  section {
    padding: 78px 0 !important;
    overflow: hidden !important;
  }

  .container,
  .about-orbit-container,
  .stack-specialties-container,
  .projects-showcase-container,
  .faq-orbit-container,
  .container-fluid-contact {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  header .nav {
    height: 72px !important;
  }

  .brand img {
    width: 118px !important;
  }

  .menu {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 13px;
  }

  .hero {
    min-height: auto !important;
    padding: 112px 0 78px !important;
    display: block !important;
  }

  .hero .container {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .eyebrow {
    font-size: 10px !important;
    padding: 8px 12px !important;
    margin-bottom: 18px !important;
  }

  h1 {
    font-size: 42px !important;
    line-height: .95 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  h2,
  .section-head h2,
  .about-title-line h2,
  .stack-specialties-head h2,
  .projects-showcase-head h2,
  .clients-marquee-head h2,
  .faq-head h2,
  .contact-full-copy h2 {
    font-size: 38px !important;
    line-height: .98 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
  }

  h3,
  .stack-card-copy h3,
  .showcase-content h3,
  .timeline-card h3 {
    font-size: 28px !important;
    line-height: 1.05 !important;
  }

  .hero p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
    margin: 20px 0 24px !important;
  }

  .actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .space-art {
    min-height: 430px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .planet {
    width: 270px !important;
    max-width: 80vw !important;
  }

  .orbit {
    width: 320px !important;
    max-width: 92vw !important;
    height: 96px !important;
  }

  .astro-card {
    width: 172px !important;
    right: 50% !important;
    bottom: 10px !important;
    transform: translateX(50%) !important;
    border-radius: 24px !important;
  }

  .hero-card {
    display: none !important;
  }

  .section-head,
  .about-orbit-grid,
  .about-orbit-columns,
  .stack-specialties-head,
  .projects-showcase-head,
  .contact-full-grid,
  .faq-head,
  .footer-grid-complete {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .about-orbit-image {
    min-height: 360px !important;
    border-radius: 28px !important;
  }

  .about-copy-card,
  .about-special-card {
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .about-numbers-orbit {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .about-number-card {
    min-height: auto !important;
    padding: 24px !important;
  }

  /* Especialidades no mobile: remove sticky e empilha normal */
  #especialidades {
    overflow: hidden !important;
  }

  #especialidades .stack-cards {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #especialidades .stack-card {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 24px !important;
    border-radius: 28px !important;
  }

  #especialidades .stack-card-visual {
    min-height: 240px !important;
    border-radius: 22px !important;
  }

  #especialidades .stack-specialty-img {
    min-height: 240px !important;
    height: 240px !important;
    border-radius: 22px !important;
  }

  #especialidades .stack-list {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #especialidades .stack-cta {
    width: 100% !important;
    justify-content: center !important;
  }

  .timeline-stage {
    min-height: auto !important;
    padding-left: 8px !important;
  }

  .timeline-center {
    left: 24px !important;
  }

  .timeline-item,
  .timeline-left,
  .timeline-right {
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 64px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-left .timeline-dot,
  .timeline-right .timeline-dot {
    left: -6px !important;
    right: auto !important;
  }

  .timeline-dot {
    width: 58px !important;
    height: 58px !important;
    font-size: 18px !important;
  }

  .timeline-card {
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .timeline-launch-btn {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 78px !important;
  }

  .timeline-launch-btn span {
    font-size: 25px !important;
  }

  .projects-showcase-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 320px !important;
    gap: 16px !important;
  }

  .showcase-large,
  .showcase-wide {
    grid-row: auto !important;
    grid-column: auto !important;
  }

  .showcase-card {
    border-radius: 26px !important;
  }

  .clients-marquee-head {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .client-marquee-card {
    flex: 0 0 220px !important;
    height: 108px !important;
  }

  .clients-impact-strip {
    width: calc(100% - 28px) !important;
    grid-template-columns: 1fr !important;
  }

  .orbital-cta-card {
    grid-template-columns: 1fr !important;
    padding: 26px !important;
    border-radius: 28px !important;
  }

  .orbital-cta-card h2 {
    font-size: 36px !important;
  }

  .contact-full-grid {
    padding: 24px !important;
    border-radius: 28px !important;
    min-height: auto !important;
  }

  .contact-full-copy {
    padding-left: 0 !important;
    max-width: 100% !important;
  }

  .contact-info-row,
  .form-two {
    grid-template-columns: 1fr !important;
  }

  .contact-form-panel {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .contact-planet-wrap {
    display: none !important;
  }

  input,
  select,
  textarea {
    font-size: 14px !important;
    padding: 15px !important;
    border-radius: 15px !important;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .faq-question {
    padding: 20px !important;
    min-height: 76px !important;
  }

  .faq-question span {
    font-size: 17px !important;
  }

  .footer-main {
    padding: 44px 0 30px !important;
  }

  .footer-brand img {
    width: 132px !important;
  }

  .footer-col h3 {
    font-size: 22px !important;
  }

  .footer-contact-card {
    width: 100% !important;
  }

  .footer-bottom-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    text-align: left !important;
  }
}

@media(max-width:420px) {
  h1 {
    font-size: 38px !important;
  }

  h2,
  .section-head h2,
  .about-title-line h2,
  .stack-specialties-head h2,
  .projects-showcase-head h2,
  .clients-marquee-head h2,
  .faq-head h2,
  .contact-full-copy h2 {
    font-size: 34px !important;
  }

  .space-art {
    min-height: 390px !important;
  }

  .planet {
    width: 235px !important;
  }

  .astro-card {
    width: 150px !important;
  }
}

/* Local rebuild refinements */
html {
  scroll-padding-top: 84px;
}

html,
body {
  overflow-x: clip !important;
}

body {
  background: #020203;
}

.hero-bg {
  background-image: linear-gradient(90deg, #020203 0%, rgba(2, 2, 3, .94) 38%, rgba(2, 2, 3, .44) 72%, #020203 100%), linear-gradient(180deg, rgba(2, 2, 3, .08), #020203 96%), url('../img/hero/banner-3.jpg') !important;
}

.mobile-menu a {
  cursor: pointer;
}

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

.contact-form-panel button {
  cursor: pointer;
}

@media(max-width:720px) {
  html {
    scroll-padding-top: 74px;
  }
}

/* Hero transparent astronaut replacement */
.hero .astro-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  z-index: 30 !important;
  pointer-events: none !important;
  transform-style: preserve-3d !important;
  width: min(330px, 50vw) !important;
  aspect-ratio: .72 !important;
  animation: heroAstronautFloat 5.8s ease-in-out infinite alternate !important;
}

.hero .planet {
  z-index: 2 !important;
}

.hero .orbit {
  z-index: 3 !important;
}

.hero .hero-card {
  z-index: 12 !important;
}

.hero .astro-card:before,
.hero .astro-card:after {
  display: none !important;
}

.hero .astro-card .astronaut {
  object-fit: contain !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: brightness(1.14) contrast(1.18) saturate(1.05) drop-shadow(0 0 18px rgba(216, 193, 255, .46)) drop-shadow(0 26px 36px rgba(0, 0, 0, .58)) !important;
  transform: translateZ(260px) rotate(-8deg) !important;
  transition: transform .35s ease, filter .35s ease !important;
  z-index: 31 !important;
}

.hero .astro-card:hover .astronaut {
  transform: translateZ(280px) rotate(-4deg) scale(1.035) !important;
}

@keyframes heroAstronautFloat {
  from {
    transform: translate3d(18px, 6px, 230px) rotate(-2deg)
  }

  to {
    transform: translate3d(30px, -20px, 260px) rotate(4deg)
  }
}

@media(max-width:720px) {
  .hero .astro-card {
    width: 180px !important;
  }
}

/* About floating scene replacement */
.about-orbit-image.about-float-scene {
  min-height: 620px !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  display: grid !important;
  place-items: center !important;
  isolation: isolate !important;
  perspective: 900px !important;
}

.about-orbit-image.about-float-scene:before {
  content: "" !important;
  position: absolute !important;
  inset: 8% 3% 4% 0 !important;
  z-index: 0 !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 50% 48%, rgba(151, 72, 255, .26), transparent 0 28%, rgba(93, 37, 183, .08) 41%, transparent 62%),
    radial-gradient(circle at 42% 42%, rgba(255, 255, 255, .24), transparent 0 4%, transparent 15%),
    radial-gradient(circle at 58% 56%, rgba(132, 81, 255, .18), transparent 0 34%, transparent 58%) !important;
  filter: blur(.2px) drop-shadow(0 0 52px rgba(143, 72, 255, .34)) !important;
  animation: aboutPlanetPulse 7s ease-in-out infinite alternate !important;
  pointer-events: none !important;
}

.about-orbit-image.about-float-scene:after {
  content: "" !important;
  position: absolute !important;
  inset: 16% 7% 11% 2% !important;
  z-index: 1 !important;
  border: 1px solid rgba(210, 184, 255, .24) !important;
  border-radius: 50% !important;
  transform: rotate(-18deg) skewX(-18deg) !important;
  box-shadow:
    0 0 28px rgba(151, 72, 255, .22),
    inset 0 0 22px rgba(255, 255, 255, .04) !important;
  pointer-events: none !important;
}

.about-float-glow,
.about-float-orbit,
.about-float-comet,
.about-float-rocket {
  position: absolute;
  display: block;
  pointer-events: none;
}

.about-float-glow {
  width: min(520px, 86vw);
  aspect-ratio: 1;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 34%, rgba(255, 255, 255, .20), transparent 0 9%, transparent 18%),
    radial-gradient(circle at center, rgba(146, 64, 255, .18), transparent 58%);
  filter: blur(8px);
  animation: aboutGlowFloat 8s ease-in-out infinite alternate;
}

.about-float-orbit-one {
  width: min(560px, 90vw);
  aspect-ratio: 1/.52;
  z-index: 2;
  border: 1px solid rgba(231, 219, 255, .16);
  border-radius: 50%;
  transform: rotate(-14deg);
  animation: aboutOrbitDrift 9s ease-in-out infinite alternate;
}

.about-float-orbit-two {
  width: min(420px, 70vw);
  aspect-ratio: 1/.42;
  z-index: 4;
  border: 1px solid rgba(164, 94, 255, .30);
  border-radius: 50%;
  transform: rotate(24deg);
  animation: aboutOrbitDriftReverse 8s ease-in-out infinite alternate;
}

.about-float-comet {
  z-index: 6;
  width: 90px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .88), rgba(167, 92, 255, .78));
  filter: drop-shadow(0 0 12px rgba(167, 92, 255, .7));
}

.about-float-comet:after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(177, 117, 255, .95);
}

.about-float-comet-one {
  left: 4%;
  top: 23%;
  transform: rotate(-17deg);
  animation: aboutCometOne 5.5s ease-in-out infinite;
}

.about-float-comet-two {
  right: 7%;
  bottom: 19%;
  width: 66px;
  opacity: .72;
  transform: rotate(153deg);
  animation: aboutCometTwo 7s ease-in-out infinite;
}

.about-float-rocket {
  right: 10%;
  top: 15%;
  z-index: 7;
  width: 34px;
  height: 74px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(145deg, #ffffff 0%, #d9c6ff 55%, #8d45ff 100%);
  box-shadow: 0 0 24px rgba(169, 92, 255, .38);
  transform: rotate(34deg);
  animation: aboutRocketFloat 6.8s ease-in-out infinite alternate;
}

.about-float-rocket:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #150a27;
  border: 2px solid rgba(255, 255, 255, .72);
  transform: translateX(-50%);
}

.about-float-rocket:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 18px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(159, 79, 255, .64), transparent);
  filter: blur(2px);
  transform: translateX(-50%);
}

.about-orbit-image.about-float-scene img.about-floating-astronaut {
  position: relative !important;
  inset: auto !important;
  width: min(360px, 58vw) !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  z-index: 8 !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  transform: translate3d(0, 0, 0) rotate(-8deg);
  filter: brightness(1.12) contrast(1.16) saturate(1.08) drop-shadow(0 0 20px rgba(212, 191, 255, .44)) drop-shadow(0 32px 44px rgba(0, 0, 0, .72)) !important;
  transition: none !important;
  animation: aboutAstronautFloat 7.4s ease-in-out infinite alternate !important;
}

@keyframes aboutAstronautFloat {
  from {
    transform: translate3d(0, 14px, 0) rotate(-8deg)
  }

  to {
    transform: translate3d(0, -18px, 0) rotate(-8deg)
  }
}

@keyframes aboutPlanetPulse {
  from {
    transform: scale(.96);
    opacity: .72
  }

  to {
    transform: scale(1.04);
    opacity: 1
  }
}

@keyframes aboutGlowFloat {
  from {
    transform: translate3d(-18px, 14px, 0) scale(.96);
    opacity: .68
  }

  to {
    transform: translate3d(18px, -12px, 0) scale(1.04);
    opacity: 1
  }
}

@keyframes aboutOrbitDrift {
  from {
    transform: rotate(-18deg) translateY(8px)
  }

  to {
    transform: rotate(-9deg) translateY(-8px)
  }
}

@keyframes aboutOrbitDriftReverse {
  from {
    transform: rotate(28deg) translateX(-10px)
  }

  to {
    transform: rotate(18deg) translateX(10px)
  }
}

@keyframes aboutCometOne {

  0%,
  35% {
    opacity: 0;
    transform: translate3d(-50px, -18px, 0) rotate(-17deg)
  }

  48%,
  72% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: translate3d(210px, 52px, 0) rotate(-17deg)
  }
}

@keyframes aboutCometTwo {

  0%,
  45% {
    opacity: 0;
    transform: translate3d(90px, 34px, 0) rotate(153deg)
  }

  58%,
  82% {
    opacity: .72
  }

  100% {
    opacity: 0;
    transform: translate3d(-170px, -56px, 0) rotate(153deg)
  }
}

@keyframes aboutRocketFloat {
  from {
    transform: translate3d(0, 8px, 0) rotate(34deg)
  }

  to {
    transform: translate3d(-18px, -18px, 0) rotate(26deg)
  }
}

@media(max-width:980px) {
  .about-orbit-image.about-float-scene {
    min-height: 470px !important;
  }
}

@media(max-width:620px) {
  .about-orbit-image.about-float-scene {
    min-height: 390px !important;
    margin-bottom: 10px !important;
  }

  .about-orbit-image.about-float-scene img.about-floating-astronaut {
    width: min(285px, 72vw) !important;
  }

  .about-float-rocket {
    right: 11%;
    top: 9%;
    transform: scale(.78) rotate(34deg);
  }

  .about-float-comet-one {
    left: -3%;
    top: 24%;
  }
}

/* Desktop stacked specialties: KOLO original pin-card feeling */
@media(min-width:981px) {
  #especialidades {
    overflow: visible !important;
  }

  #especialidades .stack-specialties-section,
  .stack-specialties-section {
    overflow: visible !important;
    padding-bottom: 80px !important;
  }

  #especialidades .stack-specialties-container.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Landing Curitiba: ajustes de proporcao e comparativo */
.hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 7vw, 92px) !important;
  line-height: .9 !important;
}

.hero p {
  max-width: 560px;
  font-size: clamp(17px, 1.45vw, 19px) !important;
  line-height: 1.55 !important;
}

.hero .eyebrow,
.kicker,
.stack-card-copy .num,
.timeline-card .num,
.website-plan-card .num {
  font-size: 12px !important;
  letter-spacing: .08em !important;
}

.hero-card strong {
  font-size: 30px !important;
  line-height: 1 !important;
}

.hero-card span {
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.about-title-line h2,
.stack-specialties-head h2,
.section-head h2,
.projects-showcase-head h2,
.clients-marquee-head h2,
.orbital-cta-card h2,
.contact-full-copy h2,
.faq-head h2 {
  font-size: clamp(34px, 4.2vw, 58px) !important;
  line-height: 1 !important;
}

.stack-specialties-head p,
.section-head .lead,
.projects-showcase-head p,
.clients-marquee-head p,
.orbital-cta-card p,
.contact-full-copy p,
.faq-head p,
.about-copy-card p,
.timeline-card p,
.stack-card-copy p {
  font-size: clamp(15px, 1.35vw, 17px) !important;
  line-height: 1.65 !important;
}

.about-copy-card h3,
.about-special-card h3,
.timeline-card h3,
.stack-card-copy h3 {
  font-size: clamp(25px, 3vw, 40px) !important;
  line-height: 1.05 !important;
}

.about-number-card strong {
  font-size: clamp(46px, 5vw, 68px) !important;
}

.about-number-card p,
.plan-feature-list li,
.stack-list span {
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.website-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.website-plan-card {
  position: relative;
  min-height: 100%;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(135, 55, 255, .22), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.website-plan-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, .12), transparent 34%, rgba(151, 73, 255, .08));
  opacity: .7;
}

.website-plan-card > * {
  position: relative;
  z-index: 1;
}

.conventional-site-card {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .1), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
}

.kolo-site-card {
  border-color: rgba(153, 80, 255, .42);
  background:
    radial-gradient(circle at top right, rgba(149, 60, 255, .34), transparent 42%),
    linear-gradient(145deg, rgba(116, 45, 255, .2), rgba(255, 255, 255, .035));
}

.plan-card-top h3 {
  margin: 15px 0 14px;
  max-width: 580px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: 1.05;
}

.plan-card-top p {
  max-width: 610px;
  color: rgba(236, 228, 255, .78);
  font-size: 16px !important;
  line-height: 1.6;
}

.plan-feature-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.plan-feature-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  color: rgba(246, 242, 255, .82);
}

.plan-feature-list i {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  font-size: 10px;
}

.conventional-site-card .plan-feature-list i {
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
}

.kolo-site-card .plan-feature-list i {
  color: #fff;
  background: linear-gradient(135deg, #7d2cff, #bd7cff);
}

.plan-price-box {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(0, 0, 0, .24);
}

.plan-price-box span {
  display: block;
  color: rgba(236, 228, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plan-price-box strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: .95;
}

.plan-price-box p {
  margin: 12px 0 0;
  color: rgba(236, 228, 255, .74);
  font-size: 14px;
  line-height: 1.55;
}

.plan-cta {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: clamp(42px, 13vw, 68px) !important;
  }

  .hero p {
    font-size: 16px !important;
  }

  .website-comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-title-line h2,
  .stack-specialties-head h2,
  .section-head h2,
  .projects-showcase-head h2,
  .clients-marquee-head h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .faq-head h2 {
    font-size: clamp(30px, 10vw, 42px) !important;
  }

  .stack-card-copy h3,
  .timeline-card h3,
  .plan-card-top h3 {
    font-size: 28px !important;
  }

  .website-plan-card {
    border-radius: 18px;
    padding: 24px;
  }
}

  #especialidades .stack-cards {
    display: block !important;
    max-width: 1360px !important;
    min-height: 260vh !important;
    margin: 0 auto !important;
    padding-bottom: 0 !important;
    position: relative !important;
  }

  #especialidades .stack-cards:after {
    content: none !important;
    display: none !important;
  }

  #especialidades .stack-card {
    position: sticky !important;
    top: 112px !important;
    min-height: 620px !important;
    margin: 0 0 90px !important;
    transform-origin: 50% 18% !important;
    will-change: transform !important;
    transition:
      transform .28s ease,
      box-shadow .28s ease,
      border-color .28s ease,
      filter .28s ease !important;
  }

  #especialidades .stack-card:last-child {
    margin-bottom: 90px !important;
  }

  #especialidades .stack-card:hover {
    border-color: rgba(168, 85, 255, .55);
    box-shadow: 0 0 70px rgba(123, 34, 255, .22), 0 42px 130px rgba(0, 0, 0, .5);
  }
}

@media(max-width:980px) {
  #especialidades {
    overflow: hidden !important;
  }

  #especialidades .stack-cards {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #especialidades .stack-card {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 24px !important;
    border-radius: 28px !important;
  }
}

/* Client logo cards: light surface for logos with white PNG backgrounds */
.client-marquee-card {
  border-color: rgba(216, 193, 255, .34) !important;
  background: #f4f1e1;
  box-shadow: 0 18px 62px rgba(0, 0, 0, .24) !important;
}

.client-marquee-card:before {
  background: #f4f1e1 !important;
}

.client-marquee-card img {
  filter: saturate(1.05) contrast(1.02) !important;
}

.client-marquee-card:hover {
  transform: translateY(-10px) scale(1.03) !important;
  border-color: rgba(168, 85, 255, .72) !important;
  background: #f4f1e1;
  box-shadow: 0 0 42px rgba(123, 34, 255, .28), 0 26px 82px rgba(0, 0, 0, .36) !important;
}

.client-marquee-card:hover img {
  transform: scale(1.06) !important;
}

/* Mobile section refinements */
.mobile-carousel-hint {
  display: none;
}

.hero-mobile-cta {
  display: none !important;
}

@media(max-width:720px) {
  .hero {
    padding: 86px 0 36px !important;
  }

  .hero .eyebrow {
    display: none !important;
  }

  .hero h1 {
    font-size: clamp(70px, 20vw, 88px) !important;
    line-height: .78 !important;
    margin: 36px 0 22px !important;
  }

  .hero .actions {
    display: none !important;
  }

  .hero p {
    font-size: clamp(18px, 4.8vw, 21px) !important;
    line-height: 1.45 !important;
    margin: 0 0 4px !important;
  }

  .space-art {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-height: 380px !important;
    margin-top: -12px !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  .planet {
    width: min(292px, 76vw) !important;
  }

  .orbit {
    width: min(350px, 92vw) !important;
    height: 96px !important;
  }

  .hero .astro-card {
    width: min(178px, 46vw) !important;
    bottom: 72px !important;
  }

  .hero-mobile-cta {
    display: inline-flex !important;
    width: 100% !important;
    margin: 8px auto 0 !important;
    position: relative !important;
    z-index: 40 !important;
  }
}

@media(max-width:980px) {
  #especialidades .stack-cards {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    width: calc(100% + 28px) !important;
    margin-left: -14px !important;
    padding: 0 14px 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 14px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  #especialidades .stack-cards::-webkit-scrollbar {
    display: none !important;
  }

  #especialidades .stack-card {
    flex: 0 0 min(86vw, 380px) !important;
    scroll-snap-align: center !important;
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 28px 24px !important;
  }

  #especialidades .stack-card-visual {
    display: none !important;
  }

  #especialidades .stack-card-copy {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }

  #especialidades .stack-card-copy .num {
    display: none !important;
  }

  #especialidades .stack-card-copy h3 {
    margin: 22px 10px 22px !important;
  }

  #especialidades .stack-card-copy p {
    margin: 0 !important;
    padding: 0 10px 28px !important;
  }

  #especialidades .stack-list {
    grid-template-columns: 1fr !important;
    gap: 13px !important;
    margin-top: 0 !important;
    padding-top: 26px !important;
  }

  #especialidades .stack-cta {
    width: 100% !important;
    margin-top: 32px !important;
    min-height: 58px !important;
  }

  .mobile-carousel-hint {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 18px auto 0 !important;
    color: var(--muted) !important;
    text-transform: uppercase !important;
    letter-spacing: .14em !important;
    font-size: 11px !important;
    font-weight: 700 !important;
  }

  .mobile-carousel-hint span {
    color: var(--purple-2) !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }
}

@media(max-width:720px) {
  .projects-showcase-grid {
    gap: 22px !important;
  }

  .showcase-card {
    margin-bottom: 0 !important;
  }
}

@media(max-width:620px) {
  #quemsomos .about-orbit-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  #quemsomos .about-orbit-grid {
    display: contents !important;
  }

  #quemsomos .about-orbit-content {
    order: 1 !important;
  }

  #quemsomos .about-numbers-orbit {
    order: 2 !important;
    margin-top: 0 !important;
  }

  #quemsomos .about-orbit-image.about-float-scene {
    order: 3 !important;
    min-height: 330px !important;
    margin: 0 !important;
  }

  #quemsomos .about-orbit-image.about-float-scene img.about-floating-astronaut {
    width: min(238px, 62vw) !important;
  }

  #quemsomos .about-float-rocket {
    right: 10% !important;
    top: 10% !important;
    transform: scale(.68) rotate(34deg) !important;
  }
}

/* Mobile header correction */
@media(max-width:1080px) {
  header .nav {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    height: 72px !important;
    gap: 14px !important;
  }

  header .nav-cta {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;
    line-height: 1 !important;
  }

  .mobile-toggle span,
  .mobile-toggle span:before,
  .mobile-toggle span:after {
    width: 20px !important;
    height: 2px !important;
    border-radius: 999px !important;
    transform-origin: center !important;
  }

  .mobile-toggle span {
    position: relative !important;
  }

  .mobile-toggle span:before {
    top: -7px !important;
  }

  .mobile-toggle span:after {
    top: 7px !important;
  }

  body.menu-open .mobile-toggle {
    position: fixed !important;
    top: 13px !important;
    right: 14px !important;
    z-index: 240 !important;
    background: linear-gradient(135deg, var(--purple), var(--purple-2)) !important;
  }

  body.menu-open .mobile-toggle span {
    background: transparent !important;
  }

  body.menu-open .mobile-toggle span:before {
    top: 0 !important;
    transform: rotate(45deg) !important;
  }

  body.menu-open .mobile-toggle span:after {
    top: 0 !important;
    transform: rotate(-45deg) !important;
  }

  body.menu-open header {
    z-index: 220 !important;
    background: transparent !important;
    backdrop-filter: none !important;
  }

  .mobile-menu {
    z-index: 180 !important;
  }

  .mobile-menu .mobile-cta {
    display: none !important;
  }
}

/* Global section spacing tuning */
section {
  padding-top: 92px !important;
  padding-bottom: 92px !important;
}

.hero {
  padding-top: 126px !important;
  padding-bottom: 56px !important;
}

.about-orbit-section,
.stack-specialties-section,
.process-timeline-section,
.projects-showcase-section,
.clients-marquee-section,
.orbital-cta-section,
.contact-full-section,
.faq-orbit-section {
  padding-top: 92px !important;
  padding-bottom: 92px !important;
}

.stack-specialties-head,
.projects-showcase-head,
.clients-marquee-head,
.faq-head,
.section-head {
  margin-bottom: 42px !important;
}

.clients-impact-strip {
  margin-top: 36px !important;
}

@media(max-width:980px) {
  section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .hero {
    padding-top: 86px !important;
    padding-bottom: 34px !important;
  }

  .about-orbit-section,
  .stack-specialties-section,
  .process-timeline-section,
  .projects-showcase-section,
  .clients-marquee-section,
  .orbital-cta-section,
  .contact-full-section,
  .faq-orbit-section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .stack-specialties-head,
  .projects-showcase-head,
  .clients-marquee-head,
  .faq-head,
  .section-head {
    margin-bottom: 28px !important;
  }

  .about-orbit-columns,
  .about-numbers-orbit,
  .projects-showcase-grid,
  .clients-impact-strip,
  .faq-list,
  .contact-full-grid {
    gap: 18px !important;
  }

  .clients-impact-strip {
    margin-top: 30px !important;
  }
}

@media(max-width:620px) {
  section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .hero {
    padding-top: 82px !important;
    padding-bottom: 28px !important;
  }

  .about-orbit-section,
  .stack-specialties-section,
  .process-timeline-section,
  .projects-showcase-section,
  .clients-marquee-section,
  .orbital-cta-section,
  .contact-full-section,
  .faq-orbit-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .stack-specialties-head,
  .projects-showcase-head,
  .clients-marquee-head,
  .faq-head,
  .section-head {
    margin-bottom: 24px !important;
  }

  .about-orbit-container {
    gap: 16px !important;
  }

  .about-orbit-columns,
  .about-numbers-orbit,
  .projects-showcase-grid,
  .clients-impact-strip,
  .faq-list,
  .contact-full-grid {
    gap: 16px !important;
  }

  .clients-impact-strip {
    margin-top: 26px !important;
  }
}

@media(max-width:720px) {
  #projetos .projects-showcase-grid {
    gap: 20px !important;
    row-gap: 20px !important;
  }

  #projetos .showcase-card {
    margin-bottom: 0 !important;
  }
}

.hero .space-art .hero-mobile-cta {
  display: none !important;
}

.hero .hero-card {
  width: 330px !important;
}

.hero .hero-card strong {
  white-space: nowrap !important;
  font-size: 40px !important;
}

@media(max-width:720px) {
  .hero .space-art .hero-mobile-cta {
    display: inline-flex !important;
    width: min(280px, 76vw) !important;
    margin-top: 24px !important;
  }
}

@media(max-width:720px) {
  #projetos .projects-showcase-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  #projetos .showcase-card {
    width: 100% !important;
    min-height: 320px !important;
    margin: 0 !important;
  }
}

.btn,
.about-orbit-btn,
.stack-cta,
.timeline-launch-btn,
.timeline-launch-btn span,
.showcase-hover-button,
.mobile-menu .mobile-cta,
.hero .space-art .hero-mobile-cta,
.footer-contact-card .btn,
.contact-info-row .btn {
  text-transform: uppercase !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.timeline-launch-btn span {
  font-size: 40px !important;
}

@media(max-width:620px) {
  #contato .contact-full-grid,
  #contato .contact-form-panel,
  #contato .contact-form-panel form,
  #contato .form-two,
  #contato input,
  #contato select,
  #contato textarea,
  #contato button {
    box-sizing: border-box !important;
    max-width: 100% !important;
  }

  #contato .contact-form-panel {
    overflow: hidden !important;
    padding: 18px !important;
  }

  #contato .form-two {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  #contato input,
  #contato select,
  #contato textarea,
  #contato button {
    width: 100% !important;
    min-width: 0 !important;
  }

  #contato .btn.white {
    white-space: normal !important;
    line-height: 1.2 !important;
    min-height: 58px !important;
    padding: 12px 18px !important;
    text-align: center !important;
  }
}

@media(max-width:620px) {
  .timeline-launch-btn {
    gap: 12px !important;
    padding: 0 18px !important;
    white-space: nowrap !important;
  }

  .timeline-launch-btn span {
    font-size: clamp(25px, 7.1vw, 30px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

@media(max-width:720px) {
  .footer-block-brand {
    order: 0 !important;
  }

  .footer-block-contact {
    order: 1 !important;
  }

  .footer-block-nav {
    order: 2 !important;
  }

  .footer-block-services {
    order: 3 !important;
  }

  .footer-block-nav,
  .footer-block-services {
    text-align: center !important;
    align-items: center !important;
  }

  .footer-block-nav a,
  .footer-block-services a {
    justify-content: center !important;
    text-align: center !important;
  }

  .footer-block-contact > h3 {
    display: none !important;
  }

  .footer-block-brand {
    text-align: center !important;
    align-items: center !important;
  }

  .footer-block-brand img {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-block-brand p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-block-brand .footer-social {
    justify-content: center !important;
  }

  .footer-bottom-row {
    justify-content: center !important;
    text-align: center !important;
  }

  .footer-bottom-row span {
    text-align: center !important;
  }
}

#contato .contact-form-panel .btn.white {
  width: max-content !important;
  min-width: 260px !important;
  padding-left: 26px !important;
  padding-right: 26px !important;
}

@media(max-width:620px) {
  #contato .contact-form-panel .btn.white {
    width: 100% !important;
    min-width: 0 !important;
  }
}

#quemsomos .about-orbit-image.about-float-scene img.about-floating-astronaut {
  width: min(520px, 76vw) !important;
  transform: translate3d(0, 0, 0) rotate(-9deg);
  transform-origin: 50% 50% !important;
  animation: aboutUfoFloat 4.8s ease-in-out infinite !important;
  will-change: transform !important;
}

#quemsomos .about-float-rocket {
  display: none !important;
}

@keyframes aboutUfoFloat {
  0% {
    transform: translate3d(0, 18px, 0) rotate(-10deg);
  }

  50% {
    transform: translate3d(0, -22px, 0) rotate(-6deg);
  }

  100% {
    transform: translate3d(0, 18px, 0) rotate(-10deg);
  }
}

@media(max-width:620px) {
  #quemsomos .about-orbit-image.about-float-scene img.about-floating-astronaut {
    width: min(340px, 84vw) !important;
  }
}

@media(min-width:981px) {
  .hero {
    padding-bottom: 8px !important;
  }

  #quemsomos.about-orbit-section {
    padding-top: 28px !important;
  }
}

/* Final landing overrides: keep typography calmer than the cloned homepage. */
.hero h1 {
  font-size: clamp(50px, 6vw, 80px) !important;
  line-height: .92 !important;
}

.hero p {
  font-size: clamp(16px, 1.35vw, 18px) !important;
  line-height: 1.55 !important;
}

.hero .hero-card strong {
  font-size: 30px !important;
}

.hero .hero-card span {
  font-size: 15px !important;
}

.about-title-line h2,
.stack-specialties-head h2,
.section-head h2,
.projects-showcase-head h2,
.clients-marquee-head h2,
.orbital-cta-card h2,
.contact-full-copy h2,
.faq-head h2 {
  font-size: clamp(30px, 3.4vw, 48px) !important;
  line-height: 1.04 !important;
}

.about-copy-card h3,
.about-special-card h3,
.timeline-card h3,
.stack-card-copy h3,
.plan-card-top h3 {
  font-size: clamp(24px, 2.35vw, 34px) !important;
  line-height: 1.08 !important;
}

.stack-specialties-head p,
.section-head .lead,
.projects-showcase-head p,
.clients-marquee-head p,
.orbital-cta-card p,
.contact-full-copy p,
.faq-head p,
.about-copy-card p,
.timeline-card p,
.stack-card-copy p,
.plan-card-top p {
  font-size: clamp(15px, 1.25vw, 17px) !important;
  line-height: 1.62 !important;
}

.timeline-launch-btn span {
  font-size: clamp(26px, 2.8vw, 34px) !important;
}

.projects-showcase-section {
  padding-top: clamp(72px, 9vw, 112px) !important;
  padding-bottom: clamp(72px, 9vw, 112px) !important;
}

.website-comparison-grid {
  margin-top: 34px !important;
  gap: 20px !important;
}

.website-plan-card {
  padding: clamp(22px, 3vw, 34px) !important;
}

.plan-feature-list {
  gap: 10px !important;
  margin-top: 20px !important;
}

.plan-price-box {
  margin-top: 20px !important;
  padding: 18px !important;
}

@media(max-width:980px) {
  .hero h1 {
    font-size: clamp(38px, 10.5vw, 58px) !important;
  }
}

@media(max-width:640px) {
  .about-title-line h2,
  .stack-specialties-head h2,
  .section-head h2,
  .projects-showcase-head h2,
  .clients-marquee-head h2,
  .orbital-cta-card h2,
  .contact-full-copy h2,
  .faq-head h2 {
    font-size: clamp(27px, 8vw, 38px) !important;
  }
}

/* Mobile comparison cards: preserve the desktop grid-card language in one column. */
#projetos .website-comparison-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  width: 100% !important;
  margin: 34px 0 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

#projetos .website-plan-card {
  display: block !important;
  position: relative !important;
  min-height: 100% !important;
  padding: clamp(24px, 3vw, 34px) !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  color: #f6f2ff !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28) !important;
}

#projetos .conventional-site-card {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .11), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)) !important;
}

#projetos .kolo-site-card {
  border-color: rgba(153, 80, 255, .42) !important;
  background:
    radial-gradient(circle at top right, rgba(149, 60, 255, .38), transparent 42%),
    linear-gradient(145deg, rgba(116, 45, 255, .22), rgba(255, 255, 255, .035)) !important;
}

#projetos .website-plan-card:before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  pointer-events: none !important;
  background: linear-gradient(120deg, rgba(255, 255, 255, .12), transparent 34%, rgba(151, 73, 255, .08)) !important;
  opacity: .72 !important;
}

#projetos .website-plan-card > * {
  position: relative !important;
  z-index: 1 !important;
}

#projetos .plan-feature-list {
  display: grid !important;
  gap: 10px !important;
  margin: 20px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#projetos .plan-feature-list li {
  display: grid !important;
  grid-template-columns: 26px minmax(0, 1fr) !important;
  align-items: start !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  color: rgba(246, 242, 255, .84) !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

#projetos .plan-feature-list i {
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  margin-top: 1px !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 10px !important;
  line-height: 1 !important;
  background: rgba(255, 255, 255, .10) !important;
}

#projetos .kolo-site-card .plan-feature-list i {
  background: linear-gradient(135deg, #7d2cff, #bd7cff) !important;
}

#projetos .plan-price-box {
  display: block !important;
  margin-top: 20px !important;
  padding: 18px !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 18px !important;
  background: rgba(0, 0, 0, .24) !important;
}

@media(max-width:980px) {
  #projetos .website-comparison-grid {
    grid-template-columns: 1fr !important;
  }

  #projetos .website-plan-card {
    border-radius: 20px !important;
    padding: 24px !important;
  }
}

@media(max-width:640px) {
  #projetos .projects-showcase-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  #projetos .projects-showcase-head {
    gap: 18px !important;
  }

  #projetos .website-comparison-grid {
    gap: 18px !important;
    margin-top: 26px !important;
  }

  #projetos .website-plan-card {
    padding: 22px !important;
  }
}

/* Curitiba comparison layout: centered 12-column feel, not full width. */
#projetos .projects-showcase-container {
  width: min(100% - 48px, 1180px) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#projetos .projects-showcase-head {
  display: grid !important;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr) !important;
  gap: 48px !important;
  align-items: end !important;
}

#projetos .website-comparison-grid {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

#projetos .website-plan-card {
  min-height: auto !important;
  padding: clamp(24px, 2.4vw, 32px) !important;
  border-radius: 18px !important;
}

#projetos .plan-card-top h3 {
  font-size: clamp(24px, 2.1vw, 31px) !important;
}

#projetos .plan-card-top p {
  font-size: 15px !important;
}

#projetos .plan-feature-list li {
  font-size: 14px !important;
}

#projetos .plan-cta {
  margin-top: 24px !important;
}

@media(max-width:980px) {
  #projetos .projects-showcase-container {
    width: min(100% - 32px, 720px) !important;
  }

  #projetos .projects-showcase-head {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #projetos .website-comparison-grid {
    grid-template-columns: 1fr !important;
    max-width: 620px !important;
  }
}

@media(max-width:640px) {
  #projetos .projects-showcase-container {
    width: min(100% - 28px, 420px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
