/* ===== BRAND COLORS ===== */
:root {
  --navy:         #0C1428;
  --navy-mid:     #152035;
  --accent:       #8D9DB3;   /* azul-cinza da marca */
  --accent-light: #A8B9CA;
  --light:        #EDF3F8;   /* branco-azulado da marca */
  --white:        #FFFFFF;
  --gray-100:     #D8E2EC;
  --gray-400:     #8A9AAA;
  --gray-600:     #546070;
  --gray-900:     #1A2430;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Poppins', system-ui, sans-serif;
  --container:  1140px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* evita scroll horizontal em qualquer caso */
}
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
img  { max-width: 100%; display: block; }
hr   { border: none; }
button { font-family: var(--font-sans); cursor: pointer; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(42px, 6vw, 76px); font-weight: 700; }
h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 700; }
h3 { font-size: 17px; font-weight: 600; }

.h2-dark { color: var(--navy); }
em { font-style: italic; color: var(--accent); }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.eyebrow-accent { color: var(--accent); }
.eyebrow-dark   { color: var(--navy); }

.body-text       { font-size: 15px; line-height: 1.8; font-weight: 300; }
.body-text-light { color: rgba(237,243,248,0.65); }
.body-text-dark  { color: var(--gray-600); }

/* ===== RULES / DIVIDERS ===== */
.rule        { height: 1px; width: 48px; margin: 12px 0; }
.rule-accent { background: var(--accent); }
.rule-dark   { background: var(--navy); }
.rule-white  { background: rgba(237,243,248,0.35); }

.rule-item        { height: 1px; width: 100%; background: var(--gray-100); }
.rule-item-accent { height: 1px; width: 100%; background: rgba(141,157,179,0.22); }

/* ===== ARROW BUTTONS ===== */
.btn-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 52px;
  border: 1px solid var(--accent);
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.btn-arrow::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--accent);
  z-index: 1;
  transition: width 0.5s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn-arrow:hover::before { width: 100%; }

.bab {
  position: relative; z-index: 2;
  width: 52px; height: 52px;
  border-right: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--accent);
  transition: color 0.25s, border-color 0.25s;
}
.bat {
  position: relative; z-index: 2;
  padding: 0 24px;
  font-size: 13px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.25s;
}

/* Accent fill button */
.btn-arrow-accent:hover .bab,
.btn-arrow-accent:hover .bat { color: var(--navy); }
.btn-arrow-accent:hover .bab { border-right-color: rgba(12,20,40,0.15); }

/* Ghost (branco sobre escuro) */
.btn-arrow-ghost { border-color: rgba(237,243,248,0.3); }
.btn-arrow-ghost::before { background: rgba(237,243,248,0.1); }
.btn-arrow-ghost .bab { border-right-color: rgba(237,243,248,0.3); color: rgba(237,243,248,0.75); }
.btn-arrow-ghost .bat { color: rgba(237,243,248,0.75); }
.btn-arrow-ghost:hover .bab,
.btn-arrow-ghost:hover .bat { color: var(--light); }

/* Dark (navy) */
.btn-arrow-dark { border-color: var(--navy); }
.btn-arrow-dark::before { background: var(--navy); }
.btn-arrow-dark .bab { border-right-color: var(--navy); color: var(--navy); }
.btn-arrow-dark .bat { color: var(--navy); }
.btn-arrow-dark:hover .bab { color: var(--white); border-right-color: rgba(255,255,255,0.12); }
.btn-arrow-dark:hover .bat { color: var(--white); }

.btn-arrow-full { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.35s, box-shadow 0.35s;
}
.header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo { display: inline-flex; align-items: center; }
.logo-img { height: 36px; width: auto; }

.nav { display: flex; align-items: center; gap: 36px; }

.nav-link {
  font-size: 13px; font-weight: 400;
  color: rgba(237,243,248,0.72);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }

.nav-cta {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 22px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--light);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== SECTIONS ===== */
.section { padding: 112px 0; }
.section-dark  { background: var(--navy); }
.section-light { background: var(--light); }

.section-dark h2 { color: var(--light); }
.section-dark  p { color: rgba(237,243,248,0.55); }

.section-header-centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.section-dark .section-header-centered h2 { color: var(--light); }

/* Section with bg image */
.section-bg-img {
  position: relative;
  background-size: cover;
  /* fixed só em telas não-retina; retina e mobile usam scroll (performance) */
  background-attachment: fixed;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .section-bg-img { background-attachment: scroll; }
}
.section-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 40, 0.82);
  z-index: 1;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Video / imagem de fundo */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background-image removido: o poster do <video> é o fallback correto */
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  /* inicia invisível; JS faz fade-in quando começa a tocar */
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-video.playing {
  opacity: 1;
}

/* Overlay escuro sobre vídeo/imagem */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 40, 0.72);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 74px;
}

.hero-content { max-width: 680px; padding: 96px 0 80px; }

.hero-title { color: var(--light); margin: 0 0 28px; }

.hero-sub {
  font-size: 17px; line-height: 1.85;
  color: rgba(237,243,248,0.90);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(141,157,179,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* No mobile o vídeo continua ativo — poster como fallback via atributo HTML */
@media (max-width: 768px) {
  .hero-video {
    display: block;
    /* mantém object-fit cover no mobile */
  }
}

/* ===== PITCH BAND ===== */
.pitch-band {
  background: var(--navy-mid);
  padding: 72px 0;
  border-top:    1px solid rgba(141,157,179,0.1);
  border-bottom: 1px solid rgba(141,157,179,0.1);
  text-align: center;
}
.pitch-text {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: rgba(237,243,248,0.8);
  line-height: 1.65;
  max-width: 740px;
  margin: 0 auto;
}

/* ===== SPLIT SECTIONS ===== */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.split-panel {
  display: flex;
  align-items: center;
  position: relative;
}
.split-dark  { background: var(--navy); }
.split-light { background: var(--light); }
.split-white { background: var(--white); }

/* Imagem como painel */
.split-img {
  background-size: cover;
  background-position: center;
}
.split-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 40, 0.72);
  z-index: 1;
}
.split-img-overlay-heavy {
  background: rgba(12, 20, 40, 0.88);
}

