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

:root {
  /* Paleta — contraste alto, industrial */
  --bg-deep: #0c111a; /* seções escuras principais */
  --bg-mid: #141c28; /* seções alternadas escuras */
  --bg-slate: #1c2535; /* cards e fundos intermediários */
  --bg-light: #eef1f5; /* seção clara — alto contraste */
  --bg-off: #f5f7fa; /* seção quase branca */

  --blue-deep: #0f2952;
  --blue: #1a4080;
  --azure: #1e5fc8;
  --azure-lt: #3b7de0;
  --ice: #6b9fd4;
  --orange: #e8622c;

  /* Texto */
  --txt-primary: #e8edf4;
  --txt-secondary: rgba(232, 237, 244, 0.55);
  --txt-dark: #0e1620;
  --txt-dark-muted: #4a5568;

  --border-light: rgba(232, 237, 244, 0.08);
  --border-mid: rgba(232, 237, 244, 0.14);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--bg-deep);
  color: var(--txt-primary);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg-mid);
}
::-webkit-scrollbar-thumb {
  background: var(--azure);
}

/* ─── NAVBAR ─────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 72px;
  transition:
    padding 0.4s ease,
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  padding: 18px 72px;
  background: rgba(12, 17, 26, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 237, 244, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--txt-primary);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-ig {
  color: rgba(232, 237, 244, 0.4);
  display: flex;
  transition: color 0.2s;
}
.nav-ig:hover {
  color: var(--txt-primary);
}
.nav-ig svg {
  width: 19px;
  height: 19px;
  display: block;
}
.nav-phone {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(232, 237, 244, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-phone:hover {
  color: var(--txt-primary);
}
.nav-cta {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--azure);
  padding: 11px 26px;
  border-radius: 2px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: #1750b0;
  transform: translateY(-1px);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--txt-primary);
  transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg.webp") center 40% / cover no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(12, 17, 26, 1) 0%,
      rgba(12, 17, 26, 0.6) 36%,
      rgba(12, 17, 26, 0.1) 60%,
      rgba(12, 17, 26, 0.5) 100%
    ),
    linear-gradient(
      to right,
      rgba(12, 17, 26, 0.78) 0%,
      rgba(12, 17, 26, 0.15) 55%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(14px);
}
.hero-eyebrow-bar {
  width: 36px;
  height: 1px;
  background: var(--azure);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
}
.hero-h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(60px, 7.5vw, 108px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--txt-primary);
}
.hero-h1 .line {
  display: block;
  overflow: hidden;
}
.hero-h1 .li {
  display: block;
  transform: translateY(108%);
}
.hero-sub {
  font-size: clamp(60px, 7.5vw, 108px);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 237, 244, 0.3);
  display: block;
  overflow: hidden;
}
.hero-sub .li {
  display: block;
  transform: translateY(108%);
}
.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-top: 44px;
  opacity: 0;
  transform: translateY(18px);
}
.hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(232, 237, 244, 0.55);
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.btn-fill {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--azure);
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-fill:hover {
  background: #1750b0;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 95, 200, 0.35);
}
.btn-outline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 237, 244, 0.55);
  padding: 16px 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-outline:hover {
  color: var(--txt-primary);
}
.hero-scroll {
  position: absolute;
  right: 72px;
  bottom: 96px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
}
.scroll-bar {
  width: 1px;
  height: 56px;
  background: rgba(232, 237, 244, 0.1);
  overflow: hidden;
  position: relative;
}
.scroll-pip {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--azure);
  animation: scrollPip 2s ease-in-out infinite;
}
@keyframes scrollPip {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
.scroll-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 237, 244, 0.25);
  writing-mode: vertical-rl;
}

/* ─── TICKER ─────────────────────────────── */
.ticker {
  overflow: hidden;
  background: var(--azure);
  padding: 15px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerAnim 22s linear infinite;
}
.ticker-item {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 48px;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.ticker-sep {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tickerAnim {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SHARED LAYOUT ──────────────────────── */
.section {
  padding: 112px 0;
}
.section-dark {
  background: var(--bg-deep);
}
.section-mid {
  background: var(--bg-mid);
}
.section-slate {
  background: var(--bg-slate);
}
.section-light {
  background: var(--bg-light);
}
.section-off {
  background: var(--bg-off);
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 72px;
}

/* ─── TYPOGRAPHY SYSTEM ──────────────────── */
/* All text left-aligned. Ghost/outline only on dark backgrounds. */
.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--azure);
  flex-shrink: 0;
}

/* Dark background headings */
.h2-dark {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--txt-primary);
}

/* Light background headings */
.h2-light {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--txt-dark);
}

.body-dark {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--txt-secondary);
}
.body-light {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--txt-dark-muted);
}

