:root {
  --bg: #0b0c10;
  --card: #121318;
  --muted: #1a1c23;
  --brand: #555555;
  --brand-2: #ffffff;
  --text: #e9ecf1;
  --sub: #a9b0bd;
  --line: #4d4d4d;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  color: var(--text)
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 16, .65);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line)
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 20px rgba(135, 135, 136, 0.35)
}

.header img {
  width: 89px;

}

.menu {
  display: flex;
  gap: 22px;
  align-items: center
}

.menu a {
  font-weight: 600;
  color: var(--sub)
}

.menu a:hover {
  color: var(--text)
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  padding: 10px 16px;
  border-radius: 12px;
  color: #0b0c10;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(135, 135, 136, 0.35)
}

.burger {
  display: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--line)
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0
}

/* Mobile menu */
.mobile {
  display: none;
  position: fixed;
  inset: 72px 0 auto 0;
  background: rgba(11, 12, 16, .98);
  border-bottom: 1px solid var(--line);
  padding: 16px
}

.mobile a {
  display: block;
  padding: 12px 8px;
  border-radius: 10px;
  color: var(--sub)
}

.mobile a:hover {
  background: var(--muted);
  color: var(--text)
}

/* Sections */
section {
  scroll-margin-top: 92px
}

/* Hero */
.hero {
  padding: 72px 0 40px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 230, 230, 0.12);
  color: #b3b2b8;
  border: 1px solid rgba(135, 135, 136, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 12px
}

.title {
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 14px;
  font-weight: 900
}

.sub {
  color: var(--sub);
  font-size: 18px;
  margin: 0 0 22px
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.ghost {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--text)
}

.ghost:hover {
  background: var(--muted)
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45)
}

.vid {
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden
}

/* Logos strip */
.logos {
  padding: 16px 0 40px;
  opacity: .9
}

.logos .row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center
}

.logo-item {
  height: 40px;
  opacity: .6;
  filter: grayscale(100%)
}

/* Services */
.section-title {
  font-size: 32px;
  margin: 0 0 8px
}

.section-sub {
  color: var(--sub);
  margin: 0 0 24px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.svc {
  padding: 20px
}

.svc h3 {
  margin: 0 0 8px
}

.badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(79, 227, 193, .12);
  color: #b6fff0;
  border: 1px solid rgba(79, 227, 193, .25);
  margin-left: 8px
}

/* Studios/Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px
}

.gallery .big {
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden
}

.gallery .col {
  display: grid;
  gap: 18px
}

.gallery .sm {
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.price {
  font-size: 36px;
  font-weight: 900
}

.features {
  list-style: none;
  padding: 0;
  margin: 12px 0 0
}

.features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
  color: var(--sub)
}

/* Testimonials (carousel) */
.carousel {
  position: relative;
  overflow: hidden
}

.track {
  display: flex;
  transition: transform .5s ease
}

.slide {
  min-width: 100%;
  padding: 20px
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #394055;
  border: 1px solid var(--line);
  cursor: pointer
}

.dot.active {
  background: var(--brand)
}

/* FAQ */
.faq details {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px
}

.faq summary {
  cursor: pointer;
  font-weight: 700
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f1117;
  color: var(--text)
}

textarea.input {
  min-height: 120px;
  resize: vertical
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--sub)
}

/* Utilities */
.mt {
  margin-top: 48px
}

.mt-lg {
  margin-top: 72px
}

.pad {
  padding: 28px
}

/* Responsive */
@media (max-width: 980px) {

  .hero-grid,
  .gallery,
  .contact {
    grid-template-columns: 1fr
  }

  .plans {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .logos .row {
    grid-template-columns: repeat(3, 1fr)
  }

  .menu {
    display: none
  }

  .burger {
    display: block
  }

  .mobile {
    display: block;
    transform: translateY(-120%);
    transition: transform .3s ease
  }

  .mobile.open {
    transform: translateY(0)
  }
}
/* ----- LOGOS / EQUIPAMENTOS ----- */
.logos .wrap.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* antes era 220px */
  gap: 24px;
  filter: none;
}

.logos figure {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  filter: none;
}

.logos figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  filter: none;
}

.logos img.logo-item {
  width: 100%;
  height: 250px;
 
  display: block;
  filter: none; /* ou simplesmente apague essa linha */
}

.logos figcaption {
  padding: 12px;
  font-size: .95rem;
  color: #ddd;
  filter: none;
}

/* FIX: evita faixa branca por content-visibility */
section,
header.navbar,
footer {
  content-visibility: visible;      /* volta ao normal */
  contain-intrinsic-size: auto;     /* remove tamanho fictício */
}

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: background 0.3s;
  z-index: 1000;
}
.whatsapp-fixo:hover {
  background: #1ebe5d;
}


.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #25d366;
  color: #fff
}

/* container com mesma estética do seu .vid */
.vid.yt-lite {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  /* Thumb do YouTube só é aplicada via JS quando entra em viewport */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Botão central */
.yt-lite .yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  padding: 12px 18px; border: 0; border-radius: 999px;
  background: #e50914; color:#fff; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}
.yt-lite .yt-play:hover { filter: brightness(1.05); }
