@import 'variables.css';

/* ═══════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════ */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-deep-black);
  color: var(--color-text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

img { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }

.skip-link {
  position: absolute;
  top:-100%;
  left:0;
  background:var(--color-teal);
  color:var(--color-deep-black);
  padding:.75rem 1.5rem;
  z-index:9999;
  font-weight:600;
  border-radius:0 0 var(--radius-md) 0;
}
.skip-link:focus { top:0; }

/* ═══════════════════════════════════════════════════
   GLOBAL CINEMATIC OVERLAYS
   ═══════════════════════════════════════════════════ */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.028;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grain-shift 0.4s steps(8) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  12%  { transform: translate(-3%, 5%); }
  25%  { transform: translate(5%, -2%); }
  37%  { transform: translate(-7%, 7%); }
  50%  { transform: translate(3%, -5%); }
  62%  { transform: translate(-5%, 3%); }
  75%  { transform: translate(7%, -7%); }
  87%  { transform: translate(-2%, 5%); }
  100% { transform: translate(0, 0); }
}

/* Vinheta em faixas leves (sem radial = sem “lanterna” no centro) */
.vignette-overlay {
  position: fixed;
  inset: 0;
  z-index: 9989;
  pointer-events: none;
  background: linear-gradient(
      180deg,
      rgba(20, 18, 16, 0.16) 0%,
      transparent 12%,
      transparent 88%,
      rgba(20, 18, 16, 0.18) 100%
    ),
    linear-gradient(
      90deg,
      rgba(20, 18, 16, 0.08) 0%,
      transparent 8%,
      transparent 92%,
      rgba(20, 18, 16, 0.08) 100%
    );
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════
   SNAP SECTIONS
   ═══════════════════════════════════════════════════ */
.snap-section {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════ */
h1,.h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,8vw,4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--color-text-prime);
}
h2,.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,6vw,3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--color-text-prime);
}
h3,.h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem,4vw,2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--color-text-prime);
}
.highlight { color: var(--color-teal-light); }

/* ═══════════════════════════════════════════════════
   CHROMATIC ABERRATION (applied via JS during transitions)
   ═══════════════════════════════════════════════════ */
.chromatic-shift {
  text-shadow:
    -1.5px 0 rgba(232,116,42,0.35),
    1.5px 0 rgba(196,113,74,0.18);
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  overflow: hidden;
  min-height: 48px;
  outline: none;
  isolation: isolate;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.35s var(--ease-in-out),
    color 0.25s var(--ease-in-out),
    border-color 0.25s var(--ease-in-out);
}
.btn:focus-visible {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-light) 100%);
  color: var(--color-deep-black);
  box-shadow:
    0 4px 16px rgba(232,116,42,.25),
    0 0 0 0 rgba(232,116,42,0),
    inset 0 1px 0 rgba(255,255,255,.25);
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-teal-light), var(--color-teal-pale));
  opacity: 0;
  transition: opacity 0.3s var(--ease-in-out);
  border-radius: inherit;
  z-index: -1;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,.35) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out), opacity 0.4s;
  opacity: 0;
  z-index: 0;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(232,116,42,.35),
    0 0 48px rgba(232,116,42,.12),
    inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after {
  width: 200%;
  height: 200%;
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(232,116,42,.2);
}
.btn-primary:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  filter: saturate(0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--color-teal);
  border: 2px solid rgba(232,116,42,.5);
  box-shadow: inset 0 0 0 0 var(--color-teal);
  backdrop-filter: blur(8px);
}
.btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-light));
  opacity: 0;
  border-radius: inherit;
  z-index: -1;
  transition: opacity 0.35s var(--ease-in-out);
}
.btn-secondary:hover {
  color: var(--color-deep-black);
  border-color: var(--color-teal);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(232,116,42,.25);
}
.btn-secondary:hover::after { opacity: 1; }
.btn-secondary:active { transform: translateY(0) scale(0.98); }

.btn-tertiary {
  background: rgba(232,116,42,.06);
  color: var(--color-text-secondary);
  border: 1px solid rgba(232,116,42,.15);
  backdrop-filter: blur(6px);
}
.btn-tertiary:hover {
  background: rgba(232,116,42,.14);
  border-color: rgba(232,116,42,.4);
  color: var(--color-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,116,42,.12);
}
.btn-tertiary:active { transform: translateY(0); }

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}
.btn:hover svg {
  transform: translateX(2px);
}

/* ═══════════════════════════════════════════════════
   NAVBAR — glassmorphism frio + auto-hide on scroll
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed !important;
  inset: 0 0 auto 0;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000;
  isolation: isolate;
  padding: var(--space-4) var(--space-6);
  transform: none !important;
  will-change: transform;
  transition:
    background 0.4s var(--ease-in-out),
    border-color 0.4s var(--ease-in-out),
    box-shadow 0.4s var(--ease-in-out),
    backdrop-filter 0.4s var(--ease-in-out),
    padding 0.35s var(--ease-in-out);
}

/* Trava a navbar no topo sem deslocamento em scroll */
.navbar,
.navbar--glass,
.navbar--hidden {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  transform: translateY(0) !important;
  translate: none !important;
}

.navbar--hidden {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.navbar--hidden {
  top: 0;
  pointer-events: auto;
}

/* Garante que links de âncora não fiquem escondidos atrás da navbar fixa */
#main-content section[id] {
  scroll-margin-top: 110px;
}

.navbar--glass {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: initial;
  align-items: center;
  gap: var(--space-5);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.45rem var(--space-6);
  min-height: 3.5rem;
  border-radius: 100px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  transition:
    background 0.4s var(--ease-in-out),
    border-color 0.4s var(--ease-in-out),
    box-shadow 0.4s var(--ease-in-out),
    border-radius 0.4s var(--ease-in-out),
    padding 0.35s var(--ease-in-out);
}
.navbar-inner::before {
  content: none;
}
.navbar-inner::after {
  content: none;
}

.navbar--glass .navbar-inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.navbar-logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: var(--space-3);
  min-height: 2.75rem;
  justify-self: start;
}
.navbar-logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(232, 116, 42, 0.1)) brightness(0.9) saturate(0.8);
  transition: filter 0.3s var(--ease-in-out);
}
.navbar-logo:hover img {
  filter: drop-shadow(0 2px 16px rgba(232, 116, 42, 0.25)) brightness(1) saturate(1);
}

