/* OliveiraCode — direção visual premium 2026 */

:root {
  --primary: #65e8ff;
  --primary-soft: rgba(101, 232, 255, 0.1);
  --primary-glow: rgba(101, 232, 255, 0.26);
  --secondary: #d6b46c;
  --secondary-soft: rgba(214, 180, 108, 0.1);
  --gold: #e3c480;
  --bg: #070a11;
  --bg-alt: #0a0f19;
  --surface: #0d1420;
  --surface-2: #111a28;
  --text: #f5f7fb;
  --muted: #9aa6b8;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(101, 232, 255, 0.28);
  --green: #24d77f;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-sm: 14px;
  --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-display: "Sora", sans-serif;
  --font-heading: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

html {
  scroll-padding-top: 100px;
}

body {
  background:
    radial-gradient(circle at 10% -10%, rgba(31, 118, 149, 0.14), transparent 30%),
    radial-gradient(circle at 95% 22%, rgba(126, 89, 28, 0.08), transparent 27%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.container {
  max-width: 1280px;
  padding-inline: clamp(20px, 4vw, 48px);
}

.accent,
.glow {
  color: var(--primary);
}

.glow {
  background: linear-gradient(105deg, #aef4ff 0%, #55dff7 58%, #e2c27b 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

::selection {
  color: #041018;
  background: var(--primary);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* Atmosfera */
#fxCanvas {
  opacity: 0.2;
}

.aurora-blob {
  filter: blur(140px);
  opacity: 0.14;
}

.blob-cyan {
  width: 760px;
  height: 760px;
  top: -340px;
  left: -300px;
  background: #087694;
}

.blob-orange {
  width: 620px;
  height: 620px;
  right: -300px;
  bottom: 2%;
  background: #85601d;
}

.blob-deep {
  width: 760px;
  height: 760px;
  top: 36%;
  left: 48%;
  background: #142c53;
  opacity: 0.09;
}

.grain {
  opacity: 0.025;
}

/* Preloader */
.preloader {
  background: #070a11;
}

.preloader-logo {
  width: min(46vw, 160px);
  animation: premiumPulse 1.8s ease-in-out infinite alternate;
}

.preloader-bar {
  width: min(46vw, 160px);
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.preloader-bar span,
.scroll-progress {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

@keyframes premiumPulse {
  from { opacity: 0.7; filter: drop-shadow(0 0 8px rgba(101, 232, 255, 0.12)); }
  to { opacity: 1; filter: drop-shadow(0 0 26px rgba(101, 232, 255, 0.34)); }
}

/* Navegação */
header {
  padding-top: 14px;
  border: 0;
}

header.scrolled {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.nav-inner {
  height: 66px;
  padding-inline: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(8, 12, 20, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

header.scrolled .nav-inner {
  background: rgba(8, 12, 20, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
}

.brand {
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  height: 38px;
  filter: none;
}

.brand:hover .brand-mark {
  filter: drop-shadow(0 0 14px rgba(101, 232, 255, 0.3));
  transform: translateY(-1px);
}

.brand-name b {
  color: var(--primary);
  font-weight: 700;
}

.brand-bracket {
  display: none;
}

.nav-desktop {
  gap: clamp(18px, 2.2vw, 30px);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #a6b0c1;
}

.nav-link::after {
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.hamburger {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: block;
  padding: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(2, 5, 10, 0.76);
  backdrop-filter: blur(8px) saturate(80%);
  -webkit-backdrop-filter: blur(8px) saturate(80%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 430px);
  height: 100vh;
  height: 100dvh;
  padding: 104px 28px 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 95% 7%, rgba(101, 232, 255, 0.13), transparent 28%),
    radial-gradient(circle at 0% 92%, rgba(214, 180, 108, 0.065), transparent 30%),
    linear-gradient(155deg, rgba(14, 22, 34, 0.985), rgba(6, 10, 17, 0.995));
  box-shadow: -36px 0 90px rgba(0, 0, 0, 0.5), inset 1px 0 rgba(255, 255, 255, 0.025);
  transform: translateX(104%);
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

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

.mobile-panel-kicker {
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #718095;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-panel-kicker span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--secondary);
}

.mobile-panel-kicker span:first-child::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--secondary);
}

.mobile-nav {
  width: 100%;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-link {
  position: relative;
  min-height: 61px;
  padding: 0 40px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: #dce3ec;
  font-family: var(--font-heading);
  font-size: clamp(1.22rem, 5.4vw, 1.55rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateX(26px);
  transition:
    opacity 0.42s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease,
    padding-left 0.35s ease,
    background 0.35s ease;
}

.mobile-link::after {
  content: "↗";
  position: absolute;
  right: 4px;
  color: #5d6b7e;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  transform: rotate(45deg);
  transition: color 0.3s ease, transform 0.35s ease;
}

.mobile-link:hover,
.mobile-link:focus-visible {
  padding-left: 8px;
  color: white;
  background: linear-gradient(90deg, rgba(101, 232, 255, 0.055), transparent 75%);
}

.mobile-link:hover::after,
.mobile-link:focus-visible::after {
  color: var(--primary);
  transform: rotate(0deg) translate(2px, -2px);
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.27s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.37s; }

.mobile-link-index {
  width: 28px;
  color: var(--secondary);
  font-family: var(--font-mono);
  font-size: 0.53rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.mobile-panel-bottom {
  margin-top: auto;
  padding-top: 22px;
}

.mobile-cta {
  width: 100%;
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease 0.38s,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.38s,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta span {
  font-size: 1rem;
}

.mobile-availability {
  margin-top: 12px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.022);
}

.mobile-availability-dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(36, 215, 127, 0.08), 0 0 13px rgba(36, 215, 127, 0.42);
}

.mobile-availability strong,
.mobile-availability small {
  display: block;
}

.mobile-availability strong {
  color: #dfe5ed;
  font-size: 0.66rem;
  font-weight: 700;
}

.mobile-availability small {
  margin-top: 2px;
  color: #6f7d90;
  font-size: 0.55rem;
}

.mobile-social-row {
  margin-top: 16px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.mobile-social-row > span {
  color: #657387;
  font-size: 0.53rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-menu-footer {
  margin: 0;
  display: flex;
  gap: 7px;
}

.mobile-menu-footer .social-link {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.mobile-location {
  margin-top: 13px;
  color: #566477;
  font-size: 0.49rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Botões */
.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 13px;
  font-family: var(--font-body);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 38%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  color: #041116;
  border: 1px solid rgba(136, 240, 255, 0.72);
  background: linear-gradient(135deg, #8cf0ff 0%, #50d8ef 100%);
  box-shadow: 0 12px 32px rgba(50, 204, 232, 0.18), inset 0 1px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  color: #020a0d;
  border-color: #b5f6ff;
  background: linear-gradient(135deg, #b0f5ff 0%, #64e2f7 100%);
  box-shadow: 0 18px 42px rgba(50, 204, 232, 0.28);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.075);
}

.btn-lg {
  min-height: 58px;
  padding-inline: 30px;
}

/* Hero */
.hero {
  min-height: 920px;
  padding: 158px 0 92px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 77% 45%, rgba(49, 164, 192, 0.1), transparent 25%),
    linear-gradient(to bottom, transparent 72%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  width: fit-content;
  margin-bottom: 30px;
  padding: 9px 14px;
  border: 1px solid rgba(101, 232, 255, 0.16);
  border-radius: 999px;
  color: #c0cad8;
  background: rgba(101, 232, 255, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  font-size: 0.69rem;
  letter-spacing: 0.055em;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(36, 215, 127, 0.1), 0 0 14px rgba(36, 215, 127, 0.5);
}

.hero-title {
  max-width: 780px;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-size: clamp(3.15rem, 4.7vw, 5rem);
  line-height: 1.01;
  letter-spacing: -0.075em;
  text-transform: none;
  font-weight: 600;
}

.hero-line {
  overflow: visible;
}

.hero-line span {
  display: block;
  transform: none !important;
  opacity: 1 !important;
  animation: none !important;
}

.hero-line:nth-child(2) span {
  color: #d7dde7;
}

.hero-sub {
  max-width: 610px;
  margin-bottom: 34px;
  color: #aab4c3;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.8;
}

.hero-sub,
.hero-ctas,
.hero-stats {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.hero-ctas {
  gap: 12px;
  margin-bottom: 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0;
}

.hero-stat {
  min-width: 126px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat-num {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-stat-label {
  color: #7f8b9f;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-terminal {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  justify-self: end;
  padding: 22px;
}

.showcase-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: rgba(12, 18, 29, 0.88);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.07);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), border-color var(--transition);
}

.hero-terminal:hover .showcase-shell {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  border-color: rgba(101, 232, 255, 0.28);
}

.showcase-bar {
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
}

.showcase-dots {
  display: flex;
  gap: 6px;
}

.showcase-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.showcase-dots span:first-child { background: #d6b46c; }
.showcase-dots span:nth-child(2) { background: rgba(101, 232, 255, 0.6); }

.showcase-url,
.showcase-live {
  color: #748196;
  font-size: 0.56rem;
  letter-spacing: 0.05em;
}

.showcase-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #98a5b6;
}

.showcase-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(36, 215, 127, 0.6);
}

.showcase-media {
  position: relative;
  aspect-ratio: 1.04 / 1;
  overflow: hidden;
  background: #111722;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.04);
  filter: saturate(0.82) contrast(1.03) brightness(0.95);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), filter var(--transition);
}

.hero-terminal:hover .showcase-media img {
  transform: scale(1.01);
  filter: saturate(0.98) contrast(1.02) brightness(1);
}

.showcase-logo-media {
  background: #020305;
}

.showcase-media .showcase-logo {
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  filter: saturate(0.9) contrast(1.04) brightness(0.92);
}

.hero-terminal:hover .showcase-media .showcase-logo {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.03) brightness(1);
}

.showcase-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 9, 16, 0.9) 0%, rgba(5, 9, 16, 0.03) 62%),
    linear-gradient(120deg, rgba(6, 12, 20, 0.18), transparent 55%);
}

.showcase-caption {
  position: absolute;
  left: clamp(22px, 4vw, 38px);
  right: 24px;
  bottom: 28px;
}

.showcase-caption span {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.showcase-caption strong {
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.showcase-footer {
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #8995a7;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.showcase-footer span:first-child {
  margin-right: auto;
  color: #c4ccd8;
}

.showcase-footer i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(101, 232, 255, 0.55);
}

.terminal-body {
  display: none !important;
}

.terminal-glow {
  inset: 15% 10% -8%;
  z-index: -1;
  opacity: 0.7;
  background: radial-gradient(ellipse, rgba(32, 167, 194, 0.16), transparent 67%);
  filter: blur(24px);
}

.hero-proof {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 14, 23, 0.88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-proof-top {
  top: -8px;
  right: -12px;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 16px;
  color: #9aa7b9;
  font-size: 0.65rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-proof-top strong {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.proof-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #041116;
  background: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

.hero-proof-bottom {
  left: -18px;
  bottom: -8px;
  min-width: 190px;
  padding: 14px 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  border-radius: 16px;
}

.proof-score {
  grid-row: 1 / 3;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.proof-stars {
  color: var(--secondary);
  font-size: 0.59rem;
  letter-spacing: 0.1em;
}

.hero-proof-bottom small {
  color: #8f9bad;
  font-size: 0.52rem;
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  left: auto;
  right: clamp(22px, 4vw, 64px);
  bottom: 26px;
  color: #606d81;
  font-size: 0.56rem;
}

.scroll-line {
  background: linear-gradient(to bottom, var(--primary), transparent);
}

/* Faixa de competências */
.marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.018);
  transform: none;
}

.marquee-track {
  padding: 18px 0;
  animation-duration: 36s;
}

.marquee-item {
  gap: 12px;
  color: #8490a3;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.marquee-item svg {
  width: 10px;
  color: var(--secondary);
}

/* Estrutura editorial */
.section {
  padding: clamp(92px, 10vw, 136px) 0;
}

.section-alt {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 85% 15%, rgba(101, 232, 255, 0.045), transparent 30%);
}

.section-head {
  max-width: 790px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
  color: var(--secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--secondary);
}

.section-title {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.065em;
  text-transform: none;
}

.section-desc {
  max-width: 650px;
  margin-top: 22px;
  color: #939fb1;
  font-size: 1rem;
  line-height: 1.8;
}

/* Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 520px;
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(10, 15, 25, 0.84);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transform: none !important;
}

.service-card::before {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(101, 232, 255, 0.11), transparent 68%);
}

.service-card::after {
  content: "0" counter(service-card);
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(255, 255, 255, 0.13);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.service-card:nth-child(1) { counter-increment: service-card; }
.service-card:nth-child(2) { counter-increment: service-card; }
.service-card:nth-child(3) { counter-increment: service-card; }

.service-card:hover {
  border-color: rgba(101, 232, 255, 0.25);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-6px) !important;
}

.service-top {
  margin-bottom: 30px;
}

.service-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(101, 232, 255, 0.18);
  border-radius: 15px;
  color: var(--primary);
  background: rgba(101, 232, 255, 0.065);
}

.service-badge {
  border-color: rgba(214, 180, 108, 0.22);
  color: var(--secondary);
  background: rgba(214, 180, 108, 0.07);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.service-title {
  margin-bottom: 14px;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  text-transform: none;
}

.service-desc {
  color: #909caf;
  font-size: 0.9rem;
  line-height: 1.8;
}

.service-meta {
  padding: 18px 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #728095;
  font-size: 0.59rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-meta strong {
  color: #dde4ed;
  font-family: var(--font-body);
  font-size: 0.74rem;
}

.service-techs {
  gap: 6px;
  margin: 18px 0;
}

.service-tech {
  padding: 5px 9px;
  border-color: rgba(255, 255, 255, 0.075);
  border-radius: 7px;
  color: #8592a6;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.56rem;
}

.service-cta {
  padding: 0;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Diferenciais */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
}

.feature-card {
  min-height: 170px;
  padding: 30px;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: #0a101a;
}

.feature-card:hover {
  border: 0;
  background: #0d1622;
  transform: none;
}

.feature-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 11px;
  color: var(--primary);
  background: rgba(101, 232, 255, 0.075);
}

.feature-title {
  color: #eef2f7;
  font-family: var(--font-heading);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: none;
}

.feature-desc {
  margin-top: 7px;
  color: #7f8b9f;
  font-size: 0.8rem;
  line-height: 1.65;
}

/* Processo */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  display: block;
  padding: 34px 28px 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step:not(:last-child)::after {
  top: -4px;
  left: 0;
  right: auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(101, 232, 255, 0.08), 0 0 14px var(--primary-glow);
}

.process-step:last-child::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}

.process-num {
  width: auto;
  height: auto;
  margin-bottom: 38px;
  display: block;
  border: 0;
  border-radius: 0;
  color: var(--secondary);
  background: transparent;
  box-shadow: none;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.process-title {
  margin-bottom: 10px;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: none;
}

.process-desc {
  max-width: 220px;
  color: #8591a4;
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Números */
.stats-band {
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(101, 232, 255, 0.035), transparent 40%, rgba(214, 180, 108, 0.035)),
    #090e17;
}

.stats-grid {
  gap: 0;
}

.stat {
  padding: 10px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.stat:last-child {
  border-right: 0;
}

.stat-num {
  color: #f7f9fc;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  text-shadow: none;
}

.stat-label {
  color: #7f8b9d;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Portfólio */
#portfolio .section-head {
  margin-bottom: 36px;
}

.portfolio-filters {
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 9px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #8d99aa;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-btn:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  color: #061217;
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(101, 232, 255, 0.14);
}

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

.portfolio-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #0b111c;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.portfolio-card:first-child {
  grid-column: span 8;
}

.portfolio-card:hover {
  border-color: rgba(101, 232, 255, 0.24);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(-5px);
}

.portfolio-media {
  aspect-ratio: 1.45 / 1;
  background: #111823;
}

.portfolio-card:first-child .portfolio-media {
  aspect-ratio: 2.1 / 1;
}

.portfolio-media img {
  filter: saturate(0.82) contrast(1.02);
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.02);
}

.portfolio-overlay {
  background: linear-gradient(to top, rgba(6, 10, 17, 0.86), transparent 70%);
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px;
}

.portfolio-overlay span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #061217;
  background: rgba(132, 238, 255, 0.94);
  font-family: var(--font-body);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-info {
  padding: 20px 22px 23px;
}

.portfolio-cat {
  margin-bottom: 7px;
  color: var(--secondary);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-title {
  color: #edf1f6;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: none;
}

/* Movimento cinematográfico do portfólio */
#portfolio {
  overflow: clip;
}

.portfolio-grid {
  position: relative;
  perspective: 1400px;
}

.portfolio-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    opacity 0.58s ease var(--filter-delay, 0ms),
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) var(--filter-delay, 0ms),
    filter 0.58s ease var(--filter-delay, 0ms),
    border-color 0.4s ease,
    box-shadow 0.5s ease;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    360px circle at var(--pointer-x) var(--pointer-y),
    rgba(139, 239, 255, 0.16),
    rgba(101, 232, 255, 0.045) 34%,
    transparent 68%
  );
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.35s ease;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(101, 232, 255, 0.55),
    transparent 30%,
    transparent 68%,
    rgba(214, 180, 108, 0.42)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card.portfolio-motion {
  opacity: 0;
  filter: blur(8px) saturate(0.72);
  clip-path: inset(0 0 92% 0 round 20px);
  transform: perspective(1100px) translateY(68px) scale(0.94) rotateX(9deg);
  transform-origin: center top;
  will-change: opacity, transform, clip-path, filter;
}

.portfolio-card.portfolio-motion.portfolio-in {
  opacity: 1;
  filter: none;
  clip-path: inset(0 0 0 0 round 20px);
  transform: perspective(1100px) translateY(0) scale(1) rotateX(0deg);
  transition:
    opacity 0.8s ease calc(var(--portfolio-order) * 70ms),
    clip-path 1s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--portfolio-order) * 70ms),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--portfolio-order) * 70ms),
    filter 0.8s ease calc(var(--portfolio-order) * 70ms),
    border-color 0.4s ease,
    box-shadow 0.5s ease;
  will-change: auto;
}

.portfolio-card.portfolio-motion.portfolio-in:hover,
.portfolio-card.portfolio-motion.portfolio-in.portfolio-hovering {
  z-index: 4;
  border-color: rgba(101, 232, 255, 0.34);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(101, 232, 255, 0.06),
    0 0 44px rgba(57, 188, 215, 0.1);
  transform: perspective(1100px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(-9px) scale(1.018);
  transition-delay: 0s;
  transition-duration: 0.18s, 0.18s, 0.18s, 0.18s, 0.35s, 0.45s;
  will-change: transform;
}

.portfolio-card.portfolio-hovering::before,
.portfolio-card:hover::after {
  opacity: 1;
}

.portfolio-media {
  isolation: isolate;
}

.portfolio-media::after {
  content: "";
  position: absolute;
  inset: -35% -55%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(159, 241, 255, 0.26) 50%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 62%
  );
  transform: translateX(-72%) skewX(-10deg);
  opacity: 0;
}

.portfolio-card:hover .portfolio-media::after {
  animation: portfolioSweep 1.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  min-width: 34px;
  height: 28px;
  padding: 0 9px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(6, 10, 17, 0.7);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.portfolio-card:hover .portfolio-number {
  color: #061217;
  border-color: rgba(157, 242, 255, 0.8);
  background: rgba(132, 238, 255, 0.95);
}

.portfolio-overlay span {
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-overlay span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portfolio-info {
  position: relative;
}

.portfolio-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), transparent);
  transition: width 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-info::before {
  width: calc(100% - 44px);
}

.portfolio-filtering-out {
  opacity: 0 !important;
  filter: blur(7px) saturate(0.6) !important;
  transform: perspective(900px) translateY(20px) scale(0.9) rotateX(-5deg) !important;
  transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease !important;
}

.portfolio-filtering-in {
  opacity: 0 !important;
  filter: blur(7px) saturate(0.65) !important;
  transform: perspective(900px) translateY(28px) scale(0.92) rotateX(6deg) !important;
  transition-delay: var(--filter-delay, 0ms) !important;
}

@keyframes portfolioSweep {
  0% {
    opacity: 0;
    transform: translateX(-72%) skewX(-10deg);
  }
  24% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translateX(72%) skewX(-10deg);
  }
}

/* Sobre */
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  left: -10%;
  bottom: -10%;
  border-radius: 50%;
  background: rgba(101, 232, 255, 0.1);
  filter: blur(70px);
}

.about-frame {
  max-width: 470px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-frame::before {
  inset: -14px 20px 20px -14px;
  z-index: -1;
  border: 1px solid rgba(214, 180, 108, 0.22);
  border-radius: 24px;
  background: transparent;
  opacity: 1;
}

.about-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  filter: saturate(0.76) contrast(1.03);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
}

.about-badge {
  right: -22px;
  bottom: 24px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  color: #aab5c5;
  background: rgba(8, 13, 21, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  font-size: 0.58rem;
}

.about-badge b {
  color: var(--primary);
}

.about-role {
  margin: 16px 0 22px;
  color: var(--secondary);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-bio {
  max-width: 640px;
  color: #9ba7b7;
  font-size: 1rem;
  line-height: 1.85;
}

.about-tags {
  gap: 8px;
  margin: 28px 0 34px;
}

.about-tag {
  padding: 8px 11px;
  border-color: var(--border);
  border-radius: 9px;
  color: #9aa6b8;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.61rem;
}

.about-tag svg {
  color: var(--primary);
}

/* Depoimentos */
.testimonials-wrap {
  position: relative;
}

.testimonials-slider {
  gap: 16px;
  padding: 2px 2px 18px;
}

.testimonial-card {
  flex: 0 0 min(420px, 88vw);
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(101, 232, 255, 0.1);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(101, 232, 255, 0.2);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--secondary);
}

.testimonial-text {
  position: relative;
  z-index: 1;
  margin: 22px 0 28px;
  color: #c5ccd7;
  font-size: 0.9rem;
  line-height: 1.8;
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--primary);
  background: #111a28;
}

.testimonial-name {
  color: white;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
}

.testimonial-role {
  color: #778498;
  font-size: 0.64rem;
}

.slider-controls {
  justify-content: flex-start;
  margin-top: 18px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-color: var(--border);
  border-radius: 12px;
  color: #b0bac8;
  background: rgba(255, 255, 255, 0.025);
}

.slider-btn:hover {
  color: #061217;
  border-color: var(--primary);
  background: var(--primary);
}

/* FAQ */
.faq-container {
  max-width: 950px;
}

.faq-list {
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
}

.faq-item.open {
  border-color: rgba(101, 232, 255, 0.22);
  background: rgba(101, 232, 255, 0.03);
}

.faq-question {
  padding: 23px 24px;
  color: #dfe5ed;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-transform: none;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--primary);
  background: rgba(101, 232, 255, 0.045);
}

.faq-answer-inner {
  padding: 0 72px 24px 24px;
  color: #8e9aad;
  font-size: 0.86rem;
  line-height: 1.8;
}

/* CTA final */
.cta-final {
  padding-top: clamp(80px, 9vw, 120px);
}

.cta-box {
  max-width: none;
  padding: clamp(52px, 8vw, 96px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 34%, rgba(101, 232, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #0d1724 0%, #0b111b 52%, #11150f 130%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.06);
}

.cta-box::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 1;
  animation: none;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -150px;
  top: -170px;
  border: 1px solid rgba(214, 180, 108, 0.18);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 48px rgba(214, 180, 108, 0.025), 0 0 0 96px rgba(214, 180, 108, 0.015);
}

.cta-watermark {
  right: -5%;
  bottom: -25%;
  width: 44%;
  max-width: 520px;
  opacity: 0.035;
  filter: grayscale(1);
}

.cta-terminal-line {
  color: var(--secondary);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-title {
  max-width: 830px;
  margin: 18px auto 20px;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5.6vw, 5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.07em;
  text-transform: none;
}

.cta-desc {
  max-width: 610px;
  margin-bottom: 30px;
  color: #9da8b8;
  font-size: 0.96rem;
}

.cta-meta {
  margin-top: 28px;
  gap: 20px;
  color: #7f8b9d;
  font-family: var(--font-body);
  font-size: 0.59rem;
  letter-spacing: 0.04em;
}

.cta-meta svg {
  color: var(--primary);
}

/* Rodapé */
footer {
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  background: #060910;
}

.footer-grid {
  grid-template-columns: 1.5fr 0.65fr 1fr;
  gap: 60px;
}

.footer-desc {
  max-width: 440px;
  color: #778497;
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-title {
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col {
  gap: 11px;
}

.footer-col a,
.footer-city {
  color: #8793a5;
  font-size: 0.78rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.social-link {
  width: 40px;
  height: 40px;
  border-color: var(--border);
  border-radius: 11px;
  color: #9aa6b7;
  background: rgba(255, 255, 255, 0.025);
}

.social-link:hover {
  color: #061217;
  border-color: var(--primary);
  background: var(--primary);
}

.footer-bottom {
  margin-top: 64px;
  border-top-color: rgba(255, 255, 255, 0.065);
  color: #5f6c7f;
  font-size: 0.65rem;
}

.footer-credit a {
  color: #9da9ba;
}

/* WhatsApp */
.whatsapp-float {
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #20c96b;
  box-shadow: 0 16px 36px rgba(15, 154, 78, 0.28), inset 0 1px rgba(255, 255, 255, 0.35);
}

.whatsapp-float::before {
  border-color: rgba(36, 215, 127, 0.35);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  background: #28dc79;
}

/* Movimento */
.reveal {
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  transform: translateY(0);
}

@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  header .nav-cta { display: inline-flex; min-height: 44px; padding-inline: 19px; }
  .hamburger { display: none; }
}

@media (max-width: 1099px) {
  .hero {
    min-height: auto;
    padding-top: 138px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 44px;
  }

  .hero-title {
    font-size: clamp(2.9rem, 5.8vw, 4.4rem);
  }

  .showcase-footer span:nth-child(2) {
    display: none;
  }

  .service-card {
    min-height: 500px;
  }
}

@media (max-width: 899px) {
  header { padding-top: 10px; }

  .nav-inner {
    height: 62px;
    padding-inline: 14px;
    border-radius: 16px;
  }

  .hero {
    padding: 128px 0 84px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 9vw, 4.7rem);
  }

  .hero-terminal {
    max-width: 680px;
    justify-self: center;
  }

  .showcase-media {
    aspect-ratio: 1.45 / 1;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-meta {
    margin-top: 30px;
  }

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

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .process-step:last-child {
    grid-column: 1 / -1;
  }

  .portfolio-card,
  .portfolio-card:first-child {
    grid-column: span 6;
  }

  .portfolio-card:first-child .portfolio-media {
    aspect-ratio: 1.45 / 1;
  }

  .about-grid {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 699px) {
  body::before {
    background-size: 52px 52px;
  }

  .container {
    padding-inline: 20px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-mark {
    height: 34px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-eyebrow {
    margin-bottom: 24px;
    font-size: 0.57rem;
  }

  .hero-title {
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 11vw, 3.55rem);
    letter-spacing: -0.075em;
  }

  .hero-line:last-child span {
    font-size: 0.96em;
  }

  .hero-sub {
    font-size: 0.94rem;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .hero-stat {
    min-width: 0;
    padding: 0 12px;
  }

  .hero-stat-num {
    font-size: 1.05rem;
  }

  .hero-stat-label {
    font-size: 0.5rem;
    line-height: 1.45;
  }

  .hero-terminal {
    padding: 10px 3px 16px;
  }

  .showcase-shell {
    border-radius: 18px;
    transform: none;
  }

  .hero-terminal:hover .showcase-shell {
    transform: translateY(-3px);
  }

  .showcase-bar {
    height: 42px;
    padding-inline: 13px;
  }

  .showcase-url {
    display: none;
  }

  .showcase-media {
    aspect-ratio: 1.1 / 1;
  }

  .showcase-caption {
    left: 20px;
    bottom: 20px;
  }

  .showcase-caption strong {
    font-size: 1.65rem;
  }

  .showcase-footer {
    padding-inline: 13px;
    gap: 8px;
  }

  .showcase-footer span:nth-child(3) {
    display: none;
  }

  .hero-proof-top {
    top: -16px;
    right: -5px;
    transform: scale(0.88);
    transform-origin: top right;
  }

  .hero-proof-bottom {
    left: -8px;
    bottom: -14px;
    transform: scale(0.88);
    transform-origin: bottom left;
  }

  .hero-scroll-hint {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .section-desc {
    font-size: 0.9rem;
  }

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

  .feature-card {
    min-height: auto;
    padding: 24px;
  }

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

  .process-step:last-child {
    grid-column: auto;
  }

  .process-step {
    padding: 26px 0;
  }

  .process-num {
    margin-bottom: 18px;
  }

  .process-desc {
    max-width: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

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

  .portfolio-card,
  .portfolio-card:first-child {
    grid-column: 1;
  }

  .portfolio-media,
  .portfolio-card:first-child .portfolio-media {
    aspect-ratio: 1.35 / 1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-frame {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-badge {
    right: -8px;
  }

  .testimonial-card {
    min-height: 300px;
    padding: 24px;
  }

  .faq-question {
    padding: 20px;
    gap: 20px;
  }

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

  .cta-box {
    padding: 48px 22px;
    border-radius: 22px;
  }

  .cta-title {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .cta-meta {
    flex-direction: column;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-shell,
  .showcase-media img,
  .service-card,
  .portfolio-card,
  .testimonial-card {
    transition: none !important;
  }
}

@media (max-width: 899px), (hover: none) {
  .portfolio-card.portfolio-motion {
    clip-path: inset(0 0 55% 0 round 20px);
    filter: blur(3px) saturate(0.82);
    transform: translateY(38px) scale(0.97);
  }

  .portfolio-card.portfolio-motion.portfolio-in,
  .portfolio-card.portfolio-motion.portfolio-in:hover {
    clip-path: inset(0 0 0 0 round 20px);
    filter: none;
    transform: translateY(0) scale(1);
    transition-delay: calc(var(--portfolio-order) * 45ms);
  }

  .portfolio-card::before,
  .portfolio-card::after,
  .portfolio-media::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card.portfolio-motion,
  .portfolio-card.portfolio-motion.portfolio-in,
  .portfolio-card.portfolio-motion.portfolio-in:hover {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }

  .portfolio-media::after {
    animation: none !important;
  }
}
