@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --black: #030303;
  --dark: #070707;
  --red: #6d28ff;
  --red2: #a855ff;
  --white: #f1f1f1;
  --muted: #aaa;

  --font-title: 'Anton', sans-serif;
  --font-text: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-text);
  overflow-x: hidden;
  cursor: none;
}

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

a,
button,
.photo-card,
video {
  cursor: none;
}

/* FONTES */

.logo-text,
.hero h1,
.hero h1 strong,
.about-text h2,
.gallery-title h2,
.video-title h2,
.cta h2,
.manifest-text h2,
.quote-content h2,
.stats h3,
.preloader p,
.photo-card b {
  font-family: var(--font-title);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}

.menu a,
.header-btn,
.btn,
.outline,
.eyebrow,
.section-label,
.hero-sub,
.stats p,
.cta p,
footer a,
.photo-card span {
  font-family: var(--font-text);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 900;
}

/* EFEITOS */

.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .08;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg');
}

.mouse-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(168,85,255,.18), transparent 65%);
  filter: blur(12px);
  transform: translate(-50%, -50%);
}

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.particle{
    position:absolute;
    width:2px;
    height:2px;
    background:#a855ff;
    border-radius:50%;
    box-shadow:
        0 0 6px #a855ff,
        0 0 12px #7c3aed,
        0 0 18px #6d28d9;
    animation: particleFloat linear infinite;
}

.smoke {
  position: fixed;
  pointer-events: none;
  z-index: 3;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 62%);
  filter: blur(35px);
  opacity: .22;
  animation: smokeMove 18s ease-in-out infinite alternate;
}

.smoke-1 {
  left: -180px;
  bottom: -160px;
}

.smoke-2 {
  right: -200px;
  top: 180px;
  animation-delay: -7s;
}

/* PRELOADER */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: radial-gradient(circle at center, rgba(168,85,255,.14), transparent 28%), #020202;
  transition: opacity .7s ease, visibility .7s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader img {
  width: 130px;
  filter: drop-shadow(0 0 35px rgba(168,85,255,.65));
  animation: loaderPulse 1.4s infinite alternate;
}

.preloader p {
  font-size: 44px;
}

.preloader span {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #aaa;
  font-size: 11px;
}

/* CURSOR */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--red2);
  box-shadow: 0 0 18px var(--red2);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.48);
  transition: width .2s, height .2s, border-color .2s;
}

.cursor-ring.hover {
  width: 58px;
  height: 58px;
  border-color: var(--red2);
}

/* HEADER */

.header {
  height: 82px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(168,85,255,.18);
  transition: .35s ease;
}

.header.scrolled {
  height: 74px;
  background: rgba(0,0,0,.9);
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}

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

.logo-img {
  width: 72px;
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(168,85,255,.35));
}

.logo-text {
  font-size: 29px;
  line-height: .9;
}

.logo-text span {
  display: block;
  color: var(--red2);
  font-size: 12px;
  letter-spacing: 5px;
  margin-top: 7px;
}

.menu {
  display: flex;
  gap: 40px;
}

.menu a {
  position: relative;
  font-size: 13px;
  color: #ddd;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 0;
  height: 2px;
  background: var(--red2);
  transition: .3s;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.header-btn {
  padding: 18px 30px;
  border: 1px solid var(--red2);
  border-radius: 13px 0 13px 0;
  color: var(--red2);
  font-size: 12px;
  transition: .3s;
}

.header-btn:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 34px rgba(168,85,255,.45);
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 31px;
}

/* HERO */

.hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 7% 60px;
  border-bottom: 1px solid rgba(168,85,255,.42);
}

.hero-video-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(22px) brightness(.38);
  transform: scale(1.16);
  will-change: transform;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(.74) contrast(1.08);
  transform: scale(1.02);
  transition: transform .2s linear;
  will-change: transform;
  z-index: 1;
}