.nav-menu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
  justify-self: center;
  min-width: 0;
  min-height: 2.75rem;
}
.nav-item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 2.75rem;
  padding: 0 1.1rem;
  line-height: 1.15;
  white-space: nowrap;
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .04em;
  cursor: pointer;
  border-radius: 50px;
  background: transparent;
  border: 1px solid transparent;
  transition:
    color 0.3s var(--ease-in-out),
    background 0.3s var(--ease-in-out),
    border-color 0.3s var(--ease-in-out),
    box-shadow 0.3s var(--ease-in-out),
    transform 0.25s var(--ease-in-out);
}
.nav-item:hover {
  color: var(--color-text-prime);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(232, 116, 42, 0.06) 100%
    );
  border-color: rgba(232, 116, 42, 0.15);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-item:active {
  opacity: 0.92;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-teal-light));
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-spring);
}
.nav-item:hover::after {
  width: 60%;
}
.nav-item:focus-visible {
  color: var(--color-text-prime);
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
  border-radius: 50px;
}

.nav-cta {
  position: relative;
  z-index: 1;
  margin-left: var(--space-4);
  box-sizing: border-box;
  min-height: 2.75rem;
  padding: 0 1.5rem;
  line-height: 1.15;
  white-space: nowrap;
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-deep-black);
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-light) 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(232, 116, 42, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.35s var(--ease-in-out);
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-teal-light), var(--color-teal-pale));
  opacity: 0;
  border-radius: inherit;
  transition: opacity 0.3s var(--ease-in-out);
  z-index: -1;
}
.nav-cta--desktop {
  justify-self: end;
  margin-left: 0;
}
.nav-cta--mobile {
  display: none;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 8px 28px rgba(232, 116, 42, 0.35),
    0 0 40px rgba(232,116,42,0.1),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:active {
  transform: translateY(0) scale(0.97);
}
.nav-cta:focus-visible {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 3px;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 1001;
  position: relative;
  min-height: 2.75rem;
  min-width: 2.75rem;
  box-sizing: border-box;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-teal);
  transition: all var(--duration-base) var(--ease-in-out);
  display: block;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO — imagem de fundo full-bleed + camadas cinematográficas
   ═══════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(72px + var(--space-12)) var(--space-8) var(--space-16);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: var(--color-deep-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg__parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  overflow: hidden;
}
/* Sombreado leve na foto do hero (não compete com os scrims) */
.hero-bg__image-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(18, 20, 22, 0.1) 0%,
    transparent 42%,
    transparent 58%,
    rgba(18, 20, 22, 0.12) 100%
  );
  box-shadow: inset 0 0 90px rgba(18, 20, 22, 0.14);
}
.hero-bg__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
  display: block;
  transform: scale(1);
  transform-origin: 72% 42%;
  filter: saturate(0.72) brightness(0.9) contrast(1.06);
}
.hero-bg__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-bg__scrim--radial {
  background:
    linear-gradient(
      115deg,
      rgba(18, 20, 22, 0.48) 0%,
      rgba(18, 20, 22, 0.14) 36%,
      transparent 58%
    ),
    linear-gradient(
      to bottom,
      rgba(18, 20, 22, 0.1) 0%,
      transparent 40%,
      rgba(18, 20, 22, 0.24) 100%
    );
}
.hero-bg__scrim--linear {
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(18, 20, 22, 0) 52%,
      rgba(18, 20, 22, 0.32) 82%,
      rgba(18, 20, 22, 0.78) 100%
    ),
    linear-gradient(
      102deg,
      rgba(18, 20, 22, 0.72) 0%,
      rgba(24, 26, 28, 0.38) 38%,
      rgba(28, 30, 32, 0.1) 68%,
      rgba(18, 20, 22, 0.32) 100%
    );
}
.hero-bg__accent-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, var(--color-teal), rgba(232,116,42,.1), transparent 55%);
  opacity: 0.7;
}

.hero-layout {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 720px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero-copy {
  padding: var(--space-8) var(--space-8) var(--space-8);
  border-radius: var(--radius-xl);
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 42%,
      rgba(20, 18, 16, 0.4) 100%
    ),
    rgba(20, 18, 16, 0.42);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(232, 116, 42, 0.06) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.hero-copy > * {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-4);
  opacity: 0.95;
}
.hero-eyebrow__mark {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), transparent);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.hero-title { margin-bottom: var(--space-5, 1.25rem); }
.hero-title__brand {
  color: var(--color-text-prime);
  font-weight: 800;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 40rem;
  margin-bottom: var(--space-6);
  line-height: 1.72;
}
.hero-subtitle strong {
  color: var(--color-text-prime);
  font-weight: 600;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5, 1.25rem);
}
.hero-equipment {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(232,116,42,.75);
  margin-bottom: var(--space-5, 1.25rem);
  line-height: 1.6;
}
.hero-equipment__sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}
.hero-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: 0;
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(232,116,42,.1);
}
.hero-trust li {
  position: relative;
  padding-left: var(--space-6);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.hero-trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 10px rgba(232,116,42,.35);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 12;
}

/* ═══════════════════════════════════════════════════
   Tilt 3D
   ═══════════════════════════════════════════════════ */
.fx-tilt {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    transform 0.65s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    clip-path 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.scroll-indicator span {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(232,116,42,.25);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-indicator span::before {
  content: '';
  width: 3px;
  height: 7px;
  background: var(--color-teal);
  border-radius: var(--radius-full);
  animation: hero-scroll-dot 1.6s ease-in-out infinite;
}
@keyframes hero-scroll-dot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.35; transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════
   SECTION GENERIC
   ═══════════════════════════════════════════════════ */
.section-container {
  padding: var(--space-20) var(--space-8);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.section-container.dark {
  max-width:100%;
  background: var(--color-bg-secondary);
}
.section-container.dark > * {
  max-width: 1400px;
  margin-left:auto;
  margin-right:auto;
}

/* Quem somos — foto em camada (GSAP) + gradientes + sombreado leve */
#sobre.section-container {
  --cinema-base: 18, 20, 22;
  --cinema-mid: 26, 28, 30;
  --cinema-deep: 22, 24, 26;
  max-width: none;
  width: 100%;
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  isolation: isolate;
  background-color: rgb(var(--cinema-base));
}
.sobre-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.sobre-bg__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: 50% 45%;
  filter: saturate(0.7) brightness(0.9) contrast(1.05);
  will-change: transform, opacity;
  opacity: 0;
}
.sobre-bg__image-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(18, 20, 22, 0.1) 0%,
    transparent 38%,
    transparent 62%,
    rgba(18, 20, 22, 0.12) 100%
  );
  box-shadow: inset 0 0 100px rgba(18, 20, 22, 0.14);
}
.sobre-bg-gradients {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(
      105deg,
      rgba(var(--cinema-mid), 0.82) 0%,
      rgba(var(--cinema-deep), 0.62) 38%,
      rgba(30, 32, 34, 0.36) 72%,
      rgba(24, 26, 28, 0.28) 100%
    ),
    linear-gradient(
      120deg,
      rgba(var(--cinema-deep), 0.22) 0%,
      transparent 45%
    ),
    linear-gradient(
      to bottom,
      rgba(var(--cinema-base), 0.72) 0%,
      rgba(var(--cinema-base), 0.35) 18%,
      rgba(var(--cinema-base), 0.08) 42%,
      transparent 62%
    ),
    linear-gradient(
      to top,
      rgba(var(--cinema-base), 0.2) 0%,
      transparent 28%
    );
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#sobre.section-container::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E"),
    linear-gradient(
      165deg,
      rgba(232, 116, 42, 0.04) 0%,
      transparent 35%,
      rgba(18, 20, 22, 0.14) 100%
    );
  mix-blend-mode: soft-light;
  opacity: 1;
}
#sobre.section-container > .section-header,
#sobre.section-container > .about-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