/* ─── SOBRE ──────────────────────────────── */
/* dark section */
#sobre {
  background: var(--bg-mid);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  min-height: 620px;
}
.sobre-img {
  position: relative;
  overflow: hidden;
}
.sobre-img-bg {
  position: absolute;
  inset: 0;
  background: url("assets/sobre-bg.webp") center/cover no-repeat;
  transition: transform 0.7s ease;
}
.sobre-img:hover .sobre-img-bg {
  transform: scale(1.03);
}
.sobre-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 65%, var(--bg-mid) 100%);
}
.sobre-copy {
  padding: 80px 72px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-light);
}
.sobre-lead {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--txt-primary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.sobre-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--txt-secondary);
  margin-bottom: 52px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}
.stat {
  padding: 24px 22px;
  border-right: 1px solid var(--border-light);
  transition: background 0.25s;
}
.stat:last-child {
  border-right: none;
}
.stat:hover {
  background: rgba(30, 95, 200, 0.1);
}
.stat-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--txt-primary);
  letter-spacing: normal;
  margin-bottom: 6px;
}
.stat-n sup {
  font-size: 22px;
  color: var(--azure);
  vertical-align: super;
  margin-left: 2px;
}
.stat-l {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 237, 244, 0.32);
  line-height: 1.45;
}

/* ─── DIFERENCIAIS — seção clara ─────────── */
#diferenciais {
  background: var(--bg-light);
}
.diff-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d0d7e2;
}
.diff-card {
  background: var(--bg-off);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.diff-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--azure);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.diff-card:hover {
  background: white;
}
.diff-card:hover::after {
  transform: scaleY(1);
}
.diff-icon {
  width: 36px;
  height: 36px;
  color: var(--azure);
  margin-bottom: 20px;
  display: block;
}
.diff-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.diff-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 10px;
}
.diff-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--txt-dark);
  margin-bottom: 12px;
  line-height: 1.1;
}
.diff-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--txt-dark-muted);
}

/* ─── PROCESSO — escuro ──────────────────── */
#processo {
  background: var(--bg-deep);
}
.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 64px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.process-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.process-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  filter: saturate(0.55) brightness(0.68);
  transition:
    filter 0.6s ease,
    transform 0.7s ease;
}
.process-card:hover .process-card-img {
  filter: saturate(0.85) brightness(0.82);
  transform: scale(1.04);
}
.process-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 17, 26, 0.97) 0%,
    rgba(12, 17, 26, 0.45) 55%,
    rgba(12, 17, 26, 0.05) 100%
  );
}
.process-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
}
.process-bar-line {
  width: 24px;
  height: 2px;
  background: var(--azure);
  margin-bottom: 16px;
}
.process-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: -6px;
  letter-spacing: -0.02em;
}
.process-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--txt-primary);
  margin-bottom: 8px;
}
.process-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(232, 237, 244, 0.4);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    color 0.3s;
}
.process-card:hover .process-desc {
  max-height: 120px;
  color: rgba(232, 237, 244, 0.65);
}

/* ─── APLICAÇÕES — clara ─────────────────── */
#aplicacoes {
  background: var(--bg-off);
}
.app-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #d0d7e2;
}
.app-item {
  background: var(--bg-light);
  padding: 44px 32px 40px;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.app-item:hover {
  background: white;
}
.app-item:hover .app-item-icon {
  color: var(--azure-lt);
}
.app-item-icon {
  width: 32px;
  height: 32px;
  color: var(--azure);
  margin-bottom: 22px;
  display: block;
  transition: color 0.3s;
}
.app-item-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.app-item-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--txt-dark);
  margin-bottom: 10px;
  line-height: 1.1;
}
.app-item-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--txt-dark-muted);
}

/* ─── GALERIA — escura ───────────────────── */
#galeria {
  background: var(--bg-deep);
  overflow: hidden;
}
.galeria-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 280px;
  gap: 4px;
}
.g-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.g-cell:nth-child(1) {
  grid-row: 1 / 3;
}
.g-tall {
  grid-row: 1 / 3;
}
.g-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) brightness(0.72);
  transition:
    transform 0.65s ease,
    filter 0.5s ease;
}
.g-cell:hover img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.86);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 17, 26, 0.65) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
}
.g-cell:hover .g-overlay {
  opacity: 1;
}
.g-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 237, 244, 0.75);
}

/* ─── CTA BAND ───────────────────────────── */
#cta {
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}
.cta-wrap {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}
.cta-photo {
  position: absolute;
  inset: 0;
  background: url("assets/cta-bg.webp") center/cover no-repeat;
  filter: saturate(0.4) brightness(0.45);
}
.cta-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 17, 26, 0.98) 45%,
    rgba(12, 17, 26, 0.6) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 72px;
}
.cta-h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--txt-primary);
  margin-bottom: 24px;
}
.cta-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--txt-secondary);
  max-width: 480px;
  margin-bottom: 44px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #22c55e;
  color: white;
  padding: 17px 36px;
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-wa .ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.btn-wa .ico svg {
  width: 100%;
  height: 100%;
  display: block;
}
.btn-wa:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.25);
}
.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(232, 237, 244, 0.2);
  color: rgba(232, 237, 244, 0.6);
  padding: 17px 32px;
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.btn-tel:hover {
  border-color: rgba(232, 237, 244, 0.5);
  color: var(--txt-primary);
}

