/* ═══════════════════════════════════════════════════════════════
   JANA DIGITAL MKT — SECTIONS CSS
   Manifesto · Dados · Pilares · Serviços · Método · Cases · Sobre · CTA · Footer
═══════════════════════════════════════════════════════════════ */

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--dark);
  padding: 140px 0 100px;
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,43,0.25), transparent);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--offwhite);
}
.manifesto-right {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.manifesto-right p {
  font-family: var(--font-d);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(249,245,240,0.72);
}
.manifesto-destaque {
  font-family: var(--font-d) !important;
  font-weight: 600 !important;
  font-size: clamp(17px, 1.3vw, 20px) !important;
  color: var(--offwhite) !important;
  padding-left: 20px;
  border-left: 2px solid var(--orange);
}
.manifesto-right em.lora {
  color: rgba(249,245,240,0.85);
  font-size: clamp(16px, 1.15vw, 18px);
}

/* ─── DADOS / ESTATÍSTICAS ─── */
.dados {
  background: var(--dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.dados-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,107,43,0.03), transparent);
  pointer-events: none;
}
.dados-header {
  margin-bottom: 72px;
}
.dados-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--offwhite);
}
.stats-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-item {
  border-bottom: 1px solid rgba(249,245,240,0.08);
  overflow: hidden;
  transition: background 0.2s ease;
}
.stat-item:first-child { border-top: 1px solid rgba(249,245,240,0.08); }
.stat-item.open { background: rgba(255,107,43,0.04); }
.stat-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  text-align: left;
  cursor: pointer;
  transition: padding 0.2s;
}
.stat-trigger:hover .stat-title { color: var(--offwhite); }
.stat-trigger:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 4px; }
.stat-number {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.stat-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat-title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 20px);
  color: rgba(249,245,240,0.7);
  line-height: 1.4;
  transition: color 0.2s;
  flex: 1;
}
.stat-icon {
  font-size: 24px;
  color: var(--orange);
  opacity: 0.6;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
}
.stat-item.open .stat-icon { transform: rotate(45deg); opacity: 1; }
.stat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              padding 0.4s cubic-bezier(0.4,0,0.2,1);
  padding-left: 260px;
}
.stat-item.open .stat-body { padding-bottom: 28px; }
.stat-body p {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 300;
  color: rgba(249,245,240,0.65);
  line-height: 1.75;
  max-width: 640px;
}
.stat-body strong { color: var(--offwhite); font-weight: 600; }
.fonte {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(249,245,240,0.3);
  font-style: normal;
  text-transform: uppercase;
}

/* ─── PILARES (light bg) ─── */
.pilares {
  background: var(--offwhite);
  padding: 140px 0;
  position: relative;
}
.pilares::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-h);
  opacity: 0.6;
}
.pilares-header { margin-bottom: 80px; }
.pilares-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--dark);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pilar-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,107,43,0.15);
  border-radius: 4px;
  padding: 36px 28px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  will-change: transform;
  cursor: default;
}
.pilar-card:hover {
  border-color: rgba(255,107,43,0.4);
  box-shadow: 0 12px 48px rgba(255,107,43,0.1);
}
.pilar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}
.pilar-icon svg { width: 48px; height: 48px; }
.pilar-title {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.pilar-desc {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── SERVIÇOS ─── */
.servicos {
  background: var(--dark);
  padding: 140px 0;
  position: relative;
}
.servicos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-h);
  opacity: 0.4;
}
.servicos-header { margin-bottom: 80px; }
.servicos-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--offwhite);
}
.servicos-h2 em.lora { font-size: clamp(34px, 4.5vw, 62px); }

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.servico-card {
  position: relative;
  border-radius: 4px;
  padding: 48px 40px 80px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  cursor: default;
}
.servico-card:hover {
  border-color: rgba(255,107,43,0.55);
  box-shadow: 0 0 48px rgba(255,107,43,0.1);
}
.servico-card:hover .servico-link { opacity: 1; transform: translateY(0); }

.servico-full { grid-column: 1 / -1; }
.servico-full-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Watermark number */
.servico-num {
  position: absolute;
  top: -16px;
  right: 24px;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 108px;
  line-height: 1;
  color: var(--offwhite);
  opacity: 0.06;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}
.servico-title {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: 0.01em;
  color: var(--offwhite);
  margin-bottom: 16px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.servico-desc {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: 15px;
  color: rgba(249,245,240,0.62);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.servico-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.servico-list li {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: 14px;
  color: rgba(249,245,240,0.55);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.servico-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}
.servico-link {
  position: absolute;
  bottom: 28px;
  right: 32px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 13px;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.servico-link:hover { color: var(--magenta); }

/* ─── MÉTODO ─── */
.metodo {
  background: var(--dark2);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.metodo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,43,0.2), transparent);
}
.metodo-header { margin-bottom: 80px; }
.metodo-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--offwhite);
}
.metodo-sub {
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0.4;
}