.hero-filter {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 48%, rgba(168,85,255,.22), transparent 25%),
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.82) 35%, rgba(0,0,0,.26) 70%, rgba(0,0,0,.82) 100%),
    linear-gradient(0deg, rgba(0,0,0,.9) 0%, transparent 45%, rgba(0,0,0,.78) 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .25;
  background:
    linear-gradient(105deg, transparent 0 55%, rgba(255,255,255,.16) 56%, transparent 57%),
    linear-gradient(108deg, transparent 0 68%, rgba(168,85,255,.22) 69%, transparent 70%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin-top: 40px;
  animation: heroIntro 1.15s ease both .25s;
}

.eyebrow,
.section-label {
  color: var(--red2);
  font-size: 13px;
  margin-bottom: 24px;
}

.eyebrow {
  color: #fff;
}

.eyebrow span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--red2);
  vertical-align: middle;
  margin-right: 18px;
}

.hero-logo {
  width: 110px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 25px rgba(168,85,255,.45));
}

.hero h1 {
  font-size: clamp(90px, 14vw, 220px);
  line-height: .82;
  letter-spacing: 4px;
  transform: scaleY(1.05);
  text-shadow: 0 10px 0 rgba(0,0,0,.35), 0 0 35px rgba(255,255,255,.1);
}

.hero h1 strong {
  position: relative;
  display: block;
  color: var(--red);
  font-size: clamp(46px, 6vw, 105px);
  letter-spacing: 5px;
  transform: skew(-9deg) scaleY(1.05);
  text-shadow: 0 0 30px rgba(168,85,255,.48);
}

.hero h1 strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 72%;
  height: 7px;
  background: var(--red2);
  filter: blur(2px);
  transform: skew(-12deg);
}

.hero-sub {
  margin-top: 26px;
  padding-left: 24px;
  border-left: 3px solid var(--red2);
  letter-spacing: 8px;
  line-height: 1.55;
  font-size: 20px;
}

.hero-sub b {
  color: var(--red2);
}

.hero-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 38px;
}

/* BOTÕES */

.btn {
  min-height: 58px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 7px;
  transition: .3s;
}

.btn.red {
  background: linear-gradient(135deg, var(--red2), #4c1d95);
  box-shadow: 0 0 34px rgba(168,85,255,.45);
}

.btn.red:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 55px rgba(168,85,255,.75);
}

.btn.dark {
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(0,0,0,.28);
}

.btn.dark:hover {
  border-color: var(--red2);
  color: var(--red2);
}

.outline {
  margin-top: 42px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--red2);
  display: inline-flex;
  align-items: center;
  font-size: 12px;
}

.outline:hover {
  background: var(--red);
  color: #fff;
}

/* SOCIAL */

.social-bar {
  position: absolute;
  right: 5%;
  top: 40%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-bar a {
  font-weight: 900;
}

.social-bar span {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,.42);
}

.social-bar small {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
}

.scroll-down {
  position: absolute;
  right: 5.3%;
  bottom: 50px;
  z-index: 5;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 9px;
}

.scroll-down span {
  width: 18px;
  height: 18px;
  display: block;
  border-right: 2px solid var(--red2);
  border-bottom: 2px solid var(--red2);
  transform: rotate(45deg);
  margin: 0 auto 16px;
  animation: bounce 1.4s infinite;
}

/* SOBRE */

.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.2fr;
  gap: 52px;
  padding: 60px 7%;
  background: #050505;
  border-bottom: 1px solid rgba(168,85,255,.35);
  align-items: center;
}

.about-text h2,
.gallery-title h2,
.video-title h2,
.cta h2 {
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1;
}

.about-text h2 span,
.gallery-title h2 span,
.video-title h2 span,
.cta h2 span {
  color: var(--red2);
}

.about-text p:not(.section-label) {
  color: #bbb;
  line-height: 1.7;
  margin-top: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid rgba(255,255,255,.22);
}

.feature-grid article {
  min-height: 155px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: transform .45s ease, box-shadow .45s ease;
}

.feature-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(168,85,255,.2);
}

.feature-grid i {
  display: block;
  font-style: normal;
  color: var(--red2);
  font-size: 31px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 14px rgba(168,85,255,.7));
}

.feature-grid h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 8px;
}

.feature-grid p {
  color: #aaa;
  line-height: 1.55;
  font-size: 14px;
}

.about-image {
  height: 360px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(168,85,255,.35);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050505 0%, transparent 30%, rgba(168,85,255,.18) 100%);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25) contrast(1.2) brightness(.65);
}

/* MANIFESTO */

