:root {
  --purple-900: #490f59;
  --purple-950: #0a085d;
  --text-dark: #2d2d2d;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body:not(.preloaded) .topbar {
  visibility: hidden;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #ffffff 0%, #f8f4fb 100%);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-card {
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.preloader-card img {
  width: clamp(180px, 24vw, 280px);
  height: auto;
  transform: scale(0.9);
  animation: preloaderLogo 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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


.page-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
}


.page-shell::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: -1;
    pointer-events: none;
}

body.preloaded .page-shell {
  opacity: 1;
}

@keyframes preloaderLogo {
  0% {
    opacity: 0;
    transform: scale(0.78);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes titleLineIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleGlow {
  0% {
    transform: scale(0.96);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.04);
    opacity: 0.85;
  }
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);

  width: min(1380px, calc(100% - 48px));
  height: 60px;

  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 30px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 12px 35px rgba(80, 40, 120, 0.08);

  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    width 0.3s ease;
}

/* Quando scrollar */
.topbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-dark);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.brand img {
  width: auto;
  max-width: 140px;
  height: 40px;
}

.menu-button {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.menu-button:hover,
.menu-button:focus-visible {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.22);
}

.menu-button img {
  width: 28px;
  height: 28px;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.45);
  
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  height: 100vh;
  height: 100dvh;
  width: min(420px, 90vw);
  display: flex;
  flex-direction: column;
  padding: 16px 20px 32px;
  background: rgba(255, 255, 255, 0.904);
  box-shadow: -16px 0 50px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.45s;
}

.side-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.side-menu__header {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(73, 15, 89, 0.12);
}

.side-menu__close {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.side-menu__close svg {
  display: block;
}

.side-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
}

.side-menu__list a {
  display: block;
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--purple-900);
  font-family: "League Spartan", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.side-menu__list a:hover {
  background: rgba(73, 15, 89, 0.08);
  color: var(--purple-950);
  padding-left: 26px;
}

section[id],
.site-footer {
  scroll-margin-top: 90px;
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 120px 180px;
}

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

.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
}

.smoke--1 {
  width: clamp(520px, 55vw, 760px);
  height: clamp(520px, 55vw, 760px);
  left: -12%;
  top: -22%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(73, 15, 89, 0.55) 0%,
    rgba(73, 15, 89, 0.18) 45%,
    rgba(73, 15, 89, 0) 72%
  );
  animation: smokeDrift1 14s ease-in-out infinite alternate;
}

.smoke--2 {
  width: clamp(460px, 46vw, 660px);
  height: clamp(460px, 46vw, 660px);
  right: -10%;
  top: 4%;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(10, 8, 93, 0.5) 0%,
    rgba(73, 15, 89, 0.16) 45%,
    rgba(73, 15, 89, 0) 72%
  );
  animation: smokeDrift2 17s ease-in-out infinite alternate;
}

.smoke--3 {
  width: clamp(420px, 42vw, 600px);
  height: clamp(420px, 42vw, 600px);
  left: 16%;
  bottom: -30%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(73, 15, 89, 0.4) 0%,
    rgba(73, 15, 89, 0.12) 48%,
    rgba(73, 15, 89, 0) 74%
  );
  animation: smokeDrift3 13s ease-in-out infinite alternate;
}

.smoke--4 {
  width: clamp(380px, 36vw, 520px);
  height: clamp(380px, 36vw, 520px);
  right: 8%;
  bottom: -16%;
  background: radial-gradient(
    circle at 40% 55%,
    rgba(10, 8, 93, 0.34) 0%,
    rgba(73, 15, 89, 0.1) 50%,
    rgba(73, 15, 89, 0) 74%
  );
  animation: smokeDrift4 11s ease-in-out infinite alternate;
}

.smoke--5 {
  width: clamp(340px, 30vw, 460px);
  height: clamp(340px, 30vw, 460px);
  left: 4%;
  top: 18%;
  background: radial-gradient(
    circle at 55% 50%,
    rgba(73, 15, 89, 0.3) 0%,
    rgba(73, 15, 89, 0.1) 48%,
    rgba(73, 15, 89, 0) 72%
  );
  animation: smokeDrift5 12s ease-in-out infinite alternate;
}

@keyframes smokeDrift1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(140px, 90px, 0) scale(1.18);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(-70px, 150px, 0) scale(0.9);
    opacity: 0.75;
  }
}

