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

:root {
  --black: #050505;
  --dark: #090909;
  --card: rgba(255, 255, 255, .055);
  --card-border: rgba(255, 255, 255, .12);
  --white: #f6f6f6;
  --muted: #a8a8a8;
  --red: #D40910;
  --red-2: #D40910;
  --glow: rgba(212, 9, 16, .35);
  --line: rgba(255, 255, 255, .1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 90%);
  margin: auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
}

.orb-one {
  width: 380px;
  height: 380px;
  background: rgba(217, 4, 41, .28);
  top: 80px;
  right: -120px;
}

.orb-two {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .08);
  bottom: 80px;
  left: -120px;
}

.scroll-3d {
  position: fixed;
  top: 24%;
  right: 5%;
  width: 180px;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  transform-style: preserve-3d;
  perspective: 900px;
  opacity: .95;
  transition: transform .08s linear;
}

.scroll-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 23, 68, .38);
  box-shadow:
    0 0 35px rgba(217, 4, 41, .35),
    inset 0 0 35px rgba(217, 4, 41, .15);
  transform: rotateX(68deg) rotateZ(20deg);
  animation: ringPulse 4s ease-in-out infinite;
}

.scroll-cube {
  position: absolute;
  width: 78px;
  height: 78px;
  left: 50%;
  top: 50%;
  margin-left: -39px;
  margin-top: -39px;
  border-radius: 22px;
  background: linear-gradient(145deg, #D40910, #52000d);
  box-shadow: 0 0 60px rgba(217, 4, 41, .55);
  transform: rotateX(58deg) rotateZ(42deg);
  animation: cubePulse 5s ease-in-out infinite;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: rotateX(68deg) rotateZ(20deg) scale(1);
  }

  50% {
    transform: rotateX(72deg) rotateZ(75deg) scale(1.08);
  }
}