#servicos.section-container.dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      158deg,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 42%,
      rgba(18, 20, 22, 0.22) 100%
    ),
    rgba(18, 20, 22, 0.68);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  border-top: 1px solid rgba(232, 116, 42, 0.08);
  border-bottom: 1px solid rgba(232, 116, 42, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 56px rgba(0, 0, 0, 0.28);
}
#servicos.section-container.dark::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g2)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}
#servicos.section-container.dark > * {
  position: relative;
  z-index: 1;
}
.servicos-bg-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.servicos-bg__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
  transform-origin: 50% 45%;
  transform: scale(1);
  filter: saturate(0.82) brightness(0.78) contrast(1.06);
  will-change: transform, opacity;
  opacity: 0.42;
}
.servicos-bg__image-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 14, 0.12) 0%,
    rgba(10, 12, 14, 0.2) 34%,
    rgba(8, 10, 12, 0.44) 68%,
    rgba(8, 10, 12, 0.62) 100%
  );
}
.servicos-bg-gradients {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 75% 0%, rgba(232, 116, 42, 0.14) 0%, transparent 54%),
    linear-gradient(
      180deg,
      rgba(20, 22, 24, 0.14) 0%,
      rgba(16, 18, 20, 0.24) 45%,
      rgba(14, 16, 18, 0.38) 100%
    );
}

/* Contato — background cinematográfico com basex3 */
#contato.section-container.dark {
  --contact-base: 18, 20, 22;
  --contact-mid: 24, 28, 32;
  --contact-deep: 14, 16, 18;
  --contact-hero-h: clamp(230px, 24vw, 290px);
  max-width: none;
  width: 100%;
  margin: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 0 var(--space-20);
  background-color: rgb(var(--contact-base));
}
.contato-bg-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.contato-bg__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transform-origin: 50% 45%;
  transform: scale(1);
  filter: saturate(0.72) brightness(0.76) contrast(1.06);
  will-change: transform, opacity;
  opacity: 0;
}
.contato-bg__image-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 14, 0.08) 0%,
    rgba(10, 12, 14, 0.1) 24%,
    rgba(10, 12, 14, 0.26) 44%,
    rgba(8, 10, 12, 0.58) 72%,
    rgba(8, 10, 12, 0.84) 100%
  );
  box-shadow: inset 0 0 140px rgba(10, 12, 14, 0.32);
}
.contato-bg-gradients {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(
      105deg,
      rgba(var(--contact-mid), 0.84) 0%,
      rgba(var(--contact-deep), 0.68) 42%,
      rgba(16, 18, 20, 0.4) 72%,
      rgba(12, 14, 16, 0.5) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(var(--contact-base), 0.56) 0%,
      rgba(var(--contact-base), 0.2) 22%,
      rgba(var(--contact-base), 0.12) 40%,
      rgba(var(--contact-base), 0.62) 66%,
      rgba(var(--contact-base), 0.84) 82%,
      rgba(var(--contact-base), 0.96) 100%
    ),
    radial-gradient(
      circle at 15% 20%,
      rgba(232, 116, 42, 0.12) 0%,
      transparent 45%
    );
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#contato.section-container.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='gc'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23gc)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(165deg, rgba(232, 116, 42, 0.05) 0%, transparent 36%, rgba(8, 10, 12, 0.26) 100%);
  mix-blend-mode: soft-light;
}
#contato.section-container.dark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--contact-hero-h) - 18px);
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 12, 14, 0) 0%,
    rgba(10, 12, 14, 0.36) 24%,
    rgba(10, 12, 14, 0.72) 52%,
    rgba(10, 12, 14, 0.9) 76%,
    rgba(8, 10, 12, 1) 100%
  );
}
#contato.section-container.dark > .section-header,
#contato.section-container.dark > .contact-container {
  position: relative;
  z-index: 4;
}
#contato.section-container.dark > .section-header {
  max-width: none;
  text-align: center;
  min-height: var(--contact-hero-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(90px, 8.5vw, 112px);
  padding-bottom: clamp(16px, 2.6vw, 24px);
  padding-left: var(--space-8);
  padding-right: var(--space-8);
  margin-bottom: 0;
}
#contato .section-header h2 {
  color: #ffffff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}
#contato .section-header .section-lead {
  color: rgba(255, 255, 255, 0.92);
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
#contato.section-container.dark > .contact-container {
  max-width: 1400px;
  margin: clamp(22px, 3.2vw, 40px) auto 0;
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
/* Remove limitação de largura herdada no background do contato */
#contato.section-container.dark > .contato-bg-media,
#contato.section-container.dark > .contato-bg-gradients {
  max-width: none;
  margin: 0;
}