@keyframes smokeDrift2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translate3d(-120px, -100px, 0) scale(0.86);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(90px, -60px, 0) scale(1.14);
    opacity: 0.7;
  }
}

@keyframes smokeDrift3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate3d(-110px, -130px, 0) scale(1.12);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(120px, -70px, 0) scale(0.92);
    opacity: 0.65;
  }
}

@keyframes smokeDrift4 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(-95px, -90px, 0) scale(1.16);
    opacity: 0.85;
  }
  100% {
    transform: translate3d(80px, -120px, 0) scale(0.87);
    opacity: 0.6;
  }
}

@keyframes smokeDrift5 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(110px, 60px, 0) scale(1.14);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(-90px, 100px, 0) scale(0.9);
    opacity: 0.55;
  }
}

@media (max-width: 960px) {
  .timeline {
    column-gap: 1rem;
  }

  .timeline-step__content {
    max-width: 200px;
  }
}

@media (max-width: 760px) {
  
}

@media (prefers-reduced-motion: reduce) {
  .smoke {
    animation: none;
  }

  .how-it-works-intro,
  .timeline-line,
  .timeline-step,
  .step-node,
  .timeline-step__content h3,
  .timeline-step__content p {
    transition: none !important;
    animation: none !important;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

.hero-img1 {
  position: absolute;
  top: 0;
  left: -50px;
  z-index: -1;
  width: min(680px, 92vw);
  opacity: 0.9;
  pointer-events: none;
  animation: heroFloat 5s ease-in-out infinite;
  will-change: transform;
}

.hero-img2 {
  position: absolute;
  top: 20px;
  right: -15%;
  z-index: -1;
  width: 450px;
  opacity: 0.9;
  pointer-events: none;
  animation: heroFloat 6s ease-in-out infinite;
  animation-delay: -0.5s;
  will-change: transform;
}

.hero-img3 {
  position: absolute;
  bottom: 10%;
  left: -10px;
  z-index: -1;
  width: 450px;
  opacity: 0.9;
  pointer-events: none;
  animation: heroFloat 3.5s ease-in-out infinite;
  animation-delay: -1.5s;
  will-change: transform;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1025px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  position: relative;
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 1.05;
  letter-spacing: 1.6px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em;
}

.hero-title::before {
  content: "";
  position: absolute;
  inset: 8% 5% 18% 5%;
  background: radial-gradient(circle, rgba(73, 15, 89, 0.26) 0%, rgba(73, 15, 89, 0) 72%);
  filter: blur(40px);
  z-index: -1;
  animation: titleGlow 5s ease-in-out infinite alternate;
}

.hero-title .line {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em;
  opacity: 0;
  transform: translateY(18px);
}

.hero-title.is-ready .line--first {
  animation: titleLineIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both 0.25s;
}

.hero-title.is-ready .line--second {
  animation: titleLineIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both 0.95s;
}

.hero-copy .accent {
  color: var(--purple-900);
}

.hero-copy .dark {
  color: #000000;
}

.hero-copy p {
  max-width: 719px;
  margin: 24px auto 0;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.45;
  color: #000000;
  font-weight: 500;
}


.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 38px;
}

.media-card {
  position: relative;
  width: min(1032px, 100%);
  aspect-ratio: 1032 / 688;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}

.play-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.play-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  border: 0;
  background: transparent;
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.6s ease;

  &:hover{
    transform: scale(1.05);
  }
}

.play-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.play-icon {
  position: relative;
  z-index: 1;
  width: 55px;
  height: 55px;
}

.play-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.play-caption .eyebrow {
  font-family: "League Spartan", sans-serif;
  font-size: 1.25rem;
  font-weight: 200;
  letter-spacing: 0.8px;
}

