/* ===== 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; }
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(26px, 3.2vw, 42px); 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: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.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: 96px 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: 700px;
  margin: 0 auto 64px;
}
.section-header-centered h2 { color: var(--light); }

/* Section with bg image */
.section-bg-img {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
}
.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: url(../img/handshake-deal.jpg);
  background-size: cover;
  background-position: center;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 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; }
}

/* Oculta vídeo no mobile (usa poster/imagem) */
@media (max-width: 768px) {
  .hero-video { display: none; }
  .hero-media {
    background-image: url(../img/handshake-deal.jpg);
    background-size: cover;
    background-position: center;
  }
}

/* ===== 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.62);
  z-index: 1;
}
.split-img-overlay-heavy {
  background: rgba(12, 20, 40, 0.75);
}

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

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

.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); }

.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;
}
.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: rgba(237,243,248,0.88); }

.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.62); }

/* ===== 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: 52px 44px;
  border-right: 1px solid var(--gray-100);
  transition: background 0.2s;
}
.vantagem-card:last-child { border-right: none; }
.vantagem-card:hover { background: rgba(12,20,40,0.025); }

.vantagem-num {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 4px;
}
.vantagem-card .rule { margin: 12px 0 20px; }

.vantagem-title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.vantagem-card p {
  font-size: 14px; font-weight: 300;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== 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-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); }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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-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: 36px; }
  .flow-grid { grid-template-columns: 1fr; }
  .bat       { font-size: 12px; padding: 0 16px; }
}