.split-content { padding: 80px 60px; width: 100%; }

/* ===== PROBLEMA ===== */
.split-light .split-content h2 { color: var(--navy); }
.split-dark  .split-content h2 { color: var(--light); }
.split-img   .split-content h2 { color: #ffffff; }

.problem-list { margin-top: 28px; }
.problem-list li { margin: 0; }

.problem-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  align-items: flex-start;
}
.problem-num {
  font-size: 10px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  padding-top: 2px;
  flex-shrink: 0; min-width: 20px;
}
.problem-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.problem-item p {
  font-size: 13px; color: var(--gray-600);
  line-height: 1.65; margin: 0;
}

/* ===== SOLUÇÃO — FLOW GRID ===== */
.solucao-header {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}
.solucao-header h2 { color: var(--light); }
.solucao-header > p { color: rgba(237,243,248,0.55); margin-top: 16px; }

.entrega-sexta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 20px;
  border: 1px solid rgba(141,157,179,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(237,243,248,0.75);
  background: rgba(141,157,179,0.07);
}
.entrega-sexta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}
.entrega-sexta strong { color: var(--light); font-weight: 600; }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top:  1px solid rgba(141,157,179,0.12);
  border-left: 1px solid rgba(141,157,179,0.12);
  margin-bottom: 40px;
}
.flow-card {
  padding: 32px 26px;
  border-right:  1px solid rgba(141,157,179,0.12);
  border-bottom: 1px solid rgba(141,157,179,0.12);
  transition: background 0.2s;
}
.flow-card:hover { background: rgba(141,157,179,0.05); }

.flow-num {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(237,243,248,0.22);
  margin-bottom: 14px;
  transition: color 0.2s ease;
}
.flow-num-accent { color: var(--accent); }

.flow-card h3 {
  font-family: var(--font-sans);
  font-size: 13.5px; font-weight: 600;
  color: var(--light);
  letter-spacing: 0;
  margin-bottom: 10px;
  line-height: 1.4;
}
.flow-card p { font-size: 12.5px; color: rgba(237,243,248,0.65); line-height: 1.6; }

.flow-card-final { background: rgba(141,157,179,0.06); }
.flow-card-final h3 { color: var(--accent); }

/* Deliverables */
.deliverables-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(141,157,179,0.12);
}
.deliverable {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px;
  border-right: 1px solid rgba(141,157,179,0.12);
  font-size: 13px; font-weight: 400;
  color: var(--light);
}
.deliverable:last-child { border-right: none; }
.del-check {
  width: 26px; height: 26px;
  background: var(--accent); color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

/* ===== DIFERENCIAL ===== */
.split-compare-content { padding: 80px 60px; }

.compare-list { margin-top: 28px; }
.compare-list li { margin: 0; }

.compare-item {
  display: flex; align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 15px; font-weight: 300;
}
.compare-item-no  { color: var(--gray-600); }
.compare-item-yes { color: #ffffff; }

.ci {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.ci-no  { background: var(--gray-100); color: var(--gray-400); }
.ci-yes { background: var(--accent); color: var(--navy); }

.compare-note {
  font-size: 13px; font-style: italic;
  color: var(--gray-600);
  margin-top: 10px; line-height: 1.65;
}
.compare-note-light { color: rgba(237,243,248,0.85); }

/* ===== KPI BANNER ===== */
.kpi-banner {
  background: var(--navy-mid);
  padding: 88px 0;
  text-align: center;
  border-top:    1px solid rgba(141,157,179,0.1);
  border-bottom: 1px solid rgba(141,157,179,0.1);
}
.kpi-title {
  font-size: clamp(24px, 3.8vw, 48px);
  color: var(--light);
  margin: 0 0 20px;
}
.kpi-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(237,243,248,0.68);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto;
}
.kpi-sub strong { color: var(--light); font-weight: 500; }

/* ===== PARA QUEM ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(141,157,179,0.12);
  margin-top: 0;
}
.audience-card {
  padding: 44px 36px;
  border-right: 1px solid rgba(141,157,179,0.12);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.audience-card:last-child { border-right: none; }
.audience-card:hover { background: rgba(141,157,179,0.06); }

.ghost-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 110px; font-weight: 700;
  color: rgba(237,243,248,0.14);
  line-height: 1;
  position: absolute;
  top: 12px; right: 20px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.audience-card .rule { margin: 14px 0 20px; }
.audience-card h3 {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: var(--light);
  letter-spacing: 0;
  margin-bottom: 12px;
  line-height: 1.4;
}
.audience-card p { font-size: 13px; color: rgba(237,243,248,0.70); line-height: 1.65; }

/* ===== MODELO ===== */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--gray-100);
}
.plan-card {
  background: var(--white);
  border-right: 1px solid var(--gray-100);
  position: relative;
}
.plan-card:last-child { border-right: none; }
.plan-card-featured { background: var(--navy); }

.plan-badge-top {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: var(--navy);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-inner {
  padding: 52px 44px;
  display: flex; flex-direction: column;
  gap: 24px; height: 100%;
}
.plan-title {
  font-size: 32px;
  font-family: var(--font-serif);
  font-weight: 700;
}
.plan-title-light { color: var(--light); }

.plan-desc { font-size: 14px; line-height: 1.72; }
.plan-desc-light { color: rgba(237,243,248,0.58); }

.plan-features { flex: 1; }
.plan-features li { margin: 0; }

.plan-feat-item {
  padding: 12px 0;
  font-size: 13.5px; font-weight: 400;
  color: var(--navy);
}
.plan-features-light .plan-feat-item { color: rgba(237,243,248,0.78); }

/* ===== PLATAFORMA STRIP ===== */
.plataforma-strip {
  background: var(--navy-mid);
  padding: 80px 0;
  border-top:    1px solid rgba(141,157,179,0.1);
  border-bottom: 1px solid rgba(141,157,179,0.1);
}
.plataforma-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.plataforma-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.plataforma-text p {
  font-size: 15px; font-weight: 300;
  color: rgba(237,243,248,0.68);
  line-height: 1.8;
}
.plataforma-list { margin: 0; }
.plataforma-list li { margin: 0; }
.plataforma-item {
  display: flex; align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  font-size: 15px; font-weight: 300;
  color: rgba(237,243,248,0.85);
  line-height: 1.55;
}
.plataforma-dot {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 14px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--navy);
  border-top: 1px solid rgba(141,157,179,0.18);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.cookie-text {
  font-size: 13px; font-weight: 300;
  color: rgba(237,243,248,0.72);
  line-height: 1.65;
  max-width: 660px;
}
.cookie-link {
  color: var(--accent);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.cookie-link:hover { opacity: 0.75; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-btn {
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid rgba(141,157,179,0.3);
  background: transparent;
  color: rgba(237,243,248,0.65);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.cookie-btn:hover { border-color: var(--accent); color: var(--light); }

.cookie-btn-aceitar {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
  font-weight: 600;
}
.cookie-btn-aceitar:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--navy);
}

/* ===== VANTAGENS ===== */
.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-100);
}
.vantagem-card {
  padding: 64px 52px;
  border-right: 1px solid var(--gray-100);
  transition: background 0.25s;
}
.vantagem-card:last-child { border-right: none; }
.vantagem-card:hover { background: rgba(12,20,40,0.03); }