.play-caption .caption {
  font-family: "League Spartan", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.media-card > img,
.media-overlay,
.play-panel,
.play-caption {
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.media-card.is-playing .media-video {
  opacity: 1;
  visibility: visible;
}

.media-card.is-playing > img,
.media-card.is-playing .media-overlay,
.media-card.is-playing .play-panel,
.media-card.is-playing .play-caption {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(15, 12, 41, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.media-card.is-playing .video-controls {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.video-toggle,
.video-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.video-toggle:hover,
.video-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}

.video-controls .icon-play {
  display: none;
}

.video-controls.is-paused .icon-play {
  display: block;
}

.video-controls.is-paused .icon-pause {
  display: none;
}

.video-progress {
  position: relative;
  width: clamp(90px, 18vw, 220px);
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.video-progress__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  border-radius: 999px;
  background: #ffffff;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 38px auto 0;
  padding: 16px 38px;
  background: rgba(9, 8, 93, 0.841);
  border: 1px solid #0a085d;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 300;
  box-shadow: 0 10px 30px rgba(10, 8, 93, 0.28);
  transition: background 0.3s ease, box-shadow 0.3s ease;

  &:hover{
    background: rgba(9, 8, 93, 0.95);
    box-shadow: 0 14px 40px rgba(10, 8, 93, 0.38);
  }
}

.cta img {
  width: 25px;
  height: 25px;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  z-index: 0;
  pointer-events: none;
}

.wave2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  z-index: 0;
  pointer-events: none;
  background: transparent;
 
}

.wave2 img {
  width: 100%;
  height: auto;
  display: block;
}

.wave img {
  width: 100%;
  height: auto;
  display: block;
}

/*
.purpose-section {
  position: relative;
  padding: 96px 24px 120px;
  background: linear-gradient(180deg, #490f59 0%, #0a085d 100%);
  overflow: hidden;
}*/



.purpose-section {
  position: relative;
  padding: 96px 24px 120px;
  background: var(--white);
  overflow: hidden;
}

.purpose-bg {
  position: absolute;
  left: -6%;
  bottom: -12%;
  width: min(680px, 92vw);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.purpose-bg img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.2));
}

.purpose-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.95;
}

.purpose-line img {
  width: 58px;
  height: auto;
}

.purpose-line--top {
  top: 34px;
}

.purpose-line--bottom {
  bottom: 40px;
}

.purpose-title {
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
  text-align: center;
  color: #000000;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 100;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.purpose-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  align-items: stretch;
}

.purpose-card {
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 2.75rem 2rem;
  min-height: 280px;
  border-radius: 28px;
  border: 1px solid #E6DFE8;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.purpose-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.purpose-card.is-hidden {
  opacity: 0;
  transform: translateY(70px);
}

.purpose-card.is-visible {
  animation: purposeCardReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.purpose-card.is-visible:nth-child(2) {
  animation-delay: 0.18s;
}

.purpose-card.is-visible:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes purposeCardReveal {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .purpose-card.is-hidden {
    opacity: 1;
    transform: none;
  }

  .purpose-card.is-visible {
    animation: none;
    opacity: 1;
  }
}

.purpose-card__icon img {
  width: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}



.purpose-card h3 {
  margin-bottom: 14px;
  font-family: "League Spartan", sans-serif;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--purple-950);
}

.purpose-card p {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--purple-950);
  font-weight: 600;
  text-align: center;
}

.how-it-works-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(88px, 8vh, 120px) clamp(24px, 4vw, 48px) clamp(88px, 9vh, 128px);
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at top left, rgba(73, 15, 89, 0.08), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fcf9fe 100%);
  overflow: hidden;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  inset: auto auto -18% -8%;
  width: min(540px, 70vw);
  height: min(540px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 15, 89, 0.08), transparent 68%);
  pointer-events: none;
}