.manifest {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 60px;
  align-items: center;
  padding: 90px 7%;
  background: #050505;
  border-bottom: 1px solid rgba(168,85,255,.35);
  overflow: hidden;
}

.manifest-img {
  height: 560px;
  overflow: hidden;
  border: 1px solid rgba(168,85,255,.24);
  box-shadow: 0 0 45px rgba(168,85,255,.18);
}

.manifest-img img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  filter: grayscale(.25) brightness(.72) contrast(1.18);
  transform: translateY(-5%);
}

.manifest-text h2 {
  font-size: clamp(48px, 6vw, 98px);
  line-height: 1;
}

.manifest-text p:not(.section-label) {
  color: #bbb;
  line-height: 1.9;
  margin: 26px 0;
}

.manifest-text strong {
  display: block;
  color: var(--red2);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
}

/* FRASE DE IMPACTO */

.quote-strip {
  min-height: 470px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(168,85,255,.35);
}

.quote-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.92)),
    radial-gradient(circle, rgba(168,85,255,.22), transparent 35%);
}

.quote-content {
  position: relative;
  z-index: 2;
}

.quote-content p {
  color: var(--red2);
  text-transform: uppercase;
  letter-spacing: 8px;
  font-weight: 900;
  margin-bottom: 18px;
}

.quote-content h2 {
  font-size: clamp(48px, 7vw, 108px);
  line-height: 1;
  max-width: 950px;
}

/* STATS */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 48px 7%;
  background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)),
    url('img/fundo.jpeg') center/cover;
  border-bottom: 1px solid rgba(168,85,255,.35);
}

.stats div {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.25);
}

.stats div:last-child {
  border: 0;
}

.stats h3 {
  font-size: clamp(68px, 7vw, 110px);
  line-height: 1;
  color: var(--red2);
  text-shadow: 0 0 28px rgba(168,85,255,.45);
}

.stats p {
  margin-top: 12px;
  letter-spacing: 7px;
  font-size: 12px;
}

.counter {
  display: inline-block;
  min-width: 210px;
}

/* GALERIA */

.gallery,
.video-section {
  padding: 64px 7%;
  background: #030303;
  border-bottom: 1px solid rgba(168,85,255,.35);
}

.gallery {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 58px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
}

.gallery-grid .big {
  grid-row: span 2;
}

.gallery-grid img,
.lookbook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25) brightness(.75) contrast(1.15);
  transition: .35s;
  border: 1px solid rgba(168,85,255,.18);
}

.gallery-grid img:hover,
.lookbook img:hover {
  filter: grayscale(0) brightness(1) contrast(1.1);
  transform: scale(1.025);
  box-shadow: 0 0 30px rgba(168,85,255,.35);
}

/* PHOTO CARD */

.photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168,85,255,.18);
  background: #050505;
  transition: transform .45s ease, box-shadow .45s ease, filter .45s ease;
}

.photo-card img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  filter: grayscale(.25) brightness(.72) contrast(1.18);
  transition: .5s ease;
}

.photo-card:hover img {
  filter: grayscale(0) brightness(1) contrast(1.12);
  transform: scale(1.08);
}

.photo-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.92));
  transform: translateY(38px);
  transition: .35s ease;
}

.photo-card:hover figcaption {
  transform: translateY(0);
}

.photo-card b {
  display: block;
  font-size: 32px;
}

.photo-card span {
  color: var(--red2);
  font-size: 12px;
}

/* VÍDEOS */

.video-title {
  text-align: center;
  margin-bottom: 36px;
}

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

.video-grid video {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border: 1px solid rgba(168,85,255,.3);
  background: #000;
  transition: transform .45s ease, box-shadow .45s ease;
}

.video-grid video:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(168,85,255,.2);
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px;
  background: #050505;
}

.lookbook img {
  height: 300px;
}

/* CTA */

.cta {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-filter {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(168,85,255,.25), transparent 30%),
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.92));
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 40px 7%;
  animation: ctaGlow 3.5s ease infinite alternate;
}

.cta-content img {
  width: 120px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 25px rgba(168,85,255,.45));
}

.cta h2 {
  max-width: 870px;
  margin: auto;
}

.cta p {
  max-width: 650px;
  margin: 24px auto 35px;
  color: #ddd;
  line-height: 1.7;
  font-size: 13px;
}