@keyframes cubePulse {

  0%,
  100% {
    transform: rotateX(58deg) rotateZ(42deg) translateY(0);
  }

  50% {
    transform: rotateX(48deg) rotateZ(88deg) translateY(-14px);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.logo-img {
  width: 220px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d7d7d7;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: .25s;
}

.nav a:hover {
  color: var(--red-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: .3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-red {
  background: linear-gradient(135deg, var(--red), #ff335d);
  color: #fff;
  box-shadow: 0 18px 45px rgba(217, 4, 41, .28);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(217, 4, 41, .42);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);
}

.menu-mobile {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
  background:
    radial-gradient(circle at 75% 25%, rgba(217, 4, 41, .28), transparent 30%),
    radial-gradient(circle at 30% 60%, rgba(255, 255, 255, .08), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
  pointer-events: none;
}

.hero-platforms {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  transition: .3s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 23, 68, .4);
  box-shadow: 0 15px 40px rgba(217, 4, 41, .18);
}

.platform-card i {
  font-size: 24px;
  color: #ff1744;
}

.platform-card span {
  font-size: 14px;
  font-weight: 700;
  color: #f5f5f5;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  padding: 10px 14px;
  border-radius: 999px;
  color: #dfdfdf;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.eyebrow i {
  color: var(--red-2);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -5px;
  max-width: 760px;
}

.hero h1 span {
  color: var(--red-2);
  text-shadow: 0 0 40px rgba(217, 4, 41, .35);
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin: 26px 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.stats-mini {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.stat-mini {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.stat-mini strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
}

.stat-mini span {
  color: var(--muted);
  font-size: 13px;
}

.visual-3d {
  min-height: 620px;
  position: relative;
  perspective: 1200px;
}

.dashboard {
  position: absolute;
  inset: 70px 0 auto auto;
  width: min(520px, 100%);
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
  border: 1px solid var(--card-border);
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 45px 110px rgba(0, 0, 0, .65), 0 0 70px rgba(217, 4, 41, .12);
  backdrop-filter: blur(20px);
  transform: rotateY(-14deg) rotateX(9deg) rotateZ(1deg);
  transform-style: preserve-3d;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: rotateY(-14deg) rotateX(9deg) rotateZ(1deg) translateY(0);
  }

  50% {
    transform: rotateY(-10deg) rotateX(7deg) rotateZ(1deg) translateY(-18px);
  }
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dash-title span {
  color: var(--muted);
  font-size: 12px;
}

.dash-title strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  margin-top: 4px;
}

.live {
  color: #fff;
  background: rgba(217, 4, 41, .18);
  border: 1px solid rgba(217, 4, 41, .4);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.chart {
  height: 180px;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(217, 4, 41, .16), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}

.chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, .08) 12% 13%, transparent 13% 24%, rgba(255, 255, 255, .08) 24% 25%, transparent 25%),
    linear-gradient(to top, transparent 0 24%, rgba(255, 255, 255, .07) 24% 25%, transparent 25% 49%, rgba(255, 255, 255, .07) 49% 50%, transparent 50%);
  opacity: .6;
}

.chart-line {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  height: 90px;
  clip-path: polygon(0 75%, 14% 62%, 26% 68%, 42% 38%, 55% 52%, 70% 22%, 84% 31%, 100% 5%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(255, 23, 68, .9), rgba(255, 23, 68, .05));
  filter: drop-shadow(0 0 25px rgba(217, 4, 41, .65));
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.dash-card {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .22);
  border-radius: 20px;
  padding: 18px;
}

.dash-card span {
  color: var(--muted);
  font-size: 11px;
}

.dash-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-family: 'Space Grotesk', sans-serif;
}

.cube {
  position: absolute;
  width: 115px;
  height: 115px;
  border-radius: 28px;
  background: linear-gradient(145deg, #D40910, #4b000b);
  box-shadow: 0 25px 90px rgba(217, 4, 41, .45);
  transform: rotateX(58deg) rotateZ(42deg);
  animation: spinFloat 7s ease-in-out infinite;
}

.cube-one {
  top: 20px;
  right: 420px;
}

.cube-two {
  width: 80px;
  height: 80px;
  bottom: 85px;
  right: 30px;
  opacity: .9;
  animation-delay: -2s;
}

@keyframes spinFloat {

  0%,
  100% {
    transform: rotateX(58deg) rotateZ(42deg) translateY(0);
  }

  50% {
    transform: rotateX(50deg) rotateZ(60deg) translateY(-22px);
  }
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-head span,
.band-text span {
  color: var(--red-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}

.section-head h2,
.band-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -3px;
  margin: 14px 0 18px;
}

.section-head p,
.band-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 290px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
  border: 1px solid var(--card-border);
  padding: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: .35s ease;
}

.service-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .48), 0 0 55px rgba(217, 4, 41, .16);
  border-color: rgba(255, 23, 68, .36);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -55px;
  bottom: -55px;
  background: radial-gradient(circle, rgba(217, 4, 41, .55), transparent 65%);
  filter: blur(10px);
  opacity: .65;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(217, 4, 41, .13);
  border: 1px solid rgba(217, 4, 41, .32);
  display: grid;
  place-items: center;
  color: var(--red-2);
  font-size: 24px;
  margin-bottom: 26px;
  box-shadow: 0 0 35px rgba(217, 4, 41, .18);
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
}

.immersive-band {
  padding: 100px 0;
  background:
    linear-gradient(90deg, rgba(217, 4, 41, .14), transparent 35%, rgba(217, 4, 41, .12)),
    #080808;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mockups {
  position: relative;
  height: 430px;
  perspective: 1200px;
}

.phone {
  position: absolute;
  width: 210px;
  height: 390px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(180deg, #181818, #050505);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .7);
  padding: 14px;
}

.phone-one {
  left: 40px;
  top: 15px;
  transform: rotateY(18deg) rotateZ(-7deg);
}

.phone-two {
  left: 220px;
  top: 45px;
  transform: rotateY(-20deg) rotateZ(8deg);
}

.screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 4, 41, .9), transparent 22%),
    linear-gradient(180deg, #111, #020202);
  position: relative;
  overflow: hidden;
}

