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

:root {
  --verde: #65c5b4;
  --azul: #00b4d0;
  --amarelo: #f4c522;
  --cinza-escuro: #414042;
  --cinza-bg: #f5f6f8;
  --cinza-mid: #6b6b6c;
  --branco: #ffffff;
  --dark: #1a1c1e;
  --dark2: #22252a;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--cinza-escuro);
  background: var(--branco);
  overflow-x: hidden;
}

/* ────────────────────────────────
     NAV
  ──────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 28, 30, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(101, 197, 180, 0.15);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  width: 120px;
  height: 120px;
}
.nav-logo span {
  color: var(--azul);
}
.nav-cta {
  background: var(--verde);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: #7ed6c6;
}

/* ────────────────────────────────
     HERO
  ──────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(101, 197, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 197, 180, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 180, 208, 0.1) 0%,
    transparent 70%
  );
  top: -150px;
  right: -150px;
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(101, 197, 180, 0.08) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: 5%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--verde);
}
.hero-h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--branco);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-h1 .accent {
  color: var(--verde);
}

.hero-sub {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  background: var(--verde);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    transform 0.15s,
    background 0.2s;
}
.btn-primary:hover {
  background: #7ed6c6;
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--branco);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--verde);
  background: rgba(101, 197, 180, 0.08);
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  max-width: 620px;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-trust-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero — media container */
.hero-media {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(101, 197, 180, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

/* Video embed container — 16:9 */
.hero-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #111315;
}
.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Fallback — image placeholder shown when no video is set */
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-img-placeholder svg {
  opacity: 0.18;
}
.hero-img-placeholder-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 0 24px;
}

/* Caption strip below media */
.hero-media-caption {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(101, 197, 180, 0.12);
}
.hero-media-caption-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde);
  flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-media-caption-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}
.hero-media-caption-text strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ────────────────────────────────
     LOGOS
  ──────────────────────────────── */
#logos {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 5%;
}
.logos-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 36px;
}

/* Grid desktop */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  transition:
    border-color 0.25s,
    background 0.25s;
  /* ── instrução para o desenvolvedor:
       Substitua o <span> interno por <img src="logo-EMPRESA.svg" alt="EMPRESA">
       As imagens devem ter fundo transparente e cor adaptável (idealmente SVG em branco).
    ── */
}
.logo-card:hover {
  border-color: rgba(101, 197, 180, 0.3);
  background: rgba(101, 197, 180, 0.05);
}
.logo-card span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 1.3;
}
.logo-card:hover span {
  color: rgba(255, 255, 255, 0.65);
}

/* Segunda linha: 6 centrados */
.logos-grid-row2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 940px;
  margin: 16px auto 0;
}

/* Carrossel mobile */
.logos-carousel-wrap {
  display: none;
  overflow: hidden;
}
.logos-carousel-track {
  display: flex;
  gap: 14px;
  align-items: center;
  animation: scroll-logos 28s linear infinite;
  width: max-content;
}
.logos-carousel-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logo-carousel-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  width: 140px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}
.logo-carousel-card span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ────────────────────────────────
     SECTIONS COMUNS
  ──────────────────────────────── */
section {
  padding: 90px 5%;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--verde);
}
.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--cinza-escuro);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.section-title.white {
  color: var(--branco);
}
.section-title .accent {
  color: var(--verde);
}
.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cinza-mid);
  max-width: 580px;
  margin-bottom: 48px;
}
.section-sub.white {
  color: rgba(255, 255, 255, 0.55);
}

/* ────────────────────────────────
     EQUIPE / CAMPO (novo bloco visual)
  ──────────────────────────────── */
