:root {
  --bg: #02050c;
  --bg2: #07101e;
  --panel: #081426;
  --panel2: #0b1a2f;
  --line: rgba(135, 185, 255, 0.15);
  --text: #f7fbff;
  --muted: #a5b5cc;
  --muted2: #7386a1;
  --blue: #119cff;
  --cyan: #55dcff;
  --purple: #8d39ff;
  --pink: #dc62ff;
  --radius: 22px;
  --container: 1240px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at 80% 2%,
      rgba(20, 116, 255, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at 15% 35%,
      rgba(92, 30, 255, 0.08),
      transparent 22%
    ),
    linear-gradient(180deg, #02040a, #030711 42%, #030815 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    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: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 90%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 0,
    transparent 0 32%,
    rgba(0, 0, 0, 0.18) 75%,
    rgba(0, 0, 0, 0.4)
  );
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.section {
  position: relative;
  padding: 118px 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 1000;
  padding: 9px 12px;
  border-radius: 10px;
  background: #fff;
  color: #07101c;
  transform: translateY(-150%);
  transition: transform 0.2s;
}
.skip-link:focus {
  transform: none;
}
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: 0.024;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background: radial-gradient(
    circle,
    rgba(40, 164, 255, 0.18),
    rgba(40, 164, 255, 0) 68%
  );
  transform: translate(-50%, -50%);
  filter: blur(8px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #dce8f8;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 850;
}
.eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 0 14px rgba(17, 156, 255, 0.75);
}
h1,
h2,
h3 {
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3.5rem, 6.6vw, 6.7rem);
  line-height: 0.93;
  margin: 20px 0 25px;
  max-width: 800px;
}
h1 strong {
  display: block;
}
h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 1.02;
  margin: 18px 0 18px;
  max-width: 850px;
}
h2 em,
h3 em {
  font-style: normal;
  background: linear-gradient(90deg, #7eeaff, #2b9fff 48%, #c06fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text {
  background: linear-gradient(90deg, #76eaff, #2e9eff 45%, #b969ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-heading p {
  max-width: 730px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}
.section-heading.left {
  text-align: left;
}
.section-heading.left p {
  margin: 0;
}
/*
  Botões:
  são os principais elementos de ação da página, como "Quero impulsionar minha empresa".
*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-transform: uppercase;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  font-weight: 850;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.btn span {
  font-size: 1.08em;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary {
  background: linear-gradient(105deg, #087dff 0%, #3a4bff 55%, #8d32ff 100%);
  box-shadow: 0 16px 44px rgba(40, 89, 255, 0.24);
  border-color: rgba(133, 199, 255, 0.33);
}
.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(77, 71, 255, 0.34);
}
.btn-ghost {
  background: rgba(8, 18, 33, 0.68);
  backdrop-filter: blur(14px);
}
.btn-ghost:hover {
  border-color: rgba(87, 180, 255, 0.58);
  background: rgba(11, 24, 42, 0.9);
}
:focus-visible {
  outline: 3px solid rgba(86, 215, 255, 0.85);
  outline-offset: 3px;
}
/*
  Cabeçalho fixo:
  mantém o menu sempre visível no topo da tela e troca o visual ao rolar a página.
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: rgba(2, 6, 15, 0.48);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}
.site-header.scrolled {
  background: rgba(2, 6, 15, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand img {
  width: 245px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.main-nav a {
  color: #c8d5e7;
  font-size: 0.79rem;
  font-weight: 760;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #66ddff;
}
.btn-header {
  min-height: 44px;
  padding: 0 16px;
  margin-left: 6px;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
}
/*
  Hero section:
  é a parte principal da landing page.
  Aqui ficam a mensagem principal, o botão de ação e a visualização do produto.
*/
.hero {
  min-height: 960px;
  padding-top: 135px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 74% 43%,
      rgba(25, 137, 255, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 55%,
      rgba(172, 55, 255, 0.11),
      transparent 22%
    ),
    linear-gradient(
      120deg,
      transparent 0 47%,
      rgba(46, 165, 255, 0.028) 47% 47.2%,
      transparent 47.2%
    );
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 2;
}
.hero-copy {
  position: relative;
  z-index: 4;
}
.hero-text {
  max-width: 680px;
  font-size: 1.08rem;
  color: #aebed2;
  line-height: 1.78;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 660px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.hero-proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  align-items: center;
}
.hero-proof-item span {
  grid-row: 1/3;
  color: #4b82b8;
  font-size: 0.66rem;
  font-weight: 900;
}
.hero-proof-item b {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-proof-item small {
  color: #71849e;
  font-size: 0.68rem;
}
.hero-visual {
  min-height: 690px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.visual-backdrop {
  position: absolute;
  width: 92%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 45% 45%,
    rgba(19, 126, 255, 0.22),
    rgba(54, 39, 160, 0.08) 38%,
    transparent 66%
  );
  filter: blur(16px);
}
.hero-rings {
  position: absolute;
  right: 6%;
  top: 15%;
  width: 56vw;
  max-width: 770px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(55, 187, 255, 0.1);
  transform: rotate(-12deg);
  pointer-events: none;
}
.hero-rings i {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(67, 148, 255, 0.12);
}
.hero-rings i:nth-child(2) {
  inset: 14%;
  border-color: rgba(160, 70, 255, 0.11);
}
.hero-rings i:nth-child(3) {
  inset: 25%;
  border-color: rgba(87, 220, 255, 0.1);
}
.visual-orbit {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  transform: rotate(-11deg);
}
.orbit-1 {
  width: 92%;
  height: 42%;
  border: 1px solid rgba(65, 212, 255, 0.26);
  box-shadow: 0 0 40px rgba(35, 144, 255, 0.1);
}
.orbit-2 {
  width: 75%;
  height: 33%;
  border: 1px solid rgba(179, 75, 255, 0.16);
}
.visual-floor {
  position: absolute;
  bottom: 13%;
  width: 77%;
  height: 12%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(20, 147, 255, 0.36),
    rgba(120, 42, 255, 0.09) 38%,
    transparent 72%
  );
  filter: blur(7px);
  z-index: 1;
}
.visual-glow {
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 158, 255, 0.17),
    rgba(146, 45, 255, 0.08),
    transparent 70%
  );
  filter: blur(22px);
  z-index: 1;
}
.hero-icon-shell {
  position: relative;
  width: min(635px, 100%);
  z-index: 4;
  filter: drop-shadow(0 34px 52px rgba(0, 0, 0, 0.64))
    drop-shadow(0 0 32px rgba(22, 151, 255, 0.26));
  transform: translateZ(25px);
}
.hero-icon {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 12px;
  animation: float 7s ease-in-out infinite;
}
.visual-data {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(100, 192, 255, 0.24);
  background: rgba(5, 16, 31, 0.62);
  backdrop-filter: blur(10px);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22);
  font-size: 0.63rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.visual-data b {
  display: block;
  color: #bdeeff;
}
.visual-data span {
  display: block;
  color: #6e8eaf;
  margin-top: 3px;
}
.data-1 {
  top: 18%;
  right: 1%;
}
.data-2 {
  bottom: 21%;
  left: 2%;
}
.data-3 {
  bottom: 8%;
  right: 9%;
}
.circuit {
  position: absolute;
  opacity: 0.19;
  width: 430px;
  height: 250px;
  background:
    linear-gradient(
      90deg,
      transparent 0 14%,
      rgba(71, 170, 255, 0.55) 14% 14.4%,
      transparent 14.4% 51%,
      rgba(71, 170, 255, 0.55) 51% 51.4%,
      transparent 51.4%
    ),
    linear-gradient(
      transparent 0 24%,
      rgba(71, 170, 255, 0.4) 24% 24.4%,
      transparent 24.4% 67%,
      rgba(71, 170, 255, 0.4) 67% 67.4%,
      transparent 67.4%
    );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
}
.circuit-a {
  top: 200px;
  right: -130px;
  transform: rotate(11deg);
}
.circuit-b {
  left: -180px;
  bottom: 40px;
  transform: rotate(-14deg);
}
.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #61758f;
  display: flex;
  align-items: center;
  gap: 9px;
}
.scroll-cue span {
  display: block;
  width: 4px;
  height: 26px;
  border: 1px solid #4186b3;
  border-radius: 3px;
  position: relative;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 2px;
  height: 8px;
  background: #55dcff;
  transform: translateX(-50%);
  animation: scroll 1.7s infinite;
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 13, 25, 0.52);
}
.trust-grid {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #8298b4;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
.trust-grid i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #39baff;
  box-shadow: 0 0 14px rgba(57, 186, 255, 0.7);
}
.problem {
  background: linear-gradient(
    180deg,
    rgba(3, 9, 18, 0.25),
    rgba(7, 15, 29, 0.64)
  );
}
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.problem-copy {
  border-left: 1px solid rgba(91, 173, 255, 0.24);
  padding-left: 34px;
}
.problem-copy p {
  color: #a9bbd2;
  line-height: 1.82;
  margin-bottom: 18px;
}
.problem-copy b {
  color: #fff;
}
.mini-quote {
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
  color: #d6e7fb;
  line-height: 1.65;
}
.services {
  border-top: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(5, 12, 23, 0.88),
    rgba(3, 8, 17, 0.94)
  );
}
/*
  Cards de serviços:
  cada item representa uma solução da empresa, com destaque, ícone e descrição.
*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(
    155deg,
    rgba(10, 25, 45, 0.92),
    rgba(4, 10, 20, 0.9)
  );
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s,
    box-shadow 0.28s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  opacity: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 20%),
    rgba(60, 184, 255, 0.16),
    transparent 34%
  );
  transition: opacity 0.28s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(75, 179, 255, 0.4);
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.35);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card-featured {
  background: linear-gradient(
    155deg,
    rgba(10, 31, 57, 0.98),
    rgba(5, 10, 21, 0.94)
  );
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-index {
  font-size: 0.65rem;
  color: #54779e;
  letter-spacing: 0.12em;
  font-weight: 900;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(83, 189, 255, 0.2);
  font-weight: 900;
  font-size: 1.12rem;
  box-shadow: inset 0 0 28px rgba(43, 147, 255, 0.08);
}
.service-icon.blue {
  color: #5ae0ff;
  background: rgba(0, 120, 255, 0.08);
}
.service-icon.purple {
  color: #c26fff;
  background: rgba(135, 40, 255, 0.09);
}
.service-kicker {
  display: block;
  font-size: 0.63rem;
  color: #6d8aac;
  letter-spacing: 0.12em;
  font-weight: 850;
  margin-top: 20px;
}
.service-card h3 {
  margin: 7px 0 11px;
  font-size: 1.35rem;
}
.service-card p {
  color: #97abc5;
  font-size: 0.85rem;
  line-height: 1.7;
  min-height: 105px;
  margin-bottom: 15px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-card li {
  border: 1px solid rgba(124, 164, 210, 0.13);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 999px;
  padding: 6px 9px;
  color: #7f96b2;
  font-size: 0.62rem;
}
.service-link {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 900;
  color: #d6edff;
}
.service-link span {
  color: #50dfff;
}
.service-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(7, 16, 31, 0.65);
}
.service-cta b {
  display: block;
  font-size: 0.86rem;
}
.service-cta span {
  display: block;
  color: #748ba8;
  font-size: 0.75rem;
  margin-top: 3px;
}
.method {
  overflow: hidden;
}
.method-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 35px;
}
.method-line {
  position: absolute;
  top: 44px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(65, 177, 255, 0.15),
    rgba(64, 188, 255, 0.5),
    rgba(183, 73, 255, 0.45),
    rgba(64, 188, 255, 0.15)
  );
}
.method-step {
  position: relative;
  z-index: 2;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 16, 30, 0.8);
  min-height: 180px;
}
.method-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid rgba(68, 186, 255, 0.32);
  background: rgba(19, 95, 155, 0.1);
  color: #62dbff;
  font-size: 0.7rem;
  font-weight: 950;
}
.method-step b {
  display: block;
  font-size: 1rem;
  margin-top: 20px;
}
.method-step p {
  color: #7990ad;
  font-size: 0.81rem;
  line-height: 1.65;
}
.method-callout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
  padding: 26px 28px;
  border-radius: 20px;
  border: 1px solid rgba(72, 173, 255, 0.19);
  background: linear-gradient(
    105deg,
    rgba(15, 37, 64, 0.72),
    rgba(47, 17, 68, 0.32)
  );
  position: relative;
  overflow: hidden;
}
.method-callout::after {
  content: "";
  position: absolute;
  inset: auto -5% -65%;
  height: 150px;
  background: radial-gradient(
    ellipse,
    rgba(40, 168, 255, 0.16),
    transparent 65%
  );
}
.method-callout h3 {
  margin: 8px 0 0;
  font-size: 1.6rem;
  max-width: 750px;
}
.method-callout > p {
  color: #8fa4bf;
  margin: 0;
  line-height: 1.65;
}
.portfolio {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(4, 10, 19, 0.92),
    rgba(2, 7, 15, 0.98)
  );
}
.portfolio-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
/*
  Portfólio:
  organiza os cards em camadas para criar um visual mais profissional e dinâmico.
*/
.portfolio-stage {
  min-height: 560px;
  position: relative;
}
.showcase-card {
  position: absolute;
  border: 1px solid rgba(115, 177, 242, 0.23);
  border-radius: 19px;
  background: #071123;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.44);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.showcase-card:hover {
  z-index: 6;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.55);
}
.showcase-a {
  left: 0;
  top: 26px;
  width: 47%;
  transform: rotate(-4deg);
}
.showcase-a:hover {
  transform: rotate(-1deg) translateY(-8px);
}
.showcase-b {
  right: 0;
  top: 76px;
  width: 47%;
  transform: rotate(3.5deg);
}
.showcase-b:hover {
  transform: rotate(1deg) translateY(-8px);
}
.showcase-c {
  left: 20%;
  bottom: 0;
  width: 55%;
  transform: rotate(-0.5deg);
}
.showcase-c:hover {
  transform: translateY(-8px);
}
.mock-browser {
  height: 32px;
  background: #0c192c;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(113, 155, 205, 0.1);
}
.mock-browser span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4e637e;
}
.mock-browser b {
  margin-left: auto;
  font-size: 0.56rem;
  color: #627a9a;
  letter-spacing: 0.07em;
}
.mock-ui {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
}
.ui-a {
  background:
    radial-gradient(
      circle at 83% 24%,
      rgba(42, 190, 255, 0.26),
      transparent 28%
    ),
    linear-gradient(145deg, #0f2c47, #0a1020 57%, #1a1233);
}
.ui-b {
  background:
    radial-gradient(circle at 18% 0, rgba(180, 73, 255, 0.22), transparent 30%),
    linear-gradient(145deg, #241937, #0b1020 58%, #172449);
}
.ui-c {
  background:
    radial-gradient(circle at 50% 0, rgba(64, 183, 255, 0.25), transparent 26%),
    linear-gradient(145deg, #15263d, #08101e 58%, #0e1c2a);
}
.ui-badge {
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  color: #7edcff;
  font-weight: 900;
}
.mock-ui h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin: 42px 0 12px;
  max-width: 370px;
}
.mock-ui p {
  color: #89a2bd;
  font-size: 0.82rem;
  max-width: 280px;
}
.mock-ui button {
  margin-top: 18px;
  border: 1px solid rgba(106, 212, 255, 0.45);
  background: rgba(10, 35, 61, 0.55);
  color: #dcf8ff;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.58rem;
  font-weight: 900;
}
.ui-sphere {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -45px;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 26%,
    #fff,
    rgba(77, 212, 255, 0.7) 13%,
    rgba(24, 107, 255, 0.55) 37%,
    rgba(117, 37, 255, 0.22) 64%,
    transparent 72%
  );
  filter: blur(0.4px);
  box-shadow: 0 0 60px rgba(29, 151, 255, 0.25);
}
.product-grid {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 26px;
  bottom: 36px;
}
.product-grid i {
  display: block;
  width: 56px;
  height: 76px;
  border-radius: 9px;
  border: 1px solid rgba(147, 185, 230, 0.2);
  background: linear-gradient(
    160deg,
    rgba(91, 212, 255, 0.3),
    rgba(135, 52, 255, 0.18)
  );
  box-shadow: inset 0 0 25px rgba(41, 175, 255, 0.12);
}
.product-grid i:nth-child(2) {
  height: 98px;
}
.product-grid i:nth-child(3) {
  height: 64px;
}
.ui-pill {
  position: absolute;
  left: 30px;
  bottom: 36px;
  border: 1px solid rgba(205, 117, 255, 0.28);
  background: rgba(126, 45, 170, 0.12);
  padding: 8px 11px;
  border-radius: 8px;
  color: #d9a0ff;
  font-size: 0.6rem;
  font-weight: 900;
}
.dashboard-bars {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 35px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.dashboard-bars i {
  display: block;
  flex: 1;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, #59dbff, #2466ff);
  box-shadow: 0 0 22px rgba(39, 139, 255, 0.15);
}
.dashboard-bars i:nth-child(1) {
  height: 32%;
}
.dashboard-bars i:nth-child(2) {
  height: 55%;
}
.dashboard-bars i:nth-child(3) {
  height: 45%;
}
.dashboard-bars i:nth-child(4) {
  height: 78%;
}
.dashboard-bars i:nth-child(5) {
  height: 96%;
}
.ui-node {
  position: absolute;
  right: 34px;
  top: 75px;
  padding: 10px 12px;
  border: 1px solid rgba(81, 201, 255, 0.38);
  border-radius: 10px;
  background: rgba(13, 50, 81, 0.35);
  color: #7de5ff;
  font-weight: 900;
  font-size: 0.7rem;
}
.showcase-footer {
  height: 61px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(110, 167, 223, 0.12);
}
.showcase-footer b {
  font-size: 0.75rem;
}
.showcase-footer span {
  color: #647b98;
  font-size: 0.63rem;
}
.advantage {
  background: linear-gradient(
    180deg,
    rgba(3, 8, 16, 0.88),
    rgba(5, 12, 25, 0.8)
  );
}
.advantage-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}
.advantage-visual {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}
.advantage-core {
  width: 180px;
  height: 180px;
  border-radius: 38px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  background: linear-gradient(150deg, #0f2642, #080f1d);
  border: 1px solid rgba(89, 188, 255, 0.42);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 40px rgba(38, 145, 255, 0.12);
  transform: rotate(-8deg);
  position: relative;
  z-index: 5;
}
.advantage-core::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 44px;
  border: 1px solid rgba(69, 201, 255, 0.16);
}
.advantage-core span {
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 950;
  background: linear-gradient(90deg, #fff, #55d8ff 55%, #ac60ff);
  -webkit-background-clip: text;
  color: transparent;
}
.advantage-core small {
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  color: #6f8cac;
}
.advantage-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77, 190, 255, 0.16);
  transform: rotate(-17deg);
}
.advantage-orbit.a {
  width: 85%;
  height: 46%;
}
.advantage-orbit.b {
  width: 67%;
  height: 37%;
  border-color: rgba(167, 78, 255, 0.14);
}
.advantage-orbit.c {
  width: 52%;
  height: 30%;
  border-color: rgba(98, 220, 255, 0.1);
}
.advantage-chip {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid rgba(98, 192, 255, 0.22);
  border-radius: 9px;
  background: rgba(6, 17, 31, 0.8);
  color: #9bdfff;
  font-size: 0.57rem;
  letter-spacing: 0.11em;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.chip-a {
  top: 22%;
  right: 8%;
}
.chip-b {
  bottom: 20%;
  left: 6%;
  color: #bb8bff;
}
.chip-c {
  top: 12%;
  left: 11%;
  color: #d5e7f8;
}
.advantage-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.advantage-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.advantage-list span {
  font-size: 0.65rem;
  color: #5688b8;
  font-weight: 900;
}
.advantage-list b {
  font-size: 0.9rem;
}
.advantage-list p {
  grid-column: 2;
  margin: 3px 0 0;
  color: #7489a2;
  font-size: 0.76rem;
  line-height: 1.55;
}
.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(7, 15, 28, 0.72),
    rgba(2, 6, 13, 0.9)
  );
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-copy > p {
  max-width: 660px;
  color: #a1b3c9;
  line-height: 1.78;
}
.about-badge {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(8, 19, 34, 0.6);
  width: max-content;
}
.about-badge strong {
  font-size: 2.7rem;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #60d8ff);
  -webkit-background-clip: text;
  color: transparent;
}
.about-badge b {
  display: block;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-badge span {
  display: block;
  margin-top: 3px;
  color: #738aa4;
  font-size: 0.67rem;
}
.about-panel {
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(97, 179, 255, 0.2);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(12, 30, 53, 0.9),
    rgba(4, 10, 19, 0.94)
  );
  overflow: hidden;
  padding: 34px;
  box-shadow: var(--shadow);
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 74% 38%,
      rgba(0, 160, 255, 0.16),
      transparent 32%
    ),
    radial-gradient(circle at 30% 75%, rgba(162, 49, 255, 0.1), transparent 30%);
}
.panel-line {
  height: 2px;
  width: 76px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 0 18px rgba(43, 158, 255, 0.5);
}
.panel-label {
  display: block;
  margin-top: 22px;
  color: #69829f;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  font-weight: 900;
}
.about-flow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 72px;
}
.about-flow div {
  padding: 14px 13px;
  border: 1px solid rgba(125, 177, 229, 0.16);
  border-radius: 11px;
  background: rgba(6, 16, 30, 0.76);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.about-flow i {
  font-style: normal;
  color: #54d9ff;
  font-weight: 900;
}
.about-flow .active {
  border-color: rgba(86, 204, 255, 0.52);
  color: #c8efff;
  box-shadow: 0 0 30px rgba(43, 169, 255, 0.11);
}
.about-panel p {
  position: relative;
  z-index: 2;
  color: #7c90a9;
  font-size: 0.75rem;
  line-height: 1.65;
  max-width: 500px;
  margin-top: 40px;
}
.faq {
  background: linear-gradient(
    180deg,
    rgba(2, 6, 14, 0.88),
    rgba(5, 12, 24, 0.9)
  );
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 0.96rem;
  font-weight: 780;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  color: #57d9ff;
  font-size: 1.2rem;
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: "–";
}
.faq-list p {
  margin: 0 0 20px;
  color: #7f94ae;
  line-height: 1.7;
  font-size: 0.81rem;
  max-width: 680px;
}
.cta {
  overflow: hidden;
}
.cta-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 45%,
      rgba(12, 144, 255, 0.15),
      transparent 22%
    ),
    radial-gradient(
      circle at 86% 40%,
      rgba(177, 53, 255, 0.13),
      transparent 22%
    ),
    linear-gradient(
      120deg,
      transparent 0 50%,
      rgba(55, 166, 255, 0.035) 50% 50.2%,
      transparent 50.2%
    );
}
.cta-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.cta-copy h2 {
  max-width: 680px;
}
.cta-copy > p {
  max-width: 560px;
  line-height: 1.75;
}
.cta-benefits {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 23px;
}
.cta-benefits span {
  padding: 7px 9px;
  border: 1px solid rgba(117, 174, 223, 0.15);
  border-radius: 999px;
  color: #86a0bc;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/*
  Formulário de contato:
  estrutura o envio do briefing do cliente em etapas mais simples de entender.
*/
.contact-form {
  padding: 28px;
  border: 1px solid rgba(113, 182, 255, 0.2);
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(10, 25, 45, 0.9),
    rgba(4, 10, 20, 0.92)
  );
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.form-progress span {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: rgba(100, 160, 220, 0.13);
  transition: background 0.25s;
}
.form-progress span.active {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 0 12px rgba(39, 146, 255, 0.35);
}
.form-title .step-label {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  color: #62dcff;
  font-weight: 900;
}
.form-title h3 {
  font-size: 1.55rem;
  margin: 6px 0 3px;
}
.form-title p {
  font-size: 0.76rem;
  color: #6f849f;
  margin-bottom: 18px;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: stepIn 0.35s var(--ease);
}
.contact-form label {
  display: block;
  color: #a9bdd7;
  font-size: 0.73rem;
  font-weight: 760;
  margin-top: 13px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(112, 167, 222, 0.17);
  border-radius: 12px;
  background: #061021;
  color: #edf7ff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #64dfff 50%),
    linear-gradient(135deg, #64dfff 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  padding-right: 35px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #4d657f;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(83, 193, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(38, 145, 255, 0.1);
}
.contact-form .btn {
  margin-top: 16px;
  width: 100%;
}
.form-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
.form-nav .btn:first-child {
  width: auto;
}
.form-note {
  font-size: 0.62rem;
  color: #596e87;
  line-height: 1.5;
  margin: 12px 0 0;
}
.form-note.success {
  color: #71e6b6;
}
.mobile-cta {
  display: none;
}
.contact-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 96;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #13bf8b, #0a8d6a);
  box-shadow: 0 14px 36px rgba(5, 160, 112, 0.28);
  border: 1px solid rgba(190, 255, 238, 0.2);
  transition: transform 0.2s;
}
.contact-fab:hover {
  transform: translateY(-4px);
}
.contact-fab span {
  font-weight: 950;
  font-size: 0.58rem;
  color: #effff9;
}
.back-top {
  position: fixed;
  right: 84px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(8, 17, 31, 0.88);
  border: 1px solid var(--line);
  color: #63dcff;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.25s;
  z-index: 95;
}
.back-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
/*
  Rodapé:
  responsável por fechar a página com marca, links, redes e contato.
*/
.site-footer {
  border-top: 1px solid var(--line);
  background: #02050b;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 0.9fr;
  gap: 38px;
  padding: 65px 0 42px;
}
.footer-brand img {
  width: 220px;
}
.footer-brand-col p {
  max-width: 340px;
  color: #71849e;
  font-size: 0.76rem;
  line-height: 1.7;
  margin-top: 18px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col > span {
  text-transform: uppercase;
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  font-weight: 900;
  color: #8fa5c0;
  margin-bottom: 5px;
}
.footer-col a,
.footer-col small {
  font-size: 0.73rem;
  color: #62758e;
}
.footer-col a:hover {
  color: #62ddff;
}
.footer-col small {
  margin-top: 6px;
}
.footer-bottom {
  min-height: 66px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #52657f;
  font-size: 0.66rem;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay {
  transition-delay: 0.11s;
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotateZ(0);
  }
  50% {
    transform: translateY(-10px) rotateZ(0.5deg);
  }
}
@keyframes scroll {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.5;
  }
  45% {
    transform: translate(-50%, 7px);
    opacity: 1;
  }
}
@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/*
  Media queries:
  ajustam o layout para telas menores, como tablet e celular.
*/
@media (max-width: 1120px) {
  .main-nav {
    gap: 15px;
  }
  .nav-wrap {
    gap: 15px;
  }
  .brand img {
    width: 210px;
  }
  .hero-content {
    grid-template-columns: 1fr 0.95fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-stage {
    min-height: 650px;
  }
  .showcase-a {
    width: 52%;
  }
  .showcase-b {
    width: 52%;
  }
  .showcase-c {
    width: 63%;
    left: 18%;
  }
  .footer-main {
    grid-template-columns: 1.25fr 0.75fr 0.75fr 0.95fr;
  }
}
@media (max-width: 840px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
  .section {
    padding: 88px 0;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(3, 8, 17, 0.97);
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 11px 10px;
  }
  .btn-header {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 84px;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 480px;
    order: -1;
  }
  .hero-icon-shell {
    width: min(520px, 95vw);
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-proof {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .hero-rings {
    right: -6%;
    top: 3%;
    width: 100vw;
    height: 420px;
  }
  .visual-data {
    display: none;
  }
  .scroll-cue {
    display: none;
  }
  .problem-layout,
  .advantage-layout,
  .about-layout,
  .faq-layout,
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-heading.left {
    max-width: 820px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .method-track {
    grid-template-columns: 1fr 1fr;
  }
  .method-line {
    display: none;
  }
  .method-callout {
    grid-template-columns: 1fr;
  }
  .portfolio-head {
    align-items: start;
    flex-direction: column;
  }
  .portfolio-stage {
    min-height: 610px;
  }
  .showcase-a {
    width: 64%;
    left: 1%;
    top: 15px;
  }
  .showcase-b {
    width: 64%;
    right: 1%;
    top: 78px;
  }
  .showcase-c {
    width: 72%;
    left: 14%;
    bottom: 2px;
  }
  .advantage-visual {
    min-height: 390px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }
  h2 {
    font-size: 2.35rem;
  }
  .brand img {
    width: 190px;
  }
  .hero-proof {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .hero-proof-item {
    grid-template-columns: auto 1fr;
  }
  .hero-visual {
    min-height: 390px;
  }
  .hero-icon-shell {
    width: 94vw;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card p {
    min-height: auto;
  }
  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .method-track {
    grid-template-columns: 1fr;
  }
  .method-step {
    min-height: auto;
  }
  .portfolio-stage {
    min-height: 655px;
  }
  .showcase-a {
    width: 84%;
    left: 0;
  }
  .showcase-b {
    width: 84%;
    right: 0;
    top: 94px;
  }
  .showcase-c {
    width: 86%;
    left: 7%;
    bottom: 0;
  }
  .mock-ui {
    min-height: 235px;
    padding: 22px;
  }
  .mock-ui h3 {
    font-size: 1.65rem;
    margin-top: 30px;
  }
  .showcase-footer {
    height: 56px;
  }
  .about-panel {
    min-height: 330px;
    padding: 24px;
  }
  .about-flow {
    margin-top: 52px;
  }
  .about-badge {
    width: 100%;
  }
  .advantage-visual {
    min-height: 340px;
  }
  .advantage-core {
    width: 160px;
    height: 160px;
  }
  .cta-benefits {
    display: grid;
  }
  .contact-form {
    padding: 21px;
  }
  .contact-fab {
    bottom: 86px;
    right: 16px;
  }
  .back-top {
    right: 16px;
    bottom: 26px;
  }
  .mobile-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 94;
    padding: 9px;
    border: 1px solid rgba(86, 183, 255, 0.23);
    border-radius: 16px;
    background: rgba(5, 12, 23, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 7px;
  }
  .mobile-cta span {
    font-size: 0.61rem;
    color: #7389a4;
  }
  .mobile-cta b {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .mobile-cta i {
    font-style: normal;
    color: #61dcff;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand-col {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 15px 0;
    gap: 6px;
    padding-bottom: 88px;
  }
  .cursor-glow {
    display: none;
  }
}
@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .btn,
  .service-card,
  .showcase-card,
  .hero-icon {
    transition: none;
    animation: none;
  }
  .fx-canvas,
  .cursor-glow {
    display: none;
  }
}
/* Premium refinement layer */
/* Solditech — premium UX/mobile refinement layer */
:root {
  --safe-bottom: max(16px, env(safe-area-inset-bottom));
  --mobile-gutter: 18px;
}
html {
  scroll-padding-top: 88px;
}
main section[id],
footer {
  scroll-margin-top: 88px;
}
body {
  min-width: 320px;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
.btn:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible,
.nav-toggle:focus-visible,
.back-top:focus-visible,
.contact-fab:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(85, 220, 255, 0.62);
  outline-offset: 3px;
}
.site-header {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-text {
  max-width: 680px;
}
.hero-actions {
  flex-wrap: wrap;
}
.hero-actions .btn {
  min-width: 190px;
}
.service-card {
  isolation: isolate;
}
.service-card .service-link {
  position: relative;
  z-index: 2;
}
.service-card ul {
  margin-bottom: 22px;
}
.portfolio-stage {
  overflow: hidden;
}
.showcase-card {
  will-change: transform;
}
.faq-list details {
  overflow: hidden;
}
.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
}
.contact-form {
  position: relative;
  z-index: 2;
}
.form-step .btn {
  min-width: 142px;
}
.form-note {
  line-height: 1.55;
}
.site-footer a:hover {
  color: var(--text);
}
.mobile-cta {
  display: none;
}
.contact-fab {
  display: grid;
  place-items: center;
}
.contact-fab svg {
  width: 22px;
  height: 22px;
  display: block;
}
@media (max-width: 840px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
  .section {
    padding: 82px 0;
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .nav-wrap {
    min-height: 72px;
  }
  .main-nav {
    top: 78px;
    max-height: calc(100vh - 94px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
  }
  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }
  .hero {
    padding-top: 98px;
    padding-bottom: 96px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-copy {
    order: 1;
  }
  .hero-visual {
    order: 2;
    min-height: 315px;
    margin: 2px auto 0;
    width: min(100%, 520px);
  }
  .hero-icon-shell {
    width: min(360px, 76vw);
  }
  .visual-orbit.orbit-1 {
    width: 72vw;
    height: 72vw;
    max-width: 380px;
    max-height: 380px;
  }
  .visual-orbit.orbit-2 {
    width: 58vw;
    height: 58vw;
    max-width: 300px;
    max-height: 300px;
  }
  .hero-rings {
    display: none;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 760px;
  }
  .hero-proof-item {
    min-width: 0;
  }
  .hero-proof-item b,
  .hero-proof-item small {
    white-space: normal;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-card {
    padding: 22px;
  }
  .service-card p {
    min-height: 0;
  }
  .service-cta {
    gap: 16px;
    padding: 22px;
  }
  .method-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .method-step {
    padding: 20px;
  }
  .portfolio-stage {
    min-height: 540px;
  }
  .showcase-a,
  .showcase-b,
  .showcase-c {
    transform: none !important;
  }
  .about-layout,
  .advantage-layout,
  .problem-layout,
  .faq-layout,
  .cta-layout {
    gap: 30px;
  }
  .contact-form {
    padding: 24px;
  }
  .form-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .form-nav .btn {
    width: 100%;
    min-width: 0;
  }
  .mobile-cta {
    display: block;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(9px + var(--safe-bottom));
    z-index: 94;
    padding: 8px;
    border: 1px solid rgba(86, 183, 255, 0.26);
    border-radius: 17px;
    background: rgba(5, 12, 23, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  }
  .mobile-cta a {
    min-height: 46px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 5px 8px;
  }
  .mobile-cta span {
    font-size: 0.62rem;
    color: #8ea3bf;
    line-height: 1.2;
  }
  .mobile-cta b {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: right;
  }
  .mobile-cta i {
    font-style: normal;
    color: #61dcff;
    font-size: 1.2em;
  }
  .back-top {
    bottom: calc(86px + var(--safe-bottom));
    right: 16px;
  }
  .contact-fab {
    bottom: calc(86px + var(--safe-bottom));
    left: 16px;
    right: auto;
    width: 48px;
    height: 48px;
  }
  .footer-bottom {
    padding-bottom: calc(86px + var(--safe-bottom));
  }
}
@media (max-width: 560px) {
  :root {
    --mobile-gutter: 16px;
  }
  .container {
    width: min(var(--container), calc(100% - 30px));
  }
  .section {
    padding: 72px 0;
  }
  .nav-wrap {
    min-height: 68px;
  }
  .brand img {
    width: 176px;
  }
  .nav-toggle {
    width: 46px;
    height: 46px;
  }
  .main-nav {
    left: 12px;
    right: 12px;
    top: 72px;
    border-radius: 17px;
  }
  h1 {
    font-size: clamp(2.55rem, 12.5vw, 4.1rem);
    line-height: 0.96;
    margin-top: 16px;
  }
  h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }
  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }
  .hero {
    padding-top: 88px;
    padding-bottom: 112px;
  }
  .hero-copy {
    text-align: left;
  }
  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-actions {
    margin-top: 22px;
  }
  .hero-actions .btn {
    min-height: 52px;
  }
  .hero-visual {
    min-height: 288px;
  }
  .hero-icon-shell {
    width: min(320px, 82vw);
  }
  .hero-proof {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 22px;
  }
  .hero-proof-item {
    grid-template-columns: 34px 1fr;
    align-items: start;
    padding: 11px 12px;
    border: 1px solid rgba(135, 185, 255, 0.1);
    border-radius: 14px;
    background: rgba(9, 18, 33, 0.45);
  }
  .hero-proof-item span {
    font-size: 0.66rem;
  }
  .hero-proof-item b {
    font-size: 0.78rem;
  }
  .hero-proof-item small {
    font-size: 0.68rem;
  }
  .trust-grid {
    overflow: hidden;
    gap: 14px;
    justify-content: flex-start;
    white-space: nowrap;
    font-size: 0.66rem;
  }
  .section-heading p {
    line-height: 1.7;
  }
  .service-card {
    border-radius: 18px;
  }
  .service-top {
    margin-bottom: 18px;
  }
  .service-card h3 {
    font-size: 1.55rem;
  }
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .service-card ul {
    gap: 7px;
    flex-wrap: wrap;
  }
  .service-card ul li {
    font-size: 0.62rem;
  }
  .service-link {
    min-height: 44px;
  }
  .service-cta {
    padding: 20px;
    border-radius: 18px;
  }
  .method-callout {
    padding: 22px;
  }
  .portfolio-stage {
    min-height: 520px;
  }
  .showcase-a {
    width: 96%;
    left: 2%;
    top: 0;
  }
  .showcase-b {
    width: 96%;
    right: 2%;
    top: 92px;
  }
  .showcase-c {
    width: 96%;
    left: 2%;
    bottom: 0;
  }
  .mock-ui {
    min-height: 215px;
    padding: 19px;
  }
  .mock-ui h3 {
    font-size: 1.45rem;
    margin-top: 27px;
  }
  .showcase-footer {
    height: 52px;
    padding: 0 14px;
    font-size: 0.62rem;
  }
  .advantage-visual {
    min-height: 300px;
  }
  .advantage-core {
    width: 146px;
    height: 146px;
  }
  .about-panel {
    min-height: 300px;
    padding: 21px;
  }
  .about-flow {
    gap: 8px;
    flex-wrap: wrap;
  }
  .cta {
    padding-bottom: 96px;
  }
  .contact-form {
    padding: 20px;
    border-radius: 19px;
  }
  .form-title h3 {
    font-size: 1.42rem;
  }
  .form-nav {
    grid-template-columns: 1fr;
  }
  .form-nav .btn {
    min-height: 50px;
  }
  .mobile-cta {
    left: 8px;
    right: 8px;
  }
}

/* Menu mobile: botão com estado visual claro e painel com hierarquia de navegação. */
@media (max-width: 840px) {
  .nav-toggle {
    position: relative;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(105, 191, 255, 0.36);
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(21, 53, 91, 0.92), rgba(7, 17, 33, 0.96));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
  }
  .nav-toggle:hover,
  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(102, 220, 255, 0.82);
    background: linear-gradient(145deg, rgba(22, 100, 166, 0.96), rgba(45, 42, 126, 0.96));
  }
  .nav-toggle[aria-expanded="true"] {
    transform: rotate(90deg);
  }
  .nav-toggle span {
    width: 20px;
    height: 2px;
    margin: 0;
    background: #ecf9ff;
    box-shadow: 0 0 8px rgba(85, 220, 255, 0.45);
  }
  .main-nav {
    top: 78px;
    padding: 10px;
    border: 1px solid rgba(106, 190, 255, 0.28);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(6, 20, 38, 0.99), rgba(3, 8, 18, 0.99));
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.025);
  }
  .main-nav::before {
    content: "NAVEGAÇÃO";
    display: block;
    padding: 5px 12px 10px;
    color: #70dfff;
    font-size: 0.59rem;
    font-weight: 850;
    letter-spacing: 0.16em;
  }
  .main-nav a {
    position: relative;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #d4e1f1;
    font-size: 0.78rem;
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
  }
  .main-nav a:hover,
  .main-nav a.active {
    padding-left: 19px;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(25, 137, 255, 0.2), rgba(130, 52, 255, 0.12));
  }
  .main-nav a.active::before {
    content: "";
    position: absolute;
    left: 7px;
    width: 3px;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(#55dcff, #8d39ff);
    box-shadow: 0 0 10px rgba(85, 220, 255, 0.72);
  }
}
@media (hover: none) {
  .btn:hover,
  .service-card:hover,
  .showcase-card:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-cta,
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
/* Mobile readability: portfolio becomes a clean vertical stack */
.contact-fab {
  display: grid;
  place-items: center;
}
.contact-fab svg {
  width: 22px;
  height: 22px;
  display: block;
}
@media (max-width: 560px) {
  .portfolio-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }
  .portfolio-stage .showcase-card {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
  .portfolio-stage .showcase-card .mock-ui {
    min-height: 205px;
  }
  .contact-fab {
    bottom: calc(86px + var(--safe-bottom));
    left: 16px;
    right: auto;
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 560px) {
  .site-header,
  .mobile-cta,
  .contact-form {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header {
    background: rgba(3, 8, 17, 0.96);
  }
  .mobile-cta {
    background: rgba(5, 12, 23, 0.96);
  }
  .contact-form {
    background: linear-gradient(
      155deg,
      rgba(10, 25, 45, 0.98),
      rgba(4, 10, 20, 0.98)
    );
  }
}
/* v3 — compact footer + social channels */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.footer-main {
  grid-template-columns: minmax(0, 1.6fr) minmax(120px, 0.65fr) minmax(0, 1fr);
  gap: 34px;
  padding: 42px 0 28px;
}
.footer-brand img {
  width: 190px;
}
.footer-brand-col p {
  max-width: 360px;
  margin: 12px 0 16px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 9px;
}
.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(135, 185, 255, 0.14);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(10, 23, 41, 0.55);
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease);
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 220, 255, 0.42);
  background: rgba(18, 38, 66, 0.8);
}
.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.social-link.instagram img {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.1));
}
.social-link.whatsapp img {
  width: 25px;
  height: 25px;
}
.social-link.mail {
  font-weight: 900;
  font-size: 1.05rem;
  color: #8feaff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact > span {
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 900;
  color: #8fa5c0;
}
.footer-contact > a {
  font-size: 0.76rem;
  color: #dce8f8;
  overflow-wrap: anywhere;
}
.footer-contact small {
  font-size: 0.68rem;
  color: #62758e;
  line-height: 1.5;
}
.footer-bottom {
  min-height: 54px;
  font-size: 0.63rem;
}
@media (max-width: 840px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding: 36px 0 22px;
  }
  .footer-brand-col {
    grid-column: 1/-1;
  }
  .footer-contact {
    grid-column: 2;
  }
}
@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    padding: 30px 0 20px;
  }
  .footer-brand-col {
    grid-column: 1/-1;
  }
  .footer-brand img {
    width: 165px;
  }
  .footer-brand-col p {
    font-size: 0.7rem;
    max-width: 300px;
  }
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .footer-col,
  .footer-contact {
    grid-column: auto;
  }
  .footer-col a,
  .footer-col small,
  .footer-contact > a {
    font-size: 0.68rem;
  }
  .footer-contact small {
    font-size: 0.62rem;
  }
  .footer-bottom {
    min-height: 58px;
    padding-top: 13px;
    padding-bottom: calc(76px + var(--safe-bottom));
    align-items: flex-start;
  }
}
/* v3.1 — footer ainda mais enxuto no mobile */
@media (max-width: 560px) {
  .site-footer {
    border-top-color: rgba(135, 185, 255, 0.11);
  }
  .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0 15px;
  }
  .footer-brand-col {
    grid-column: auto;
  }
  .footer-brand img {
    width: 148px;
  }
  .footer-brand-col p {
    margin: 8px 0 12px;
    font-size: 0.67rem;
    line-height: 1.45;
  }
  .footer-social {
    gap: 7px;
  }
  .social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .social-link img {
    width: 19px;
    height: 19px;
  }
  .social-link.whatsapp img {
    width: 22px;
    height: 22px;
  }
  .social-link.mail {
    font-size: 0.95rem;
  }
  .footer-col,
  .footer-contact {
    padding-top: 2px;
  }
  .footer-col > span,
  .footer-contact > span {
    font-size: 0.58rem;
    margin-bottom: 4px;
  }
  .footer-compact {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 9px 13px;
    align-items: center;
  }
  .footer-compact a {
    font-size: 0.65rem;
    line-height: 1.25;
    white-space: nowrap;
  }
  .footer-contact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 10px;
    align-items: center;
  }
  .footer-contact > span {
    grid-column: 1/-1;
  }
  .footer-contact > a {
    font-size: 0.67rem;
    line-height: 1.25;
  }
  .footer-contact small {
    font-size: 0.58rem;
    line-height: 1.25;
  }
  .footer-bottom {
    min-height: 48px;
    padding: 11px 0 calc(70px + var(--safe-bottom));
    font-size: 0.59rem;
    gap: 4px;
  }
}
/* v3.2 — acabamento de rodapé mobile */
@media (max-width: 560px) {
  .footer-main {
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 12px;
  }
  .footer-bottom {
    padding-bottom: calc(48px + var(--safe-bottom));
  }
}
/* v3.3 — hero mobile sem elementos apertados nas bordas */
@media (max-width: 560px) {
  .hero-visual {
    width: 100%;
    min-height: 270px;
    overflow: visible;
  }
  .hero-visual .visual-data {
    display: none;
  }
  .hero-visual .visual-floor {
    bottom: 7%;
    width: 62%;
    opacity: 0.7;
  }
  .hero-visual .visual-glow {
    width: 66%;
    height: 66%;
    opacity: 0.75;
  }
  .hero-visual .visual-orbit {
    opacity: 0.55;
  }
  .hero-visual .hero-icon-shell {
    width: min(270px, 70vw);
    max-width: 270px;
    margin: 0 auto;
  }
}
/* v5 — CTAs com o mesmo gradiente do botão Continuar */
.btn.project-cta {
  background: linear-gradient(105deg, #087dff 0%, #3a4bff 55%, #8d32ff 100%);
  box-shadow: 0 16px 44px rgba(40, 89, 255, 0.24);
  border-color: rgba(133, 199, 255, 0.33);
}
.btn.project-cta:hover {
  box-shadow: 0 22px 52px rgba(77, 71, 255, 0.34);
}
/* v5 — WhatsApp acima do voltar ao topo */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 78px;
  z-index: 96;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 16, 28, 0.92);
  border: 1px solid rgba(83, 190, 255, 0.24);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
  border-color: rgba(83, 220, 255, 0.55);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}