.section-header {
  margin-bottom: var(--space-12);
}
.section-header h2 {
  margin-bottom: var(--space-4);
  text-wrap: balance;
}
.section-lead {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}
#sobre .section-header h2 {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
#sobre .section-lead {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
}
.section-lead--accent {
  color: var(--color-text-secondary);
}
.section-divider {
  width:80px; height:3px;
  background: linear-gradient(90deg, var(--color-teal), transparent);
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════
   SOBRE (ABOUT)
   ═══════════════════════════════════════════════════ */
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}
.about-text {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
#sobre .about-text p:first-child {
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.stat-card {
  position: relative;
  isolation: isolate;
  padding: clamp(1rem, 2vw, 1.55rem) clamp(1.1rem, 2.2vw, 1.75rem) clamp(1.05rem, 2.3vw, 1.85rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.02) 38%,
      rgba(20, 24, 32, 0.28) 100%
    ),
    linear-gradient(155deg, rgba(30, 34, 44, 0.72) 0%, rgba(22, 26, 34, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    transform var(--duration-base) var(--ease-in-out),
    box-shadow var(--duration-base) var(--ease-in-out),
    border-color var(--duration-base) var(--ease-in-out),
    background var(--duration-base) var(--ease-in-out),
    clip-path 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.stats-container .stat-card:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  border-radius: 0;
}
.stats-container .stat-card:nth-child(2) {
  clip-path: none;
  border-radius: 2.5rem 0.75rem 2rem 1.5rem;
}
.stats-container .stat-card:nth-child(3) {
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
  border-radius: 0;
}
.stats-container .stat-card:nth-child(1):hover {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.stats-container .stat-card:nth-child(3):hover {
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: -40% -60% 55% 20%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 45%,
    transparent 70%
  );
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(232, 116, 42, 0.12) 0%,
    transparent 62%
  );
  pointer-events: none;
  z-index: 0;
}
.stat-card > * {
  position: relative;
  z-index: 1;
}
.stat-card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.03) 40%,
      rgba(24, 28, 36, 0.18) 100%
    ),
    rgba(32, 36, 46, 0.45);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  border-color: rgba(232, 116, 42, 0.3);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 48px rgba(232, 116, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.95rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: clamp(0.3rem, 1.4vw, 0.7rem);
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    var(--color-teal-light) 0%,
    var(--color-teal) 45%,
    var(--color-chrome) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 24px rgba(232, 116, 42, 0.15));
}
.stat-label {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.35;
  padding-top: clamp(0.45rem, 1.2vw, 0.85rem);
  border-top: 1px solid rgba(232, 116, 42, 0.1);
}

/* ═══════════════════════════════════════════════════
   CARDS (SERVIÇOS)
   ═══════════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}
.card {
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 50%,
      rgba(18, 22, 30, 0.14) 100%
    ),
    linear-gradient(160deg, rgba(32, 36, 46, 0.82) 0%, rgba(24, 28, 36, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition:
    box-shadow var(--duration-base) var(--ease-in-out),
    border-color var(--duration-base) var(--ease-in-out),
    background var(--duration-base) var(--ease-in-out),
    clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}
.service-card:nth-child(7n + 1) {
  border-radius: 1.35rem 2.6rem 1.35rem 1.35rem;
}
.service-card:nth-child(7n + 2) {
  border-radius: 2.4rem 1rem 1.6rem 2.2rem;
}
.service-card:nth-child(7n + 3) {
  border-radius: 1rem 1rem 2.75rem 1.25rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.service-card:nth-child(7n + 4) {
  border-radius: 2rem;
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%, 0 16px);
}
.service-card:nth-child(7n + 5) {
  border-radius: 0.5rem 2.25rem 2rem 0.5rem;
}
.service-card:nth-child(7n + 6) {
  border-radius: 2.75rem 1.5rem 0.85rem 1.75rem;
}
/* Drone: mesmo hover dos cartões sem recorte (volumetria/georref) */
.service-card:nth-child(7n + 7) {
  border-radius: 2rem 1.35rem 2.1rem 1.1rem;
}
.service-card:nth-child(7n + 3):hover {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
}
.service-card:nth-child(7n + 4):hover {
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%, 0 8px);
}
.card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background: linear-gradient(90deg, var(--color-teal), transparent);
  opacity:0;
  transition: opacity var(--duration-base);
  z-index: 2;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: overlay;
  z-index: 0;
}
.card:hover {
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 45%,
      rgba(24, 28, 36, 0.14) 100%
    ),
    rgba(34, 38, 48, 0.42);
  backdrop-filter: blur(30px) saturate(1.4);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  border-color: rgba(232,116,42,.3);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 40px rgba(232, 116, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.card:hover::before { opacity:1; }
.card > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,116,42,.08);
  border: 1px solid rgba(232,116,42,.12);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  color: var(--color-teal);
  transition:
    background 0.35s var(--ease-in-out),
    border-color 0.35s var(--ease-in-out),
    transform 0.4s var(--ease-spring),
    box-shadow 0.35s var(--ease-in-out);
}
.card-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }

a.service-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  isolation: isolate;
}
.service-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.service-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.48) 0%, rgba(10, 12, 16, 0.72) 100%),
    linear-gradient(120deg, rgba(232, 116, 42, 0.2) 0%, transparent 45%);
  backdrop-filter: blur(3px) saturate(1.06);
  -webkit-backdrop-filter: blur(3px) saturate(1.06);
  z-index: 1;
  transition: opacity 0.35s var(--ease-in-out), backdrop-filter 0.35s var(--ease-in-out);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.04) brightness(0.63);
  transition:
    transform 0.7s var(--ease-out),
    filter 0.4s var(--ease-in-out);
}
.service-card:hover .service-card__media::before {
  opacity: 0.84;
  backdrop-filter: blur(4px) saturate(1.12);
  -webkit-backdrop-filter: blur(4px) saturate(1.12);
}
.service-card:hover .service-card__media img {
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.04) brightness(0.72);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.04) 30%,
      rgba(20, 24, 32, 0.34) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  z-index: 0;
  pointer-events: none;
}
a.service-card:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
  transition: color 0.3s var(--ease-in-out);
}
.service-card p {
  color: var(--color-text-muted);
  font-size: .95rem;
  line-height: 1.7;
  flex: 1;
}
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(232,116,42,0);
  color: var(--color-teal);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s var(--ease-in-out),
    transform 0.35s var(--ease-spring),
    background 0.3s var(--ease-in-out);
}
.card-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.3s var(--ease-spring);
}
.service-card:hover .card-arrow {
  opacity: 1;
  transform: translateY(0);
  background: rgba(232,116,42,0.08);
}
.service-card:hover .card-arrow svg {
  transform: translateX(4px);
}
.service-card:hover h3 {
  color: var(--color-teal-light);
}
.service-card:hover .card-icon {
  background: rgba(232,116,42,.16);
  border-color: rgba(232,116,42,.3);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 4px 16px rgba(232,116,42,.18);
}