/* FOOTER */

footer {
  min-height: 82px;
  padding: 20px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #020202;
  color: #777;
  font-size: 12px;
  border-top: 1px solid rgba(168,85,255,.22);
}

footer img {
  width: 70px;
}

footer a {
  color: #aaa;
}

footer a:hover {
  color: var(--red2);
}

/* ANIMAÇÕES */

.reveal {
  opacity: 0;
  transform: translateY(45px);
  filter: blur(5px);
  transition: .9s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-anim {
  transition: background .6s ease;
}

/* KEYFRAMES */

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }

  50% {
    transform: translateY(10px) rotate(45deg);
  }
}

@keyframes heroIntro {
  from {
    opacity: 0;
    transform: translateY(44px);
  }

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

@keyframes loaderPulse {
  from {
    transform: scale(.96);
    opacity: .7;
  }

  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes particleFloat {
  from {
    transform: translateY(110vh);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  to {
    transform: translateY(-20vh);
    opacity: 0;
  }
}

@keyframes smokeMove {
  from {
    transform: translate(0,0) scale(1);
  }

  to {
    transform: translate(120px,-80px) scale(1.28);
  }
}

@keyframes ctaGlow {
  from {
    filter: drop-shadow(0 0 0 rgba(168,85,255,0));
  }

  to {
    filter: drop-shadow(0 0 25px rgba(168,85,255,.28));
  }
}

/* RESPONSIVO */

@media (max-width: 1050px) {
  body {
    cursor: auto;
  }

  a,
  button,
  .photo-card,
  video {
    cursor: pointer;
  }

  .cursor-dot,
  .cursor-ring,
  .mouse-glow {
    display: none;
  }

  .menu,
  .header-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .menu.open {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 28px 7%;
    background: rgba(0,0,0,.96);
    border-bottom: 1px solid rgba(168,85,255,.25);
  }

  .hero {
    min-height: 720px;
    padding: 130px 24px 60px;
  }

  .hero-logo {
    width: 90px;
  }

  .hero h1 {
    font-size: 78px;
  }

  .hero h1 strong {
    font-size: 42px;
  }

  .hero-sub {
    font-size: 15px;
    letter-spacing: 5px;
  }

  .social-bar,
  .scroll-down {
    display: none;
  }

  .about,
  .gallery,
  .manifest {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .feature-grid,
  .stats,
  .video-grid,
  .lookbook {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

  .manifest-img {
    height: 330px;
  }

  .quote-strip {
    background-attachment: scroll;
    min-height: 360px;
  }

  .quote-content h2 {
    font-size: 48px;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding-bottom: 34px;
    margin-bottom: 34px;
  }

  .stats div:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid img,
  .gallery-grid .big,
  .lookbook img {
    height: 250px;
    grid-row: auto;
  }

  .video-grid video {
    height: 280px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.founder-preview {
  width: 100%;
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 80px;
  align-items: center;
  background: #050505;
  border-top: 1px solid rgba(168,85,255,.18);
  border-bottom: 1px solid rgba(168,85,255,.35);
}

.founder-photo {
  height: 620px;
  overflow: hidden;
  border: 1px solid rgba(168,85,255,.28);
  box-shadow: 0 0 45px rgba(168,85,255,.18);
  background: #080808;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(.35) brightness(.78) contrast(1.15);
}

.founder-info h2 {
  font-family: var(--font-title);
  font-size: clamp(80px, 9vw, 150px);
  line-height: .9;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.founder-tag {
  color: var(--red2);
  letter-spacing: 6px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.founder-info h3 {
  color: var(--red2);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 18px;
  margin-bottom: 30px;
}

.founder-info p {
  max-width: 720px;
  color: #aaa;
  line-height: 1.9;
  font-size: 16px;
}

.founder-stats {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.founder-stats div {
  padding: 28px;
  background: #090909;
  border: 1px solid rgba(168,85,255,.22);
}

.founder-stats strong {
  display: block;
  font-family: var(--font-title);
  color: var(--red2);
  font-size: 48px;
}

.founder-stats span {
  color: #888;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .founder-preview {
    grid-template-columns: 1fr;
    padding: 70px 24px;
  }

  .founder-photo {
    height: 430px;
  }

  .founder-stats {
    grid-template-columns: 1fr;
  }
}

/* =========================
   OS 9 FUNDADORES
========================= */

.founders-section {
  padding: 100px 7%;
  background:
    radial-gradient(circle at 15% 20%, rgba(168,85,255,.12), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(168,85,255,.10), transparent 30%),
    #050505;
  border-top: 1px solid rgba(168,85,255,.25);
  border-bottom: 1px solid rgba(168,85,255,.35);
}

.founders-title {
  max-width: 820px;
  margin-bottom: 55px;
}

.founders-title h2 {
  font-family: var(--font-title);
  font-size: clamp(52px, 7vw, 110px);
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.founders-title h2 span {
  color: var(--red2);
}

.founders-title p:not(.section-label) {
  color: #aaa;
  margin-top: 18px;
  line-height: 1.7;
  max-width: 650px;
}

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

.founder-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(168,85,255,.22);
  transition: .45s ease;
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(168,85,255,.18), transparent 58%);
  opacity: 0;
  transition: .45s ease;
  z-index: 2;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 45px rgba(168,85,255,.22);
}

.founder-card:hover::before {
  opacity: 1;
}

.founder-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(.45) brightness(.62) contrast(1.18);
  transition: .6s ease;
}

.founder-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0) brightness(.9) contrast(1.12);
}

.founder-card-info {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0,0,0,.96) 35%);
}

.founder-card-info span {
  color: var(--red2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.founder-card-info h3 {
  margin-top: 10px;
  font-family: var(--font-title);
  font-size: 54px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.founder-card-info p {
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

.founder-card-info small {
  display: block;
  color: #aaa;
  line-height: 1.6;
  margin-top: 14px;
  font-size: 13px;
}

@media (max-width: 1050px) {
  .founders-section {
    padding: 70px 24px;
  }

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

  .founder-card {
    min-height: 460px;
  }

  .founder-card img {
    min-height: 460px;
  }
}
.history {
  padding: 100px 7%;
  background: #050505;
  border-top: 1px solid rgba(168,85,255,.25);
  border-bottom: 1px solid rgba(168,85,255,.35);
}

.history-title h2 {
  font-family: var(--font-title);
  font-size: clamp(52px, 7vw, 110px);
  line-height: 1;
  text-transform: uppercase;
}

.history-title h2 span {
  color: var(--red2);
}

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

.timeline-item {
  padding: 34px;
  background: #090909;
  border: 1px solid rgba(168,85,255,.22);
}

.timeline-item span {
  color: var(--red2);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-top: 16px;
  font-family: var(--font-title);
  font-size: 34px;
  text-transform: uppercase;
}

.timeline-item p {
  margin-top: 14px;
  color: #aaa;
  line-height: 1.7;
}

.footer-call {
  text-align: center;
  max-width: 620px;
}

.footer-call h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-call p {
  margin-top: 10px;
  color: #aaa;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  min-height: 220px;
  padding: 40px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background:
    radial-gradient(circle at 80% 50%, rgba(168,85,255,.16), transparent 35%),
    #020202;
  border-top: 1px solid rgba(168,85,255,.35);
}

.site-footer img {
  width: 90px;
  filter: drop-shadow(0 0 18px rgba(168,85,255,.45));
}

.footer-call {
  text-align: center;
  max-width: 760px;
}

.footer-call h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
}

.footer-call p {
  margin: 14px auto 28px;
  color: #aaa;
  line-height: 1.7;
  max-width: 650px;
}

.footer-instagram-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 42px;
  background: linear-gradient(135deg, #a855ff, #4c1d95);
  color: #fff;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(168,85,255,.45);
  animation: pulseBtn 1.8s infinite;
}

.footer-instagram-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: shineBtn 2.8s infinite;
}

.footer-instagram-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 60px rgba(168,85,255,.75);
}

@keyframes pulseBtn {
  0%, 100% {
    box-shadow: 0 0 25px rgba(168,85,255,.4);
  }

  50% {
    box-shadow: 0 0 60px rgba(168,85,255,.75);
  }
}

@keyframes shineBtn {
  0% {
    left: -120%;
  }

  55%, 100% {
    left: 130%;
  }
}

@media (max-width: 1050px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
.founder-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.founder-modal.active {
  display: flex;
}

.founder-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(12px);
}

.founder-modal-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  min-height: 560px;
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #050505;
  border: 1px solid rgba(168,85,255,.35);
  box-shadow: 0 0 80px rgba(168,85,255,.25);
  animation: modalIn .35s ease;
}

.founder-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(168,85,255,.45);
  background: #080808;
  color: #fff;
  font-size: 32px;
}

.founder-modal-photo {
  overflow: hidden;
  border-right: 1px solid rgba(168,85,255,.25);
}

.founder-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25) brightness(.78) contrast(1.15);
}