.vantagem-num {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 6px;
}
.vantagem-card .rule { margin: 16px 0 28px; }

.vantagem-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.8vw, 28px); font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.vantagem-card p {
  font-size: 14.5px; font-weight: 300;
  color: var(--gray-600);
  line-height: 1.85;
}

/* ===== CONTATO ===== */
.split-dark .split-content h2 { color: var(--light); }

.contact-info-list {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-info-item {
  display: flex; align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(237,243,248,0.58);
}
.contact-info-icon {
  width: 36px; height: 36px;
  background: rgba(141,157,179,0.08);
  border: 1px solid rgba(141,157,179,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 10.5px; font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 0;
  border: none;
  border-bottom: 1px solid var(--gray-100);
  font-family: var(--font-sans);
  font-size: 14px; color: var(--gray-900);
  background: transparent;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--accent); }
.form-group textarea { resize: vertical; }

.form-success {
  font-size: 13px; font-weight: 500;
  color: #2d7a4f; text-align: center; padding-top: 4px;
}

/* ===== FOOTER ===== */
.footer { background: #060D1A; padding: 56px 0 32px; }
.footer-inner { display: flex; flex-direction: column; gap: 40px; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-tagline {
  font-size: 12px; color: rgba(237,243,248,0.55);
  max-width: 210px; line-height: 1.65;
}

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-nav a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(237,243,248,0.58);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }

.footer-rule { height: 1px; background: rgba(141,157,179,0.1); }

.footer-info {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-info-group { display: flex; flex-direction: column; gap: 6px; }
.footer-info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,243,248,0.35);
}
.footer-info-value {
  font-size: 12px;
  color: rgba(237,243,248,0.60);
  line-height: 1.65;
}
.footer-info-value a {
  color: rgba(237,243,248,0.60);
  transition: color 0.2s;
}
.footer-info-value a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: rgba(237,243,248,0.50); letter-spacing: 0.04em; }

.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a {
  font-size: 11px;
  color: rgba(237,243,248,0.50);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--accent); }
.footer-sep { font-size: 11px; color: rgba(237,243,248,0.22); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.40), 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.25);
}

/* ===== BLOG ===== */

/* Nav active */
.nav-link-active { color: var(--accent) !important; }

/* ── Category color tokens ── */
:root {
  --cat-bpc:      #3D5AF1;
  --cat-bpc-bg:   #EEF0FE;
  --cat-mat:      #0E9B77;
  --cat-mat-bg:   #E7F8F3;
  --cat-gest:     #C07918;
  --cat-gest-bg:  #FEF7EA;
  --cat-mkt:      #8348E0;
  --cat-mkt-bg:   #F3EFFE;
}

/* ── Tags (pill coloridos por categoria) ── */
.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.blog-tag--bpc  { color: var(--cat-bpc);  background: var(--cat-bpc-bg); }
.blog-tag--mat  { color: var(--cat-mat);  background: var(--cat-mat-bg); }
.blog-tag--gest { color: var(--cat-gest); background: var(--cat-gest-bg); }
.blog-tag--mkt  { color: var(--cat-mkt);  background: var(--cat-mkt-bg); }

/* ── Hero ── */
.blog-hero {
  position: relative;
  background: var(--navy);
  padding: 160px 0 96px;
  text-align: center;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 110%, rgba(141,157,179,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.blog-hero-inner { position: relative; z-index: 1; }
.blog-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(60px, 10vw, 112px);
  font-weight: 700;
  color: var(--light);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 18px 0 28px;
}
.blog-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(237,243,248,0.56);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Filter bar ── */
.blog-filter-bar {
  background: #fff;
  border-bottom: 1px solid rgba(12,20,40,0.07);
  position: sticky;
  top: 74px; /* altura real do header fixo */
  z-index: 100;
}
.blog-filter-inner {
  display: flex;
  gap: 6px;
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-filter-inner::-webkit-scrollbar { display: none; }
.blog-filter-btn {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.18s;
}
.blog-filter-btn:hover {
  border-color: rgba(12,20,40,0.15);
  color: var(--navy);
}
.blog-filter-btn-active {
  background: var(--navy);
  color: var(--light);
  border-color: var(--navy);
}

/* ── Fundo das seções de conteúdo ── */
.blog-featured-section,
.blog-grid-section { background: #F4F6F9; }

/* ── Artigo em destaque ── */
.blog-featured-section { padding: 72px 0 0; }
.blog-featured-card {
  background: #fff;
  border: 1px solid rgba(12,20,40,0.08);
  border-left: 5px solid var(--cat-bpc);
  padding: 52px 60px 48px;
  transition: box-shadow 0.25s;
}
.blog-featured--bpc  { border-left-color: var(--cat-bpc); }
.blog-featured--mat  { border-left-color: var(--cat-mat); }
.blog-featured--gest { border-left-color: var(--cat-gest); }
.blog-featured--mkt  { border-left-color: var(--cat-mkt); }
.blog-featured-card:hover {
  box-shadow: 0 14px 52px rgba(12,20,40,0.1);
}
.blog-featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-featured-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-featured-badge {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(84,96,112,0.5);
  padding: 4px 11px;
  border: 1px solid rgba(84,96,112,0.2);
  border-radius: 100px;
}
.blog-featured-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.17;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 860px;
}
.blog-featured-excerpt {
  font-size: 14.5px;
  font-weight: 300;
  color: #546070;
  line-height: 1.95;
  max-width: 860px;
  margin-bottom: 36px;
}
.blog-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(12,20,40,0.07);
  flex-wrap: wrap;
  gap: 14px;
}
.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--navy);
  transition: gap 0.2s, color 0.2s;
}
.blog-featured-cta:hover { color: var(--accent); gap: 13px; }

