*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0C0A08;
  --dark: #131109;
  --surface: #1A1710;
  --surface2: #222016;
  --red: #C4833A;
  --red-dim: #7A4E1C;
  --white: #F2EDE4;
  --muted: #5E5848;
  --muted2: #3A3628;
  --display: 'Bebas Neue', sans-serif;
  --body: 'Syne', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: crosshair;
}


/* ═══════════════════════════════════════════════════════════
   NAVEGAÇÃO
   ═══════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: #131109;
  border-bottom: 1px solid rgba(196,131,58,0.12);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.7);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--red);
}

/* Menu hamburguer (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12,10,8,0.97);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  font-size: 2rem;
  font-family: var(--display);
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile-menu a:hover {
  color: var(--red);
}


/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* NAV */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1E1508 0%, #0C0A08 40%, #100E06 100%);
  z-index: 0;
}

/* Big decorative text behind */
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--display);
  font-size: clamp(18rem, 32vw, 30rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,131,58,0.12);
  line-height: 0.85;
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  animation: bgpulse 6s ease-in-out infinite;
}

@keyframes bgpulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-image-placeholder {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(160deg, #2A1E0A 0%, #181208 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}

.hero-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,10,8,1) 0%, transparent 30%),
              linear-gradient(to top, rgba(12,10,8,0.8) 0%, transparent 40%);
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadein 1s ease both;
}

.hero-name {
  will-change: transform, opacity;
  font-family: var(--display);
  font-size: clamp(7rem, 16vw, 14rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: slidein 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-name span {
  display: block;
  color: var(--red);
  -webkit-text-stroke: 0px;
}

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

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 2.5rem;
  animation: fadein 1.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadein 1.4s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: none;
  cursor: crosshair;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: #A56A28; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid var(--muted2);
  cursor: crosshair;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--white); border-color: var(--muted); }

.hero-scroll {
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollline 1.8s ease-in-out infinite;
}

@keyframes scrollline {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* SECTION BASE */
section { padding: 7rem 3rem; position: relative; }

.section-num {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 2rem;
}

/* LINE SEPARATOR */
.sep {
  border: none;
  border-top: 1px solid var(--muted2);
}

/* SOBRE */
#sobre { background: var(--dark); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.sobre-sticky {
  position: sticky;
  top: 6rem;
}

.sobre-body p {
  font-size: 1rem;
  color: rgba(240,237,234,0.55);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.genre-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.genre-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--muted2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.genre-item:last-child { border-bottom: 1px solid var(--muted2); }
.genre-item:hover { color: var(--white); }

.genre-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* VIDEOS */
#videos { background: var(--black); }

.videos-inner { max-width: 1100px; margin: 0 auto; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.video-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: crosshair;
}

.video-embed {
  position: relative;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-item:hover 

.video-item:hover 

.play-ring svg { width: 18px; height: 18px; fill: var(--white); margin-left: 3px; }


/* FOTOS */
#fotos { background: var(--dark); }

.fotos-inner { max-width: 1100px; margin: 0 auto; }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

/* Grid 6 fotos: 2 colunas × 3 linhas */
.gal-item {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}

.gal-item:hover {
  transform: scale(1.02);
  z-index: 10;
  transition: transform 0.4s ease;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gal-item:hover img {
  transform: scale(1.05);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196, 131, 58, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* IMPRENSA */
#imprensa { background: var(--black); }

.imprensa-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
}

.imprensa-text p {
  font-size: 0.95rem;
  color: rgba(240,237,234,0.45);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.kit-info { display: flex; flex-direction: column; gap: 0.25rem; }


/* CONTATO */
#contato {
  background: var(--dark);
  border-top: 1px solid var(--muted2);
}

.contato-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contato-big-email {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.03em;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 4rem;
  position: relative;
  transition: color 0.2s;
  line-height: 1;
}

.contato-big-email::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.4s ease;
}

.contato-big-email:hover { color: var(--red); }
.contato-big-email:hover::after { width: 100%; }

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--muted2);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-pill:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(214,58,42,0.08);
}

.social-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid var(--muted2);
  padding: 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer span {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.footer-logo {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--muted2);
  letter-spacing: 0.06em;
}


/* MODAL LIGHTBOX */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8,7,5,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.modal-overlay.active { display: flex; }

.modal-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
  display: block;
}

.modal-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(242,237,228,0.1);
  border: 1px solid rgba(242,237,228,0.2);
  color: var(--white);
  font-size: 1.4rem;
  cursor: crosshair;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
  line-height: 1;
}
.modal-close:hover { background: rgba(242,237,228,0.2); }

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(242,237,228,0.1);
  border: 1px solid rgba(242,237,228,0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10001;
  font-size: 1.2rem;
}

.modal-nav:hover {
  background: rgba(196,131,58,0.3);
  border-color: var(--red);
}

.modal-prev { left: 1.5rem; }

