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

body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Articulat CF', sans-serif;
  overflow-x: hidden;
}

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #bf59ff;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Articulat CF', sans-serif;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* --- FOCO GLOBAL (acessibilidade por teclado) --- */
:focus-visible {
  outline: 2px solid #c084fc;
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- HEADER FLUTUANTE --- */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  z-index: 100;
}

.logo-img {
  height: 24px;
  width: auto;
  display: block;
  position: relative;
  top: -2px;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar nav ul a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Articulat CF', sans-serif;
  opacity: 0.6;
  transition: color 0.3s, opacity 0.3s;
}

.navbar nav ul a:hover {
  opacity: 1;
  color: #c084fc;
}

/* --- HERO --- */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a0a 70%);
}

/* --- VÍDEO --- */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

/* --- PEÇAS HERO --- */
.peca {
  position: absolute;
  border-radius: 16px;
  background: linear-gradient(135deg, #5b21b6 0%, #3b0764 60%, #1e0a3c 100%);
  transform: rotate(var(--rot));
  transition: transform 0.15s ease-out;
  will-change: transform;
  opacity: 0.85;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
  z-index: 1;
}

/* --- CONTEÚDO HERO --- */
.hero-content {
  text-align: center;
  z-index: 10;
  pointer-events: auto;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.00;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  opacity: 0.9;
}

.hero-content .sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: #ffffff;
  font-weight: 400;
  opacity: 0.5;
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-hero {
  display: inline-block;
  background: #bf59ff;
  color: #0a0a0a;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Articulat CF', sans-serif;
  transition: transform 0.2s, background 0.2s;
}

.btn-hero:hover {
  transform: scale(1.03);
  background: #8C59FF;
}

/* --- SETA --- */
.seta {
  font-size: 28px;
  color: #bf59ff;
  animation: pulsar 2s ease-in-out infinite;
}

@keyframes pulsar {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

/* --- COMO TRABALHAMOS --- */
/* TICKER */
.ticker-wrapper {
  background: #0a0a0a;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  margin-top: -60px;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  padding: 14px 0;
}

.ticker-track--branco {
  animation: ticker-scroll 25s linear infinite;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-track--dimmer {
  animation: ticker-scroll 25s linear infinite reverse;
}

.ticker-track span {
  font-family: 'Articulat CF', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0 24px;
}

.ticker-track--branco span {
  color: #ffffff;
}

.ticker-track--dimmer span {
  color: rgba(255, 255, 255, 0.45);
}

.ticker-dot {
  color: #8C59FF !important;
  padding: 0 4px !important;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.como-trabalhamos {
  background: #ffffff;
  padding: 80px 0 0 0;
  overflow: hidden;
}

.como-colunas {
  display: flex;
  align-items: stretch;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 480px;
  padding: 0 60px;
}

/* COLUNA ESQUERDA */
.como-esquerda {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
}

.como-esquerda h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 32px;
}

.como-esquerda p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
}

/* COLUNA DIREITA */
.como-direita {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pecas-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.pecas-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(-50%) translateY(28px);
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.pecas-label.visivel {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pecas-label:nth-child(1) { transition-delay: 0.05s; }
.pecas-label:nth-child(2) { transition-delay: 0.2s; }
.pecas-label:nth-child(3) { transition-delay: 0.35s; }
.pecas-label:nth-child(4) { transition-delay: 0.5s; }

.etapa-numero {
  font-size: 12px;
  font-weight: 600;
  color: #c084fc;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pecas-label h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  white-space: nowrap;
}

.pecas-label p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  white-space: nowrap;
}

/* proporção: largura da imagem (110%) × altura SVG (1110) / altura visível (555) */
/* clip container height = 110% × (555/920) = ~66.4% of como-direita width      */
.pecas-img-clip {
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 920 / 610;
  align-self: flex-end;
}

.pecas-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.pecas-img.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* --- NOSSOS SERVIÇOS --- */
.servicos {
  background: #bf59ff;
  padding: 80px 60px;
  text-align: center;
}

.servicos-conteudo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 140px;
}

.servicos h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -1px;
}

.servicos-grid {
  display: flex;
  gap: 64px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.servico-card {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  padding: 36px 28px;
  width: 280px;
  flex: none;
  text-align: center;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.servico-card::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  transform: rotate(-2deg) translateY(8px);
  z-index: -1;
}

.servico-card::after {
  content: '';
  position: absolute;
  inset: -16px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  transform: rotate(-4deg) translateY(16px);
  z-index: -2;
}

.servico-card--destaque {
  transform: scale(1.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.servico-card--destaque:hover {
  transform: scale(1.1) translateY(-10px);
}

.servico-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.servico-linha {
  width: 40px;
  height: 2px;
  background: #bf59ff;
  margin: 0 auto 16px;
}

.servico-card p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

.servico-card p strong {
  color: #bf59ff;
  font-weight: 600;
}

.btn-servicos {
  display: inline-block;
  background: #0a0a0a;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Articulat CF', sans-serif;
  transition: background 0.2s, transform 0.2s;
}

.btn-servicos:hover {
  background: #8C59FF;
  transform: scale(1.03);
}

/* --- O QUE ACREDITAMOS --- */
.acreditamos {
  background: #0a0a0a;
  padding: 80px 0;
  overflow: hidden;
}

.acreditamos-colunas {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.acreditamos-esquerda {
  flex: 1;
  max-width: 520px;
}

.acreditamos-tag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #c084fc;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.acreditamos-esquerda h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.acreditamos-texto p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.acreditamos-direita {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  margin-right: calc(-60px - max(0px, (100vw - 1200px) / 2) - 50px);
  margin-top: -82px;
  margin-bottom: -82px;
  overflow: hidden;
}

.dominos-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.dominos-img.visivel {
  opacity: 1;
  transform: translateX(0);
}

/* --- PROJETOS --- */
.projetos {
  background: #ffffff;
  padding: 80px 60px;
  text-align: center;
}

.projetos-conteudo {
  max-width: 1200px;
  margin: 0 auto;
}

.projetos h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

.projetos-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.projeto-card {
  width: 320px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

html:not(.is-touch) .projetos-grid:has(.projeto-card:hover) .projeto-card {
  opacity: 0.55;
}

html:not(.is-touch) .projetos-grid:has(.projeto-card:hover) .projeto-card:hover {
  opacity: 1;
}

.projetos-grid:has(.projeto-foto.ativo) .projeto-card:not(:has(.projeto-foto.ativo)) {
  opacity: 0.55;
}

.projeto-foto {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f2f2;
  cursor: pointer;
  text-decoration: none;
}

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

.projeto-card:hover .projeto-foto img,
.projeto-foto.ativo img {
  transform: scale(1.05);
}

.projeto-popup {
  position: absolute;
  inset: 0;
  background: rgba(191, 89, 255, 0.92);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.projeto-card:hover .projeto-popup,
.projeto-foto:focus-visible .projeto-popup,
.projeto-foto.ativo .projeto-popup {
  opacity: 1;
  transform: translateY(0);
}

.projeto-popup p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.projeto-linha {
  width: 40px;
  height: 2px;
  background: #bf59ff;
  margin: 24px auto 16px;
}

.projeto-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
}

.projeto-local {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 6px;
}

.projeto-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  background: none;
  border: none;
  border-bottom: 1px solid #bf59ff;
  padding: 0 0 2px;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.projeto-cta-texto {
  font-size: 13px;
  font-weight: 500;
  color: #bf59ff;
}

.projeto-cta-seta {
  display: inline-flex;
  color: #bf59ff;
  transition: transform 0.25s ease;
}

.projeto-cta-seta svg {
  width: 10px;
  height: 10px;
}

.projeto-card:hover .projeto-cta-seta,
.projeto-foto.ativo ~ .projeto-cta .projeto-cta-seta {
  transform: translate(3px, -3px);
}

/* --- CONTATO --- */
.contato {
  position: relative;
  background: #9d00ff;
  padding: 80px 0;
  overflow: hidden;
  min-height: 600px;
}

.contato-dominos {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.dominospreto-img {
  width: 100%;
  height: auto;
  display: block;
}

.contato-conteudo {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.contato-esquerda {
  flex: 1;
  max-width: 400px;
}

.contato-esquerda h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.contato-label {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contato-esquerda a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: text-decoration-color 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.contato-esquerda a:hover {
  text-decoration-color: #ffffff;
}

.contato-brasil {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 4px;
  font-style: italic;
}

.contato-endereco {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.contato-form-wrapper {
  flex: 1.2;
}

.contato-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-titulo {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 4px;
}

.form-titulo-destaque {
  font-size: 20px;
  font-weight: 700;
  color: #bf59ff;
  display: block;
  margin-bottom: 8px;
}

.form-linha {
  display: flex;
  gap: 16px;
}

.contato-form input,
.contato-form textarea,
.contato-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #bf59ff;
  padding: 8px 0;
  font-size: 14px;
  font-family: 'Articulat CF', sans-serif;
  color: #0a0a0a;
  outline: none;
}

.contato-form input:focus,
.contato-form textarea:focus,
.contato-form select:focus {
  border-bottom-color: #8C59FF;
  border-bottom-width: 2px;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contato-form textarea {
  resize: none;
}

.form-grupo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grupo label {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

.form-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #0a0a0a;
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #0a0a0a;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tag:hover {
  border-color: #bf59ff;
  color: #bf59ff;
}

.tag input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.tag:has(input:checked) {
  background: #0a0a0a;
  color: #ffffff;
}

.form-privacidade {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.form-privacidade a {
  color: #bf59ff;
  text-decoration: underline;
  cursor: pointer;
}

.contato-form button {
  background: #bf59ff;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Articulat CF', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}

.contato-form button:hover {
  background: #8C59FF;
  transform: scale(1.02);
}

/* --- POLÍTICA DE PRIVACIDADE --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.ativo {
  display: flex;
}

.modal-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  max-width: 560px;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-box h3 {
  font-size: 30px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.modal-box p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.8;
}

.modal-box--obrigado {
  text-align: center;
  padding: 56px 48px;
  gap: 4px;
}

.modal-box--obrigado h3 {
  font-size: 26px;
  color: #bf59ff;
  margin-bottom: 4px;
}

.modal-fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #0a0a0a;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.modal-fechar:hover {
  opacity: 1;
}

/* --- BOTÃO FLUTUANTE WHATSAPP --- */
.btn-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #8c59ff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(140, 89, 255, 0.4);
  transition: transform 0.3s, background 0.2s, box-shadow 0.2s, opacity 0.3s;
}

.btn-whatsapp--oculto {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.btn-whatsapp:hover {
  background: #bf59ff;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(140, 89, 255, 0.55);
}

/* --- PÁGINA DE CASE (PROJETO) --- */
.case-hero {
  background: #0a0a0a;
  padding: 160px 60px 80px;
}

.case-hero-conteudo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: center;
}

.case-hero-img {
  flex: 1;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
}

.case-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-hero-info {
  flex: 1.2;
  padding-top: 8px;
}

.case-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c084fc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  transition: gap 0.2s ease;
}

.case-voltar:hover {
  gap: 12px;
}

.case-hero-info h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.case-local {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c084fc;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.case-local svg {
  width: 14px;
  height: 14px;
}

.case-resumo {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.case-linha {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 32px;
}

.case-meta {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
}

.case-meta-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #c084fc;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.case-meta p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.case-descricao {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.case-descricao + .case-descricao {
  margin-top: 20px;
}

/* --- DESAFIO / ABORDAGEM --- */
.case-conteudo {
  background: #ffffff;
  padding: 80px 60px 112px;
}

.case-conteudo-colunas {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.case-desafio {
  flex: 1;
  max-width: 340px;
}

.case-abordagem {
  flex: 2;
}

.case-conteudo h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 32px;
}

.case-desafio p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
}

.case-desafio p + p {
  margin-top: 20px;
}

.case-etapas {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.case-etapa {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-etapa:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.case-etapa::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: rgba(191, 89, 255, 0.55);
  border-radius: 12px;
  transform: rotate(-2deg) translateY(8px);
  z-index: -1;
}

.case-etapa::after {
  content: '';
  position: absolute;
  inset: -16px;
  background: rgba(191, 89, 255, 0.25);
  border-radius: 12px;
  transform: rotate(-4deg) translateY(16px);
  z-index: -2;
}

.case-etapa-icone {
  display: block;
  width: 52px;
  height: 52px;
  color: #0a0a0a;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.case-etapa-texto {
  flex: 1;
}

.case-etapa-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.case-etapa h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.case-etapa p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

.case-etapa-seta {
  visibility: hidden;
}

/* --- RESULTADOS --- */
.case-resultados {
  background: #0a0a0a;
  padding: 80px 60px;
}

.case-resultados-conteudo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: center;
}

.case-resultados-texto {
  flex: 1;
  max-width: 380px;
}

.case-resultados-texto h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 32px;
}

.case-resultados-texto ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-resultados-texto li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.case-check {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(191, 89, 255, 0.15);
  color: #bf59ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.case-check svg {
  width: 10px;
  height: 10px;
}

.case-check-icon {
  flex: none;
  width: 28px;
  height: auto;
  margin-top: 2px;
  display: block;
}

.case-galeria {
  flex: 1.4;
}

.case-galeria-scroll {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
}

.case-galeria-scroll img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.case-galeria-scroll img.ativo {
  opacity: 1;
}

.case-galeria-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.case-galeria-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.case-galeria-dot.ativo {
  background: #bf59ff;
  transform: scale(1.3);
}

/* --- CTA FINAL --- */
.case-cta {
  background: #bf59ff;
  padding: 72px 60px;
  text-align: center;
  position: relative;
}

.case-cta-conteudo {
  position: relative;
  z-index: 1;
}

.case-cta h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 28px;
}

.case-cta-dominos {
  position: absolute;
  bottom: 0;
  width: 32%;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

.case-cta-dominos--esq {
  left: 0;
  transform: scaleX(-1);
}

.case-cta-dominos--dir {
  right: 0;
}

/* --- FOOTER --- */
.footer {
  background: #0a0a0a;
  padding: 24px 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

/* ===================================================
   SMOOTH SCROLL
   =================================================== */
html {
  scroll-behavior: smooth;
}

/* ===================================================
   HAMBURGER BUTTON
   =================================================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 100;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* ===================================================
   TABLET (≤ 900px)
   =================================================== */
@media (max-width: 900px) {
  .navbar {
    width: calc(100% - 48px);
  }

  .navbar nav ul {
    gap: 24px;
  }

  .como-colunas {
    padding: 0 40px;
    gap: 48px;
  }

  .servicos {
    padding: 80px 40px;
  }

  .servicos-conteudo {
    gap: 80px;
  }

  .acreditamos-colunas {
    padding: 0 40px;
    gap: 48px;
  }

  .projetos {
    padding: 80px 40px;
  }

  .acreditamos-direita {
    margin-right: -40px;
  }

  .contato-conteudo {
    padding: 0 40px;
    gap: 48px;
  }

  .footer {
    padding: 24px 40px;
  }

  .case-hero {
    padding: 140px 40px 60px;
  }

  .case-conteudo {
    padding: 60px 40px 100px;
  }

  .case-resultados {
    padding: 60px 40px;
  }

  .case-galeria-scroll {
    height: 380px;
  }

  .case-cta {
    padding: 64px 40px;
  }

  .case-etapas {
    flex-wrap: wrap;
    gap: 24px;
  }

  .case-etapa {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }

  .case-etapa-seta {
    display: none;
  }
}

/* ===================================================
   MOBILE (≤ 768px)
   =================================================== */
@media (max-width: 768px) {

  /* --- NAVBAR --- */
  .navbar {
    top: 16px;
    width: calc(100% - 32px);
    padding: 14px 20px;
    border-radius: 16px;
  }

  .nav-hamburger {
    display: flex;
  }

  .navbar nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: none;
    border-radius: 0;
    padding: 0;
  }

  .navbar nav.aberto {
    opacity: 1;
    pointer-events: auto;
  }

  .navbar nav ul {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .navbar nav ul a {
    font-size: 28px;
    font-weight: 600;
    opacity: 0.9;
  }

  /* --- TICKER --- */
  .ticker-wrapper {
    margin-top: -30px;
  }

  .ticker-track--branco {
    animation-duration: 12s;
  }

  .ticker-track--dimmer {
    animation-duration: 12s;
  }

  .ticker-track span {
    font-size: 9px;
    letter-spacing: 1px;
    padding: 0 14px;
  }

  /* --- HERO --- */
  .hero-content {
    padding: 0 24px;
  }

  .hero-content h1 br,
  .hero-content .sub br {
    display: none;
  }

  .hero-content h1 {
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .hero-content .sub {
    margin-bottom: 28px;
  }

  /* --- COMO TRABALHAMOS --- */
  .como-trabalhamos {
    padding: 60px 0 0 0;
  }

  .como-colunas {
    flex-direction: column;
    gap: 0;
    padding: 0;
    min-height: auto;
  }

  .como-esquerda {
    max-width: 100%;
    padding: 0 24px 40px;
  }

  .como-esquerda h2 {
    font-size: 30px;
  }

  .como-direita {
    width: 100%;
  }

  .pecas-labels {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    height: auto;
    padding: 0 24px;
    margin-bottom: 32px;
  }

  .pecas-label {
    position: static;
    transform: translateY(20px);
    opacity: 0;
  }

  .pecas-label.visivel {
    opacity: 1;
    transform: translateY(0);
  }

  .pecas-img-clip {
    aspect-ratio: 920 / 480;
  }

  .pecas-img {
    width: 100%;
  }

  /* --- SERVIÇOS --- */
  .servicos {
    padding: 60px 24px;
  }

  .servicos-conteudo {
    gap: 56px;
  }

  .servicos-grid {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .servico-card {
    width: 100%;
    max-width: 340px;
  }

  .servico-card--destaque {
    transform: none;
    box-shadow: none;
  }

  .servico-card--destaque:hover {
    transform: translateY(-10px);
  }

  /* --- O QUE ACREDITAMOS --- */
  .acreditamos {
    padding: 60px 0;
  }

  .acreditamos-colunas {
    flex-direction: column;
    padding: 0;
    gap: 40px;
  }

  .acreditamos-esquerda {
    max-width: 100%;
    padding: 0 24px;
  }

  .acreditamos-esquerda h2 {
    font-size: 30px;
  }

  .acreditamos-direita {
    margin: 0;
    width: 100%;
    overflow: hidden;
    flex: none;
  }

  .dominos-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(20px);
  }

  .dominos-img.visivel {
    transform: translateY(0);
  }

  /* --- PROJETOS --- */
  .projetos {
    padding: 60px 24px;
  }

  .projetos h2 {
    margin-bottom: 40px;
  }

  .projetos-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .projeto-card {
    width: 100%;
    max-width: 340px;
  }

  /* --- CONTATO --- */
  .contato {
    padding: 60px 0;
  }

  .contato-conteudo {
    flex-direction: column;
    padding: 0 24px;
    gap: 48px;
  }

  .contato-esquerda {
    max-width: 100%;
  }

  .contato-esquerda h2 {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .contato-esquerda h2 br {
    display: none;
  }

  .contato-form {
    padding: 28px 20px;
    gap: 16px;
    border-radius: 16px;
  }

  .form-linha {
    flex-direction: column;
    gap: 16px;
  }

  .form-titulo {
    font-size: 14px;
  }

  .form-titulo-destaque {
    font-size: 18px;
  }

  .form-privacidade a {
    display: block;
    margin-top: 4px;
  }

  /* --- MODAIS --- */
  .modal-box {
    padding: 36px 24px;
    width: 92%;
  }

  .modal-box h3 {
    font-size: 24px;
  }

  .modal-box--obrigado {
    padding: 48px 24px;
  }

  /* --- WHATSAPP --- */
  .btn-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  /* --- FOOTER --- */
  .footer {
    padding: 20px 24px;
  }

  /* --- PÁGINA DE CASE --- */
  .case-hero {
    padding: 120px 24px 60px;
  }

  .case-hero-conteudo {
    flex-direction: column;
    gap: 32px;
  }

  .case-hero-img {
    max-width: 100%;
  }

  .case-meta {
    flex-wrap: nowrap;
    gap: 0;
    align-items: flex-start;
    justify-content: space-between;
  }

  .case-meta > div {
    flex: 0 1 auto;
    min-width: 0;
  }

  .case-meta-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .case-meta p {
    font-size: 12px;
    line-height: 1.5;
  }

  .case-conteudo {
    padding: 60px 24px 90px;
  }

  .case-conteudo-colunas {
    flex-direction: column;
    gap: 40px;
  }

  .case-desafio {
    max-width: 100%;
  }

  .case-etapas {
    flex-direction: column;
    gap: 48px;
  }

  .case-etapa-seta {
    display: none;
  }

  .case-resultados {
    padding: 60px 24px;
  }

  .case-resultados-conteudo {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }

  .case-resultados-texto {
    max-width: 100%;
  }

  .case-galeria-scroll {
    height: 300px;
  }

  .case-cta {
    padding: 56px 24px;
  }

  .case-etapa::before {
    inset: -4px;
    transform: rotate(-1deg) translateY(4px);
  }

  .case-etapa::after {
    inset: -8px;
    transform: rotate(-2deg) translateY(8px);
  }

  .case-cta-dominos {
    width: 40%;
  }
}