/* ── Grade de artigos ── */
.blog-grid-section { padding: 48px 0 104px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ── Card de artigo ── */
.blog-card {
  background: #fff;
  border: 1px solid rgba(12,20,40,0.08);
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.blog-card--bpc  { border-left-color: var(--cat-bpc); }
.blog-card--mat  { border-left-color: var(--cat-mat); }
.blog-card--gest { border-left-color: var(--cat-gest); }
.blog-card--mkt  { border-left-color: var(--cat-mkt); }
.blog-card:hover {
  box-shadow: 0 8px 36px rgba(12,20,40,0.09);
  transform: translateY(-4px);
}
.blog-card-body {
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}
.blog-card-date {
  font-size: 10px;
  font-weight: 400;
  color: rgba(84,96,112,0.55);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.blog-card-title {
  font-family: var(--font-serif);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 11px;
  flex-shrink: 0;
}
.blog-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: #546070;
  line-height: 1.82;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(12,20,40,0.06);
  gap: 8px;
}
.blog-card-readtime {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: rgba(84,96,112,0.5);
  letter-spacing: 0.04em;
}
.blog-card-readtime svg { width: 12px; height: 12px; flex-shrink: 0; }
.blog-card-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: color 0.18s;
  white-space: nowrap;
}
.blog-card-cta:hover { color: var(--accent); }

/* ── CTA strip ── */
.blog-cta-strip {
  background: var(--navy);
  padding: 72px 0;
  border-top: 1px solid rgba(141,157,179,0.1);
}
.blog-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.blog-cta-text .eyebrow { margin-bottom: 10px; }
.blog-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--light);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.blog-cta-text p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(237,243,248,0.55);
  line-height: 1.7;
}
.blog-cta-btn { flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-hero        { padding: 128px 0 64px; }
  .blog-filter-bar  { top: 74px; } /* igual à altura real do header */
  .blog-grid        { grid-template-columns: 1fr; }
  .blog-cta-inner   { flex-direction: column; align-items: flex-start; }
  .blog-featured-card { padding: 28px 20px 32px; }
  .blog-featured-footer { flex-direction: column; align-items: flex-start; }
  .blog-featured-top  { flex-direction: column; align-items: flex-start; }
  .blog-card-body   { padding: 22px 20px 20px; }
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
  .flow-grid         { grid-template-columns: repeat(2, 1fr); }
  .deliverables-strip { grid-template-columns: repeat(2, 1fr); }
  .deliverable:nth-child(2) { border-right: none; }
  .deliverable:nth-child(3),
  .deliverable:nth-child(4) { border-top: 1px solid rgba(141,157,179,0.12); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-card:nth-child(2) { border-right: none; }
  .audience-card:nth-child(3),
  .audience-card:nth-child(4) { border-top: 1px solid rgba(141,157,179,0.12); }
  .audience-card:nth-child(4) { border-right: none; }
  .split-content { padding: 64px 44px; }
  .split-compare-content { padding: 64px 44px; }
  .section-bg-img { background-attachment: scroll; }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: fixed;
    top: 74px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 36px; z-index: 199;
  }
  .nav.open     { display: flex; }
  .nav-link     { font-size: 20px; }
  .nav-cta      { font-size: 17px; padding: 12px 36px; }

  /* Hero */
  .hero-content  { padding: 80px 0 60px; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }

  /* Splits empilhados */
  .section-split { grid-template-columns: 1fr; min-height: auto; }
  .split-img     { min-height: 280px; }
  .split-content,
  .split-compare-content { padding: 52px 20px; }

  /* Flow */
  .flow-grid          { grid-template-columns: repeat(2, 1fr); }
  .deliverables-strip { grid-template-columns: 1fr; }
  .deliverable        { border-right: none; border-top: 1px solid rgba(141,157,179,0.12); }
  .deliverable:first-child { border-top: none; }

  /* Audience */
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card {
    border-right: none;
    border-top: 1px solid rgba(141,157,179,0.12);
  }
  .audience-card:first-child { border-top: none; }

  /* Plans */
  .plans-grid   { grid-template-columns: 1fr; max-width: 480px; }
  .plan-card    { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .plan-inner   { padding: 44px 24px; }
  .plan-card-featured .plan-inner { padding-top: 52px; }

  /* Plataforma */
  .plataforma-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Cookie */
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

  /* Vantagens */
  .vantagens-grid { grid-template-columns: 1fr; }
  .vantagem-card { border-right: none; border-bottom: 1px solid var(--gray-100); padding: 40px 24px; }
  .vantagem-card:last-child { border-bottom: none; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top    { flex-direction: column; gap: 28px; }
  .footer-nav    { gap: 16px; }
  .footer-info   { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* bg-attachment fix */
  .section-bg-img { background-attachment: scroll; }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  h1 { font-size: clamp(32px, 9vw, 42px); }
  h2 { font-size: clamp(24px, 7vw, 32px); }
  .flow-grid           { grid-template-columns: 1fr; }
  .bat                 { font-size: 12px; padding: 0 16px; }
  .hero-content        { padding: 72px 0 48px; }
  .vantagem-card       { padding: 32px 20px; }
  .kpi-banner          { padding: 56px 0; }
  .plataforma-inner    { padding: 0 0; }
  .blog-hero-title     { font-size: clamp(44px, 13vw, 68px); }
  .blog-filter-inner   { gap: 4px; padding: 10px 0; }
  .blog-filter-btn     { padding: 6px 14px; font-size: 11px; }
  .footer-nav          { flex-direction: column; gap: 12px; }
}

/* =====================================================================
   ENHANCED VISUAL EFFECTS
   ===================================================================== */

/* ---- Header: glassmorphism ao rolar ---- */
.header.scrolled {
  background: rgba(9, 15, 32, 0.92) !important;
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  box-shadow: 0 1px 40px rgba(0,0,0,0.48), 0 1px 0 rgba(141,157,179,0.10);
}

/* ---- Logo: scale suave no hover ---- */
.logo-img {
  transition: transform 0.3s ease;
}
.logo:hover .logo-img {
  transform: scale(1.05);
}

/* ---- Nav links: underline animado + active state ---- */
.nav-link:not(.nav-cta) {
  position: relative;
}
.nav-link:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.nav-link:not(.nav-cta):hover::after {
  transform: scaleX(1);
}
.nav-link-active:not(.nav-cta)::after {
  transform: scaleX(1) !important;
}

/* ---- Nav: ícones sociais estilizados ---- */
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid rgba(237,243,248,0.18);
  color: rgba(237,243,248,0.42);
  transition: color 0.22s, border-color 0.22s, background 0.22s, transform 0.22s;
}
.nav-social-link svg {
  width: 14px;
  height: 14px;
}
.nav-social-link:hover {
  color: var(--accent);
  border-color: rgba(141,157,179,0.55);
  background: rgba(141,157,179,0.09);
  transform: translateY(-2px);
}

/* ---- Hero overlay: gradiente mais rico e cinematográfico ---- */
.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(5, 11, 24, 0.84) 0%,
    rgba(12, 20, 40, 0.65) 55%,
    rgba(20, 30, 50, 0.72) 100%
  );
}