.how-it-works-intro {
  max-width: 960px;
  margin: 0 auto 4.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.how-it-works-section.is-visible .how-it-works-intro {
  opacity: 1;
  transform: translateY(0);
}

.how-it-works-eyebrow {
  color: var(--purple-900);
  font-family: "League Spartan", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 100;
  letter-spacing: 0.24em;
}

.how-it-works-title {
  margin: 0 auto 1.25rem;
  max-width: 760px;
  color: #0d0d0d;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.how-it-works-description {
  margin: 0 auto;
  max-width: 720px;
  color: #3f3f3f;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.75;
}

.timeline {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
  padding-top: 2rem;
}

.timeline-line {
  position: absolute;
  top: calc(50% + 1px);
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(73, 15, 89, 0.1) 0%, rgba(73, 15, 89, 0.8) 35%, rgba(73, 15, 89, 0.8) 65%, rgba(73, 15, 89, 0.1) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-it-works-section.is-visible .timeline-line {
  transform: scaleX(1);
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  padding: 0 0.7rem;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-step.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.timeline-step:nth-child(2) {
  transition-delay: 0.13s;
}

.timeline-step:nth-child(3) {
  transition-delay: 0.31s;
}

.timeline-step:nth-child(4) {
  transition-delay: 0.49s;
}

.timeline-step:nth-child(5) {
  transition-delay: 0.67s;
}

.timeline-step__bg-number {
  position: absolute;
  top: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "League Spartan", sans-serif;
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--purple-900);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.step-node {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(73, 15, 89, 0.16);
  background: rgba(73, 15, 89, 0.12);
  box-shadow: 0 0 0 0 rgba(73, 15, 89, 0.18);
  transform: scale(0.8);
  transition: transform 0.45s ease, background-color 0.45s ease, box-shadow 0.45s ease;
}

.timeline-step.is-revealed .step-node {
  transform: scale(1);
  background: var(--purple-900);
  box-shadow: 0 0 0 8px rgba(73, 15, 89, 0.12);
}

.timeline-step__content {
  position: relative;
  z-index: 2;
  max-width: 220px;
}

.timeline-step__content h3 {
  margin-bottom: 0.5rem;
  color: #0d0d0d;
  font-family: "League Spartan", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease, color 0.3s ease;
}

.timeline-step__content p {
  color: #4a4a4a;
  font-size: 0.96rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.timeline-step.is-revealed .timeline-step__content h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.timeline-step.is-revealed .timeline-step__content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.22s;
}

.timeline-step:hover .step-node,
.timeline-step:focus-within .step-node {
  transform: scale(1.16);
  background: var(--purple-900);
  box-shadow: 0 0 0 10px rgba(73, 15, 89, 0.12);
}

.timeline-step:hover .timeline-step__content h3,
.timeline-step:focus-within .timeline-step__content h3 {
  color: var(--purple-900);
}

.timeline-step:hover .timeline-step__content p,
.timeline-step:focus-within .timeline-step__content p {
  transform: translateY(-4px);
}

.portfolio-section {
  padding: 56px 24px 0;
  background: var(--white);
  color: var(--purple-950);
}

.portfolio-eyebrow {
  margin-bottom: 10px;
  text-align: center;
  font-family: "League Spartan", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--purple-950);
}

.portfolio-title {
  margin-bottom: 30px;
  text-align: center;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 700;
  color: #000;
}


/* CONTAINER DOS CARDS */

.portfolio-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}


/* CARD */

.portfolio-card {
  position: relative;
  width: min(100%, 523px);
  height: 360px;

  overflow: hidden;

  border-radius: 32px;
  background: #000;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(4, 15, 30, 0.95) 0%,
    rgba(4, 15, 30, 0.65) 20%,
    rgba(4, 15, 30, 0.15) 50%,
    rgba(4, 15, 30, 0) 70%
  );

  pointer-events: none;
}

.portfolio-card.is-hidden {
  opacity: 0;
  transform: translateY(70px);
}

.portfolio-card.is-visible {
  animation: portfolioCardReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.portfolio-card.is-visible:nth-child(2) {
  animation-delay: 0.18s;
}

.portfolio-card.is-visible:nth-child(3) {
  animation-delay: 0.36s;
}

.portfolio-card.is-visible:nth-child(4) {
  animation-delay: 0.54s;
}

@keyframes portfolioCardReveal {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card.is-hidden {
    opacity: 1;
    transform: none;
  }

  .portfolio-card.is-visible {
    animation: none;
    opacity: 1;
  }
}



/* IMAGEM */

.portfolio-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 360px;

  object-fit: cover;
  display: block;

  transition: transform 0.6s ease;
}

.portfolio-card-image:hover {
  transform: scale(1.05);
}





/* TEXTOS */

.portfolio-text-container {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: white;

  z-index: 2;
}

.portfolio-card-category {
  margin: 0 0 10px;

  font-family: "League Spartan", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;

  color: rgba(255, 255, 255, 0.75);
}

.portfolio-card-title {
  margin: 0 0 8px;

  font-family: "League Spartan", sans-serif;
  font-size: 1.7rem;
  line-height: 1.05;
  font-weight: 700;

  color: #fff;
}

.portfolio-card-description {
  margin: 0;

  max-width: 420px;

  font-family: "League Spartan", sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.8);
}