/* Variação visual exclusiva do card "obra damha fit" */
.service-card--damha-fit {
  border-radius: 2.8rem 0.9rem 2.8rem 0.9rem;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  border-color: rgba(232, 116, 42, 0.35);
  box-shadow:
    0 18px 42px rgba(8, 10, 14, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
}
.service-card--damha-fit::before {
  opacity: 1;
  background: linear-gradient(90deg, rgba(232, 116, 42, 0.95), rgba(255, 201, 107, 0.2));
}
.service-card--damha-fit:hover {
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  border-color: rgba(255, 201, 107, 0.55);
}
.service-card--damha-fit .service-card__media::before {
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.42) 0%, rgba(10, 12, 16, 0.68) 100%),
    linear-gradient(120deg, rgba(255, 179, 71, 0.25) 0%, rgba(232, 116, 42, 0.2) 45%, transparent 75%);
}
.service-card__badge {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card__badge--damha-fit {
  color: #1b1408;
  background: linear-gradient(135deg, #ffd27a 0%, #ffb14a 100%);
  border: 1px solid rgba(255, 222, 160, 0.8);
  box-shadow: 0 8px 18px rgba(255, 177, 74, 0.3);
}
.service-card--damha-fit .card-icon {
  background: rgba(255, 177, 74, 0.14);
  border-color: rgba(255, 177, 74, 0.36);
  color: #ffca7a;
}
.service-card--damha-fit:hover .card-icon {
  background: rgba(255, 177, 74, 0.22);
  border-color: rgba(255, 177, 74, 0.55);
  color: #ffd99f;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(255, 177, 74, 0.32);
}
.service-card--damha-fit h3 {
  text-shadow: 0 4px 18px rgba(255, 177, 74, 0.22);
}

/* ═══════════════════════════════════════════════════
   PROJETOS (DINÂMICO)
   ═══════════════════════════════════════════════════ */
.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.project-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 38%),
    rgba(32, 36, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition:
    box-shadow var(--duration-base) var(--ease-in-out),
    border-color var(--duration-base) var(--ease-in-out),
    background var(--duration-base) var(--ease-in-out),
    clip-path 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.projects-grid .project-card:nth-child(odd) {
  border-radius: 1.25rem 2.5rem 1.25rem 1.25rem;
}
.projects-grid .project-card:nth-child(even) {
  border-radius: 2.25rem 1rem 2rem 1.5rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.projects-grid .project-card:nth-child(even):hover {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}
.project-card:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 42%),
    rgba(36, 40, 50, 0.48);
  backdrop-filter: blur(26px) saturate(1.3);
  -webkit-backdrop-filter: blur(26px) saturate(1.3);
  border-color: rgba(232, 116, 42, 0.25);
  box-shadow:
    var(--shadow-lg),
    var(--shadow-glow),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.project-card img {
  width:100%; height:240px;
  object-fit:cover;
  filter: saturate(0.78) brightness(0.92) contrast(1.05);
  transition: transform var(--duration-slow) var(--ease-out), filter var(--duration-slow) var(--ease-out);
}
.project-card:hover img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.96) contrast(1.03);
}
.project-card-body {
  padding: var(--space-6);
}
.project-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
}
.project-card-body p {
  color: var(--color-text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

.skeleton-loader {
  background: linear-gradient(90deg, var(--color-bg-surface) 25%, rgba(232,116,42,.04) 50%, var(--color-bg-surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s infinite ease-in-out;
  border-radius: var(--radius-xl);
  height: 320px;
}
@keyframes skeleton-pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════════════
   CLIENTES
   ═══════════════════════════════════════════════════ */
#clientes.section-container.dark {
  --clientes-base: 18, 20, 22;
  --clientes-mid: 24, 28, 32;
  --clientes-deep: 14, 16, 18;
  --clientes-hero-h: clamp(230px, 24vw, 290px);
  max-width: none;
  width: 100%;
  margin: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 0 var(--space-20);
  background-color: rgb(var(--clientes-base));
}
.clientes-bg-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.clientes-bg__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transform-origin: 50% 45%;
  transform: scale(1);
  filter: saturate(0.72) brightness(0.76) contrast(1.06);
  will-change: transform, opacity;
  opacity: 0;
}
.clientes-bg__image-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 14, 0.08) 0%,
    rgba(10, 12, 14, 0.1) 24%,
    rgba(10, 12, 14, 0.26) 44%,
    rgba(8, 10, 12, 0.58) 72%,
    rgba(8, 10, 12, 0.84) 100%
  );
  box-shadow: inset 0 0 140px rgba(10, 12, 14, 0.32);
}
.clientes-bg-gradients {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(
      105deg,
      rgba(var(--clientes-mid), 0.84) 0%,
      rgba(var(--clientes-deep), 0.68) 42%,
      rgba(16, 18, 20, 0.4) 72%,
      rgba(12, 14, 16, 0.5) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(var(--clientes-base), 0.56) 0%,
      rgba(var(--clientes-base), 0.2) 22%,
      rgba(var(--clientes-base), 0.12) 40%,
      rgba(var(--clientes-base), 0.62) 66%,
      rgba(var(--clientes-base), 0.84) 82%,
      rgba(var(--clientes-base), 0.96) 100%
    ),
    radial-gradient(
      circle at 15% 20%,
      rgba(232, 116, 42, 0.12) 0%,
      transparent 45%
    );
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#clientes.section-container.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='gcl'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23gcl)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(165deg, rgba(232, 116, 42, 0.05) 0%, transparent 36%, rgba(8, 10, 12, 0.26) 100%);
  mix-blend-mode: soft-light;
}
#clientes.section-container.dark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--clientes-hero-h) - 18px);
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 12, 14, 0) 0%,
    rgba(10, 12, 14, 0.36) 24%,
    rgba(10, 12, 14, 0.72) 52%,
    rgba(10, 12, 14, 0.9) 76%,
    rgba(8, 10, 12, 1) 100%
  );
}
#clientes.section-container.dark > .section-header,
#clientes.section-container.dark > .clientes-grid {
  position: relative;
  z-index: 4;
}
#clientes.section-container.dark > .section-header {
  max-width: none;
  text-align: center;
  min-height: var(--clientes-hero-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(90px, 8.5vw, 112px);
  padding-bottom: clamp(16px, 2.6vw, 24px);
  padding-left: var(--space-8);
  padding-right: var(--space-8);
  margin-bottom: 0;
}
#clientes .section-header h2 {
  color: #ffffff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}
#clientes .section-header .section-lead {
  color: rgba(255, 255, 255, 0.92);
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
#clientes.section-container.dark > .clientes-bg-media,
#clientes.section-container.dark > .clientes-bg-gradients {
  max-width: none;
  margin: 0;
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  max-width: 1200px;
  margin: clamp(22px, 3.2vw, 40px) auto 0;
  padding-left: var(--space-8);
  padding-right: var(--space-8);
  position: relative;
  z-index: 4;
}

