﻿:root {
  --black: #060606;
  --dark:  #0d0d0d;
  --card:  #111111;
  --border:#1e1e1e;
  --cyan:  #00EDEE;
  --blue:  #3A84C0;
  --grad:  linear-gradient(135deg, #00EDEE 0%, #3A84C0 100%);
  --white: #ffffff;
  --gray:  #666666;
  --lgray: #aaaaaa;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
.sec {
  padding: 110px 68px;
}
.inner {
  max-width: 1320px;
  margin: 0 auto;
}
.lbl {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.div {
  width: 44px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin-bottom: 26px;
}
.h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.body {
  font-size: 19px;
  font-weight: 300;
  color: var(--white);
  opacity: 0.85;
  line-height: 1.8;
  max-width: 640px;
}
.btn-p {
  background: var(--grad);
  color: #000;
  padding: 14px 36px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.2s;
}
.btn-p:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}
.btn-o {
  border: 1px solid rgba(0, 237, 238, 0.3);
  color: var(--cyan);
  padding: 14px 36px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-o:hover {
  background: rgba(0, 237, 238, 0.06);
  border-color: var(--cyan);
}
.btn-reel {
  transition: all 0.3s ease;
}
.btn-reel:hover,
.hero-video-box:hover + div .btn-reel {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: var(--cyan) !important;
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 237, 238, 0.2) !important;
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  padding: 18px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.3s;
}
nav.scrolled {
  padding: 12px 68px;
}
.logo-container {
  height: 53px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.logo-container:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(0, 237, 238, 0.3));
}
.nav-logo {
  height: 53px;
  width: auto;
  display: block;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
}
nav ul a {
  color: var(--lgray);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
nav ul a:hover,
nav ul a.on {
  color: var(--cyan);
}
.nav-cta {
  background: var(--grad);
  color: #000;
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-cta:hover {
  opacity: 0.82;
}
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 60px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 237, 238, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 237, 238, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(6, 6, 6, 0) 0%, rgba(6, 6, 6, 0.75) 100%);
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 55% 45% at 50% 42%, rgba(0, 237, 238, 0.05) 0%, transparent 65%);
}
.hero-vid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.65;
  z-index: 0;
}
.hero-vid iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(6, 6, 6, 0.5) 0%, rgba(6, 6, 6, 0.7) 60%, rgba(6, 6, 6, 1) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 237, 238, 0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 1.6s infinite;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 1px;
  margin-bottom: 22px;
  animation: fadeUp 0.9s 0.3s both;
}
.hero-h1 .g {
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero-sub {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  color: var(--lgray);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.8;
  animation: fadeUp 0.9s 0.5s both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.7s both;
}
.reel-wrap {
  position: relative;
  z-index: 3;
  margin-top: 56px;
  width: min(860px, 90vw);
  animation: fadeUp 1s 0.9s both;
}
.reel-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 237, 238, 0.12);
  background: #080808;
  box-shadow: 0 0 60px rgba(0, 237, 238, 0.06), 0 40px 80px rgba(0, 0, 0, 0.7);
  position: relative;
}
.reel-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
  z-index: 1;
}
.reel-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrl 2.5s ease-in-out infinite;
  z-index: 3;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(0, 237, 238, 0.4), transparent);
}
.nums {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nums .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
}
.nitem {
  text-align: center;
  padding: 56px 24px;
  border-right: 1px solid var(--border);
}
.nitem:last-child {
  border-right: none;
}
.nnum {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -2px;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.nlbl {
  font-size: 12px;
  color: var(--gray);
  margin-top: 5px;
  letter-spacing: 1px;
}
#sobre {
  position: relative;
  overflow: hidden;
}
#sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 237, 238, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 237, 238, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
#sobre .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  position: relative;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.tag {
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.tag:hover {
  border-color: rgba(0, 237, 238, 0.35);
  color: var(--cyan);
}
.stats-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
}
.sgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.snum {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slbl {
  font-size: 13px;
  color: var(--gray);
  margin-top: 5px;
}
#portfolio {
  background: var(--dark);
  padding: 110px 68px;
  position: relative;
  overflow: hidden;
}
#portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 237, 238, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 237, 238, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
}
.port-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
.vgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.vcard {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.25, .46, .45, .94), border-color 0.3s;
}
.vcard:hover {
  transform: scale(1.035);
  border-color: rgba(0, 237, 238, 0.2);
}
.vcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vcard:hover img {
  transform: scale(1.06);
}
.vph {
  width: 100%;
  height: 100%;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vplay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.vcard:hover .vplay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.vplay svg {
  fill: white;
  margin-left: 4px;
}
.vinfo {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity 0.3s;
}
.vcard:hover .vinfo {
  opacity: 1;
}
.vcat {
  font-size: 9px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 3px;
}
.vname {
  font-size: 13px;
  font-weight: 700;
}
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.modal-bg.on {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  width: 90%;
  max-width: 1040px;
  aspect-ratio: 16/9;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(.25, .46, .45, .94);
}
.modal-bg.on .modal-box {
  transform: scale(1);
}
.modal-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
.modal-x {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  letter-spacing: 1px;
}
.modal-x:hover {
  opacity: 1;
}
.casewrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.casewrap.flip {
  direction: rtl;
}
.casewrap.flip > * {
  direction: ltr;
}
.case-img {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
.case-img iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-img picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.case-img-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 237, 238, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.ph-lbl {
  font-size: 10px;
  color: #2a2a2a;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.case-cta {
  display: inline-block;
  margin-top: 34px;
}
#clientes {
  background: #f5f5f5;
  padding: 60px 40px;
}
#clientes .lbl {
  background: none;
  -webkit-text-fill-color: #bbb;
}
#clientes .h2 {
  color: #0d0d0d;
}
.clients-sec {
  background: #fafafa;
  padding: 90px 68px;
}
.clients-inner {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
.clients-sec .lbl {
  background: none;
  -webkit-text-fill-color: #bbb;
  color: #999;
}
.clients-sec .h2 {
  color: var(--blue);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.5vw, 60px);
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 12px;
}
.clients-sec .body {
  color: #666;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}
.clients-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 1200px;
  margin: 0 auto;
}
.clients-img-wrap {
  width: 100%;
}
.clients-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1100px;
  margin: 0 auto;
  object-fit: contain;
}
.clients-scroll-hint {
  display: none;
}
.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 56px;
  margin-top: 54px;
  align-items: center;
}
.cliph {
  width: 110px;
  height: 44px;
  background: #ddd;
  border-radius: 5px;
  opacity: 0.4;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px 28px;
  max-width: 1200px;
  margin: 48px auto 0;
  align-items: center;
  justify-items: center;
}
.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 72px;
}
.logo-item img {
  max-width: 140px;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.75;
  transition: opacity 0.3s;
}
.logo-item img:hover {
  opacity: 1;
}
.logo-txt {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  text-align: center;
  line-height: 1.4;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.logo-txt:hover {
  opacity: 1;
}
#contato {
  position: relative;
  overflow: hidden;
}
#contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 237, 238, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 237, 238, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
}
#contato .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.clinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}
.clink {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--lgray);
  text-decoration: none;
  font-size: 15px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}
