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

:root {
  --bg: #f6f3ff;
  --dark: #101014;
  --muted: #6d6878;
  --purple: #7b2cff;
  --purple-2: #b14cff;
  --soft-purple: rgba(123, 44, 255, .12);
  --radius: 28px;
  --shadow: 0 28px 80px rgba(35, 18, 68, .12);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) transparent;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple), var(--purple-2));
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--purple-2), var(--purple));
  border: 2px solid transparent;
  background-clip: content-box;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

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

.page {
  position: relative;
  overflow: visible;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .04;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: normal;
}

.orb {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 44, 255, .3), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform .12s linear;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================
   NAV
========================= */

.nav {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: #fff;
  border: 1px solid rgba(16, 16, 20, .08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 999px;
  z-index: 20;
  box-shadow: 0 12px 50px rgba(30, 20, 60, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 1.05rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--dark);
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.brand-mark::after {
  content: '';
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(123, 44, 255, .16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}

.nav-cta,
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  font-family: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta {
  padding: 13px 18px;
  background: var(--dark);
  color: #fff;
  font-size: .84rem;
}

.btn {
  padding: 17px 24px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--dark), #302146);
  color: #fff;
  box-shadow: 0 20px 50px rgba(16, 16, 20, .2);
}

.btn-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid rgba(16, 16, 20, .08);
}

.btn-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #101014, #7b2cff, #b14cff, #101014);
  background-size: 300% 100%;
  animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 300% 50%;
  }
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 16, 20, .08);
  color: var(--muted);
  font-weight: 700;
  font-size: .78rem;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 7px rgba(123, 44, 255, .13);
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -.04em;
  max-width: 750px;
}

.hero h1 strong {
  color: var(--purple);
  font-weight: 800;
}

.hero p {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  line-height: 1.4;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.engine-card {
  min-height: 620px;
  border-radius: 42px;
  background: linear-gradient(160deg, #fff, #f0e8ff);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.engine-card::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(123, 44, 255, .18), transparent, rgba(177, 76, 255, .18), transparent);
  animation: spin 16s linear infinite;
}

.engine-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 552px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .8);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.engine-visual {
  position: relative;
  width: min(430px, 82vw);
  height: 430px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.site-page {
  position: absolute;
  width: 310px;
  height: 390px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 34px 90px rgba(35,18,68,.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page-back {
  transform: translate(58px, -38px) rotate(9deg) scale(.88);
  background: linear-gradient(145deg, rgba(123,44,255,.18), rgba(255,255,255,.72));
  opacity: .65;
}

.page-middle {
  transform: translate(28px, -18px) rotate(4deg) scale(.94);
  background: linear-gradient(145deg, rgba(177,76,255,.18), rgba(255,255,255,.78));
  opacity: .82;
}

.page-front {
  transform: rotate(-2deg);
  animation: floatPage 5s ease-in-out infinite;
}

.page-front img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.engine-core {
  position: absolute;
  width: 86px;
  height: 86px;
  right: 20px;
  bottom: 24px;
  border-radius: 28px;
  background: #101014;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(16,16,20,.25);
  animation: pulseCore 2.8s ease-in-out infinite;
  z-index: 6;
}

.engine-core span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #7b2cff, #b14cff, #7b2cff);
}

.floating-tag {
  position: absolute;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,16,20,.08);
  box-shadow: 0 16px 40px rgba(35,18,68,.12);
  font-size: .72rem;
  font-weight: 800;
  color: #101014;
  z-index: 7;
}

.tag-one {
  left: 8px;
  top: 76px;
  animation: floatTag 4s ease-in-out infinite;
}

.tag-two {
  right: 0;
  top: 138px;
  animation: floatTag 4.4s ease-in-out infinite reverse;
}

.tag-three {
  left: 34px;
  bottom: 60px;
  color: #7b2cff;
  animation: floatTag 4.8s ease-in-out infinite;
}

@keyframes floatPage {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@keyframes pulseCore {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(16,16,20,.25);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 24px 70px rgba(123,44,255,.28);
  }
}

@keyframes floatTag {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

/* =========================
   MÉTODO
========================= */

.section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2 {
  font-size: clamp(2.3rem, 4.8vw, 5rem);
  line-height: .96;
  letter-spacing: -.07em;
  margin-bottom: 20px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.mini-card {
  background: #fff;
  border: 1px solid rgba(16, 16, 20, .07);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 230px;
  box-shadow: 0 18px 48px rgba(25, 10, 55, .06);
  transform: translateY(40px);
  opacity: 0;
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1);
}

.mini-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mini-card:nth-child(2) {
  margin-top: 42px;
}

.mini-card:nth-child(3) {
  margin-top: 84px;
}

.mini-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--soft-purple);
  color: var(--purple);
  font-weight: 800;
  margin-bottom: 38px;
}

.mini-card h3 {
  font-size: 1.32rem;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.mini-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}

/* =========================
   5 ELEMENTOS
========================= */

.sticky-section {
  padding: 110px 0 0;
  background: #100d17;
  color: #fff;
  border-radius: 56px 56px 0 0;
  position: relative;
  z-index: 3;
  overflow: visible;
}

.sticky-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
  overflow: visible;
}