.cliente-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 38%,
      rgba(20, 24, 32, 0.28) 100%
    ),
    rgba(22, 26, 34, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  overflow: hidden;
  cursor: pointer;
  min-height: 140px;
  transition:
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s var(--ease-in-out),
    border-color 0.35s var(--ease-in-out),
    background 0.35s var(--ease-in-out);
}
.cliente-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(232, 116, 42, 0) 0%,
    rgba(232, 116, 42, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease-in-out);
  pointer-events: none;
  z-index: 0;
}
.cliente-card:hover::before {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(232, 116, 42, 0.12) 0%,
    transparent 70%
  );
  opacity: 1;
}
.cliente-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(232, 116, 42, 0.35);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 48px rgba(232, 116, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 40%,
      rgba(24, 28, 36, 0.18) 100%
    ),
    rgba(32, 36, 46, 0.55);
}
.cliente-card img {
  position: relative;
  z-index: 1;
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.85) saturate(0) contrast(1.1);
  opacity: 0.7;
  transition:
    filter 0.4s var(--ease-in-out),
    opacity 0.4s var(--ease-in-out),
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.cliente-card:hover img {
  filter: brightness(1.05) saturate(1) contrast(1);
  opacity: 1;
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════
   CONTATO
   ═══════════════════════════════════════════════════ */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}
.contact-form {
  display:flex;
  flex-direction:column;
  gap: var(--space-6);
}
.form-group {
  position:relative;
  display:flex;
  flex-direction:column;
}
.form-group label {
  color: var(--color-text-prime);
  font-weight: 500;
  margin-bottom: var(--space-3);
  font-size: .9rem;
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(24, 22, 20, 0.6);
  border: 1px solid rgba(232,116,42,.12);
  color: var(--color-text-prime);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    border-color 0.3s var(--ease-in-out),
    box-shadow 0.3s var(--ease-in-out),
    background 0.3s var(--ease-in-out);
}
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: rgba(232,116,42,.25);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-teal);
  box-shadow:
    0 0 0 3px rgba(232,116,42,.1),
    0 4px 16px rgba(232,116,42,.06);
  background: rgba(30, 27, 24, 0.7);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.floating { position:relative; }
.form-group.floating label {
  position:absolute;
  top:1rem; left:1rem;
  transform-origin:left;
  pointer-events:none;
  transition: all var(--duration-base);
  margin-bottom:0;
}
.form-group.floating input:not(:placeholder-shown) + label,
.form-group.floating input:focus + label {
  transform: translateY(-1.6rem) scale(.85);
  color: var(--color-teal);
  background: var(--color-bg-secondary);
  padding: 0 .25rem;
}
.form-group.floating input:focus + label {
  background: var(--color-bg-surface);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.info-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 var(--space-5);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 40%, rgba(20,24,32,0.3) 100%),
    rgba(24, 28, 36, 0.82);
  padding: var(--space-6) var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: none;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s var(--ease-in-out),
    border-color 0.35s var(--ease-in-out),
    background 0.35s var(--ease-in-out);
}
.info-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-teal), var(--color-teal-light));
  border-radius: 0 2px 2px 0;
  opacity: 0.7;
  transition: width 0.35s var(--ease-spring), opacity 0.3s;
}
.info-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 0% 50%,
    rgba(232,116,42,0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease-in-out);
  pointer-events: none;
}

.info-card__icon {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(232,116,42,0.1);
  border: 1px solid rgba(232,116,42,0.15);
  color: var(--color-teal);
  transition:
    background 0.3s var(--ease-in-out),
    border-color 0.3s var(--ease-in-out),
    transform 0.4s var(--ease-spring),
    box-shadow 0.3s var(--ease-in-out);
}
.info-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.contact-info .info-card:nth-child(1) {
  border-radius: 1.25rem 2rem 1rem 1rem;
}
.contact-info .info-card:nth-child(2) {
  border-radius: 2rem 0.75rem 1.75rem 2rem;
}
.contact-info .info-card:nth-child(3) {
  border-radius: 1rem;
}
.contact-info .info-card:nth-child(4) {
  border-radius: 0.65rem 2.25rem 1.25rem 0.65rem;
}

.info-card:hover {
  transform: translateY(-3px) translateX(4px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 40%, rgba(24,28,36,0.2) 100%),
    rgba(30, 34, 44, 0.65);
  border-color: rgba(232,116,42,0.3);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.32),
    0 0 36px rgba(232,116,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.info-card:hover::before {
  width: 4px;
  opacity: 1;
}
.info-card:hover::after {
  opacity: 1;
}
.info-card:hover .info-card__icon {
  background: rgba(232,116,42,0.18);
  border-color: rgba(232,116,42,0.35);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(232,116,42,0.2);
}

.info-card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-1);
  position: relative;
  z-index: 1;
}
.info-card p,
.info-card > a {
  color: var(--color-text-secondary);
  font-size: .95rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
  transition: color 0.25s var(--ease-in-out);
}
.info-card a {
  color: var(--color-text-secondary);
  transition: color 0.25s var(--ease-in-out);
}
.info-card:hover a,
.info-card:hover p a {
  color: var(--color-text-prime);
}
.info-card a:hover {
  color: var(--color-teal-light);
}