.whatsapp-fab img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.back-top {
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 800;
  background: rgba(5, 16, 28, 0.92);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}
.back-top:hover {
  transform: translateY(-3px);
  border-color: rgba(83, 220, 255, 0.55);
}
.footer-bottom {
  white-space: nowrap;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom a {
  color: #91cfff;
}
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(112, 190, 255, 0.3);
  border-radius: 16px;
  background: rgba(4, 12, 25, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner h2 {
  font-size: 1.35rem;
  margin: 8px 0;
}
.cookie-banner p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.cookie-banner p a {
  color: #91dfff;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.legal-page {
  min-height: 100vh;
  padding: 70px 0 100px;
}
.legal-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.legal-header .brand img {
  width: 205px;
}
.legal-content {
  max-width: 850px;
  margin: 0 auto;
}
.legal-content h1 {
  max-width: 850px;
  margin-top: 48px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}
.legal-content h2 {
  margin-top: 48px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.legal-content ul {
  padding-left: 22px;
}
.legal-content a {
  color: #8edbff;
  text-decoration: underline;
}
.legal-back {
  display: inline-flex;
  margin-top: 28px;
}
.legal-meta {
  color: var(--muted2);
  font-size: 0.82rem;
}
@media (max-width: 700px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }
  .cookie-actions .btn {
    flex: 1;
    min-height: 48px;
    padding-inline: 10px;
    font-size: 0.65rem;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 560px) {
  .whatsapp-fab {
    right: 16px;
    bottom: calc(84px + var(--safe-bottom));
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .whatsapp-fab img {
    width: 29px;
    height: 29px;
  }
  .back-top {
    right: 16px;
    bottom: calc(22px + var(--safe-bottom));
    width: 50px;
    height: 50px;
  }
  .footer-bottom {
    min-height: 40px;
    padding: 9px 0 calc(14px + var(--safe-bottom));
    font-size: 0.58rem;
    white-space: nowrap;
    overflow: hidden;
  }
}
/* v6 — ícone de e-mail no lugar do @ */
.social-link.mail svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #7fdfff;
}
.social-link.mail {
  display: grid;
  place-items: center;
}
/* v7 — refinamentos de leitura, alinhamento e hierarquia */
.service-cta .project-cta {
  flex: 0 0 auto;
  min-width: 250px;
  justify-content: center;
}
.service-cta .btn-arrow {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  line-height: 1;
  transform: translateY(-1px);
}
.method-callout::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(70, 183, 255, 0.08),
    transparent 68%
  );
  pointer-events: none;
}
.about-badge strong {
  font-size: 2.35rem;
}
/* Header não deixa conteúdo rolar visivelmente por trás da logo. */
@media (max-width: 840px) {
  .site-header {
    background: rgba(2, 6, 15, 0.985);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom-color: rgba(115, 180, 255, 0.14);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  }
  .nav-wrap {
    min-height: 78px;
  }
  .brand img {
    width: 188px;
  }
  .hero {
    padding-top: 106px;
  }
  .service-cta .project-cta {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 560px) {
  .service-cta .project-cta {
    min-height: 58px;
    padding-inline: 18px;
  }
  .service-cta {
    gap: 14px;
  }
  .method-callout::before {
    display: none;
  }
  .about-badge {
    width: 100%;
    justify-content: flex-start;
  }
}
/* v7 — acabamento final */
.mobile-cta,
.contact-fab {
  display: none !important;
}
.service-cta .project-cta .btn-arrow {
  flex: 0 0 22px;
}
@media (max-width: 840px) {
  .site-header {
    isolation: isolate;
  }
  .nav-wrap {
    position: relative;
    z-index: 2;
  }
  .service-cta .project-cta {
    white-space: nowrap;
  }
}
/* v8 — header sem sobreposição de conteúdo */
.site-header {
  position: sticky;
  top: 0;
}
.site-header.scrolled {
  background: rgba(2, 6, 15, 0.94);
}
@media (max-width: 840px) {
  .site-header {
    position: sticky;
    top: 0;
  }
  .nav-wrap {
    min-height: 78px;
  }
  .brand img {
    width: 188px;
  }
  .hero {
    padding-top: 52px;
  }
}
@media (max-width: 560px) {
  .site-header {
    position: sticky;
    top: 0;
  }
  .nav-wrap {
    min-height: 68px;
  }
  .brand img {
    width: 176px;
  }
  .hero {
    padding-top: 54px;
    padding-bottom: 104px;
  }
}
/* v8 — visual do hero contido para nunca invadir a seção seguinte */
.hero-visual {
  overflow: hidden;
}
.hero-icon-shell {
  max-height: 100%;
}
.hero-icon {
  display: block;
}
/* v8 — diferencial sem elemento decorativo sobre o texto */
.method-callout {
  isolation: isolate;
}
.method-callout > * {
  position: relative;
  z-index: 2;
}
.method-callout::before {
  display: none !important;
}
/* v8 — sociais coloridos */
.social-link.mail img,
.social-link.instagram img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.social-link.mail img {
  filter: drop-shadow(0 0 5px rgba(255, 70, 70, 0.1));
}
/* v8 — portfolio institucional */
.ui-b .ui-badge {
  max-width: 220px;
}
/* v8 — leitura confortável no mobile */
@media (max-width: 560px) {
  .about-copy h2 {
    max-width: 100%;
  }
  .about-copy p {
    font-size: 1rem;
    line-height: 1.72;
  }
  .method-callout h3 {
    position: relative;
    z-index: 2;
  }
}
/* v8.1 — containment refinements */
.hero {
  overflow: clip;
}
@supports not (overflow: clip) {
  .hero {
    overflow: hidden;
  }
}
.hero-visual {
  contain: layout paint;
  overflow: hidden;
}
@media (max-width: 560px) {
  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 280px;
    padding-inline: 8px;
  }
  .hero-icon-shell {
    width: min(300px, 78vw);
  }
  .hero-copy {
    z-index: 3;
  }
  .hero-proof {
    position: relative;
    z-index: 3;
  }
  .showcase-card {
    overflow: hidden;
  }
  .ui-b .ui-badge {
    max-width: 190px;
  }
  .showcase-footer span {
    max-width: 48%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
/* v10 — mobile: mais respiro acima do símbolo, sem cortar a arte embaixo */
@media (max-width: 560px) {
  .hero-visual {
    margin-top: 54px;
    min-height: 470px;
    padding: 34px 8px 42px;
    display: grid;
    place-items: center;
    overflow: visible;
  }
  .hero-icon-shell {
    width: min(300px, 78vw);
    max-width: 300px;
    transform: none;
    margin-top: 12px;
  }
  .visual-backdrop,
  .visual-glow {
    transform: none;
    top: 50%;
    left: 50%;
    translate: -50% -42%;
  }
  .visual-orbit {
    transform: none;
    top: 50%;
    left: 50%;
    translate: -50% -42%;
  }
  .visual-floor {
    bottom: 9%;
  }
  .hero-rings {
    top: 34%;
  }
}
/* v11 — hero visual alinhado no mobile: círculo, órbitas e símbolo usam o mesmo centro.
A animação flutuante é removida no mobile para impedir que a marca "saia" do halo. */
@media (max-width: 560px) {
  .hero-visual {
    width: min(100%, 360px);
    height: 390px;
    min-height: 390px;
    margin: 52px auto 26px;
    padding: 0;
    display: grid;
    place-items: center;
    overflow: visible;
    contain: none;
  }
  .hero-visual .visual-backdrop {
    width: 318px;
    height: 318px;
    max-width: 86vw;
    max-height: 86vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(13px);
    z-index: 0;
  }
  .hero-visual .visual-glow {
    width: 300px;
    height: 300px;
    max-width: 82vw;
    max-height: 82vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .hero-visual .visual-orbit.orbit-1 {
    width: 318px;
    height: 318px;
    max-width: 86vw;
    max-height: 86vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .hero-visual .visual-orbit.orbit-2 {
    width: 286px;
    height: 286px;
    max-width: 78vw;
    max-height: 78vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .hero-visual .visual-floor {
    width: 280px;
    height: 42px;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.42;
  }
  .hero-visual .hero-icon-shell {
    width: min(294px, 78vw);
    max-width: 294px;
    margin: 0;
    transform: none;
    z-index: 4;
  }
  .hero-visual .hero-icon {
    animation: none;
    transform: none;
  }
  .hero-visual .visual-data {
    display: none;
  }
}
/* Em telas maiores o símbolo também permanece dentro do conjunto visual. */
@media (min-width: 561px) {
  .hero-visual .hero-icon {
    animation: none;
  }
}
/* v12 — hero visual definitivo: maior, centralizado e totalmente contido no mobile. */
@media (max-width: 560px) {
  .hero-visual {
    width: 100%;
    max-width: 390px;
    height: 430px;
    min-height: 430px;
    margin: 30px auto 28px;
    overflow: visible;
    position: relative;
  }
  .hero-visual .visual-backdrop {
    width: min(350px, 92vw);
    height: min(350px, 92vw);
    max-width: none;
    max-height: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  .hero-visual .visual-glow {
    width: min(332px, 88vw);
    height: min(332px, 88vw);
    max-width: none;
    max-height: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .hero-visual .visual-orbit.orbit-1 {
    width: min(350px, 92vw);
    height: min(350px, 92vw);
    max-width: none;
    max-height: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .hero-visual .visual-orbit.orbit-2 {
    width: min(314px, 83vw);
    height: min(314px, 83vw);
    max-width: none;
    max-height: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .hero-visual .visual-floor {
    width: min(295px, 78vw);
    height: 38px;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.42;
  }
  .hero-visual .hero-icon-shell {
    width: min(326px, 86vw);
    max-width: 326px;
    margin: 0;
    transform: none;
    z-index: 4;
  }
  .hero-visual .hero-icon {
    width: 100%;
    height: auto;
    display: block;
    animation: none;
    transform: none;
  }
}
/* v13 — Gmail original icon with white background, reduced for footer */
.social-link.mail img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: none;
}
@media (max-width: 560px) {
  .social-link.mail img {
    width: 18px;
    height: 18px;
  }
}
/* v14 — correção definitiva dos ícones no desktop */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.social-link {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}
.social-link img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 26px !important;
  height: 26px !important;
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
  flex: none;
}
.social-link.instagram img {
  width: 27px !important;
  height: 27px !important;
}
.social-link.whatsapp img {
  width: 29px !important;
  height: 29px !important;
}
.social-link.mail img {
  width: 25px !important;
  height: 25px !important;
  object-fit: contain;
  filter: none !important;
}
/* Evita que uma regra SVG antiga ocupe ou esconda o botão */
.social-link.mail svg {
  display: none !important;
}
/* Ícones flutuantes também ficam independentes de qualquer regra de footer */
.whatsapp-fab img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 31px !important;
  height: 31px !important;
  object-fit: contain;
}
@media (min-width: 841px) {
  .footer-social {
    gap: 12px;
  }
  .social-link {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-basis: 50px;
  }
  .social-link.instagram img {
    width: 28px !important;
    height: 28px !important;
  }
  .social-link.whatsapp img {
    width: 30px !important;
    height: 30px !important;
  }
  .social-link.mail img {
    width: 26px !important;
    height: 26px !important;
  }
}
/* Em telas estreitas, preservar exatamente o equilíbrio já aprovado */
@media (max-width: 560px) {
  .footer-social {
    gap: 7px;
  }
  .social-link {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    flex-basis: 36px;
    border-radius: 10px;
  }
  .social-link.instagram img {
    width: 19px !important;
    height: 19px !important;
  }
  .social-link.whatsapp img {
    width: 22px !important;
    height: 22px !important;
  }
  .social-link.mail img {
    width: 18px !important;
    height: 18px !important;
  }
}