/* ---- Hero title <em>: texto com gradiente ---- */
.hero-title em {
  font-style: italic;
  background: linear-gradient(130deg, #c4d3e0 0%, var(--accent) 42%, #8099b1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
}

/* ---- Scroll indicator: ponto animado na base ---- */
.scroll-line {
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0;   transform: translateX(-50%) translateY(-14px); }
  50%  { opacity: 0.9; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0;   transform: translateX(-50%) translateY(4px); }
}

/* ---- Pitch band: gradiente + ambient glow ---- */
.pitch-band {
  background: linear-gradient(180deg, #172239 0%, #0d1a2e 50%, #101c2f 100%);
  position: relative;
  overflow: hidden;
}
.pitch-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 50% 110%, rgba(141,157,179,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Botões: lift no hover ---- */
.btn-arrow {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.btn-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

/* ---- Entrega sexta: badge com pulse suave ---- */
@keyframes badgePulse {
  0%, 100% { border-color: rgba(141,157,179,0.25); box-shadow: none; }
  50%       { border-color: rgba(141,157,179,0.55); box-shadow: 0 0 14px rgba(141,157,179,0.09); }
}
.entrega-sexta {
  animation: badgePulse 3.5s ease-in-out infinite;
}

/* ---- Flow cards: number destaque + fundo no hover ---- */
.flow-card:hover {
  background: rgba(141,157,179,0.08);
}
.flow-card:hover .flow-num:not(.flow-num-accent) {
  color: rgba(141,157,179,0.6);
}

/* ---- KPI Banner: ambient glow + glow no título ---- */
.kpi-banner {
  position: relative;
  overflow: hidden;
}
.kpi-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 340px;
  background: radial-gradient(ellipse, rgba(141,157,179,0.08) 0%, transparent 62%);
  pointer-events: none;
}
.kpi-title {
  text-shadow: 0 0 80px rgba(141,157,179,0.18);
}

/* ---- Audience cards: ghost number anima + fundo hover ---- */
.ghost-num {
  transition: transform 0.4s ease, color 0.4s ease;
}
.audience-card:hover .ghost-num {
  transform: translateX(8px);
  color: rgba(237,243,248,0.21);
}
.audience-card {
  transition: background 0.25s ease;
}
.audience-card:hover {
  background: rgba(141,157,179,0.09);
}

/* ---- Vantagem cards: barra esquerda animada ---- */
.vantagem-card {
  position: relative;
}
.vantagem-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(141,157,179,0.2) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.vantagem-card:hover::before {
  transform: scaleY(1);
}
.vantagem-card:hover {
  background: rgba(12,20,40,0.04);
}

/* ---- Problem items: deslize à direita no hover ---- */
.problem-item {
  transition: transform 0.22s ease;
}
.problem-item:hover {
  transform: translateX(6px);
}
.problem-num {
  transition: color 0.22s;
}
.problem-item:hover .problem-num {
  color: var(--accent-light);
}

/* ---- Compare items: deslize à direita ---- */
.compare-item {
  transition: transform 0.22s ease;
}
.compare-item:hover {
  transform: translateX(5px);
}
.ci {
  transition: transform 0.22s ease;
}
.compare-item:hover .ci {
  transform: scale(1.1);
}

/* ---- Plataforma items: deslize à direita ---- */
.plataforma-item {
  transition: transform 0.22s ease;
}
.plataforma-item:hover {
  transform: translateX(5px);
}
.plataforma-dot {
  transition: transform 0.22s ease, color 0.22s;
}
.plataforma-item:hover .plataforma-dot {
  transform: translateX(4px);
  color: var(--accent-light);
}

/* ---- Plataforma strip: gradiente ---- */
.plataforma-strip {
  background: linear-gradient(180deg, #13213a 0%, #101c31 100%);
}

/* ---- Deliverable check: scale no hover ---- */
.del-check {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.deliverable:hover .del-check {
  transform: scale(1.12);
  box-shadow: 0 0 14px rgba(141,157,179,0.4);
}

/* ---- Contact info icon: hover ---- */
.contact-info-icon {
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.contact-info-item:hover .contact-info-icon {
  background: rgba(141,157,179,0.18);
  border-color: rgba(141,157,179,0.5);
  transform: scale(1.09);
}

/* ---- Form: label accent ao focar ---- */
.form-group:focus-within label {
  color: var(--accent);
  transition: color 0.2s;
}
.form-group input,
.form-group select,
.form-group textarea {
  transition: border-color 0.22s, background 0.22s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(141,157,179,0.03);
}

/* ---- WhatsApp float: pulse ring ---- */
.whatsapp-float {
  overflow: visible;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(37, 211, 102, 0.65);
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.75; }
  65%  { transform: scale(1.72); opacity: 0; }
  100% { transform: scale(1.72); opacity: 0; }
}

/* ---- Footer: gradiente no topo ---- */
.footer {
  background: linear-gradient(180deg, #06091a 0%, #060D1A 30%);
}

/* ---- Blog cards: hover melhorado ---- */
.blog-card:hover {
  box-shadow: 0 14px 52px rgba(12,20,40,0.14);
  transform: translateY(-6px);
}
.blog-featured-card:hover {
  box-shadow: 0 16px 56px rgba(12,20,40,0.12);
}

/* ---- Hero: entrada cascateada ---- */
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .eyebrow        { animation: heroEnter 0.8s ease 0.20s both; }
.hero-content .rule           { animation: heroEnter 0.7s ease 0.35s both; }
.hero-content .hero-title     { animation: heroEnter 0.9s ease 0.42s both; }
.hero-content .hero-sub       { animation: heroEnter 0.9s ease 0.62s both; }
.hero-content .hero-actions   { animation: heroEnter 0.9s ease 0.78s both; }
.hero-scroll-indicator        { animation: heroEnter 0.7s ease 1.1s both; }

/* ---- Botões: contraste e acessibilidade ---- */

/* Ghost button — bordas e texto mais legíveis */
.btn-arrow-ghost {
  border-color: rgba(237,243,248,0.60);
}
.btn-arrow-ghost .bab {
  border-right-color: rgba(237,243,248,0.60);
  color: rgba(237,243,248,0.94);
}
.btn-arrow-ghost .bat {
  color: rgba(237,243,248,0.94);
  font-weight: 500;
}
.btn-arrow-ghost:hover .bab,
.btn-arrow-ghost:hover .bat { color: var(--light); }

/* Accent button — mais visível no fundo escuro */
.btn-arrow-accent {
  border-color: var(--accent-light);
}
.btn-arrow-accent .bab {
  border-right-color: var(--accent-light);
  color: var(--accent-light);
}
.btn-arrow-accent .bat {
  color: var(--accent-light);
  font-weight: 500;
}
.btn-arrow-accent:hover .bab,
.btn-arrow-accent:hover .bat { color: var(--navy); }

/* Focus visible — navegação por teclado */
:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn-arrow:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 5px;
  border-radius: 0;
}

/* ---- CTA 1: após seção Solução ---- */
.solucao-cta {
  text-align: center;
  margin-top: 52px;
  padding-bottom: 8px;
}

/* ---- CTA 2: strip inline entre seções ---- */
.cta-inline-strip {
  background: var(--navy-mid);
  padding: 44px 0;
  border-top:    1px solid rgba(141,157,179,0.12);
  border-bottom: 1px solid rgba(141,157,179,0.12);
}
.cta-inline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inline-text .eyebrow { margin-bottom: 8px; }
.cta-inline-text p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--light);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
}

/* ---- CTA 3: banner final antes do formulário ---- */
.cta-final-banner {
  background: var(--navy);
  padding: 100px 0;
  border-top: 1px solid rgba(141,157,179,0.1);
  position: relative;
  overflow: hidden;
}
.cta-final-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 420px;
  background: radial-gradient(ellipse, rgba(141,157,179,0.08) 0%, transparent 62%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
}
.cta-final-text { max-width: 680px; }
.cta-final-text h2 {
  color: var(--light);
  margin: 0;
}
.cta-final-text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(237,243,248,0.58);
  line-height: 1.85;
  margin-top: 18px;
}

/* ---- Nav mobile: social links ocultos ---- */
@media (max-width: 768px) {
  .nav-social { display: none; }
  .nav-link:not(.nav-cta)::after { display: none; }
  .cta-inline-inner { flex-direction: column; align-items: flex-start; }
  .cta-final-banner { padding: 68px 0; }
  .cta-final-inner { gap: 32px; }
}

/* =====================================================================
   FORMULÁRIO REDESENHADO — v2
   ===================================================================== */

/* Painel do formulário */
.contact-form-panel {
  background: #f4f7fb;
}

/* Cabeçalho da área do formulário */
.form-card-header {
  margin-bottom: 28px;
}
.form-card-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.75;
  margin-top: 10px;
}