#equipe-visual {
  background: var(--cinza-bg);
  padding: 50px;
  overflow: hidden;
}
.equipe-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.equipe-copy {
  padding: 80px 60px 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.equipe-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 420px;
}
/* Cada célula é um placeholder para foto real */
.equipe-photo-cell {
  background: #d8dadd;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipe-photo-cell:nth-child(1) {
  grid-row: span 2;
}
.equipe-photo-cell:nth-child(1) img {
  object-position: center 10%;
}
.equipe-photo-cell-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  text-align: center;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 4px;
}
.equipe-photo-cell svg {
  opacity: 0.2;
}

/* ────────────────────────────────
     PROBLEMA
  ──────────────────────────────── */
#problema {
  background: var(--dark);
}
.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.problema-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.problema-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--verde);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.problema-card:hover {
  border-color: rgba(101, 197, 180, 0.3);
  transform: translateY(-2px);
}
.problema-card:hover::before {
  opacity: 1;
}
.problema-icon {
  margin-bottom: 14px;
  color: var(--azul);
}
.problema-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
}
.problema-desc {
  font-size: 0.83rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

/* ────────────────────────────────
     SERVIÇOS
  ──────────────────────────────── */
#servicos {
  background: var(--branco);
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.servico-card {
  background: var(--cinza-bg);
  border-radius: 8px;
  padding: 30px 26px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--verde);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.servico-card:nth-child(2n) {
  border-top-color: var(--azul);
}
.servico-card:nth-child(3n) {
  border-top-color: var(--amarelo);
}
.servico-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}
.servico-icon {
  width: 44px;
  height: 44px;
  background: rgba(101, 197, 180, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.servico-card:nth-child(2n) .servico-icon {
  background: rgba(0, 180, 208, 0.1);
}
.servico-card:nth-child(3n) .servico-icon {
  background: rgba(244, 197, 34, 0.1);
}
.servico-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 8px;
}
.servico-desc {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--cinza-mid);
}
.servico-benefit {
  margin-top: 14px;
  display: block ruby;
  gap: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--verde);
}
.servico-benefit::before {
  content: "→ ";
}

/* ────────────────────────────────
     IMPACTO
  ──────────────────────────────── */
#impacto {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#impacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(101, 197, 180, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 197, 180, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.impacto-inner {
  position: relative;
  z-index: 1;
}
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  border: 1px solid rgba(101, 197, 180, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.impacto-item {
  padding: 44px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(101, 197, 180, 0.1);
  text-align: center;
  transition: background 0.3s;
}
.impacto-item:last-child {
  border-right: none;
}
.impacto-item:hover {
  background: rgba(101, 197, 180, 0.05);
}
.impacto-num {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.impacto-num.verde {
  color: var(--verde);
}
.impacto-num.azul {
  color: var(--azul);
}
.impacto-num.amarelo {
  color: var(--amarelo);
}
.impacto-num.mix {
  background: linear-gradient(135deg, var(--verde), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.impacto-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-top: 6px;
}
.impacto-unit {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 4px;
}
.impacto-source {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.18);
  margin-top: 10px;
  font-style: italic;
}

/* ────────────────────────────────
     CASES
  ──────────────────────────────── */
#cases {
  background: var(--cinza-bg);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case-card {
  background: var(--branco);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Área de imagem do case */
.case-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #d0d2d4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ── desenvolvedor: substitua por:
       background: url('case-EMPRESA.jpg') center/cover no-repeat;
       e remova conteúdo interno. ── */
}
.case-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.case-img svg {
  opacity: 0.18;
}

/* Badge de setor */
.case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
}

.case-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-client {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 14px;
}
.case-section {
  margin-bottom: 12px;
}
.case-section-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cinza-mid);
  opacity: 0.55;
  margin-bottom: 4px;
}
.case-text {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--cinza-mid);
}
.case-resultado {
  background: rgba(101, 197, 180, 0.08);
  border-left: 3px solid var(--verde);
  border-radius: 0 4px 4px 0;
  padding: 10px 14px;
  margin-top: 14px;
}
.case-resultado .case-text {
  font-weight: 400;
}
.case-resultado .case-text::before {
  content: "•";
  color: var(--verde);
  margin-right: 6px;
  font-weight: 700;
}