.form-success {
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.25);
  color: var(--color-success);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  font-weight: 500;
  font-size: .95rem;
  display: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(16,185,129,.08);
}
.form-success.visible {
  display: block;
  animation: fadeSlideIn 0.4s var(--ease-spring) forwards;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background:
    linear-gradient(180deg, rgba(20,24,32,0.8) 0%, rgba(16,18,22,0.95) 100%);
  padding: var(--space-8) var(--space-8);
  border-top: 1px solid rgba(232,116,42,.08);
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-content p {
  color: var(--color-text-muted);
  font-size: .9rem;
}
.footer-links {
  display: flex;
  gap: var(--space-2);
}
.footer-links a {
  position: relative;
  color: var(--color-text-muted);
  font-size: .85rem;
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transition:
    color 0.25s var(--ease-in-out),
    background 0.25s var(--ease-in-out);
}
.footer-links a:hover {
  color: var(--color-teal-light);
  background: rgba(232,116,42,0.08);
}
.footer-links a:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

/* Social links card (baseado no snippet Uiverse) */
.social-links-wrap {
  max-width: 1400px;
  margin: var(--space-6) auto 0;
  display: flex;
  justify-content: center;
}

.social-card-links {
  width: fit-content;
  height: fit-content;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
}

.socialContainer {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(232,116,42,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition:
    background 0.35s var(--ease-in-out),
    border-color 0.35s var(--ease-in-out),
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s var(--ease-in-out);
}

.containerOne:hover {
  background: #d62976;
  border-color: #d62976;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(214,41,118,0.3);
}

.containerTwo:hover {
  background: #1877f2;
  border-color: #1877f2;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(24,119,242,0.3);
}

.containerThree:hover {
  background: #ea4335;
  border-color: #ea4335;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(234,67,53,0.3);
}

.containerFour:hover {
  background: #128c7e;
  border-color: #128c7e;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(18,140,126,0.3);
}

.socialContainer:active {
  transform: scale(0.92);
  transition-duration: 0.15s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.gmailSvg {
  width: 19px;
}

.gmailSvg path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════
   SCROLL PROGRESS BUTTON
   ═══════════════════════════════════════════════════ */
.scroll-progress-btn {
  --scroll-progress: 0deg;
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  transform: translateY(16px) scale(0.88);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease-in-out),
    transform 0.4s var(--ease-spring),
    filter 0.3s var(--ease-in-out);
}
.scroll-progress-btn.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-progress-btn__ring {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    conic-gradient(
      from -90deg,
      var(--color-teal) 0deg var(--scroll-progress),
      rgba(255, 255, 255, 0.1) var(--scroll-progress) 360deg
    );
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(232, 116, 42, 0.16);
  transition: box-shadow 0.3s var(--ease-in-out);
}
.scroll-progress-btn__inner {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(16, 18, 22, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition:
    background 0.3s var(--ease-in-out),
    border-color 0.3s var(--ease-in-out),
    transform 0.35s var(--ease-spring),
    box-shadow 0.3s var(--ease-in-out);
}
.scroll-progress-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-spring);
}
.scroll-progress-btn:hover .scroll-progress-btn__ring {
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.4),
    0 0 36px rgba(232, 116, 42, 0.22);
}
.scroll-progress-btn:hover .scroll-progress-btn__inner {
  transform: translateY(-2px);
  background: rgba(22, 26, 32, 0.98);
  border-color: rgba(232, 116, 42, 0.5);
  box-shadow: 0 4px 16px rgba(232, 116, 42, 0.12);
}
.scroll-progress-btn:hover svg {
  transform: translateY(-2px);
}
.scroll-progress-btn:active .scroll-progress-btn__inner {
  transform: translateY(0) scale(0.95);
}
.scroll-progress-btn:focus-visible {
  outline: 2px solid rgba(232, 116, 42, 0.9);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVIDADE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar { padding: var(--space-2) var(--space-3); }
  .navbar-inner {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) var(--space-4);
    border-radius: 16px;
    min-height: 3rem;
  }
  .nav-cta--desktop { display: none; }
  .nav-cta--mobile { display: inline-flex; }

  .hamburger {
    display: flex;
    min-height: 44px;
    min-width: 44px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85vw;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background:
      linear-gradient(195deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
      linear-gradient(160deg, rgba(34, 38, 48, 0.88) 0%, rgba(22, 26, 34, 0.95) 100%);
    backdrop-filter: blur(26px) saturate(1.4);
    -webkit-backdrop-filter: blur(26px) saturate(1.4);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      -12px 0 48px rgba(0, 0, 0, 0.32),
      inset 1px 0 0 rgba(232, 116, 42, 0.08);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: var(--space-3);
    padding: var(--space-8) var(--space-6);
    transition: right var(--duration-slow) var(--ease-in-out);
    z-index: 999;
    border-radius: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.active { right: 0; }
  .nav-menu .nav-item {
    font-size: 1.05rem;
    padding: 0.875rem 1.25rem;
    min-height: 48px;
    border-radius: var(--radius-md);
    text-align: left;
    justify-content: flex-start;
  }
  .nav-menu .nav-cta {
    margin-left: 0;
    margin-top: var(--space-6);
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    min-height: 50px;
    text-align: center;
    justify-content: center;
  }

  .hero-section {
    padding: calc(64px + var(--space-6)) var(--space-4) var(--space-8);
    min-height: min(100dvh, 900px);
    align-items: flex-end;
  }
  .hero-bg__image {
    object-position: 68% 42%;
    transform-origin: 68% 42%;
  }
  .hero-copy {
    padding: var(--space-5) var(--space-5);
  }
  .hero-title { font-size: clamp(1.55rem, 8vw, 2.25rem); }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
  }
  .hero-equipment {
    font-size: 0.68rem;
    margin-bottom: var(--space-4);
  }
  .hero-trust li {
    font-size: 0.82rem;
    padding-left: var(--space-5);
    line-height: 1.5;
  }
  .hero-trust {
    gap: var(--space-2);
    padding-top: var(--space-3);
  }
  .hero-cta-group {
    gap: var(--space-3);
  }

  h2, .h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  h3, .h3 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .section-container { padding: var(--space-10) var(--space-4); }
  .section-container.dark { padding: var(--space-10) var(--space-4); }
  .section-header { margin-bottom: var(--space-8); }
  .section-lead {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .card-grid,
  .projects-grid,
  .stats-container { grid-template-columns: 1fr; }

  .card {
    padding: var(--space-6) var(--space-5);
  }
  .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-4);
  }
  .card-icon svg { width: 24px; height: 24px; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .card-arrow {
    opacity: 1;
    transform: translateY(0);
    margin-top: var(--space-4);
    padding: var(--space-2) var(--space-3);
    font-size: 0.72rem;
    background: rgba(232,116,42,0.06);
  }

  .stat-card {
    padding: 0.95rem 1rem 1.05rem;
    border-radius: 18px;
  }
  .stats-container .stat-card:nth-child(1),
  .stats-container .stat-card:nth-child(2),
  .stats-container .stat-card:nth-child(3) {
    clip-path: none;
    border-radius: 18px;
  }
  .stat-value {
    font-size: clamp(1.55rem, 8.5vw, 2.2rem);
    margin-bottom: 0.28rem;
  }
  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding-top: 0.45rem;
  }
  .stat-card:hover {
    transform: translateY(-2px);
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset,
      0 0 28px rgba(232, 116, 42, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.11);
  }
  .stat-card::after {
    width: 92px;
    height: 92px;
  }
  .about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .contact-container { grid-template-columns: 1fr; gap: var(--space-8); }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
  }
  .form-group label {
    font-size: 0.85rem;
  }
  .form-group.floating label {
    top: 0.9rem;
    left: 0.9rem;
    font-size: 0.85rem;
  }
  .form-group.floating input:not(:placeholder-shown) + label,
  .form-group.floating input:focus + label {
    transform: translateY(-1.5rem) scale(0.82);
  }
  .form-group textarea {
    min-height: 110px;
  }
  .contact-form {
    gap: var(--space-5);
  }

  #contato.section-container.dark {
    --contact-hero-h: clamp(160px, 48vw, 210px);
    padding-bottom: var(--space-10);
  }
  #contato.section-container.dark > .section-header {
    padding-top: clamp(68px, 14vw, 88px);
    padding-bottom: clamp(10px, 4vw, 18px);
    min-height: var(--contact-hero-h);
  }
  #contato.section-container.dark > .contact-container {
    margin-top: clamp(16px, 5vw, 24px);
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  #clientes.section-container.dark {
    --clientes-hero-h: clamp(160px, 48vw, 210px);
    padding-bottom: var(--space-10);
  }
  #clientes.section-container.dark > .section-header {
    padding-top: clamp(68px, 14vw, 88px);
    padding-bottom: clamp(10px, 4vw, 18px);
    min-height: var(--clientes-hero-h);
  }
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    margin-top: clamp(16px, 5vw, 24px);
  }
  .cliente-card {
    min-height: 100px;
    padding: var(--space-5) var(--space-3);
  }
  .cliente-card img {
    max-width: 100px;
    max-height: 55px;
  }

  .info-card {
    grid-template-columns: 44px 1fr;
    gap: 0 var(--space-3);
    padding: var(--space-4) var(--space-4);
  }
  .info-card__icon {
    width: 44px;
    height: 44px;
  }
  .info-card__icon svg {
    width: 20px;
    height: 20px;
  }
  .info-card h3 {
    font-size: 0.75rem;
  }
  .info-card p,
  .info-card > a {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .contact-info {
    gap: var(--space-3);
  }

  .footer {
    padding: var(--space-6) var(--space-4);
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
  .footer-content p {
    font-size: 0.82rem;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-links a {
    font-size: 0.8rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .social-card-links {
    padding: 16px 12px;
    gap: 14px;
  }
  .socialContainer {
    width: 46px;
    height: 46px;
  }

  .btn {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
  }
  .btn-secondary {
    min-height: 48px;
  }

  .scroll-indicator { display: none; }
  .scroll-progress-btn {
    width: 50px;
    height: 50px;
    right: 0.75rem;
    bottom: 0.75rem;
  }
  .scroll-progress-btn__inner {
    width: 38px;
    height: 38px;
  }
  .scroll-progress-btn svg {
    width: 18px;
    height: 18px;
  }

  .vignette-overlay {
    opacity: 0.65;
  }
  .film-grain {
    opacity: 0.015;
  }
}

/* ── Telas muito pequenas (320px - 374px) ────────── */
@media (max-width: 374px) {
  .navbar-inner {
    padding: var(--space-2) var(--space-3);
  }
  .navbar-logo img {
    height: 32px;
  }

  .hero-section {
    padding: calc(58px + var(--space-5)) var(--space-3) var(--space-6);
  }
  .hero-copy {
    padding: var(--space-4);
  }
  .hero-title {
    font-size: clamp(1.35rem, 8vw, 1.75rem);
  }
  .hero-subtitle {
    font-size: 0.88rem;
  }
  .hero-eyebrow {
    font-size: 0.65rem;
  }
  .hero-trust li {
    font-size: 0.78rem;
  }

  h2, .h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  h3, .h3 {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }

  .section-container,
  .section-container.dark {
    padding: var(--space-8) var(--space-3);
  }
  .section-lead {
    font-size: 0.88rem;
  }

  .card {
    padding: var(--space-5) var(--space-4);
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.85rem;
  }

  .stat-card {
    padding: var(--space-5) var(--space-4) var(--space-6);
  }
  .stat-value {
    font-size: 2rem;
  }

  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }
  .cliente-card {
    min-height: 85px;
    padding: var(--space-4) var(--space-2);
  }
  .cliente-card img {
    max-width: 80px;
    max-height: 45px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: var(--space-3) var(--space-4);
  }

  #contato.section-container.dark > .contact-container,
  .clientes-grid {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .info-card {
    grid-template-columns: 40px 1fr;
    gap: 0 var(--space-2);
    padding: var(--space-3);
  }
  .info-card__icon {
    width: 40px;
    height: 40px;
  }
  .info-card__icon svg {
    width: 18px;
    height: 18px;
  }
  .info-card p,
  .info-card > a {
    font-size: 0.8rem;
    word-break: break-word;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
  }

  .footer-content p {
    font-size: 0.78rem;
  }

  .nav-menu {
    width: 92vw;
    padding: var(--space-6) var(--space-4);
  }
  .nav-menu .nav-item {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
  .stats-container {
    gap: 10px;
  }
  .stat-card {
    padding: 0.85rem 0.9rem 0.9rem;
    border-radius: 14px;
  }
  .stats-container .stat-card:nth-child(1),
  .stats-container .stat-card:nth-child(2),
  .stats-container .stat-card:nth-child(3) {
    border-radius: 14px;
  }
  .stat-value {
    font-size: clamp(1.35rem, 9vw, 1.8rem);
    margin-bottom: 0.2rem;
  }
  .stat-label {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
    padding-top: 0.36rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-layout { max-width: 560px; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: calc(88px + var(--space-10)) var(--space-16) var(--space-20);
    align-items: flex-end;
  }
  .hero-layout {
    max-width: min(640px, 44vw);
    margin-left: 0;
  }
  .hero-copy {
    padding: var(--space-10) var(--space-10);
  }
  .card-grid { grid-template-columns: repeat(3,1fr); }
  .section-container { padding: var(--space-24) var(--space-16); }
  .section-container.dark { padding: var(--space-24) var(--space-16); }
}

@media (min-width: 1440px) {
  .hero-section {
    padding-left: clamp(var(--space-16), 6vw, 5rem);
    padding-right: clamp(var(--space-16), 6vw, 5rem);
  }
  .hero-layout { max-width: 680px; }
}

@media (min-width: 2560px) {
  h1,.h1 { font-size:5rem; }
  body { font-size:1.125rem; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator span::before {
    animation: none;
  }
  .hero-bg__parallax,
  .hero-bg__image {
    transform: none !important;
  }
  .sobre-bg__photo {
    opacity: 1;
    transform: none;
  }
  .clientes-bg__photo {
    opacity: 1;
    transform: none;
  }
  .contato-bg__photo {
    opacity: 1;
    transform: none;
  }
  .film-grain {
    animation: none;
    opacity: 0.02;
  }
}
