/* GMZ Agência — Visual Identity */
:root {
  --blue: #0A6CFF; /* Azul GMZ principal */
  --blue-700: #1A8CFF; /* Azul claro brilho */
  --accent: #EF4B25; /* Destaque laranja da referência */
  --dark: #000000; /* Fundo preto profundo */
  --black: #000000;
  --white: #ffffff;
  --gray: #D0D0D0; /* Cinza para parágrafo */
  --card: rgba(255,255,255,0.06);
  --border: rgba(10,108,255,0.35);
  --shadow: 0 10px 30px rgba(10,108,255,0.16);
  --section-padding: 80px; /* base de espaçamento vertical das sections */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.96) 40%, rgba(0,0,0,1) 100%);
  background-color: var(--dark);
}

.container {
  width: 100%;
  max-width: 1280px; /* container central 1280px */
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: relative; /* cabeçalho no topo, rola com a página */
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.55));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: flex-start; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  display: inline-block;
  font-weight: 800; letter-spacing: 1px; font-size: 20px;
  padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 10px; color: var(--blue);
  box-shadow: inset 0 0 30px rgba(10,92,255,0.18);
}
.brand-text { font-weight: 600; color: var(--gray); }
/* Logo image in header */
.brand-logo { height: 56px; display: block; object-fit: contain; margin-left: 10px; transform: scale(1.5); transform-origin: left center; }

/* Header navigation */
.main-nav { display: block; margin-left: auto; }
.header-actions { margin-left: 12px; display: flex; align-items: center; }
.header-actions a { position: static; right: auto; top: auto; transform: none; }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.nav-links a { color: var(--gray); text-decoration: none; font-weight: 500; }
.nav-links a:hover { color: var(--white); }
.btn-small { padding: 10px 18px; border-radius: 20px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; cursor: pointer; border-radius: 10px; transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn-primary {
  color: var(--white);
  font-weight: 700;
  padding: 14px 24px;
  background: linear-gradient(180deg, var(--blue), var(--blue-700));
  box-shadow: 0 10px 30px rgba(10,108,255,0.26), inset 0 0 12px rgba(255,255,255,0.14);
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 12px 34px rgba(10,92,255,0.32); transform: translateY(-1px); }
.btn-ghost { color: var(--white); padding: 10px 16px; border: 1px solid rgba(255,255,255,0.12); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.section { padding: var(--section-padding) 0; position: relative; }
.section-title { font-size: 36px; line-height: 1.1; margin: 0 0 18px; letter-spacing: -0.02em; }
.section-sub { color: var(--gray); margin-bottom: 30px; }

/* Linha azul no final de todas as dobras (exceto hero, que já possui a sua) */
.section:not(.hero) {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(180deg, var(--blue), var(--blue-700)) 1;
  box-shadow: 0 0 14px rgba(10,92,255,0.32);
}

/* Remoção visual da dobra “Nichos atendidos” (sem alterar o HTML) */
.niches { display: none !important; }

/* Hero */
.hero { padding-top: 80px; min-height: 76vh; display: flex; align-items: center; position: relative; }
/* Linha azul no final da seção Hero, mesma cor do botão */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-700));
  box-shadow: 0 0 14px rgba(10,92,255,0.32);
  opacity: 0.9;
  pointer-events: none;
  z-index: 5;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; background: url('tods.png') right center / 50% no-repeat; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(10,108,255,0.18) 0, rgba(10,108,255,0.0) 40%),
    repeating-linear-gradient(135deg, rgba(10,108,255,0.06) 0 4px, rgba(10,108,255,0.0) 4px 14px);
  mask-image: radial-gradient(60% 60% at 10% 20%, rgba(0,0,0,0.65), transparent 70%);
}
.hero-bg::after { content: ""; position: absolute; right: -10%; top: -10%; width: 60%; height: 120%; background: radial-gradient(50% 50% at 50% 50%, rgba(26,140,255,0.28), transparent 70%); filter: blur(30px); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.hero-content { padding-left: 0; }
@media (max-width: 640px) {
  .hero-grid { padding-top: 0 !important; margin-top: 0 !important; }
  .headline { margin-top: 0; }
}

.headline { font-size: clamp(32px, 5.2vw, 52px); line-height: 1.1; margin: 0 0 16px; font-weight: 800; letter-spacing: -0.02em; }
.subheadline { color: var(--gray); font-size: 18px; font-weight: 400; margin-bottom: 18px; }
.hero-extra { color: var(--gray); margin-bottom: 16px; }
.accent-text { color: var(--blue); animation: glowPulse 3.2s ease-in-out infinite; }
.btn-premium { color: var(--white); background: linear-gradient(180deg, var(--blue), var(--blue-700)); border-radius: 40px; padding: 18px 52px; box-shadow: 0 14px 34px rgba(10,108,255,0.28), inset 0 0 12px rgba(255,255,255,0.14); font-weight: 800; }
.btn-premium:hover { transform: scale(1.02); filter: brightness(1.06); box-shadow: 0 16px 38px rgba(10,108,255,0.34); }

/* Visual direito do hero */
.hero-visual { position: relative; border-radius: 18px; overflow: hidden; height: 520px; background: radial-gradient(60% 60% at 70% 40%, rgba(26,140,255,0.32), transparent 70%), url('tods.png') center/cover no-repeat; box-shadow: 0 12px 38px rgba(10,108,255,0.18); animation: slowZoom 22s ease-in-out infinite alternate; display: none; }
.stats { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; margin: 18px 0 6px; }
.stat-card { background: var(--card); border: 1px solid rgba(255,255,255,0.08); padding: 14px; border-radius: 12px; min-width: 150px; }
.stat-title { display: block; font-weight: 800; color: var(--blue); }
.stat-sub { display: block; color: var(--gray); font-size: 12px; }
.hero-cta { margin-top: 18px; display: flex; align-items: center; gap: 16px; }
.hero-cta a { margin-left: 0; }
.seal { color: var(--gray); font-size: 13px; opacity: 0.9; }

.photo-frame { position: relative; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 8px 30px rgba(10,92,255,0.16); }
.photo-frame.small { max-width: 520px; }
.photo-frame.round { border-radius: 999px; width: 280px; height: 280px; overflow: hidden; }
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(105%) contrast(102%); }
.hero-photo .photo-frame { max-width: 520px; }