.founder-modal-info {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-modal-info span {
  color: var(--red2);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 900;
  font-size: 12px;
}

.founder-modal-info h2 {
  font-family: var(--font-title);
  font-size: clamp(70px, 8vw, 130px);
  line-height: .9;
  margin: 18px 0 8px;
  text-transform: uppercase;
}

.founder-modal-info h3 {
  color: var(--red2);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.founder-modal-info p {
  color: #aaa;
  line-height: 1.9;
  font-size: 17px;
  max-width: 620px;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(.94) translateY(20px);
  }

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

@media (max-width: 900px) {
  .founder-modal-content {
    grid-template-columns: 1fr;
  }

  .founder-modal-photo {
    height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(168,85,255,.25);
  }

  .founder-modal-info {
    padding: 38px 28px;
  }
}
.street-code {
  padding: 100px 7%;
  background:
    radial-gradient(circle at 80% 20%, rgba(168,85,255,.12), transparent 30%),
    #030303;
  border-top: 1px solid rgba(168,85,255,.25);
  border-bottom: 1px solid rgba(168,85,255,.35);
}

.street-code-title h2 {
  font-family: var(--font-title);
  font-size: clamp(52px, 7vw, 110px);
  text-transform: uppercase;
}

.street-code-title h2 span {
  color: var(--red2);
}

.street-code-title p:not(.section-label) {
  color: #aaa;
  margin-top: 14px;
}

.street-code-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.code-card {
  min-height: 260px;
  padding: 32px;
  background: #080808;
  border: 1px solid rgba(168,85,255,.22);
  transition: .4s ease;
}

.code-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 45px rgba(168,85,255,.22);
}

.code-card span {
  color: var(--red2);
  font-weight: 900;
  letter-spacing: 4px;
}

.code-card h3 {
  margin-top: 22px;
  font-family: var(--font-title);
  font-size: 38px;
  text-transform: uppercase;
}

.code-card p {
  margin-top: 14px;
  color: #aaa;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .street-code {
    padding: 70px 24px;
  }

  .street-code-grid {
    grid-template-columns: 1fr;
  }
}
.ride-gallery {
  padding: 100px 7%;
  background: #050505;
  border-top: 1px solid rgba(168,85,255,.25);
  border-bottom: 1px solid rgba(168,85,255,.35);
}