/* Label com indicador opcional */
.form-label-optional {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #b0bcc8;
  margin-left: 4px;
}

/* Inputs estilo card (nova versão) */
.contact-form-v2 .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.contact-form-v2 label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.contact-form-v2 .form-group:focus-within label {
  color: var(--accent);
}

.contact-form-v2 input,
.contact-form-v2 select,
.contact-form-v2 textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde4ec;
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-900);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form-v2 input::placeholder,
.contact-form-v2 textarea::placeholder {
  color: #b8c4cf;
}
.contact-form-v2 input:focus,
.contact-form-v2 select:focus,
.contact-form-v2 textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(141,157,179,0.18);
}
.contact-form-v2 input.field-error,
.contact-form-v2 select.field-error,
.contact-form-v2 textarea.field-error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224,92,92,0.12);
  animation: shakeField 0.35s ease;
}
@keyframes shakeField {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}
.contact-form-v2 textarea {
  resize: vertical;
  min-height: 110px;
}

/* Seta customizada no select */
.contact-form-v2 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238D9DB3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
  color: var(--gray-900);
}
.contact-form-v2 select option[value=""] { color: #b8c4cf; }

/* Nota de privacidade */
.form-privacy-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 300;
  color: #a8b5c2;
  line-height: 1.5;
  margin-top: 6px;
}
.form-privacy-note svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.7;
}

/* Ícones SVG dentro de contact-info-icon */
.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estado de erro na validação */
.field-error-msg {
  font-size: 11px;
  color: #e05c5c;
  margin-top: -2px;
}

