/* =====================
   PORTFOLIO EDGAR CATETE – CSS FINAL COMPLETO (PARTE 1)
   ===================== */

/* -------- Variáveis Globais -------- */
:root {
  --primary-color: #ff0000;
  --secondary-color: #ff0000;
  --terceira-color: rgb(255, 0, 0);
  --text-color: #ffffff;
  --bg-color: #000000;
  --space-md: 1rem;
  --space-lg: 0.7rem;
  --space-xl: 1.5rem;
  --space-xxl: 3rem;
  --text-lg: 1.728rem;
  --text-m: 1rem;
  --text-xl: 1.44rem;
  --transition-duration: 0.3s;
  --transition-timing: ease-in-out;
  --overlay-color: rgba(255, 255, 255, 0.8);
}

/* -------- Reset e Base -------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 100%; }
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-color);
  overflow-x: hidden;
}
li { list-style: none; }

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =====================
   HEADER APRIMORADO
   ===================== */
:root {
  --header-height: 5rem;
  --primary-color: #ff0000;
  --bg-color: #000000;
  --text-color: #ffffff;
  --transition-duration: 0.4s;
  --transition-timing: cubic-bezier(0.645, 0.045, 0.355, 1);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.5s ease;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  opacity: 0.9;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo com efeito */
.logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-color);
  display: flex;
  gap: 0.3rem;
}

.logo-letter {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo:hover .logo-letter:nth-child(1) {
  transform: translateY(-5px);
  color: var(--primary-color);
}

.logo:hover .logo-letter:nth-child(2) {
  transform: translateY(5px);
}

/* Menu Toggle Animado */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.menu-toggle-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--text-color);
  left: 0;
  transition: all var(--transition-duration) var(--transition-timing);
}

.top-line {
  top: 0;
}

.middle-line {
  top: 50%;
  transform: translateY(-50%);
}

.bottom-line {
  bottom: 0;
}

.menu-toggle[aria-expanded="true"] .top-line {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .middle-line {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .bottom-line {
  transform: translateY(-11px) rotate(-45deg);
}

/* Navegação Desktop */
.nav-desktop {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  overflow: hidden;
  padding: 0.5rem 0;
}

.nav-link-text {
  position: relative;
  display: inline-block;
  transition: transform var(--transition-duration) var(--transition-timing);
}

.nav-link-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform var(--transition-duration) var(--transition-timing);
}

.nav-link:hover .nav-link-text {
  transform: translateY(-3px);
}

.nav-link:hover .nav-link-underline {
  transform: translateX(0);
}

/* Efeito de Scroll */
.header.scrolled {
  height: calc(var(--header-height) - 10px);
  background: rgba(0, 0, 0, 0.8);
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-desktop {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-150%);
    transition: transform var(--transition-duration) var(--transition-timing);
  }
  
  .nav-desktop.active {
    transform: translateY(0);
  }
  
  .nav-link {
    font-size: 1.5rem;
  }
}
/* -------- Navegação -------- */
/* Variáveis Globais */
:root {
  --primary-color: #ff0000;
  --text-color: #ffffff;
  --bg-color: #000000;
  --transition-duration: 0.3s;
}

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg-color);
  padding: 1rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
}

/* Navegação Desktop */
.nav-desktop {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color var(--transition-duration);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-duration);
}

.nav-link:hover::after {
  width: 100%;
}

/* Menu Mobile */
.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
  display: none;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile .nav-link {
  font-size: 1.5rem;
}

/* Botão WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* =====================
   HERO PROFISSIONAL
   ===================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero-background-video,
.hero-fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hero-text-container {
  margin-bottom: 80px;
}

.hero-main-title {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  overflow: hidden;
}

.title-part {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: textReveal 1s forwards;
}

.line-1 { animation-delay: 0.3s; }
.line-2 { animation-delay: 0.6s; }
.line-3 { 
  animation-delay: 0.9s;
  color: #ff0000;
  position: relative;
  display: inline-block;
}

.line-3::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,0,0,0.5);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 1s forwards;
  animation-delay: 1.2s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 1.5s;
}

/* Scroll hint mais discreto */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 2s;
}

.hero-scroll-hint span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.7);
}

.scroll-animation {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  position: relative;
}

.scroll-animation::after {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: scrollHint 2s infinite;
}