.screen::after {
  content: "CRIATIVO\A PERFORMANCE";
  white-space: pre;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.05;
}

.band-text p {
  margin-bottom: 30px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-card {
  counter-increment: step;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, .045);
  border-radius: 28px;
  padding: 28px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "0" counter(step);
  position: absolute;
  right: 22px;
  top: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255, 255, 255, .07);
}

.process-card h3 {
  font-size: 22px;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 14px;
}

.process-card p {
  color: var(--muted);
  line-height: 1.7;
}

.cta {
  padding: 110px 0;
}

.cta-box {
  position: relative;
  border-radius: 40px;
  padding: 70px;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 4, 41, .35), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  border: 1px solid var(--card-border);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
}

.cta-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.cta-box p {
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 34px;
  line-height: 1.8;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #050505;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: .25s;
}

.social a:hover {
  border-color: var(--red-2);
  color: var(--red-2);
  transform: translateY(-3px);
}

@media(max-width:980px) {
  .menu-mobile {
    display: block;
  }

  .nav {
    position: fixed;
    top: 88px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 88px);
    background: #050505;
    flex-direction: column;
    align-items: flex-start;
    padding: 46px 8%;
    font-size: 28px;
    transition: .35s ease;
    border-top: 1px solid var(--line);
  }

  .nav.active {
    right: 0;
  }

  .desktop-cta {
    display: none;
  }

  .hero-grid,
  .band-grid {
    grid-template-columns: 1fr;
  }

  .visual-3d {
    min-height: 520px;
  }

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

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

@media(max-width:640px) {
  .nav-wrap {
    height: 78px;
  }

  .nav {
    top: 78px;
    height: calc(100vh - 78px);
  }

  .logo-img {
    width: 170px;
    height: auto;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-mini {
    gap: 18px;
  }

  .dashboard {
    width: 100%;
    inset: 40px 0 auto 0;
    transform: rotateY(-5deg) rotateX(5deg);
  }

  .dash-cards {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .mockups {
    height: 420px;
  }

  .phone-one {
    left: 0;
  }

  .phone-two {
    left: 125px;
  }

  .cta-box {
    padding: 46px 24px;
    border-radius: 28px;
  }

  .scroll-3d {
    width: 120px;
    height: 120px;
    right: -20px;
    top: 22%;
    opacity: .55;
  }

  .scroll-cube {
    width: 54px;
    height: 54px;
    margin-left: -27px;
    margin-top: -27px;
    border-radius: 16px;
  }
}

/* BOTÃO VOLTAR AO TOPO */

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #D40910, #ff2a2a);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(217, 4, 41, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: .3s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(217, 4, 41, .6);
}

.portfolio-carousel {
  position: relative;
}

.portfolio-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 30px;
  scrollbar-width: none;
}

.portfolio-track::-webkit-scrollbar {
  display: none;
}

.portfolio-card {
  min-width: 360px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  padding: 26px;
  transition: .35s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px) rotateX(4deg);
  border-color: rgba(255, 23, 68, .4);
  box-shadow: 0 30px 80px rgba(217, 4, 41, .15);
}

.portfolio-thumb {
  height: 210px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(217, 4, 41, .45), transparent 35%),
    linear-gradient(145deg, #161616, #050505);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.portfolio-thumb i {
  font-size: 58px;
  color: #ff1744;
  filter: drop-shadow(0 0 25px rgba(217, 4, 41, .6));
}

.portfolio-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.portfolio-card p {
  color: var(--muted);
  line-height: 1.7;
}

.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(5, 5, 5, .85);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: .3s ease;
}

.carousel-btn:hover {
  background: #d90429;
  box-shadow: 0 0 30px rgba(217, 4, 41, .45);
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

@media(max-width:700px) {
  .portfolio-card {
    min-width: 85%;
  }

  .carousel-btn {
    display: none;
  }
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  opacity: .82;
  filter: saturate(1.1) contrast(1.05);
}

.portfolio-thumb {
  overflow: hidden;
  position: relative;
}

.portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(217, 4, 41, .25), transparent 45%),
    linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
}