/* Card CTA dentro do grid */
.case-card-cta {
  background: var(--dark);
  border-radius: 10px;
  border: 1px dashed rgba(101, 197, 180, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  min-height: 340px;
}
.case-card-cta-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  color: var(--amarelo);
}
.case-card-cta h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
}
.case-card-cta p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ────────────────────────────────
     DEPOIMENTOS
  ──────────────────────────────── */
#depoimentos {
  background: var(--dark);
}
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.depo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px 30px;
  position: relative;
  transition: border-color 0.3s;
}
.depo-card:hover {
  border-color: rgba(101, 197, 180, 0.25);
}
.depo-quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--verde);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: 6px;
  display: block;
}
.depo-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  margin-bottom: 28px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
/* Placeholder de foto — desenvolvedor substitui por <img> */
.depo-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(101, 197, 180, 0.3),
    rgba(0, 180, 208, 0.3)
  );
  border: 2px solid rgba(101, 197, 180, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--verde);
  /* ── desenvolvedor: <img src="foto-NOME.jpg" style="width:100%;height:100%;border-radius:50%;object-fit:cover"> ── */
}
.depo-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--branco);
}
.depo-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}
.depo-stars {
  display: flex;
  gap: 3px;
  margin-top: 6px;
}
.depo-stars span {
  color: var(--amarelo);
  font-size: 0.75rem;
}

/* ────────────────────────────────
     PROCESSO
  ──────────────────────────────── */
#processo {
  background: var(--cinza-bg);
}
.processo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.processo-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--verde), var(--azul));
  z-index: 0;
}
.passo {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.passo-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cinza-bg);
  border: 2px solid var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--verde);
}
.passo:nth-child(2) .passo-num {
  border-color: var(--azul);
  color: var(--azul);
}
.passo:nth-child(3) .passo-num {
  border-color: var(--amarelo);
  color: var(--amarelo);
}
.passo-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 8px;
}
.passo-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--cinza-mid);
}

/* ────────────────────────────────
     FORMULÁRIO
  ──────────────────────────────── */
#formulario {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2a2a 100%);
  position: relative;
  overflow: hidden;
}
#formulario::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(101, 197, 180, 0.08) 0%,
    transparent 60%
  );
}
.form-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.form-left-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--branco);
  margin-bottom: 16px;
}
.form-left-title .acc {
  color: var(--verde);
}
.form-left-sub {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}
.form-trust-list {
  list-style: none;
}
.form-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}
.form-trust-list li::before {
  content: "✓";
  color: var(--verde);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 36px 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.form-input,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--branco);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-input:focus,
.form-select:focus {
  border-color: var(--verde);
  background: rgba(101, 197, 180, 0.06);
}
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2365C5B4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select option {
  background: #22252a;
}
.btn-form {
  width: 100%;
  background: var(--verde);
  color: var(--dark);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-top: 4px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-form:hover {
  background: #7ed6c6;
  transform: translateY(-1px);
}
.form-disclaimer {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 12px;
}

/* ────────────────────────────────
     WHATSAPP
  ──────────────────────────────── */
#whatsapp {
  background: var(--branco);
  padding: 48px 5%;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.wa-text {
  font-size: 1rem;
  color: var(--cinza-mid);
  margin-bottom: 16px;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--branco);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    transform 0.15s,
    background 0.2s;
}
.btn-wa:hover {
  background: #1fb758;
  transform: translateY(-1px);
}
.btn-wa svg {
  width: 20px;
  height: 20px;
}

/* ────────────────────────────────
     FAQ — totalmente reescrito
  ──────────────────────────────── */
#faq {
  background: var(--cinza-bg);
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  align-items: start; /* cards se expandem para baixo sem afetar coluna vizinha */
}

.faq-item {
  background: var(--branco);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-family: var(--font);
}
.faq-btn:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: -2px;
}

