/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
font-family: 'Inter', sans-serif; 
  background-color: #0B0B0C; 
  color: #F5F5F5; 
padding-top: 80px; 
} 

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0B0B0C;
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;
transition: all 0.3s ease;
}

.nav-links a {
  color: #00FFB2;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00FFB2;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled {
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(10px);

  padding: 5px 40px;

  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media(max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: flex;
    gap: 20px;
  }

  .nav-links a {
    text-decoration: none;
    color: #F5F5F5;
  }
}

/* HERO */
.hero {
  height: 92vh;
  display: flex;
  align-items: center;
  padding: 40px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 1px;
}

.hero-sub {
  margin-top: 4px;
  margin-left: 0px;
  font-size: 14px;
  opacity: 0.7;
}

button {
  background: #00FFB2;
  color: #0B0B0C;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
}

/* SHOWREEL */
.video-container {
  max-width: 900px;
  margin: 40px auto;
}

.video-container video {
  width: 100%;
  border-radius: 16px;
}

/* SERVIÇOS */
.services {
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.services-subtitle {
  opacity: 0.7;
  margin-bottom: 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.service-card {
  background: #1A1A1D;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0,255,178,0.15);
}

/* TÍTULO */
.service-card h3 {
  margin-bottom: 15px;
}

/* TEXTO */
.service-card p {
  opacity: 0.8;
  line-height: 1.5;
}

/* DEPOIMENTOS */
.testimonials {
  text-align: center;
}

.testimonials h2 {
font-size: 32px;
  margin-bottom: 50px;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
align-items: stretch;
}

/* CARD */
.testimonial-card {
  background: #1A1A1D;
  padding: 20px; /* diminui tamanho */
  border-radius: 16px;
  text-align: left;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
  opacity: 0.9;

  min-height: 70px;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0,255,178,0.15);
}

/* TEXTO */
.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* NOME */
.testimonial-card h4 {
  font-size: 14px;
  opacity: 0.6;
}

/* CTA */
.cta {
  padding: 80px 40px;
  text-align: center;
}

/* BOTÃO WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;

  background: transparent;
  padding: 0;
  border-radius: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 9999;
}

.whatsapp img {
  width: 45px;
  height: 45px;

  transition: all 0.3s ease;

  /* glow base */
  filter: drop-shadow(0 0 8px #00FFB2)
          drop-shadow(0 0 18px #00FFB2);

  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px #00FFB2)
            drop-shadow(0 0 18px #00FFB2);
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 18px #00FFB2)
            drop-shadow(0 0 35px #00FFB2);
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px #00FFB2)
            drop-shadow(0 0 18px #00FFB2);
  }
}

.whatsapp:hover img {
  transform: scale(1.2);

  filter: drop-shadow(0 0 25px #00FFB2)
          drop-shadow(0 0 50px #00FFB2);
}

.whatsapp img:active {
  transform: scale(0.95);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal {
  backdrop-filter: blur(8px);
}

.modal video {
  max-width: 90vw;
  max-height: 90vh;

  width: auto;
  height: auto;

  object-fit: contain;
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* CONTAINER */
.carousel-container {
  position: relative;
  padding: 40px;
}

/* LINHA */
.carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

/* ITEM */
.carousel-item {
  min-width: 400px;
  height: 250px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  user-select: none;
}

/* VÍDEO */
.carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* THUMB */
.thumb {
  width: 100%;
  height: 100%;
  background: #1A1A1D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* DISTÂNCIA BOTÕES */
.service-card button,
.cta button,
.hero button {
  margin-top: -2px;
}

.btn-main {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-main:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,255,178,0.3);
}

.btn-main:active {
  transform: scale(0.97);
}

/* brilho */
.btn-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.btn-main:hover::after {
  left: 100%;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 100px 40px;
  scroll-margin-top: 100px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar {
  height: 60px;
}

/* ABOUT */
.about {
  text-align: center;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.about-card {
  background: #1A1A1D;
  padding: 40px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s;
}

/* HOVER */
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0,255,178,0.15);
}

/* TEXTO */
.about-card p {
  opacity: 0.8;
  line-height: 1.5;
}

/* CLIENTES */
.clients {
  text-align: center;
}

.clients h2 {
  font-size: 35px;
  margin-bottom: 60px; /* ← ERA 30px, AGORA 60px */
  color: #F5F5F5;
}

/* GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  align-items: center;
}

/* LOGOS */
.clients-grid img {
  width: 100%;
  max-width: 120px;
  margin: 0 auto;

  filter: grayscale(100%);
  opacity: 0.6;

  transition: 0.3s;
}

/* HOVER */
.clients-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;
  height: fit-content;

  padding: 0;
  margin: 0;

  text-decoration: none;
  color: inherit;
}

.showreel h2,
.portfolio h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 35px;
}

/* CONTACT */
.contact {
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-subtitle {
  opacity: 0.7;
  margin-bottom: 50px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD */
.contact-card {
  background: #1A1A1D;
  padding: 30px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;

  transition: 0.3s;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0,255,178,0.15);
}

/* TEXTO */
.contact-card p {
  opacity: 0.7;
  margin-top: 10px;
}

.contact-card:first-child {
  border: 1px solid #00FFB2;
}

.logo img {
  transition: transform 0.2s ease;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover,
.testimonial-card:hover,
.about-card:hover {
  transform: translateY(-8px) !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  margin-bottom: 20px;
}

p {
  margin-bottom: 10px;
}

/* HERO COM VÍDEO */
.hero {
  position: relative;
  overflow: hidden;
}

/* VÍDEO NO FUNDO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  transform: translate(-50%, -50%);
  object-fit: cover;

  z-index: -1;
}

/* ESCURECER PRA LER O TEXTO */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 0;
}

/* GARANTE QUE O CONTEÚDO FICA NORMAL */
.hero > div {
  position: relative;
  z-index: 1;
}

/* RESULTADOS */
.results {
  padding: 100px 40px;
  text-align: center;
}

.results h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

/* CAIXA DO VÍDEO */
.video-box {
  aspect-ratio: 9/16;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.video-box {
  box-shadow: 0 0 25px rgba(0,255,178,0.08);
}

/* THUMB */
.thumb {
  width: 100%;
  display: block;
}

/* BOTÃO PLAY */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 60px;
  height: 60px;

  background: #00FFB2;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.arrow-icon {
  width: 12px;
  height: 12px;

  border-right: 2px solid #00FFB2;
  border-bottom: 2px solid #00FFB2;

  transform: rotate(-45deg);

  transition: all 0.3s ease;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(0,255,178,0.6);
}

/* VÍDEO ESCONDIDO */
.video {
  display: none;
  width: 100%;
}

/* TEXTO */
.result-info {
  margin-top: 15px;
}

.result-info h3 {
  color: #00FFB2;
  margin-bottom: 10px;
}

/* FORMATOS */
.video-box.horizontal {
  aspect-ratio: 16/9;
  max-width: 500px;
}

.video-box.square {
  aspect-ratio: 1/1;
  max-width: 300px;
}

.video-box.reels {
  aspect-ratio: 9/16;
  max-width: 180px;
}

/* IMG + VIDEO */
.video-box img,
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXTO */
.result-info {
  text-align: center;
  margin-top: 10px;
}

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/ IA NOVO LAYOUT /

.ia {
  text-align: center;
}

.ia-main {
  margin-top: 50px;
  margin-bottom: 120px;
}

.ia-main .video-box {
  max-width: 1000px;
  margin: 0 auto;
}

.ia-main .result-info {
  margin-top: 15px;
}

/* SECUNDÁRIOS */
.ia-secondary {
  display: flex;
  justify-content: center;
  gap: 400px;
  flex-wrap: wrap;
}

.ia-card {
  max-width: 800px;
}

/* TAMANHOS AJUSTADOS */
.video-box.square {
  max-width: 400px;
}

.video-box.reels {
  max-width: 228px;
}

/* TEXTO */
.ia .result-info h3 {
  color: #00FFB2;
  margin-top: 15px;
}

/* RESPONSIVO CELULAR */
@media(max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #0B0B0C;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    transition: 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    margin: 20px 0;
    font-size: 24px;
  }
}

/* VÍDEO NOSSO TRABALHO */
.video-box.destaque {
  max-width: 1100px;
  width: 100%;
  margin-top: 15px;
}

.results .results-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;

  max-width: 1000px;
  margin: 0 auto;
}

/* CONTROLE INDIVIDUAL - RESULTADOS */

.results .item1 {
  transform: translate(-250px, 6px);
}

.results .item2 {
  transform: translate(115px, 5px);
}

.results .item1 .video-box {
  max-width: 359px;
}

.results .item2 .video-box {
  max-width: 450px;
}

video:fullscreen {
  width: auto !important;
  height: auto !important;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain !important;
}

video:-webkit-full-screen {
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

video:-moz-full-screen {
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

h2 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 30px;
  color: #F5F5F5;
  font-weight: 600;
}

.clients h2 {
  font-size: 35px;
  margin-bottom: 60px !important;
  color: #F5F5F5;
}

/* 🎮 CONTROLE TOTAL DAS SETAS DOS VÍDEOS */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 60px;
  height: 60px;
  background: #00FFB2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-icon {
  /* 👇 VOCÊ CONTROLA TUDO AQUI! */
  width: 0;
  height: 0;
  
  /* TAMANHO da setinha */
  border-left: 16px solid #0B0B0C;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  
  /* POSIÇÃO PERFEITA (mexer só estes números!) */
  margin-left: 3px;    /* ← DIREITA/ESQUERDA */
  margin-top: 0px;    /* ↑ CIMA/BAIXO */
}

/* EFEITO HOVER MÁGICO */
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 25px rgba(0,255,178,0.8);
}

.play-btn:hover .play-icon {
  border-left-color: #F5F5F5; /* setinha fica branca no hover */
}

/* 🔥 FAZ OS CARDS APARECEREM */
.fade-in {
  opacity: 0 !important;
  transform: translateY(40px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 🔥 CARDS SEMPRE VISÍVEIS */
.service-card,
.testimonial-card, 
.about-card {
  opacity: 1 !important;
  transform: none !important;
}

.fade-in {
  opacity: 1 !important;  /* ← FORÇA VISÍVEL */
  transform: translateY(0) !important;
}

/* 🎥 SETAS NETFLIX */
.netflix-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0,0,0,0.85);
  border: 2px solid rgba(255,255,255,0.3);
  
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.netflix-arrow.left {
  left: 0px;
}

.netflix-arrow.right {
  right: 0px;
}

.netflix-arrow svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  stroke-width: 2.5;
}

/* HOVER NETFLIX */
.netflix-arrow:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #00FFB2 !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(0,255,178,0.3);
}

.netflix-arrow:hover svg {
  stroke: #00FFB2 !important;
}

/* ATIVO */
.netflix-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* 🎠 SETAS DO CARROSSEL NETFLIX */
.carousel-prev,
.carousel-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 50px !important;
  height: 50px !important;
  background: rgba(0,0,0,0.8) !important;
  border: 2px solid #00FFB2 !important;
  border-radius: 50% !important;
  color: #00FFB2 !important;
  font-size: 24px !important;
  font-weight: bold !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 20 !important;
  transition: all 0.3s ease !important;
}

.carousel-prev { left: -25px !important; }
.carousel-next { right: -25px !important; }

.carousel-prev:hover,
.carousel-next:hover {
  background: #00FFB2 !important;
  color: #0B0B0C !important;
  box-shadow: 0 0 20px rgba(0,255,178,0.6) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

/* 🌌 UNIVERSO DE FUNDO */
.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.stars {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00FFB2;
  border-radius: 50%;
  animation: twinkle 3s infinite ease-in-out;
}

.stars:nth-child(odd) {
  animation-delay: 0s;
}

.stars:nth-child(even) {
  animation-delay: 1.5s;
}

@keyframes twinkle {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.3);
  }
}

/* 💫 COMETAS */
.comet {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00FFB2;
  border-radius: 50%;
  box-shadow: 
    0 0 10px #00FFB2,
    0 0 20px #00FFB2,
    0 0 30px #00FFB2;
  animation: cometFly 8s linear infinite;
}

.comet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00FFB2, transparent);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