.sticky-title {
  position: sticky;
  top: 110px;
  height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: start;
  overflow: visible;
}

.sticky-title h2 {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.08em;
}

.sticky-title h2 span {
  color: var(--purple-2);
}

.sticky-title p {
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  margin-top: 22px;
  max-width: 440px;
}

.progress-line {
  width: 4px;
  height: 260px;
  background: rgba(255,255,255,.12);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 36px;
}

.progress-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(var(--purple), var(--purple-2));
  border-radius: 99px;
  transition: height .15s linear;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 14vh 0 32vh;
}

.detail-card {
  min-height: 72vh;
  display: flex;
  align-items: center;
  opacity: .28;
  transform: scale(.96);
  transition: opacity .45s ease, transform .45s ease;
}

.detail-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.detail-inner {
  width: 100%;
  border-radius: 38px;
  padding: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}

.detail-inner::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,44,255,.28), transparent 70%);
  right: -80px;
  top: -80px;
}

.detail-tag {
  display: inline-flex;
  padding: 10px 14px;
  background: rgba(123,44,255,.16);
  color: #d9c4ff;
  border: 1px solid rgba(177,76,255,.25);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 26px;
}

.detail-inner h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.07em;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.detail-inner p {
  margin-top: 22px;
  color: rgba(255,255,255,.66);
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 610px;
  position: relative;
  z-index: 2;
}

.detail-icon {
  position: absolute;
  right: 38px;
  bottom: 28px;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: rgba(255,255,255,.06);
  letter-spacing: -.12em;
}

/* =========================
   PORTFÓLIO
========================= */

.portfolio-section {
  background: var(--bg);
  padding-top: 150px;
}

.portfolio-shell {
  background: #fff;
  border: 1px solid rgba(16,16,20,.07);
  border-radius: 42px;
  box-shadow: var(--shadow);
  padding: 22px;
  overflow: hidden;
}

.portfolio-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 10px 24px;
}

.portfolio-top div:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.portfolio-top strong {
  letter-spacing: -.04em;
}

.portfolio-top span {
  color: var(--muted);
  font-size: .88rem;
}

.portfolio-controls,
.testimonial-controls {
  display: flex;
  gap: 10px;
}

.circle-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(16,16,20,.09);
  background: #fff;
  color: var(--purple);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}


.circle-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  pointer-events: none;
}


.circle-btn:hover {
  transform: translateY(-3px);
  background: var(--purple);
  color: #fff;
}

.portfolio-track {
  display: flex;
  gap: 18px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding-bottom: 0;
}

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