.faq-q-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cinza-escuro);
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(101, 197, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.3s;
  margin-top: 1px;
}
.faq-icon svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--verde);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

.faq-item.is-open .faq-icon {
  background: rgba(101, 197, 180, 0.2);
}
.faq-item.is-open .faq-icon svg {
  transform: rotate(180deg);
}
.faq-item.is-open {
  border-color: rgba(101, 197, 180, 0.3);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--cinza-mid);
  padding: 0 20px;
}
.faq-item.is-open .faq-body-inner {
  padding: 0 20px 20px;
}

/* ────────────────────────────────
     FOOTER
  ──────────────────────────────── */
footer {
  background: var(--dark);
  padding: 1px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--azul);
}

.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80px;
  width: 100%;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-addresses {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  align-items: center;
}

.address-item {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  text-align: center;
}

.address-city {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  padding: 8px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .footer-addresses {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .footer-inner {
    flex-direction: column;
    min-height: auto;
    gap: 8px;
  }

  .footer-inner > div:last-child {
    display: none;
  }
}

/* CTA flutuante */
.cta-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  background: var(--verde);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 13px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(101, 197, 180, 0.4);
  text-decoration: none;
  display: none;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cta-float.visible {
  display: flex;
}
.cta-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(101, 197, 180, 0.5);
}

/* ────────────────────────────────
     RESPONSIVO
  ──────────────────────────────── */
@media (max-width: 1024px) {
  .logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .logos-grid-row2 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }
  .equipe-inner {
    grid-template-columns: 1fr;
  }
  .equipe-copy {
    padding: 60px 5%;
  }
  .equipe-photos {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-media {
    max-width: 560px;
  }
  .logos-grid {
    display: none;
  }
  .logos-grid-row2 {
    display: none;
  }
  .logos-carousel-wrap {
    display: block;
  }
  .problema-grid {
    grid-template-columns: 1fr 1fr;
  }
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .impacto-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }
  .depo-grid {
    grid-template-columns: 1fr;
  }
  .processo-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .processo-steps::before {
    display: none;
  }
  .form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .problema-grid {
    grid-template-columns: 1fr;
  }
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  .impacto-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .processo-steps {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  section {
    padding: 64px 5%;
  }
  .cta-float {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logos-carousel-track {
    animation: none;
  }
  * {
    transition: none !important;
  }
}

/* ── LOGOS — carrossel automático infinito (CSS-only) ── */
#logos {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 64px 0 52px;
}
.logos-header {
  text-align: center;
  padding: 0 5%;
  margin-bottom: 36px;
}
.logos-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #414042;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.logos-subtitle {
  font-size: 0.88rem;
  color: #6b6b6c;
  line-height: 1.6;
}

/* Viewport do carrossel — mascara overflow */
.logos-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* fade nas bordas */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Track que se move — contém os cards duplicados para loop */
.logos-track-auto {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: logos-scroll 32s linear infinite;
}

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

/* Card individual */
.logo-card-auto {
  flex-shrink: 0;
  /* Desktop: ~8 visíveis → (100vw - gaps) / 8 */
  width: calc((100vw - 7 * 16px) / 8);
  min-width: 120px;
  max-width: 160px;
  height: 88px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  cursor: default;
}
.logo-card-auto .lc-name {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(65, 64, 66, 0.4);
  text-align: center;
  line-height: 1.2;
}

/* Tablet: ~4 visíveis */
@media (max-width: 900px) {
  .logo-card-auto {
    width: calc((100vw - 3 * 16px) / 4);
    min-width: 110px;
  }
  .logos-track-auto {
    animation-duration: 26s;
  }
}

/* Mobile: ~2-3 visíveis */
@media (max-width: 540px) {
  .logo-card-auto {
    width: calc((100vw - 2 * 16px) / 2.5);
    min-width: 100px;
    height: 76px;
  }
  .logos-track-auto {
    animation-duration: 20s;
  }
}