.contact-section{
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-image: url("/assets/contact-background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 20px 0 0px 0;

  .left-text{
    width: 15%;
    color: var(--white);
    z-index: 3;
    font-family: "League Spartan", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .right-button{
    z-index: 3;
    color: rgba(255, 255, 255, 0.744);
    font-family: "League Spartan", sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    padding: 10px 18px;
    background-color: #dad9ea2d;
    border-radius: 100px;
    border: 1px solid #ffffffad;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    
    &:hover{
      background-color: #dad9ea4d;
      border: 1px solid #ffffffad;
    }
  }
}

.contact-section::after{
  z-index: 2;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.304);
  inset: 0;
  
}

.testimonials-section {
  position: relative;
  padding: 120px 24px 120px;
  color: #ffffff;
  overflow: hidden;
  background-image: url("/assets/depoimentos-background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wave3{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.wave3 img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.testimonials-visual img {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
}





.testimonials-wave--top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -20px;
  z-index: 0;
  pointer-events: none;
}

.testimonials-wave--bottom {
  bottom: -10px;
}

.testimonials-bg {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1420px, 132%);
  opacity: 0.95;
}

.testimonials-shell {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  text-align: center;
}

.testimonials-title {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(3rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.testimonials-copy {
  margin: 0 auto;
  max-width: 680px;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.testimonial-card {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.testimonial-star {
  width: 36px;
  height: auto;
}

.testimonial-text {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.testimonial-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 34px;
  margin: 0 auto;
  border-radius: 999px;
  background: #0a085d;
  border: 1px solid #0a085d;
  color: #ffffff;
  text-decoration: none;
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.testimonial-arrow {
  width: 22px;
  height: auto;
}

.site-footer {
  position: relative;
  padding: 96px 120px 80px;
  background: #000000;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.footer-logo img {
  width: min(220px, 100%);
  height: auto;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 1.75rem;
  line-height: 1.85;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.footer-social {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.footer-contact h2 {
  margin: 0 0 32px;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
}

.footer-follow {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.footer-follow-card {
  width: 100%;
  max-width: 360px;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #8730ff 0%, #c43cff 46%, #ff6fd7 100%);
  box-shadow: 0 35px 70px rgba(136, 41, 242, 0.28);
  display: grid;
  place-items: center;
}

.footer-follow-image {
  width: 86%;
  height: 86%;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
  display: grid;
  place-items: center;
}

.footer-follow-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.footer-follow-icon svg {
  width: 50px;
  height: 50px;
}

.footer-follow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease;
}

.footer-follow-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1060px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 64px 24px 64px;
  }
}

@media (max-width: 720px) {
  .footer-brand p {
    max-width: 100%;
  }

  .footer-contact-item {
    gap: 12px;
    font-size: 0.98rem;
  }

  .footer-follow-card {
    min-height: 240px;
  }
}

.about-section {
  position: relative;
  z-index: 2;
  padding: 88px 120px 96px;
  background: #490f59;
  color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 70px);
  max-width: 1320px;
  margin: 0 auto;
}

.about-copy h2 {
  margin-bottom: 28px;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.15rem, 3.3vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.about-copy p {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
}

.about-copy p + p {
  margin-top: 1.15rem;
}

.about-media {
  display: flex;
  justify-content: center;
  position: relative;
  width: fit-content;
}

.about-media #about-media-image {
  width: min(100%, 432px);
  height: auto;
  aspect-ratio: 432 / 547;
  object-fit: cover;
  border-radius: 100px 12px 100px 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.estrela-about-media {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
  width: 150px;
}

.estrela-about-media img {
  width: clamp(100px, 10vw, 150px);
  height: auto;
}

.circle-about-media {
  position: absolute;
  bottom: 0;
  right: -15%;
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
  width: 150px;
}

.circle-about-media img {
  width: 100%;
  height: auto;
}


.points-about-media {
  position: absolute;
  bottom: -20px;
  left: -50px;
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
  width: 150px;
}

.points-about-media img {
  width: 100%;
  height: auto;
}

.parallax-imagem {
  position: relative;
  width: 100%;
  min-height: 40vh; 
  z-index: -1;
  background-image: url('/assets/parallax-3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

}

.parallax-imagem::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.401);
  z-index: -1;
  pointer-events: none;
}