.project-card {
  flex: 0 0 min(430px, 86vw);
  background: #f8f5ff;
  border: 1px solid rgba(16,16,20,.07);
  border-radius: 32px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.project-card.is-featured {
  flex-basis: min(520px, 88vw);
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-preview {
  position: relative;
}

.project-image {
  height: 280px;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #100d17;
}

.project-card.is-featured .project-image {
  height: 340px;
}

.auto-site-preview img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: translateY(0);
  animation: siteAutoScroll 40s ease-in-out infinite;
}

.project-card:hover .auto-site-preview img {
  animation-play-state: paused;
}

.project-card:not(.is-featured) .auto-site-preview img {
  animation-name: siteAutoScrollSmall;
}

.project-image .preview-pill {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
}

@keyframes siteAutoScroll {
  0% {
    transform: translateY(0);
  }

  12% {
    transform: translateY(0);
  }

  72% {
    transform: translateY(calc(-100% + 340px));
  }

  88% {
    transform: translateY(calc(-100% + 340px));
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes siteAutoScrollSmall {
  0% {
    transform: translateY(0);
  }

  12% {
    transform: translateY(0);
  }

  72% {
    transform: translateY(calc(-100% + 280px));
  }

  88% {
    transform: translateY(calc(-100% + 280px));
  }

  100% {
    transform: translateY(0);
  }
}

.preview-pill {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 800;
}

.project-info {
  padding: 24px;
}

.project-info span {
  color: var(--purple);
  font-size: .78rem;
  font-weight: 800;
}

.project-info h3 {
  margin-top: 10px;
  font-size: 1.55rem;
  letter-spacing: -.05em;
}

.project-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
  font-size: .95rem;
}

/* =========================
   DEPOIMENTOS
========================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.testimonial-stage {
  position: relative;
  min-height: 460px;
  border-radius: 42px;
  background: #fff;
  border: 1px solid rgba(16,16,20,.07);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(36px) scale(.98);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.quote-mark {
  font-size: 7rem;
  line-height: .7;
  color: var(--purple);
  font-weight: 800;
  opacity: .25;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  line-height: 1.22;
  letter-spacing: -.05em;
  font-weight: 700;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.testimonial-author span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--soft-purple);
  color: var(--purple);
  font-weight: 800;
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-author small {
  color: var(--muted);
}

.testimonial-dots {
  position: absolute;
  left: 52px;
  bottom: 34px;
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(16,16,20,.18);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.testimonial-dot.is-active {
  width: 28px;
  background: var(--purple);
}

/* =========================
   SOBRE MIM
========================= */

.about-section {
  background: #100d17;
  color: #fff;
  padding: 140px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-section .section-kicker {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}

.about-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.about-photo {
  width: min(520px, 90vw);
  height: min(680px, 100vw);
  border-radius: 44px;
  background:
    radial-gradient(circle at 70% 20%, rgba(177,76,255,.35), transparent 35%),
    linear-gradient(145deg, #ffffff, #eee6ff);
  display: grid;
  place-items: center;
  color: rgba(16,16,20,.08);
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: -.12em;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(16,16,20,.08);
  pointer-events: none;
}

.about-floating-card {
  position: absolute;
  width: 230px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}

.about-floating-card strong,
.about-floating-card span {
  display: block;
}

.about-floating-card strong {
  letter-spacing: -.04em;
}

.about-floating-card span {
  color: rgba(255,255,255,.62);
  font-size: .84rem;
  line-height: 1.5;
  margin-top: 6px;
}

.card-one {
 left: -80px;   /* mais pra esquerda */
  top: 60px;     /* mais pra cima */
}

.card-two {
  right: -40px;  /* mais pra direita */
  bottom: 60px;  /* mais pra baixo */
}

.about-content h2 {
  color: #fff;
  font-size: clamp(2.3rem, 4.8vw, 5rem);
  line-height: .96;
  letter-spacing: -.07em;
  margin-bottom: 24px;
}
.about-section h2 strong {
  color: var(--purple);
  font-weight: 800;
}
.about-content p {
  color: rgba(255,255,255,.66);
  line-height: 1.85;
  font-size: .9rem;
  margin-bottom: 18px;
  max-width: 680px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-points span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  font-size: .84rem;
}

/* =========================
   SUPORTE
========================= */

.support-section {
  background: #100d17;
  color: #fff;
  padding: 140px 0;
}

.support-section .section-kicker {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}

.support-box {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
  border-radius: 48px;
  padding: 56px;
  background:
    radial-gradient(circle at 90% 0%, rgba(123,44,255,.22), transparent 35%),
    rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: none;
}

.support-content h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  line-height: .96;
  letter-spacing: -.07em;
  margin-bottom: 22px;
}

.support-content p {
  color: rgba(255,255,255,.66);
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 650px;
}

.support-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.support-list div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.support-list strong,
.support-list span {
  display: block;
}

.support-list strong {
  color: #fff;
}

.support-list span {
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  font-size: .92rem;
  margin-top: 5px;
}

.support-chat {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 34px;
  background: #07070a;
  min-height: 430px;
  align-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.chat-bubble {
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.55;
  font-size: .93rem;
}

.chat-bubble.left {
  justify-self: start;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  border-bottom-left-radius: 4px;
}

.chat-bubble.right {
  justify-self: end;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* =========================
   CTA FINAL
========================= */

.final-cta {
  padding: 140px 0;
  text-align: center;
}

.final-box {
  border-radius: 56px;
  padding: 80px 30px;
  background: radial-gradient(circle at 50% 0%, rgba(123,44,255,.22), transparent 45%), #101014;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.final-box h2 {
  font-size: clamp(2.6rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.08em;
  max-width: 900px;
  margin: 0 auto;
}

.final-box p {
  color: rgba(255,255,255,.64);
  line-height: 1.8;
  margin: 26px auto 34px;
  max-width: 620px;
}

/* =========================
   ANIMAÇÕES
========================= */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1100px) {
  .nav-links {
    gap: 13px;
    font-size: .76rem;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .sticky-wrap,
  .testimonial-grid,
  .about-grid,
  .support-box {
    grid-template-columns: 1fr;
  }

  .engine-card {
    min-height: 560px;
  }

  .engine-inner {
    min-height: 490px;
  }

  .engine-visual {
    margin-top: 20px;
  }

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

  .mini-card:nth-child(2),
  .mini-card:nth-child(3) {
    margin-top: 0;
  }

  .sticky-title {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    padding-bottom: 30px;
  }

  .detail-list {
    padding: 0;
  }

  .detail-card {
    min-height: auto;
    padding: 20px 0;
    opacity: 1;
    transform: none;
  }

  .progress-line {
    height: 120px;
  }

  .testimonial-stage {
    min-height: 500px;
  }

  .about-visual {
    min-height: 460px;
  }

  .card-one {
    left: 0;
    top: 40px;
  }

  .card-two {
    right: 0;
    bottom: 40px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    width: calc(100% - 24px);
    height: 62px;
    top: 12px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .engine-card,
  .final-box,
  .support-box {
    border-radius: 32px;
    padding: 24px;
  }

  .engine-inner {
    border-radius: 24px;
    min-height: 430px;
  }

  .engine-visual {
    width: 100%;
    height: 390px;
  }

  .site-page {
    width: 250px;
    height: 330px;
    border-radius: 24px;
  }

  .page-back {
    transform: translate(42px, -30px) rotate(8deg) scale(.88);
  }

  .page-middle {
    transform: translate(22px, -14px) rotate(4deg) scale(.94);
  }

  .engine-core {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    right: 6px;
    bottom: 20px;
  }

  .engine-core span {
    width: 30px;
    height: 30px;
  }

  .floating-tag {
    font-size: .65rem;
    padding: 8px 10px;
  }

  .tag-one {
    left: 0;
    top: 70px;
  }

  .tag-two {
    right: 0;
    top: 130px;
  }

  .tag-three {
    left: 16px;
    bottom: 54px;
  }

  .sticky-section {
    border-radius: 34px 34px 0 0;
  }

  .detail-inner,
  .testimonial-card {
    padding: 28px;
    border-radius: 28px;
  }

  .portfolio-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-card,
  .project-card.is-featured {
    flex-basis: 86vw;
  }

  .project-card.is-featured .project-image,
  .project-image {
    height: 300px;
  }

  .auto-site-preview img {
    animation-name: siteAutoScrollMobile;
  }

  @keyframes siteAutoScrollMobile {
    0% {
      transform: translateY(0);
    }

    12% {
      transform: translateY(0);
    }

    72% {
      transform: translateY(calc(-100% + 300px));
    }

    88% {
      transform: translateY(calc(-100% + 300px));
    }

    100% {
      transform: translateY(0);
    }
  }

  .testimonial-dots {
    left: 28px;
    bottom: 24px;
  }

  .about-floating-card {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .about-visual {
    display: block;
    min-height: auto;
  }

  .about-photo {
    width: 100%;
    height: 380px;
  }

  .support-chat {
    min-height: 360px;
    padding: 18px;
  }
}