@keyframes cometFly {
  0% {
    transform: translateX(-150vw) translateY(20vh) rotate(45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(150vw) translateY(80vh) rotate(45deg);
    opacity: 0;
  }
}

/* 🔤 FONTES MAIORES - IA e RESULTADOS */
.ia .result-info h3,
.result-info h3 {
  font-size: 24px !important;
  font-weight: 800 !important;
  margin-bottom: 5px !important;
}

.ia .result-info p,
.result-info p {
  font-size: 17px !important;
  line-height: 1.6 !important;
  opacity: 0.95 !important;
}

/* ✅ ADICIONE no FINAL do CSS pra garantir */
@media (max-width: 768px) {
  .ia-secondary {
    gap: 30px !important;  /* ← Espaço nos vídeos IA */
    flex-direction: column !important;
  }
  
  .results-grid {
    flex-direction: column !important;
    gap: 40px !important;
  }
  
  h1 { font-size: 36px !important; }  /* Título hero menor */
  h2 { font-size: 28px !important; }
}

@media (max-width: 768px) {
  .whatsapp img {
    width: 60px !important;
    height: 60px !important;
    bottom: 20px !important;
    right: 20px !important;
  }
}

@media (max-width: 768px) {
  .ia-secondary {
    flex-direction: column !important;
    gap: 40px !important;
    align-items: center !important;
  }
  
  .ia-card {
    max-width: 350px !important;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }
  
  .hero p {
    font-size: 18px !important;
  }
}