.metodo-scroll-wrap {
  padding: 0 48px;
  max-width: 1380px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.metodo-scroll-wrap::-webkit-scrollbar { display: none; }

.metodo-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding-bottom: 24px;
}
.metodo-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 200px;
  flex-shrink: 0;
}
.metodo-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,107,43,0.5), rgba(232,62,140,0.5));
  flex-shrink: 0;
  margin-top: 36px;
  align-self: flex-start;
}
.metodo-circle {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,43,0.05);
  flex-shrink: 0;
}
.metodo-num {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.metodo-content { flex: 1; }
.metodo-title {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--offwhite);
  margin-bottom: 10px;
  line-height: 1.3;
}
.metodo-desc {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: 13.5px;
  color: rgba(249,245,240,0.5);
  line-height: 1.65;
  max-width: 180px;
}

/* ─── CASES (light bg) ─── */
.cases {
  background: var(--offwhite);
  padding: 140px 0;
  position: relative;
}
.cases::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-h);
  opacity: 0.5;
}
.cases-header { margin-bottom: 72px; }
.cases-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--dark);
}

/* Logos grid — real clients */
.logos-grid-real {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.logo-item-real {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
  transition: transform 0.3s ease;
}
.logo-item-real:hover { transform: translateY(-4px); }
.client-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.12));
  transition: filter 0.3s ease;
}
.logo-item-real:hover .client-logo {
  filter: drop-shadow(0 8px 28px rgba(255,107,43,0.2));
}
.client-name {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(31,41,55,0.4);
  text-align: center;
  max-width: 120px;
  line-height: 1.4;
  transition: color 0.3s;
}
.logo-item-real:hover .client-name { color: var(--orange); }

/* Case cards */
.cases-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.case-card {
  background: #fff;
  border: 1px solid rgba(31,41,55,0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.case-card:hover {
  box-shadow: 0 12px 40px rgba(31,41,55,0.1);
  transform: translateY(-4px);
}
.case-img-placeholder {
  width: 100%;
  height: 180px;
  background: repeating-linear-gradient(
    45deg,
    rgba(31,41,55,0.04),
    rgba(31,41,55,0.04) 8px,
    rgba(31,41,55,0.07) 8px,
    rgba(31,41,55,0.07) 16px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(31,41,55,0.06);
}
.case-img-label {
  font-family: var(--font-d);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31,41,55,0.25);
}
.case-info { padding: 24px; }
.case-client {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.case-metric {
  font-family: var(--font-d);
  font-size: 13px;
  color: var(--gray);
}
.case-metric strong {
  color: var(--orange);
  font-weight: 800;
}
.case-desc {
  font-family: var(--font-d);
  font-size: 12.5px;
  color: rgba(31,41,55,0.45);
  line-height: 1.6;
  font-weight: 300;
}

/* Testimonial */
.cases-depoimento {
  border: none;
  border-left: 2px solid;
  border-image: var(--grad) 1;
  padding: 8px 0 8px 40px;
  max-width: 800px;
}
.depoimento-text {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 20px;
}
.depoimento-autor {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.08em;
}

/* ─── SOBRE ─── */
.sobre {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.sobre::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,43,0.25), transparent);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 700px;
}

/* Photo column */
.sobre-photo-col {
  position: relative;
  display: flex;
  flex-direction: column;
}
.sobre-photo-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.sobre-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}
.sobre-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, var(--dark) 100%),
    linear-gradient(to bottom, transparent 70%, rgba(31,41,55,0.6) 100%);
}
.sobre-seal {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,245,240,0.55);
  z-index: 2;
}
.seal-sep { color: var(--orange); opacity: 0.6; }

/* Text column */
.sobre-text-col {
  padding: 100px 64px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre-pretitle { margin-bottom: 20px; }
.sobre-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  margin-bottom: 36px;
}
.sobre-sub-h {
  display: block;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 300;
  color: rgba(249,245,240,0.6);
  margin-top: 6px;
  line-height: 1.3;
}
.sobre-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.sobre-body p {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(249,245,240,0.65);
  line-height: 1.75;
}
.sobre-cta-phrase { font-style: normal; color: rgba(249,245,240,0.8) !important; }
.sobre-cta-phrase em { font-size: clamp(16px, 1.2vw, 18px); }
.sobre-cta { text-decoration: none; align-self: flex-start; }