/* Responsivo: formulário v2 em mobile */
@media (max-width: 768px) {
  .contact-form-panel { background: #f4f7fb; }
  .form-card-header { margin-bottom: 20px; }
}

/* ===== BLOG REDESIGN v2 ===== */

/* Blog hero with background image */
.blog-hero {
  background-image: url(../img/team-meeting.jpg);
  background-size: cover;
  background-position: center 30%;
  position: relative;
  padding: 160px 0 88px;
  text-align: left;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 40, 0.88);
}
.blog-hero-inner { position: relative; z-index: 1; max-width: 680px; }

/* Título: clamp mais contido para não explodir em telas médias */
.blog-hero-title {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  margin: 14px 0 20px;
  text-align: left;
}

/* Subtítulo: legível e bem espaçado em qualquer tamanho */
.blog-hero-sub {
  text-align: left;
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  max-width: 560px;
  line-height: 1.75;
}

/* Hero stats */
.blog-hero-stats {
  display: flex; align-items: center; gap: 20px;
  margin-top: 32px;
}
.blog-hero-stat { display: flex; flex-direction: column; gap: 2px; }
.blog-hero-stat .stat-num {
  font-family: var(--font-serif); font-size: 28px; font-weight: 700;
  color: var(--light); line-height: 1; letter-spacing: -0.03em;
}
.blog-hero-stat .stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(237,243,248,0.5);
}
.blog-hero-stat-sep {
  width: 1px; height: 32px; background: rgba(141,157,179,0.25);
}

/* Featured card redesign */
.blog-featured-section { padding: 72px 0 0; background: #F4F6F9; }
.blog-featured-card {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 440px;
  background: #fff;
  border: 1px solid rgba(12,20,40,0.08);
  border-left: 4px solid var(--cat-bpc);
  overflow: hidden;
  transition: box-shadow 0.25s;
  padding: 0; /* anula o padding do CSS legado */
}
.blog-featured-card:hover { box-shadow: 0 16px 56px rgba(12,20,40,0.13); }

/* Category border colors on featured */
.blog-featured--bpc  { border-left-color: var(--cat-bpc); }
.blog-featured--mat  { border-left-color: var(--cat-mat); }
.blog-featured--gest { border-left-color: var(--cat-gest); }
.blog-featured--mkt  { border-left-color: var(--cat-mkt); }

/* Featured image */
.blog-featured-img-wrap {
  position: relative; overflow: hidden; display: block;
}
.blog-featured-img-el {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}
.blog-featured-card:hover .blog-featured-img-el { transform: scale(1.05); }
.blog-featured-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,20,40,0.45) 0%, transparent 60%);
}
.blog-featured-img-tags {
  position: absolute; top: 20px; left: 20px;
  display: flex; align-items: center; gap: 10px;
}