.ride-gallery-title {
  max-width: 820px;
  margin-bottom: 55px;
}

.ride-gallery-title h2 {
  font-family: var(--font-title);
  font-size: clamp(52px, 7vw, 110px);
  line-height: 1;
  text-transform: uppercase;
}

.ride-gallery-title h2 span {
  color: var(--red2);
}

.ride-gallery-title p:not(.section-label) {
  color: #aaa;
  margin-top: 16px;
  line-height: 1.7;
}

.ride-gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 10px;
}

.ride-photo {
  position: relative;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(168,85,255,.22);
}

.ride-photo.big {
  grid-row: span 2;
}

.ride-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.35) brightness(.72) contrast(1.15);
  transition: .55s ease;
}

.ride-photo:hover img {
  transform: scale(1.08);
  filter: grayscale(0) brightness(.95) contrast(1.1);
}

.ride-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.95));
}

.ride-photo figcaption span {
  color: var(--red2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ride-photo figcaption h3 {
  margin-top: 8px;
  font-family: var(--font-title);
  font-size: 34px;
  text-transform: uppercase;
}

.ride-gallery-action {
  margin-top: 38px;
  text-align: center;
}

@media (max-width: 1050px) {
  .ride-gallery {
    padding: 70px 24px;
  }

  .ride-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ride-photo,
  .ride-photo.big {
    height: 280px;
    grid-row: auto;
  }
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}