/* Quem Somos */
.about { background: #000; position: relative; overflow: hidden; padding: 120px 0; }
.about::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(60% 60% at 20% 10%, rgba(10,108,255,0.10), transparent 60%),
    radial-gradient(50% 50% at 80% 50%, rgba(26,140,255,0.08), transparent 70%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 2px 6px);
  opacity: 0.8;
}
.about::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-700));
  box-shadow: 0 0 14px rgba(10,92,255,0.32);
  opacity: 0.9;
  pointer-events: none;
  z-index: 5;
}
.about .container { max-width: 1200px; }
.about-grid { display: grid; grid-template-columns: 48% 48%; gap: 0; column-gap: 4%; align-items: stretch; }
.about-left, .about-right { padding: 12px 0; }
.about-right { display: flex; flex-direction: column; }
.about-right { padding-top: 52px; }
.about-kicker { color: var(--blue); font-size: 24px; letter-spacing: 0.28em; text-transform: uppercase; margin: 0 0 18px; font-family: "Manrope", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.about-title { font-size: clamp(40px, 4.6vw, 56px); line-height: 1.12; margin: 0 0 12px; font-weight: 800; letter-spacing: -0.02em; }
.about-subtitle { font-size: clamp(40px, 4.6vw, 56px); line-height: 1.12; margin: 0; font-weight: 800; letter-spacing: -0.02em; }
.about-left .about-title,
.about-left .about-subtitle { max-width: 22ch; text-align: left; }
@media (max-width: 1024px) {
  .about-left .about-title,
  .about-left .about-subtitle { max-width: 26ch; }
}
@media (max-width: 640px) {
  .about-left .about-title,
  .about-left .about-subtitle { max-width: 34ch; text-align: left; }
}
.gmz-blue { color: var(--blue); text-shadow: 0 0 16px rgba(10,92,255,0.22); }
.gmz-accent { color: var(--accent); text-shadow: 0 0 16px rgba(255,77,46,0.22); }
.about-arrow { display: inline-block; margin-left: 8px; font-size: 24px; color: var(--accent); text-shadow: 0 0 14px rgba(255,77,46,0.28); }
.about-icon { display: block; width: 28px; height: 28px; margin-top: 14px; filter: drop-shadow(0 0 10px rgba(255,77,46,0.35)); }
.about-right p { color: #B9BCC3; font-size: 20px; line-height: 1.7; margin: 12px 0; max-width: 70ch; }
.about-right p:last-child { margin-top: 12px; }

/* Quem estamos buscando? */
.targets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.targets { background: #000000; position: relative; padding-bottom: 84px; 
  /* background integrado com a mesma lógica da primeira dobra */
  background-image: url('tods1.png');
  background-position: left bottom;
  background-size: auto 100%; /* altura 100% da dobra; sem corte e proporcional */
  background-repeat: no-repeat;
}
.targets::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-700));
  box-shadow: 0 0 14px rgba(10,92,255,0.32);
  opacity: 0.9;
  pointer-events: none;
  z-index: 5;
}
.targets::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,17,0.85), rgba(10,10,17,0) 60%); pointer-events: none; z-index: 0; }
.targets-grid { position: static; z-index: 1; }
.targets .cta-center {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, calc(-50% - 16px)); /* mais 2px acima */
  z-index: 10;
  display: flex;
  justify-content: center;
}
.targets .cta-center a { position: static; }
.target-photo { position: relative; }
.target-photo::before { content: ""; position: absolute; left: -10%; top: -10%; width: 60%; height: 120%; background: radial-gradient(50% 50% at 50% 50%, rgba(26,140,255,0.28), transparent 70%); filter: blur(30px); }
.targets .section-title { font-size: 42px; font-weight: 800; }
.targets .target-list { list-style: none; padding: 0; margin: 0; }
.targets .target-list li { position: relative; padding-left: 36px; color: #C9C9C9; font-size: 18px; margin: 12px 0; }
.targets .target-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 24px; height: 24px; border-radius: 6px; border: 2px solid var(--blue); box-shadow: 0 0 14px rgba(26,140,255,0.35); background: rgba(10,108,255,0.08); }
.targets .target-list li::after { content: ""; position: absolute; left: 8px; top: 6px; width: 6px; height: 12px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg); }