/* Featured body */
.blog-featured-body {
  padding: 44px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.blog-featured-body time { font-size: 11px; color: rgba(84,96,112,0.6); letter-spacing: 0.05em; }
.blog-featured-title { font-family: var(--font-serif); font-size: clamp(22px,2.4vw,32px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.025em; }
.blog-featured-excerpt { font-size: 14px; font-weight: 300; color: #546070; line-height: 1.85; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0; }
.blog-featured-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(12,20,40,0.07); }
.blog-featured-cta { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; color: var(--navy); transition: color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.blog-featured-cta:hover { color: var(--accent); }

/* Blog grid redesign */
.blog-grid-section { padding: 48px 0 104px; background: #F4F6F9; }

/* Card with image */
.blog-card { background: #fff; border: 1px solid rgba(12,20,40,0.08); border-left: 3px solid transparent; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; overflow: hidden; }
.blog-card--bpc  { border-left-color: var(--cat-bpc); }
.blog-card--mat  { border-left-color: var(--cat-mat); }
.blog-card--gest { border-left-color: var(--cat-gest); }
.blog-card--mkt  { border-left-color: var(--cat-mkt); }
.blog-card:hover { box-shadow: 0 12px 44px rgba(12,20,40,0.14); transform: translateY(-6px); }

/* Card image area */
.blog-card-img-wrap {
  display: block; overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  flex-shrink: 0;
}
.blog-card-img-el {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}
.blog-card:hover .blog-card-img-el { transform: scale(1.07); }

/* Excerpt line clamp */
.blog-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Filter active states with category colors */
.blog-filter-btn[data-filter="bpc-loas"].blog-filter-btn-active     { background: var(--cat-bpc);  border-color: var(--cat-bpc);  color: #fff; }
.blog-filter-btn[data-filter="salario-maternidade"].blog-filter-btn-active { background: var(--cat-mat);  border-color: var(--cat-mat);  color: #fff; }
.blog-filter-btn[data-filter="gestao-comercial"].blog-filter-btn-active    { background: var(--cat-gest); border-color: var(--cat-gest); color: #fff; }
.blog-filter-btn[data-filter="mercado"].blog-filter-btn-active       { background: var(--cat-mkt);  border-color: var(--cat-mkt);  color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img-wrap { aspect-ratio: 16/7; }
  .blog-featured-body { padding: 32px 28px; }
}
@media (max-width: 768px) {
  .blog-hero { padding: 130px 0 64px; }
  .blog-hero-title { font-size: clamp(40px, 10vw, 64px); margin: 12px 0 16px; }
  .blog-hero-sub { font-size: 14px; max-width: 100%; }
}
@media (max-width: 640px) {
  .blog-featured-body { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .blog-hero { padding: 110px 0 52px; }
  .blog-hero-title { font-size: clamp(36px, 11vw, 52px); }
  .blog-hero-sub { font-size: 13.5px; }
}

/* ===== ARTIGO PAGE ===== */
.artigo-hero {
  position: relative;
  min-height: 520px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.artigo-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0s;
}
.artigo-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,20,40,0.95) 0%, rgba(12,20,40,0.5) 50%, rgba(12,20,40,0.3) 100%);
}
.artigo-hero-inner {
  position: relative; z-index: 2;
  padding-bottom: 64px; padding-top: 120px;
  max-width: 820px;
}
.artigo-hero-inner .blog-tag { margin-bottom: 16px; }
.artigo-titulo {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700; color: var(--light);
  line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.artigo-meta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.artigo-meta time {
  font-size: 12px; color: rgba(237,243,248,0.6); letter-spacing: 0.04em;
}
.artigo-meta .blog-card-readtime {
  font-size: 12px; color: rgba(237,243,248,0.6);
  display: flex; align-items: center; gap: 6px;
}
.artigo-meta .blog-card-readtime svg { width: 13px; height: 13px; }

/* Article layout */
.artigo-page-section { background: #f4f7fb; padding: 72px 0 96px; }
.artigo-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}

/* Article body */
.artigo-body {
  background: #fff;
  padding: 52px 56px;
  border: 1px solid rgba(12,20,40,0.07);
}
.artigo-body .artigo-lead {
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: var(--gray-600); margin-bottom: 32px;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
.artigo-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px); font-weight: 700;
  color: var(--navy); margin: 36px 0 14px;
  letter-spacing: -0.02em; line-height: 1.2;
}
.artigo-body p {
  font-size: 15px; font-weight: 300;
  color: var(--gray-600); line-height: 1.9;
  margin-bottom: 18px;
}
.artigo-body p:last-child { margin-bottom: 0; }
.artigo-highlight {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 20px 24px; margin: 32px 0;
}
.artigo-highlight p {
  font-style: italic; font-size: 15.5px;
  color: var(--navy); margin: 0; font-weight: 400;
}
.artigo-footer-bar {
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.artigo-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--navy); transition: color 0.2s, gap 0.2s;
}
.artigo-back:hover { color: var(--accent); gap: 12px; }
.artigo-tag-row { display: flex; align-items: center; gap: 8px; }

/* Sidebar */
.artigo-sidebar { display: flex; flex-direction: column; gap: 28px; }
.artigo-cta-box {
  background: var(--navy); padding: 36px 30px;
  position: sticky; top: 96px;
}
.artigo-cta-box .eyebrow { margin-bottom: 10px; }
.artigo-cta-title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700; color: var(--light);
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px;
}
.artigo-cta-box p {
  font-size: 13px; font-weight: 300;
  color: rgba(237,243,248,0.58); line-height: 1.75; margin-bottom: 24px;
}
.artigo-related { background: #fff; border: 1px solid rgba(12,20,40,0.07); }
.artigo-related-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(12,20,40,0.07);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray-400);
}
.artigo-related-item {
  display: block; padding: 16px 22px;
  border-bottom: 1px solid rgba(12,20,40,0.06);
  transition: background 0.18s;
}
.artigo-related-item:last-child { border-bottom: none; }
.artigo-related-item:hover { background: var(--light); }
.artigo-related-tag { margin-bottom: 6px; }
.artigo-related-title {
  font-size: 13px; font-weight: 600; color: var(--navy);
  line-height: 1.35; letter-spacing: -0.01em;
}

/* Responsive artigo */
@media (max-width: 1024px) {
  .artigo-grid { grid-template-columns: 1fr; }
  .artigo-cta-box { position: static; }
}
@media (max-width: 768px) {
  .artigo-body { padding: 28px 20px; }
  .artigo-hero-inner { padding-bottom: 44px; }
  .artigo-page-section { padding: 40px 0 64px; }
}

/* =====================================================================
   MOBILE BUGS — CORREÇÕES
   ===================================================================== */

/* BUG 1 — iOS Safari auto-zoom: inputs com font-size < 16px disparam
   zoom automático que quebra o layout. Fix: forçar 16px no mobile.      */
@media (max-width: 768px) {
  .contact-form-v2 input,
  .contact-form-v2 select,
  .contact-form-v2 textarea {
    font-size: 16px;
  }
}

/* BUG 2 — Touch target do nav-toggle muito pequeno (< 44×44px mínimo). */
@media (max-width: 768px) {
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
}

/* BUG 3 — Blog filter buttons: altura ~32px, abaixo do mínimo de 44px. */
@media (max-width: 768px) {
  .blog-filter-btn {
    min-height: 44px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
  }
}

/* BUG 4 — Artigo hero: padding-top: 120px sem override mobile
   causava espaço excessivo antes do título em telas pequenas.            */
@media (max-width: 768px) {
  .artigo-hero { min-height: auto; }
  .artigo-hero-inner { padding-top: 96px; }
}
@media (max-width: 480px) {
  .artigo-hero-inner { padding-top: 88px; }
}

/* BUG 5 — Flash cinza ao tocar elementos no iOS (tap highlight).
   Substituído por transição de opacidade controlada.                     */
.btn-arrow,
.blog-card,
.blog-featured-card,
.blog-filter-btn,
.artigo-related-item,
.nav-toggle,
.nav-social-link,
.whatsapp-float,
.cookie-btn {
  -webkit-tap-highlight-color: transparent;
}

/* BUG 6 — Nav mobile aberta: scroll interno deve ser contido
   para não rolar o documento por baixo.                                  */
@media (max-width: 768px) {
  .nav.open {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

/* BUG 7 — WhatsApp float: posição mais compacta no mobile + z-index acima
   do cookie banner. JS cuida do deslocamento quando o banner abre.       */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; right: 16px; }
}
.whatsapp-float { z-index: 901; } /* acima do cookie banner (300) */

/* =====================================================================
   DESKTOP BUGS — CORREÇÕES
   ===================================================================== */

/* BUG D1 — Nav overflow em laptops 769px–900px: gap de 36px causa
   overflow do nav. Reduz para gap compacto nessa faixa.                 */
@media (min-width: 769px) and (max-width: 960px) {
  .nav { gap: 20px; }
  .nav-link { font-size: 12px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; }
}

/* BUG D2 — artigo-hero-bg: transition: transform 0s residual sem uso.
   Removido para evitar layer promotion desnecessária no GPU.             */
.artigo-hero-bg {
  transition: none;
}

/* BUG D3 — audience-grid sem max-width: em monitores 2560px+, cards
   ficam muito largos. Container implícito garante proporção razoável.   */
@media (min-width: 1400px) {
  .audience-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* BUG D4 — split-content com padding fixo 80px/60px: em telas
   1200px–1400px o espaço lateral pode ser desperdício. Clamp sutil.     */
@media (min-width: 1200px) {
  .split-content,
  .split-compare-content {
    padding: 80px clamp(44px, 5vw, 80px);
  }
}