/* ─── CONTATO — clara ────────────────────── */
#contato {
  background: var(--bg-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
}
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cinfo {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cinfo-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(30, 95, 200, 0.1);
  border: 1px solid rgba(30, 95, 200, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azure);
}
.cinfo-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}
.cinfo-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 4px;
}
.cinfo-val {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #2d3a50;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fg label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7f99;
}
.fg input,
.fg select,
.fg textarea {
  background: white;
  border: 1px solid #c8d3e0;
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--txt-dark);
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(30, 95, 200, 0.1);
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: #b0bcc8;
}
.fg select option {
  background: white;
  color: var(--txt-dark);
}
.fg textarea {
  resize: vertical;
  min-height: 130px;
}
.form-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--azure);
  color: white;
  border: none;
  cursor: pointer;
  padding: 16px 40px;
  border-radius: 2px;
  align-self: flex-start;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.form-btn:hover {
  background: #1750b0;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 95, 200, 0.3);
}
.form-ok {
  display: none;
  padding: 18px 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 2px;
  color: #16803a;
  font-size: 15px;
  font-weight: 400;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-light);
  padding: 44px 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  height: 48px;
  width: auto;
  opacity: 1;
}
.footer-mid {
  font-size: 12px;
  color: rgba(232, 237, 244, 0.22);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 237, 244, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(232, 237, 244, 0.7);
}
.footer-credit {
  max-width: 1400px;
  margin: 32px auto 0;
  padding: 24px 72px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 12px;
  color: rgba(232, 237, 244, 0.22);
}
.footer-credit a {
  color: rgba(232, 237, 244, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover {
  color: rgba(232, 237, 244, 0.8);
}

/* ─── LIGHTBOX ───────────────────────────── */
#lb {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}
#lb.on {
  display: flex;
}
#lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
}
#lb-x {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  font-family: monospace;
}
#lb-x:hover {
  color: white;
}

/* ─── MOBILE MENU ────────────────────────── */
#mob {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(12, 17, 26, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 110px 40px 48px;
  overflow-y: auto;
}
#mob.open {
  display: flex;
}
#mob a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--txt-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
#mob a:hover {
  color: var(--azure);
}

/* ─── SCROLL ANIMATION BASE ──────────────── */
.anim {
  opacity: 0;
  transform: translateY(36px);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  #nav,
  #nav.scrolled {
    padding-left: 32px;
    padding-right: 32px;
  }
  .nav-links,
  .nav-right {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .wrap {
    padding: 0 32px;
  }
  .hero-content {
    padding: 80px 32px 64px;
  }
  .hero-scroll {
    right: 32px;
    bottom: 72px;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
  }
  .sobre-img {
    min-height: 360px;
    display: block;
    position: relative;
  }
  .sobre-img-bg {
    position: absolute;
    inset: 0;
  }
  .sobre-img-fade {
    background: linear-gradient(to bottom, transparent 60%, var(--bg-mid) 100%);
  }
  .sobre-copy {
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding: 52px 32px 64px;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .diff-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .app-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .galeria-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-cell:nth-child(1) {
    grid-row: auto;
  }
  .g-tall {
    grid-row: auto;
  }
  .g-cell img {
    height: 260px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer-mid {
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta-content {
    padding: 80px 32px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .hero-h1,
  .hero-sub {
    font-size: clamp(48px, 12vw, 72px);
  }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .app-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* ponytail: ticker segue rodando, so que beem lento */
  .ticker-track {
    animation-duration: 10s !important;
    animation-iteration-count: infinite !important;
  }
}
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 600;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  color: #fff;
}
@media (max-width: 640px) {
  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }
  .wa-float svg {
    width: 27px;
    height: 27px;
  }
  .section {
    padding: 64px 0;
  }
  .wrap {
    padding: 0 22px;
  }
  #nav,
  #nav.scrolled {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero-content {
    padding: 96px 22px 56px;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .g-cell img {
    height: 240px;
  }
  .stats-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-content {
    padding: 64px 22px;
  }
  .diff-card {
    padding: 36px 26px;
  }
  .app-item {
    padding: 36px 24px 32px;
  }
  .sobre-copy {
    padding: 44px 22px 56px;
  }
  .contact-grid {
    gap: 40px;
  }
  .footer-inner {
    padding: 0 22px;
  }
  .footer-credit {
    padding: 24px 22px 0;
  }
  #mob {
    padding: 96px 26px 40px;
    gap: 22px;
  }
  #mob a {
    font-size: 34px;
  }
}
@media (max-width: 430px) {
  .stat-n {
    font-size: 36px;
  }
  #mob a {
    font-size: 30px;
  }
  .hero-eyebrow {
    flex-wrap: wrap;
    gap: 10px;
  }
  .cinfo {
    gap: 14px;
  }
}