.clink:hover {
  color: var(--cyan);
  border-color: rgba(0, 237, 238, 0.25);
  background: rgba(0, 237, 238, 0.03);
}
.clink-ic {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.clink-ic svg {
  width: 20px;
  height: 20px;
}
.cmeta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cmeta small {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cmeta span {
  font-size: 15px;
}
.fcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.fcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
}
.fcard h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
}
.fcard p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 28px;
}
.fg {
  margin-bottom: 16px;
}
.fg label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: rgba(0, 237, 238, 0.4);
}
.fg textarea {
  resize: vertical;
  min-height: 90px;
}
.fg select option {
  background: #111;
}
.bsend {
  width: 100%;
  background: var(--grad);
  color: #000;
  padding: 14px;
  border: none;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-top: 4px;
}
.bsend:hover {
  opacity: 0.84;
}
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 34px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer p {
  font-size: 12px;
  color: var(--gray);
}
.flinks {
  display: flex;
  gap: 24px;
}
.flinks a {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}
.flinks a:hover {
  color: var(--cyan);
}
.wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.wa svg {
  width: 26px;
  height: 26px;
  fill: white;
}
@keyframes blink {
  0%, 100% { opacity: 1;   }
  50%       { opacity: 0.2; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none;             }
}
@keyframes scrl {
  0%, 100% { transform: translateX(-50%) translateY(0);  opacity: .4; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 1;  }
}
.rv,
.rl,
.rr {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity   0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv.vis,
.rl.vis,
.rr.vis {
  opacity: 1;
  transform: translateY(0);
}
.indicator-item {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition-property: opacity, transform !important;
  transition-duration: 0.9s !important;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.indicator-item.vis {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
@media (max-width: 1100px) {
  .vgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  nav {
    padding: 14px 20px;
  }
nav ul {
    display: none;
  }
.logo-container {
    height: 44px;
  }
.nav-logo {
    height: 44px;
  }
.sec,
  #portfolio,
  #contato {
    padding: 70px 20px;
  }
.nums .inner {
    grid-template-columns: repeat(2, 1fr);
  }
.nitem {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
#sobre .inner,
  .casewrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
#contato > div {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }
.casewrap.flip {
    direction: ltr;
  }
.vgrid {
    grid-template-columns: repeat(2, 1fr);
  }
footer {
    padding: 24px 20px;
  }
.hero-video-box {
    aspect-ratio: 16/9 !important;
  }
.clients-sec {
    padding: 56px 0;
  }
.clients-inner {
    padding: 0 20px;
  }
.clients-card {
    padding: 10px 6px;
    border-radius: 10px;
    max-width: none;
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
.clients-scroll-hint {
    display: none;
  }
.clients-img-wrap {
    overflow-x: hidden;
    width: 100%;
  }
.clients-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
.logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .vgrid {
    grid-template-columns: 1fr;
  }
.sgrid {
    grid-template-columns: 1fr 1fr;
  }
.fcard {
    padding: 24px 18px;
  }
nav {
    padding: 12px 16px;
  }
.clients-sec {
    padding: 40px 0;
  }
.clients-inner {
    padding: 0 16px;
  }
.clients-card {
    padding: 8px 4px;
    margin: 0 -16px;
    width: calc(100% + 32px);
    border-radius: 8px;
  }
}
@media (max-width: 600px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}
.hero-video-box {
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-video-box:hover {
  border-color: rgba(0, 237, 238, 0.4) !important;
  box-shadow: 0 20px 40px rgba(0, 237, 238, 0.15), 0 0 40px rgba(0, 237, 238, 0.05);
}
.play-btn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  width: 80px;
  height: 80px;
  background: rgba(6, 6, 6, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  pointer-events: none; 
}
.play-btn-center svg {
  margin-left: 6px;
  fill: #ffffff;
  transition: fill 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-video-box:hover .play-btn-center {
  opacity: 1;
  background: rgba(0, 237, 238, 0.1);
  border-color: rgba(0, 237, 238, 0.5);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(0, 237, 238, 0.2);
}
.hero-video-box:hover .play-btn-center svg {
  fill: #00EDEE;
  transform: scale(1.1);
}
.case-control-btn {
  background: rgba(6, 6, 6, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.case-control-btn:hover {
  background: rgba(0, 237, 238, 0.2);
  border-color: rgba(0, 237, 238, 0.5);
  transform: scale(1.08);
}
@media (max-width: 768px) {
  nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(6, 6, 6, 0.97);
  }
.play-btn-center {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(6, 6, 6, 0.6);
  }
.case-control-btn {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(6, 6, 6, 0.7);
    width: 20px;
    height: 20px;
  }
  .case-control-btn svg {
    transform: scale(0.75);
  }
.btn-reel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.12) !important;
  }
}