/* Animações específicas */
[data-animate="fade-right"] { opacity: 0; transform: translateX(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.target-content .target-list li { opacity: 0; transform: translateY(8px); transition: opacity 0.5s ease, transform 0.5s ease; }
.target-content.in-view .target-list li { opacity: 1; transform: translateY(0); }
.target-content.in-view .target-list li:nth-child(1) { transition-delay: 0.15s; }
.target-content.in-view .target-list li:nth-child(2) { transition-delay: 0.30s; }
.target-content.in-view .target-list li:nth-child(3) { transition-delay: 0.45s; }
.target-content.in-view .target-list li:nth-child(4) { transition-delay: 0.60s; }
.target-content.in-view .target-list li:nth-child(5) { transition-delay: 0.75s; }
.target-list { list-style: none; padding: 0; margin: 12px 0 0; color: var(--gray); }
.target-list li { position: relative; padding-left: 26px; margin: 10px 0; }
.target-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--blue); box-shadow: inset 0 0 12px rgba(10,92,255,0.18); }
.cta-center { text-align: center; margin-top: 18px; }

/* Serviços */
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 12px; }
.service-card { background: var(--card); border: 1px solid rgba(255,255,255,0.08); padding: 18px; border-radius: 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.service-card:hover { transform: translateY(-2px); border-color: var(--border); box-shadow: var(--shadow); }
.service-card span { font-weight: 600; }
.icon { width: 28px; height: 28px; border: 2px solid var(--blue); border-radius: 6px; box-shadow: inset 0 0 12px rgba(10,92,255,0.18); }
.icon.meta { border-radius: 50%; }
.icon.google { border-style: dashed; }
.icon.tiktok { transform: rotate(15deg); }
.icon.creative { border-width: 2px 2px 6px 2px; }
.icon.funnel { border-radius: 14px 4px 14px 4px; }
.icon.landing { border-color: #2c77ff; }
.icon.copy { border-color: #5a8cff; }
.icon.consult { border-color: #3f6dff; }

/* Serviços detalhados (Como podemos te ajudar?) */
.help-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; justify-content: center; --help-gap: 16px; }
.help-card { background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 18px; flex: 0 0 calc((100% - 2 * var(--help-gap)) / 3); transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; will-change: transform, filter, opacity; position: relative; }
.help-card.center-h { display: flex; flex-direction: column; align-items: center; }
.help-card.center-h h3 { align-self: flex-start; text-align: left; }
.help-card.center-h .check-list { align-self: stretch; text-align: left; }
.help-card h3 { margin: 0 0 8px; color: var(--white); }
.check-list { list-style: none; padding-left: 0; margin: 0; }
.check-list li { position: relative; padding-left: 22px; color: var(--gray); margin: 8px 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A6CFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
.help-grid:hover .help-card { filter: blur(1.8px) brightness(0.92); opacity: 0.6; transform: scale(0.98); }
.help-card:hover { transform: none; opacity: 1; transform: translateY(-2px) scale(1.04); z-index: 2; border-color: var(--border); box-shadow: var(--shadow); }
.help-grid:hover .help-card:hover { filter: none; opacity: 1; transform: translateY(-2px) scale(1.04); z-index: 2; border-color: var(--border); box-shadow: var(--shadow); }

/* Nichos */
.niches-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.niches-list li { background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px; display: flex; align-items: center; gap: 10px; }
.icon-bullet { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px rgba(10,92,255,0.6); display: inline-block; }
.niches-note { color: var(--gray); margin-top: 18px; }
.niches-note.emphasis { font-size: 20px; font-weight: 900; }

/* Resultados — Carrossel */
.carousel { position: relative; }
.carousel-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 0; }
.carousel-track::-webkit-scrollbar { height: 8px; }
.carousel-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 10px; }
.carousel-item { flex: 0 0 78%; scroll-snap-align: start; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; background: #061526; aspect-ratio: 3 / 2; }
.carousel-item img { display: block; width: 100%; height: 100%; object-fit: contain; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: rgba(2,19,36,0.6); color: var(--white); backdrop-filter: blur(8px); cursor: pointer; }
.carousel-btn:hover { border-color: var(--blue); }
.carousel-btn.prev { left: -6px; }
.carousel-btn.next { right: -6px; }

/* Métricas — Nossos resultados */
.metrics { background: linear-gradient(180deg, #071a31 0%, #061526 100%); padding: calc(var(--section-padding) + 80px) 0; }
.metrics::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-700));
  box-shadow: 0 0 14px rgba(10,92,255,0.32);
  opacity: 0.9;
  pointer-events: none;
  z-index: 5;
}
.metrics .section-title { text-align: center; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-top: 8px; }
.metric-card { background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 22px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 160px; gap: 6px; }
.metric-icon { margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; border: 0; box-shadow: none; width: 28px; height: 28px; flex-shrink: 0; }
.metric-icon svg { width: 24px; height: 24px; overflow: visible; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.metric-value { font-size: 42px; font-weight: 800; color: var(--blue); line-height: 1; }
.metric-label { color: var(--gray); margin-top: 6px; }

/* Parceiros */
.partners-band { background: linear-gradient(180deg, var(--blue) 0%, #2c77ff 100%); padding: 18px 0; }
.partners-row { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.partner { color: #e6efff; font-weight: 700; letter-spacing: 0.5px; }

/* Processo — Timeline */
.timeline { position: relative; padding: 48px 0 20px; }
.timeline-line { height: 2px; background: rgba(255,255,255,0.14); position: absolute; left: 0; right: 0; top: 34px; }
.timeline-steps { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 10px; position: relative; }
.step { position: relative; text-align: center; padding-top: 72px; }
.step::before { content: ""; position: absolute; top: 34px; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--blue); background: #0b1630; box-shadow: 0 0 0 4px rgba(10,92,255,0.18); }
.step-label { color: var(--gray); font-size: 14px; display: block; margin-top: 8px; }

/* Benefícios — Por que contratar a GMZ? */
.benefits-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.benefit-card { background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 12px; }
.benefit-card .num { display: inline-block; min-width: 44px; text-align: center; font-weight: 800; color: var(--blue); border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; }
.benefit-card p { margin: 0; color: var(--white); }

/* Diferença GMZ */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.diff-card { background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 18px; }
.diff-card h3 { margin: 0 0 8px; color: var(--gray); }
.diff-card ul { margin: 0; padding-left: 18px; }
.diff-card li { margin: 8px 0; }
.diff-card.highlight { border-color: var(--border); box-shadow: var(--shadow); }

/* Sessão Estratégica */
/* Background integrado com a imagem à direita (tods2.png) */
.strategy { /* imagem movida para o HTML dentro de .photo-frame */ }
.strategy-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; grid-template-areas: 'content photo'; gap: 16px; align-items: center; }
.strategy-content { grid-area: content; }
.strategy-photo { position: relative; grid-area: photo; }
.strategy-photo .glow { position: absolute; inset: -40px; background: radial-gradient(60% 60% at 50% 50%, rgba(10,92,255,0.24), transparent 70%); filter: blur(30px); z-index: 0; }
.strategy-photo .photo-frame { position: relative; z-index: 1; }

/* CTA Final */
.final-cta { padding-bottom: 100px; }
.cta-box { border: 1px solid var(--blue); box-shadow: 0 0 40px rgba(10,92,255,0.22), inset 0 0 20px rgba(10,92,255,0.12); border-radius: 18px; padding: 30px; text-align: center; background: rgba(2,19,36,0.6); }
.cta-big { font-size: 28px; margin: 0 0 12px; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 0; background: linear-gradient(180deg, rgba(2,19,36,0.8), rgba(0,0,0,0.7)); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr 1fr; gap: 16px; align-items: center; justify-items: center; }
.footer-social { justify-self: center; }
.footer-accent { justify-self: center; text-align: center; }
.footer-cnpj { justify-self: center; text-align: center; }
.footer-brand { display: none; }
.footer-logo { max-height: 48px; width: auto; height: auto; object-fit: contain; }
.footer-note { color: var(--gray); margin: 8px 0 0; }
.social-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gray); text-decoration: none; margin-right: 14px; }
.social-link:hover { color: var(--white); }
.accent { text-align: center; margin-top: 0; color: var(--gray); opacity: 0.85; }

/* Animations */
[data-animate] { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.in-view { opacity: 1 !important; transform: translateY(0) !important; }
@keyframes glowPulse { from { text-shadow: 0 0 0 rgba(26,140,255,0.0); } 50% { text-shadow: 0 0 18px rgba(26,140,255,0.35); } to { text-shadow: 0 0 0 rgba(26,140,255,0.0); } }
@keyframes slowZoom { from { transform: scale(1.02); } to { transform: scale(1.08); } }
/* Delay leve para o título da seção "Quem Somos" */
.about-subtitle[data-animate] { transition-delay: 0.12s; }

/* Responsive */
@media (max-width: 1024px) {
  .about-title { font-size: 44px; line-height: 1.15; }
  .about-grid { grid-template-columns: 1fr; }
  .about { padding: 90px 0; }
  .about-left { text-align: left; }
  .about-subtitle { font-size: 44px; line-height: 1.15; }
  .about-right { padding-top: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid { justify-content: center; }
  .help-card { flex: 0 0 calc((100% - var(--help-gap)) / 2); }
  .targets-grid { grid-template-columns: 1fr; }
  .niches-list { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .about-title { font-size: 26px; line-height: 1.22; }
  .about-right p { font-size: 18px; }
  .about { padding: 72px 0; }
  .about-subtitle { font-size: 26px; line-height: 1.22; }
  .about-right { text-align: left; }
  .headline { font-size: 36px; }
  .hero-content { text-align: center; padding-left: 0; }
  .hero-visual { height: 340px; }
  .hero-cta .btn { width: 100%; }
  .targets .cta-center { left: 24px; right: 24px; top: 100%; transform: translateY(-50%); width: auto; margin: 0; }
  .targets .cta-center .btn { width: 100%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .carousel-item { flex-basis: 92%; }
  .cta-big { font-size: 22px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .help-grid { justify-content: center; }
  .help-card { flex: 0 0 100%; }
}

@media (max-width: 1024px) {
  .carousel-item { flex-basis: 86%; }
}
@media (max-width: 768px) {
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
  .carousel-item { flex-basis: 92%; }
}
@media (max-width: 480px) {
  .carousel-item { flex-basis: 96%; border-radius: 10px; }
}

/* Mobile — remover imagem de background da seção "Quem estamos buscando? ⚡" */
@media (max-width: 640px) {
  .targets { background-image: none !important; }
}

/* Accessibility and motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
/* Deixa o texto do parágrafo destacado em extra-negrito */
.hero-extra {
  font-weight: 900; /* extra-bold */
}
.photo-frame.cta-box { display: inline-block; padding: 0; }
.photo-img { display: block; max-width: 100%; height: auto; }
.cta-box { border: 1px solid var(--blue); box-shadow: 0 0 40px rgba(10,92,255,0.22), inset 0 0 20px rgba(10,92,255,0.12); border-radius: 18px; background: rgba(2,19,36,0.6); overflow: hidden; }
.cta-box { padding: 30px; text-align: center; background: rgba(2,19,36,0.6); }
.cta-big { font-size: 28px; margin: 0 0 12px; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 0; background: linear-gradient(180deg, rgba(2,19,36,0.8), rgba(0,0,0,0.7)); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr 1fr; gap: 16px; align-items: center; }
.footer-social { justify-self: center; }
.footer-accent { justify-self: center; text-align: center; }
.footer-cnpj { justify-self: center; text-align: center; }
.footer-brand { display: none; }
.footer-logo { max-height: 48px; width: auto; height: auto; object-fit: contain; }
.footer-note { color: var(--gray); margin: 8px 0 0; }
.social-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gray); text-decoration: none; margin-right: 14px; }
.social-link:hover { color: var(--white); }
.accent { text-align: center; margin-top: 0; color: var(--gray); opacity: 0.85; }

/* Animations */
[data-animate] { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.in-view { opacity: 1 !important; transform: translateY(0) !important; }
@keyframes glowPulse { from { text-shadow: 0 0 0 rgba(26,140,255,0.0); } 50% { text-shadow: 0 0 18px rgba(26,140,255,0.35); } to { text-shadow: 0 0 0 rgba(26,140,255,0.0); } }
@keyframes slowZoom { from { transform: scale(1.02); } to { transform: scale(1.08); } }
/* Delay leve para o título da seção "Quem Somos" */
.about-subtitle[data-animate] { transition-delay: 0.12s; }

/* Responsive */
@media (max-width: 1024px) {
  .about-title { font-size: 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .about { padding: 90px 0; }
  .about-left { text-align: center; }
  .about-subtitle { font-size: 48px; }
  .about-right { padding-top: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid { justify-content: center; }
  .help-card { flex: 0 0 calc((100% - var(--help-gap)) / 2); }
  .targets-grid { grid-template-columns: 1fr; }
  .niches-list { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .about-title { font-size: 26px; line-height: 1.22; }
  .about-right p { font-size: 18px; }
  .about { padding: 72px 0; }
  .about-subtitle { font-size: 26px; line-height: 1.22; }
  .about-right { text-align: left; }
  .headline { font-size: 36px; }
  .hero-content { text-align: center; padding-left: 0; }
  .hero-visual { height: 340px; }
  .hero-cta .btn { width: 100%; }
  .targets .cta-center { left: 24px; right: 24px; top: 100%; transform: translateY(-50%); width: auto; margin: 0; }
  .targets .cta-center .btn { width: 100%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .carousel-item { flex-basis: 92%; }
  .cta-big { font-size: 22px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .help-grid { justify-content: center; }
  .help-card { flex: 0 0 100%; }
}

@media (max-width: 1024px) {
  .carousel-item { flex-basis: 86%; }
}
@media (max-width: 768px) {
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
  .carousel-item { flex-basis: 92%; }
}
@media (max-width: 480px) {
  .carousel-item { flex-basis: 96%; border-radius: 10px; }
}

/* Accessibility and motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
/* Deixa o texto do parágrafo destacado em extra-negrito */
.hero-extra {
  font-weight: 900; /* extra-bold */
}
/* Processo — Blocos */
.process-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 24px; align-items: start; }
.process-card { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.process-box { display: inline-flex; align-items: center; justify-content: center; min-height: 84px; padding: 18px 24px; border-radius: 12px; border: 2px solid var(--blue); box-shadow: inset 0 0 12px rgba(10,92,255,0.18), 0 8px 28px rgba(10,92,255,0.18); background: linear-gradient(180deg, rgba(5,24,48,0.65), rgba(2,19,36,0.45)); }
.process-title { font-weight: 800; color: var(--white); text-shadow: 0 0 14px rgba(10,92,255,0.18); }
.process-desc { color: var(--gray); font-size: 14px; max-width: 28ch; }
.desc-top { margin-bottom: 4px; }
.desc-bottom { margin-top: 6px; }

/* Responsivo — Processo em blocos */
@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-box { width: 100%; min-height: 72px; }
  .process-desc { max-width: none; }
}

@media (max-width: 640px) {
  /* Mobile — Conteúdo inicia no topo da dobra; imagem no rodapé */
  .hero { padding-top: 20px; padding-bottom: 220px; min-height: 76vh; }
  .headline { font-size: 28px; line-height: 1.15; margin-bottom: 12px; }
  .subheadline { font-size: 16px; margin-bottom: 12px; }
  .hero-extra { margin-bottom: 12px; }
}

/* Mobile — Logo mais à esquerda no header (fora do bloco existente) */
@media (max-width: 640px) {
  .site-header .container { padding-left: 8px !important; }
}

/* Evitar rolagem horizontal em mobile */
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
@media (max-width: 640px) {
  /* Clipa elementos decorativos e botões que podem exceder a largura */
  .hero, .hero-bg, .site-header, .diff, .results, .final-cta, .about, .target { overflow: hidden; }
  /* Limita brilhos/radiais a dentro da viewport */
  .hero-bg::after { right: 0 !important; left: auto !important; max-width: 100vw; }
  .target-photo::before { left: 0 !important; right: auto !important; max-width: 100vw; }
  /* Garante que os botões do carrossel não “saiam” do container */
  .carousel-btn.prev { left: 0 !important; }
  .carousel-btn.next { right: 0 !important; }
}
@media (max-width: 640px) {
  /* Mobile — ajustar imagem do hero para ficar abaixo do botão e finalizar no fim da dobra */
  .hero-bg { position: absolute; left: 0; right: 0; bottom: 0; top: auto; height: 240px; background-image: url('tods.png'); background-position: bottom center; background-size: contain; background-repeat: no-repeat; pointer-events: none; z-index: 0; }
  .hero-bg::before { content: none !important; }
  .hero-bg::after { display: none !important; }
  /* Garantir texto e botão acima da imagem */
  .hero-content, .hero-cta { position: relative; z-index: 2; }
}
@media (max-width: 400px) {
  /* Mobile (≤400px) — imagem maior e texto no topo */
  .hero { padding-top: 20px; padding-bottom: 240px; }
  .hero-bg { height: 260px; }
}
  /* Reduzir animação para usuários com redução de movimento */
  @media (prefers-reduced-motion: reduce) {
    .process-box { animation: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  }
  @media (max-width: 640px) {
    .header-inner { height: 160px; }
    .brand-logo { height: 120px; margin-left: 0; }
    .section { padding: 56px 0; }
    .hero { padding-top: 80px; min-height: 76vh; }
    .subheadline { font-size: 16px; }
    .hero-extra { font-size: 14px; }
    .btn-premium { padding: 16px 28px; width: 100%; border-radius: 32px; }
    .cta-box { padding: 20px; }
    .photo-frame.cta-box { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 12px; }
  }
  @media (max-width: 480px) {
    .header-inner { height: 140px; }
    .brand-logo { height: 100px; }
    .headline { font-size: 28px; }
  }
  @media (max-width: 1024px) {
    .carousel-item { flex-basis: 86%; }
  }
  @media (max-width: 768px) {
    .carousel-btn.prev { left: 4px; }
    .carousel-btn.next { right: 4px; }
    .carousel-item { flex-basis: 92%; }
  }
  @media (max-width: 480px) {
    .carousel-item { flex-basis: 96%; border-radius: 10px; }
  }
  
  /* Accessibility and motion */
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  }
  /* Deixa o texto do parágrafo destacado em extra-negrito */
  .hero-extra {
    font-weight: 900; /* extra-bold */
  }
/* MOBILE — Header em uma única linha (logo à esquerda e botão à direita) */
@media (max-width: 640px) {
  .site-header { padding: 6px 0; overflow: visible; }
  .header-inner { height: auto !important; min-height: 56px; overflow: visible; display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 10px; }
  .brand { flex: 0 0 auto; margin-right: 20px; }
  .brand-logo { height: 52px; transform: none; transform-origin: left center; }
  .main-nav { display: none !important; }
  .header-actions { width: auto; display: flex; justify-content: flex-end; }
  .header-actions .btn-small { white-space: nowrap; padding: 10px 16px; border-radius: 999px; }
  /* Hero: conteúdo no topo e CTA logo abaixo */
  .hero { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding-top: 60px; padding-bottom: 280px; min-height: 76vh; }
  .hero-content { order: 1; }
  .hero-extra { order: 2; }
  .hero-cta { order: 3; }
}

/* Background decorativo com letras G/M/Z — atrás de tudo, sem ocultar conteúdo */
.section { position: relative; }

/* HERO — G */
.hero { position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: right center; background-size: 90vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(-15 500 500)'%3EG%3C/text%3E%3C/svg%3E"); }

/* Targets — M (usar ::after pois ::before já existe) */
.targets { position: relative; }
.targets::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: right 10% center; background-size: 85vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(12 500 500)'%3EM%3C/text%3E%3C/svg%3E"); }

/* About — Z */
.about { position: relative; }
.about::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: right center; background-size: 85vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(-10 500 500)'%3EZ%3C/text%3E%3C/svg%3E"); }

/* Metrics — G */
.metrics { position: relative; }
.metrics::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: left center; background-size: 80vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(8 500 500)'%3EG%3C/text%3E%3C/svg%3E"); }

/* Help — M */
.help { position: relative; }
.help::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: right center; background-size: 80vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(-6 500 500)'%3EM%3C/text%3E%3C/svg%3E"); }

/* Niches — Z */
.niches { position: relative; }
.niches::before {
  content: none !important;
  background: none !important;
}


/* Results — G */
.results { position: relative; }
.results::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: right center; background-size: 85vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(10 500 500)'%3EG%3C/text%3E%3C/svg%3E"); }

/* Partners — M */
.partners { position: relative; }
.partners::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: left center; background-size: 75vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(-12 500 500)'%3EM%3C/text%3E%3C/svg%3E"); }

/* Process — Z */
.process { position: relative; }
.process::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: right center; background-size: 80vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(6 500 500)'%3EZ%3C/text%3E%3C/svg%3E"); }

/* Benefits — G */
.benefits { position: relative; }
.benefits::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: left center; background-size: 75vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(-4 500 500)'%3EG%3C/text%3E%3C/svg%3E"); }

/* Diff — M */
.diff { position: relative; }
.diff::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: right center; background-size: 80vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(2 500 500)'%3EM%3C/text%3E%3C/svg%3E"); }

/* Strategy — Z */
.strategy { position: relative; }
.strategy::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: left center; background-size: 80vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(-8 500 500)'%3EZ%3C/text%3E%3C/svg%3E"); }

/* Final CTA — G */
.final-cta { position: relative; }
/* Remoção de background — Dobra "Resultado Comprovado" */
.results::before {
  content: none !important;
  background: none !important;
}
.final-cta::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; background-repeat: no-repeat; background-position: right center; background-size: 75vmin auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Inter, Arial, sans-serif' font-weight='800' font-size='900' fill='%230A6CFF' fill-opacity='0.12' transform='rotate(0 500 500)'%3EG%3C/text%3E%3C/svg%3E"); }

/* Responsividade — reduzir tamanho em telas muito pequenas */
@media (max-width: 480px) {
  .hero::before { background-size: 70vmin auto; background-position: center; }
  .targets::after { background-size: 65vmin auto; }
  .about::before { background-size: 65vmin auto; }
  .metrics::before { background-size: 60vmin auto; }
  .help::before { background-size: 60vmin auto; }
  .niches::before { background-size: 58vmin auto; }
  .results::before { background-size: 65vmin auto; }
  .partners::before { background-size: 58vmin auto; }
  .process::before { background-size: 60vmin auto; }
  .benefits::before { background-size: 58vmin auto; }
  .diff::before { background-size: 60vmin auto; }
  .strategy::before { background-size: 60vmin auto; }
  .final-cta::before { background-size: 58vmin auto; }
}
/* Overrides — Letras G/M/Z ocupando a dobra inteira */
.hero::before,
.targets::after,
.about::before,
.metrics::before,
.help::before,
.niches::before,
.results::after,
.partners::before,
.process::before,
.benefits::before,
.diff::before,
.strategy::before,
.final-cta::before {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 480px) {
  .hero::before,
  .targets::after,
  .about::before,
  .metrics::before,
  .help::before,
  .niches::before,
  .results::before,
  .partners::before,
  .process::before,
  .benefits::before,
  .diff::before,
  .strategy::before,
  .final-cta::before {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
}
/* Remoção de background — Dobra "Nosso Processo" */
.process::before {
  content: none !important;
  background: none !important;
}

/* Remoção de background — Dobra "Diferença GMZ" */
.diff::before {
  content: none !important;
  background: none !important;
}

/* Remoção de background — Dobra "CTA Final" (Seu negócio não precisa de mais visitas. Ele precisa de clientes certos.) */
.final-cta::before {
  content: none !important;
  background: none !important;
}

/* Mobile — Resultado comprovado: imagens no tamanho original (proporção preservada) */
@media (max-width: 640px) {
  #resultados .carousel-track { align-items: flex-start; }
  #resultados .carousel-item { flex: 0 0 100% !important; aspect-ratio: unset !important; height: auto !important; }
  #resultados .carousel-item img { width: 100%; height: auto !important; object-fit: contain; }
}

/* Mobile — Ajuste de espaçamento do container na seção About */
@media (max-width: 640px) {
  .about .container { padding: 0 16px; }
  .about-title { font-size: 28px !important; line-height: 1.2 !important; }
  .about-subtitle { font-size: 28px !important; line-height: 1.2 !important; }
  .about-left .about-title,
  .about-left .about-subtitle { max-width: 40ch !important; text-align: left; }
  .mobile-line3 { display: block; }
}

/* Mobile — Tipografia da seção About em ≤480px */
@media (max-width: 480px) {
  .about-left .about-title,
  .about-left .about-subtitle { font-size: 24px; line-height: 1.18; max-width: 36ch; text-align: left; }
}

/* Mobile — Tipografia da seção About em ≤400px */
@media (max-width: 400px) {
  .about-left .about-title,
  .about-left .about-subtitle { font-size: 22px; line-height: 1.18; max-width: 38ch; text-align: left; }
}

@media (min-width: 1024px) {
  .hero { padding-top: 72px; padding-bottom: 140px; }
  .headline { font-size: clamp(40px, 4.6vw, 56px); }
  .subheadline { font-size: 18px; }
  .hero-bg { background-size: clamp(420px, 38vw, 640px) !important; background-position: right center; background-repeat: no-repeat; }
}

/* Laptops médios — garantir proporção adequada entre 768px e 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-bg { background-size: clamp(380px, 42vw, 520px) !important; background-position: right center; background-repeat: no-repeat; }
}

/* Desktop — Correção forte de sobreposição na seção About */
     @media (min-width: 1025px) {
       .about-grid { grid-template-columns: 40% 40%; column-gap: 20%; align-items: start; }
       .about-left .about-title,
       .about-left .about-subtitle { max-width: 20ch; }
       .about-title, .about-subtitle { font-size: clamp(24px, 2.4vw, 34px); line-height: 1.18; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
       .about-right { padding-top: 32px; }
     }