/* Animações */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineReveal {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollHint {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-main-title {
    line-height: 1.2;
  }
  
  .hero-scroll-hint {
    bottom: 20px;
  }
  
  .line-3::after {
    bottom: 2px;
    height: 2px;
  }
}

/* =====================
   SOBRE - NOVA VERSÃO
   ===================== */
.section-about {
  background: #000;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

.about-photo {
  position: relative;
  height: 100%;
}

.photo-frame {
  position: relative;
  height: 700px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.filmmaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.title-line {
  display: block;
}

.highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--primary-color);
  opacity: 0.3;
  z-index: -1;
}

.about-intro {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 90%;
}

.about-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.specialty {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 12px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.specialty:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.specialty i {
  font-size: 1.2rem;
}

.about-signature {
  margin-top: 30px;
}

.signature {
  height: 60px;
  opacity: 0.9;
}

/* Responsivo */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .photo-frame {
    height: 500px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-description {
    max-width: 100%;
  }
  
  .photo-frame {
    height: 400px;
  }
}

/* =====================
   SOLUÇÕES / SERVIÇOS
   ===================== */
/* Serviços - Layout corrigido */
.servicos-layout {
  border-top: 1px solid rgba(255,255,255,0.1); /* Mudei a cor da borda */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Layout mais equilibrado */
  gap: 50px;
  background: #000;
  padding: 80px 5%;
  align-items: start;
}

.servico-descricao {
  color: #fff; /* Garantir texto visível */
}

@media (max-width: 768px) {
  .servicos-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 5%;
  }
  
  .img1 {
    width: 100%;
    display: block; /* Mostrar imagem em mobile */
  }
}
.text-desc {
  font-size: 22px;
  font-weight: 300;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Nova Seção Black */
.section-black {
  padding: 100px 0;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.black-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.black-content {
  margin-bottom: 60px;
  text-align: center;
}

.black-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff0000, #ff3333, #ff6666);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.black-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
}

.black-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.grid-item {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255,0,0,0.1);
}

.grid-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.grid-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.grid-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* Seção Processo */
.section-process {
  padding: 100px 0;
  background: #111;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-title {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  padding: 30px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* =====================
   PROCESSO CRIATIVO - NOVA VERSÃO
   ===================== */
.section-process {
  padding: 100px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-title {
  font-size: 4.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
}

.title-part {
  display: inline-block;
}

.highlight {
  color: #ff0000;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #ff0000;
  opacity: 0.3;
  z-index: -1;
}

.process-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #ff0000, rgba(255, 0, 0, 0.2));
  z-index: 1;
}

.process-step {
  position: relative;
  margin-bottom: 60px;
  z-index: 2;
}

.step-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #ff0000;
}

.step-details {
  flex-grow: 1;
  text-align: left;
  padding-top: 5px;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.step-icon {
  font-size: 1.8rem;
  color: #ff0000;
  opacity: 0.7;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 1024px) {
  .process-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .process-title {
    font-size: 2.5rem;
  }
  
  .process-subtitle {
    font-size: 1rem;
  }
  
  .step-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .timeline-line {
    left: 25px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-icon {
    position: absolute;
    left: 15px;
    top: 5px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .process-title {
    font-size: 2rem;
  }
  
  .section-process {
    padding: 60px 0;
  }
  
  .process-header {
    margin-bottom: 50px;
  }
  
  .process-step {
    margin-bottom: 40px;
  }
}

/* =====================
   EQUIPAMENTOS
   ===================== */
.section-equipamentos {
  background: #fdfdf7;
  padding: 80px 20px;
  text-align: center;
}
.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.gallery img {
  width: 300px;
  max-width: 100%;
  border-radius: 10px;
  transition: transform .3s;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.gallery img:hover { transform: scale(1.05); }
/* =====================
   CLIENTES – SWIPER
   ===================== */
.section-clientes {
  background: #faf8f8;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,.08);
}
.clients-swiper {
  position: relative;
  padding-bottom: 48px;
}
.clients-swiper .swiper-wrapper { align-items: stretch; }
.clients-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s;
}
.clients-swiper .swiper-slide img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,.25);
  transition: transform .4s;
}
@media (hover: hover) {
  .clients-swiper .swiper-slide:hover img { transform: scale(1.05); }
}
.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 30px;
  color: var(--secondary-color);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}
.swiper-pagination-bullet {
  background: var(--secondary-color);
  opacity: .45;
}
.swiper-pagination-bullet-active { opacity: 1; }

/* =====================
   FITINHA MARQUEE APRIMORADA
   ===================== */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff, #ff0000, #000000);
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.8rem 0;
}