/* ─── CTA FINAL ─── */
.cta-final {
  background: linear-gradient(135deg, #FF6B2B 0%, #E83E8C 100%);
  padding: 180px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}
.cta-inner { position: relative; z-index: 1; }
.cta-h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 32px;
}
.cta-destaque {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-e);
  font-size: 0.78em;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.cta-sub {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 56px;
}
.cta-sub em { color: rgba(255,255,255,0.95); font-size: 1.05em; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark2);
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.footer-brand .nav-logo { margin-bottom: 20px; text-decoration: none; }
.footer-tagline {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 400;
  color: rgba(249,245,240,0.45);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.footer-local {
  font-family: var(--font-d);
  font-size: 12px;
  color: rgba(249,245,240,0.28);
  letter-spacing: 0.04em;
}
.footer-col-title {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0.8;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 300;
  color: rgba(249,245,240,0.45);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  display: block;
  line-height: 1.6;
}
.footer-link:hover { color: var(--offwhite); }
.footer-link:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }
.social-link { display: flex; align-items: center; gap: 8px; }
.footer-cta-desc {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 300;
  color: rgba(249,245,240,0.4);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-cta-btn { text-decoration: none; font-size: 12px; padding: 10px 22px; }
.footer-line {
  height: 1px;
  background: rgba(255,107,43,0.1);
  margin: 0 48px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-credit {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 300;
  color: rgba(249,245,240,0.28);
  letter-spacing: 0.04em;
}
.footer-credit a {
  color: rgba(249,245,240,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--orange); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .metodo-step { width: 180px; }
}

@media (max-width: 1024px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 48px; }
  .servicos-grid { grid-template-columns: 1fr; }
  .servico-full-inner { grid-template-columns: 1fr; gap: 20px; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-photo-col { min-height: 50vw; max-height: 520px; }
  .sobre-photo-wrap { height: 100%; }
  .sobre-photo-overlay {
    background: linear-gradient(to bottom, transparent 60%, var(--dark) 100%);
  }
  .sobre-text-col { padding: 64px 40px; }
  .sobre-seal { position: relative; bottom: auto; left: auto; margin: 24px 40px; }
  .cases-cards { grid-template-columns: 1fr; max-width: 480px; }
  .stat-trigger { grid-template-columns: 160px 1fr; }
  .stat-body { padding-left: 200px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .logos-grid-real { gap: 32px; justify-content: center; }
  .manifesto { padding: 96px 0 72px; }
  .dados { padding: 80px 0; }
  .pilares { padding: 96px 0; }
  .servicos { padding: 96px 0; }
  .metodo { padding: 96px 0; }
  .metodo-scroll-wrap { padding: 0 24px; }
  .cases { padding: 96px 0; }
  .sobre-text-col { padding: 56px 24px; }
  .cta-final { padding: 120px 0; }
  .pilares-grid { grid-template-columns: 1fr; gap: 16px; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-trigger { grid-template-columns: 1fr; gap: 12px; }
  .stat-number { font-size: 48px; }
  .stat-body { padding-left: 0; }
  .servico-card { padding: 36px 28px 72px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; padding-bottom: 56px; }
  .footer-line { margin: 0 24px; }
  .footer-bottom { padding: 20px 0; }
  .cases-header { margin-bottom: 48px; }
  .cases-cards { max-width: 100%; grid-template-columns: 1fr; }
  .logos-grid { margin-bottom: 48px; }
  .cases-depoimento { padding-left: 24px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { padding: 14px 28px; font-size: 12px; }
  .btn-wpp { padding: 16px 28px; font-size: 12px; gap: 10px; }
  .servico-link { opacity: 1; transform: translateY(0); }
  .logos-grid { grid-template-columns: 1fr 1fr; }
  .metodo-track { flex-direction: column; min-width: 0; }
  .metodo-connector {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,107,43,0.5), rgba(232,62,140,0.5));
    margin-top: 0;
    margin-left: 35px;
    align-self: auto;
  }
  .metodo-step { width: 100%; flex-direction: row; gap: 20px; }
  .metodo-content { flex: 1; }
  .metodo-desc { max-width: none; }
  .cta-h2 { font-size: clamp(32px, 9vw, 52px); }
}

/* ─── BRANDS BANNER (video + marquee) ─── */
.brands-banner {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 40px 0;
}
.brands-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
.brands-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(31,41,55,0.92) 0%,
    rgba(31,41,55,0.55) 20%,
    rgba(31,41,55,0.35) 50%,
    rgba(31,41,55,0.55) 80%,
    rgba(31,41,55,0.92) 100%
  );
  z-index: 1;
}
.brands-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.brands-marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-marquee {
  display: flex;
  align-items: center;
  gap: 96px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.brands-marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-logo {
  height: 90px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.brand-logo:hover { opacity: 1; }
.brand-screen {
  filter: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}
.cases-lower { padding-top: 80px; padding-bottom: 0; }

@media (max-width: 768px) {
  .brands-banner { height: 180px; margin: 24px 0; }
  .brand-logo { height: 56px; max-width: 130px; }
  .brands-marquee { gap: 56px; animation-duration: 22s; }
}

.reels-section {
  margin-bottom: 80px;
}
.reels-heading {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--dark);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.reel-wrap {
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid rgba(31,41,55,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  min-width: 0;
}
.reel-wrap:hover {
  box-shadow: 0 12px 40px rgba(31,41,55,0.12);
}
.reel-wrap .instagram-media {
  margin: 0 !important;
  min-width: unset !important;
  width: 100% !important;
  border-radius: 0 !important;
}
.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(31,41,55,0.08);
  border: 1px solid rgba(31,41,55,0.12);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.08);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}
.carousel-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31,41,55,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}
.carousel-dot:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

@media (max-width: 900px) {
  .reel-wrap { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 600px) {
  .reel-wrap { flex: 0 0 100%; }
  .carousel-btn { width: 40px; height: 40px; }
}