.modal-next { right: 1.5rem; }

.modal-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(242,237,228,0.4);
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
}

.gal-item { cursor: zoom-in; }


.kit-btn-single {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  cursor: crosshair;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  margin-top: 1rem;
}
.kit-btn-single:hover { background: var(--red); color: var(--white); }


.footer-fm {
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s;
  text-decoration: none;
}
.footer-fm:hover { opacity: 1; }

/* ACESSIBILIDADE — prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg-text { animation: none !important; }
  .scroll-line { animation: none !important; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  
  
  section { padding: 5rem 1.5rem; }
  .hero { padding: 0 1.5rem 3rem; }
  .hero-image-placeholder {
    width: 100%;
    height: 55vh;
    position: relative;
    clip-path: none;
    display: flex;
  }
  .hero {
    padding: 0 0 3rem;
    flex-direction: column;
    justify-content: flex-start;
  }
  .hero-content {
    padding: 2rem 1.5rem 0;
    position: relative;
    z-index: 2;
  }
  .hero-bg-text { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-sticky { position: static; display: flex; flex-direction: column; }
  .sobre-sticky .section-num { order: 1; }
  .sobre-sticky .genre-list { order: 2; margin-top: 0; }
  .sobre-sticky .section-title { order: 3; margin-top: 1.5rem; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-item:first-child { grid-column: span 2; grid-row: span 1; }
  
  .gallery-masonry { grid-template-columns: repeat(4, 1fr); }
  .gal-item:nth-child(1), .gal-item:nth-child(2) { grid-column: span 2; }
  .gal-item:nth-child(3), .gal-item:nth-child(4), .gal-item:nth-child(5) { grid-column: span 1; }
  .gal-item:nth-child(6), .gal-item:nth-child(7) { grid-column: span 2; }
  .imprensa-inner { grid-template-columns: 1fr; gap: 3rem; }
  footer { padding: 1.5rem; flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 600px) {
  
  
  .hero-scroll { display: none; }
  .social-row { flex-direction: column; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gal-item { grid-column: span 1 !important; }
}


.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header-center .section-num,
.section-header-center .section-title {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================================
   CLIENTES - MARQUEE CONTÍNUO
   ============================================== */
.clientes-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 3rem 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s, background 0.3s;
}

.marquee-item:hover {
  transform: scale(1.05);
  background: var(--surface2);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s;
}

.marquee-item:hover img {
  filter: grayscale(0%) opacity(1);
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ═══════════════════════════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════════════════════════ */

#depoimentos { 
  background: var(--black); 
}

.depoimentos-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.depoimento-card {
  background: var(--surface);
  border: 1px solid var(--muted2);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.depoimento-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.depoimento-quote {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--red);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  pointer-events: none;
}

.depoimento-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(242,237,228,0.75);
  margin-bottom: 1.5rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.depoimento-autor {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--muted2);
  padding-top: 1rem;
}

.autor-nome {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.autor-local {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 80s linear infinite;
  will-change: transform;
}
  
  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 80s linear infinite;
  will-change: transform;
}
  
  .marquee-item,
  .depoimento-card {
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  nav {
    padding: 1.25rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 80s linear infinite;
  will-change: transform;
}

  .carousel-item {
    width: 110px;
    height: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 80s linear infinite;
  will-change: transform;
}

  .marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 80s linear infinite;
  will-change: transform;
}
}


/* WhatsApp Flutuante */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  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);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}


.clientes-title {
  text-align: center;
}

.clientes-inner .section-num,
.clientes-inner .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================================
   ANIMAÇÕES
   ============================================== */
@keyframes bgpulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scrollpulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ==============================================
   MEDIA QUERIES - RESPONSIVO
   ============================================== */
@media (max-width: 768px) {
  /* Navegação Mobile */
  nav {
    padding: 1.25rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 0 0 3rem;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-bg-text {
    display: none;
  }

  .hero-image-placeholder {
    width: 100%;
    height: calc(100vh - 70px) !important;
    position: relative;
    clip-path: none;
    top: 70px !important;
  }

  .hero-content {
    padding: 2rem 1.5rem 0;
    margin-top: 70px;
  }

  .hero-scroll {
    display: none;
  }

  video,
  .hero-image-placeholder img {
    margin-top: 0 !important;
  }

  /* Seções */
  section {
    padding: 3rem 1.5rem;
  }

  /* Sobre */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sobre-sticky {
    position: static;
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  /* Modal */
  .modal-prev {
    left: 1rem;
  }

  .modal-next {
    right: 1rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
  }

  /* WhatsApp Float */
  .wa-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-image-placeholder {
    width: 60%;
  }

  .sobre-grid {
    gap: 3rem;
  }
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
  font-display: swap;
  size-adjust: 100%;
}

@font-face {
  font-family: 'Syne';
  src: url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700&display=swap');
  font-display: swap;
  size-adjust: 90%;
}