.marquee-item {
  color: rgb(0, 0, 0);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 2rem;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-item::after {
  content: "•";
  color: rgba(255,255,255,0.5);
  margin-left: 2rem;
}

/* Efeito de pausa no hover */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* Animações */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gradientShift {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Efeito de brilho nos itens */
.marquee-item:hover {
  color: #000000;
  text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

/* Responsivo */
@media (max-width: 768px) {
  .marquee-item {
    font-size: 0.7rem;
    margin: 0 1rem;
  }
  
  .marquee-item::after {
    margin-left: 1rem;
  }
  
  .marquee-track {
    animation-duration: 20s;
  }
}

/* =====================
   CASES SECTION - NOVA VERSÃO
   ===================== */
.section-cases {
  padding: 100px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.cases-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.cases-title {
  position: relative;
  font-size: 6rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  color: transparent;
}

.title-outline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-text-stroke: 2px rgba(255,255,255,0.1);
  z-index: 1;
}

.title-solid {
  position: relative;
  background: linear-gradient(90deg, #ff0000, #ff5e5e);
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 2;
}

.cases-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.case-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 9/16;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.case-item:hover {
  transform: translateY(-10px);
}

.case-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.case-item:hover .case-image {
  transform: scale(1.05);
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.case-item:hover .case-overlay {
  opacity: 1;
}

.case-info {
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.case-item:hover .case-info {
  transform: translateY(0);
}

.case-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.case-description {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
  line-height: 1.6;
}

.case-link {
  display: inline-block;
  color: #ff0000;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}

.case-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff0000;
  transition: width 0.3s ease;
}

.case-link:hover::after {
  width: 100%;
}

.cases-cta {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ff0000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255,0,0,0.2);
}

.cta-button:hover {
  background: #fff;
  color: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255,0,0,0.3);
}

/* Responsivo */
@media (max-width: 1024px) {
  .cases-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 768px) {
  .cases-title {
    font-size: 3.5rem;
  }
  
  .cases-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .case-item {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .cases-title {
    font-size: 2.5rem;
  }
  
  .section-cases {
    padding: 60px 0;
  }
}

/* =====================
   CONTATO
   ===================== */
#contato {
  background: #fff;
  color: #000;
  padding: 150px 10%;
}
.container-contato {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}
.info-contato h2 {
  font-size: clamp(2rem,3.5vw,5rem);
  line-height: 1.2;
  margin-bottom: var(--space-xl);
  font-weight: 700;
  background: linear-gradient(45deg,var(--primary-color),var(--secondary-color),var(--terceira-color));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientText 8s ease infinite;
}
.form-contato {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-contato input,
.form-contato textarea {
  padding: 12px 15px;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 14px;
  resize: none;
}
.form-contato label {
  font-size: 14px;
  font-weight: 500;
}
.termos {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-top: 10px;
}
#botao-enviar {
  background: #d3d7de;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  cursor: not-allowed;
  transition: .3s;
}
#botao-enviar.ativo {
  background: linear-gradient(270deg,var(--primary-color),var(--secondary-color),var(--terceira-color));
  background-size: 300% 300%;
  animation: gradientMove 6s ease infinite;
  cursor: pointer;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: rgba(0,0,0,0.8);
  padding-block: var(--space-lg);
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}
.social-link {
  color: var(--text-color);
  font-size: var(--text-lg);
  transition: color var(--transition-duration) var(--transition-timing);
}
.social-link:hover { color: var(--secondary-color); }

/* =====================
   KEYFRAMES GERAIS
   ===================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes gradientText {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =====================
   AOS / SCROLLTRIGGER (via JS)
   ===================== */
.fade-in { animation: fadeIn .8s var(--transition-timing) forwards; }
[data-aos] {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-animate { opacity: 1; }

/* =====================
   MEDIA QUERIES RESPONSIVO
   ===================== */
@media (max-width: 1024px) {
  .section-about { padding: 50px 50px; }
  .servicos-layout { padding: 50px; grid-template-columns: 1fr; gap: 50px; }
  .logo { width: 250px; }
  .black-grid, .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; font-size: 30px; }  
  .nav-desktop { display: none; }
  .servicos-layout { padding: 40px 20px; }
  .img1 { display: none; }
  #about { padding: 80px 10px; }
  #contato { padding: 50px 10%; }
  .hero-title { font-size: 25px; border-right: none; white-space: normal; }
  .cases-gallery { grid-template-columns: 1fr; }
  .black-grid, .process-steps {
    grid-template-columns: 1fr;
  }
  .black-title, .process-title {
    font-size: 2.5rem;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  .logo { width: 150px; }
  .servico-titulo { font-size: 20px; text-align: center; }
  .hero-title { font-size: 1.5rem; padding: 0 10px; }
  .section-title { font-size: 24px; color: rgb(255, 255, 255); }
  .marquee-content span { font-size: 0.8rem; }
  .black-title, .process-title {
    font-size: 2rem;
    -webkit-text-stroke: 1px;
  }
}