/* Segmentos abaixo do carrossel */
.logos-segments {
  padding: 32px 5% 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.logos-segments-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #6b6b6c;
  margin-bottom: 16px;
}
.logos-segments-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.logos-segment-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f6f8;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #414042;
}
.logos-segment-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65c5b4;
  flex-shrink: 0;
}

/* ── BLOCO IMPACTO v2 (Ajuste 1) ── */
#impacto-v2 {
  background: #ffffff;
  padding: 96px 5%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.impacto-v2-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.impacto-v2-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #414042;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.impacto-v2-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b6b6c;
}
.impacto-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.impacto-v2-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}
.impacto-v2-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00b4d0, #65c5b4);
  border-radius: 4px 0 0 4px;
}
.impacto-v2-card:hover {
  box-shadow: 0 12px 40px rgba(0, 180, 208, 0.12);
  transform: translateY(-3px);
}
.impacto-v2-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(0, 180, 208, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.impacto-v2-content {
}
.impacto-v2-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: #00b4d0;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.impacto-v2-label {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #414042;
  font-weight: 500;
}
@media (max-width: 680px) {
  .impacto-v2-grid {
    grid-template-columns: 1fr;
  }
  .impacto-v2-card {
    padding: 28px 24px;
  }
}

/* ── SEÇÃO VÍDEO (Ajuste 3) ── */
#video-section {
  background: #f5f6f8;
  padding: 96px 5%;
  text-align: center;
}
.video-header {
  max-width: 720px;
  margin: 0 auto 40px;
}
.video-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #414042;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.video-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b6b6c;
}
.video-container {
  max-width: 900px;
  margin: 0 auto 36px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  background: #1a1c1e;
}
.video-placeholder {
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  position: relative;
  background: #1a1c1e;
  /* dev: use como wrapper de <iframe> ou <video> */
}
.video-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(101, 197, 180, 0.15);
  border: 2px solid rgba(101, 197, 180, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.25s;
}
.video-play-btn svg {
  margin-left: 4px;
}
.video-placeholder-inner:hover .video-play-btn {
  background: rgba(101, 197, 180, 0.28);
  transform: scale(1.08);
}
.video-placeholder-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ── CASES v2 (Ajuste 5) ── */
.case-result-strip {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
}
.case-result-item {
  flex: 1;
  padding: 16px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}
.case-result-item:last-child {
  border-right: none;
}
.case-result-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #00b4d0;
  line-height: 1;
  letter-spacing: -0.5px;
}
.case-result-desc {
  font-size: 0.62rem;
  color: #6b6b6c;
  margin-top: 3px;
  line-height: 1.3;
}

/* ── DEPOIMENTOS v2 (Ajuste 6) ── */
.depo-card {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.depo-card:hover {
  box-shadow: 0 12px 40px rgba(101, 197, 180, 0.12);
  transform: translateY(-3px);
}
.depo-quote-mark {
  font-size: 5rem !important;
  color: #00b4d0 !important;
  opacity: 0.18 !important;
  line-height: 0.8 !important;
}
.depo-name {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}
.depo-role {
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 500 !important;
  margin-top: 3px !important;
}

/* ── MICROINTERAÇÕES (Ajuste 7) — fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 {
  transition-delay: 0.08s;
}
.fade-in-delay-2 {
  transition-delay: 0.16s;
}
.fade-in-delay-3 {
  transition-delay: 0.24s;
}
.fade-in-delay-4 {
  transition-delay: 0.32s;
}

/* Hover cards existentes */
.servico-card {
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.servico-card:hover {
  box-shadow: 0 8px 32px rgba(0, 180, 208, 0.1);
  transform: translateY(-4px);
}
.passo {
  transition: transform 0.25s;
}
.passo:hover {
  transform: translateY(-3px);
}
.btn-primary {
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(101, 197, 180, 0.35);
}
