/* ==========================================================================
   MOVIMENTA CONSULTORIA - DESIGN SYSTEM & ESTILOS PRINCIPAIS
   ========================================================================== */

/* 1. Variáveis & Tokens de Design */
:root {
  --color-navy: #024059;
  --color-navy-dark: #012b3c;
  --color-navy-border: #1F5A73;
  --color-teal: #007172;
  --color-orange: #E59858;
  --color-accent: #D94F04;
  --color-cream: #FBFAF8;
  --color-blush: #F4E2DE;
  --color-white: #FFFFFF;
  --color-border: #E8E4E0;
  --color-input-border: #C9D3D8;
  --color-whatsapp: #25D366;
  
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --max-width: 1440px;
  --content-width: 1200px;
  --page-padding-x: max(120px, calc((100% - 1200px) / 2));
  --page-padding-x-vw: max(120px, calc((100vw - 1200px) / 2));
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Reset e Estilos Globais */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-cream);
  color: var(--color-navy);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: clip;
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-navy);
}

h1, h2, h3, h4, p {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

input, textarea, button {
  font-family: var(--font-primary);
}

/* Container Principal */
.site-wrapper {
  width: 100%;
  margin: 0;
  background-color: var(--color-cream);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: clip;
}

/* ==========================================================================
   3. ANIMAÇÕES DE LINHAS SVG (DRAW & WAVE MOTION)
   ========================================================================== */

/* Configuração inicial dos caminhos SVG */
.linhas path {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

/* Animação keyframe direta para o Hero no carregamento inicial */
.hero-svg-lines path {
  stroke-dashoffset: 1;
  animation: desenharHero 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-svg-lines path:nth-child(1) { animation-delay: 0.1s; }
.hero-svg-lines path:nth-child(2) { animation-delay: 0.25s; }
.hero-svg-lines path:nth-child(3) { animation-delay: 0.4s; }
.hero-svg-lines path:nth-child(4) { animation-delay: 0.55s; }
.hero-svg-lines path:nth-child(5) { animation-delay: 0.7s; }
.hero-svg-lines path:nth-child(6) { animation-delay: 0.85s; }
.hero-svg-lines path:nth-child(7) { animation-delay: 1.0s; }
.hero-svg-lines path:nth-child(8) { animation-delay: 1.15s; }

@keyframes desenharHero {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Transição fluida para as linhas animadas via scroll */
.linhas:not(.hero-svg-lines) path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.1s linear;
  will-change: stroke-dashoffset;
}

@media (prefers-reduced-motion: reduce) {
  .hero-svg-lines path,
  .linhas:not(.hero-svg-lines) path {
    animation: none !important;
    transition: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* ==========================================================================
   4. ANIMAÇÕES DE REVELAÇÃO AO ROLAR (SCROLL REVEAL)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Efeito em cascata / stagger para cards e elementos adjacentes */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Animação inicial suave do Hero */
.hero-content > * {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content .section-tag { animation-delay: 0.2s; }
.hero-content .hero-title { animation-delay: 0.35s; }
.hero-content .hero-description { animation-delay: 0.5s; }
.hero-content .hero-actions { animation-delay: 0.65s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efeito visual de pulso nas setas e divisores */
.divider-icon path,
.marca-divider path {
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.divider-icon:hover path,
.marca-divider:hover path {
  stroke: var(--color-orange);
}

/* ==========================================================================
   5. CABEÇALHO FIXO / STICKY COM EFEITO BLUR
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--page-padding-x);
  z-index: 1000;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* Header em modo rolagem (Scrolled) */
.site-header.scrolled {
  padding: 14px var(--page-padding-x);
  background-color: rgba(2, 64, 89, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* Imagens Responsivas e WebP (Lighthouse/PageSpeed Optimization) */
.logo-link picture,
.site-footer picture,
.logo-404-link picture,
.hero-photo-frame picture,
.sobre-media-col picture {
  display: contents;
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.site-header .logo-link:hover {
  transform: scale(1.02);
}

.site-header .logo {
  height: 56px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: height 0.3s ease;
}

.site-header.scrolled .logo {
  height: 46px;
}

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

.site-nav a {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-orange);
  transition: width 0.3s ease;
}

.site-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.site-nav a:hover {
  color: var(--color-orange);
}

.site-nav .nav-cta {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-navy);
  background-color: var(--color-orange);
  padding: 12px 22px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.site-nav .nav-cta:hover {
  background-color: #d88948;
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(229, 152, 88, 0.35);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   6. SEÇÃO HERO
   ========================================================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  align-items: center;
  background-color: var(--color-navy);
  min-height: 740px;
}

.hero-svg-lines {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transform: translateY(-60px);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 72px 72px 176px var(--page-padding-x-vw);
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-tag.tag-orange { color: var(--color-orange); }
.section-tag.tag-teal { color: var(--color-teal); }
.section-tag.tag-navy { color: var(--color-navy); }

.hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-white);
  text-wrap: pretty;
}

.hero-title span {
  color: var(--color-orange);
}

.hero-description {
  font-family: var(--font-primary);
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-blush);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  color: var(--color-white);
  background-color: var(--color-accent);
  padding: 16px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: #be4300;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 79, 4, 0.4);
}

.hero-image-pane {
  position: relative;
  z-index: 1;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px 80px 32px;
}

.hero-photo-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-photo-backdrop {
  position: absolute;
  inset: -14px -14px 14px 14px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--color-orange) 0%, rgba(217, 79, 4, 0.35) 100%);
  box-shadow: 0 20px 50px rgba(217, 79, 4, 0.3);
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.hero-photo-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background-color: var(--color-navy);
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Micro-interações de Hover */
.hero-photo-card:hover {
  transform: translateY(-4px);
}

.hero-photo-card:hover .hero-photo-img {
  transform: scale(1.04);
}

.hero-photo-card:hover .hero-photo-backdrop {
  transform: translate(-4px, 4px) scale(1.02);
  box-shadow: 0 24px 60px rgba(217, 79, 4, 0.38);
}

/* ==========================================================================
   7. SEÇÃO O PROBLEMA
   ========================================================================== */

.problem-section {
  position: relative;
  background-color: var(--color-blush);
  padding: 112px var(--page-padding-x);
  z-index: 1;
}

.divider-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  top: -22px;
}

.problem-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  color: var(--color-navy);
  text-wrap: pretty;
}

.section-heading span.highlight-accent {
  color: var(--color-accent);
}

.section-heading span.highlight-orange {
  color: var(--color-orange);
}

.problem-container p {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-navy);
}

.quote-highlight {
  margin-top: 16px;
  border-left: 3px solid var(--color-accent);
  padding-left: 24px;
}

.quote-highlight p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.35;
  color: var(--color-navy);
  text-wrap: pretty;
}

/* ==========================================================================
   8. SEÇÃO COMO A MOVIMENTA ATUA
   ========================================================================== */

.atuacao-section {
  position: relative;
  background-color: var(--color-cream);
  padding: 144px var(--page-padding-x) 112px var(--page-padding-x);
  display: flex;
  flex-direction: column;
  gap: 56px;
  z-index: 2;
}

.atuacao-svg-lines {
  position: absolute;
  left: 0;
  top: -100px;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 320px;
}

.atuacao-header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0 0 0;
  border-top: 2px solid var(--color-teal);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--color-teal);
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--color-navy);
}

.step-text {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-navy);
}

/* ==========================================================================
   9. SEÇÃO DUAS FRENTES
   ========================================================================== */

.frentes-section {
  background-color: var(--color-navy);
  padding: 112px var(--page-padding-x);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.frentes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.frente-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease;
}

.frente-card:hover {
  transform: translateY(-2px);
}

.frente-card.has-divider {
  padding-right: 48px;
  border-right: 1px solid var(--color-navy-border);
}

.frente-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-white);
}

.frente-text {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-blush);
}

/* ==========================================================================
   10. SEÇÃO TERRITÓRIOS
   ========================================================================== */

.territorios-section {
  background-color: var(--color-cream);
  padding: 112px var(--page-padding-x);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.territorios-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.territorios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.territorio-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.territorio-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-teal);
  box-shadow: 0 10px 24px rgba(2, 64, 89, 0.08);
}

.territorio-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--color-navy);
}

.territorio-text {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-navy);
}

.territorios-footnote {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-teal);
}

/* ==========================================================================
   11. SEÇÃO COMO TRABALHAMOS
   ========================================================================== */

.metodologia-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-orange);
  padding: 112px var(--page-padding-x) 200px var(--page-padding-x);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.metodologia-svg-lines {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 360px;
}

.metodologia-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.metodologia-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 48px;
}

.metodologia-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}

.metodologia-card:hover {
  transform: translateY(-3px);
}

.metodologia-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-navy);
}

.metodologia-text {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-navy);
}

.metodologia-quote {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.metodologia-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  color: var(--color-navy);
  text-wrap: pretty;
}

/* ==========================================================================
   12. SEÇÃO FRONTEIRA / O QUE NÃO FAÇO
   ========================================================================== */

.fronteira-section {
  background-color: var(--color-cream);
  padding: 112px var(--page-padding-x);
}

.fronteira-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.fronteira-container p {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-navy);
}

/* ==========================================================================
   13. SEÇÃO SOBRE
   ========================================================================== */

.sobre-section {
  background-color: var(--color-blush);
  display: grid;
  grid-template-columns: calc(440px + var(--page-padding-x-vw)) minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.sobre-media-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 112px 0 112px var(--page-padding-x-vw);
}

.sobre-photo {
  width: 440px;
  height: 560px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 30px rgba(2, 64, 89, 0.15);
  transition: transform 0.4s ease;
}

.sobre-photo:hover {
  transform: scale(1.015);
}

.sobre-quote-box {
  width: 440px;
}

.sobre-quote-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  color: var(--color-navy);
  text-wrap: pretty;
}

.sobre-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 112px var(--page-padding-x-vw) 112px 96px;
}

.sobre-content-col p {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-navy);
}

/* ==========================================================================
   14. SEÇÃO POR QUE MOVIMENTA
   ========================================================================== */

.marca-section {
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(217, 79, 4, 0.08) 0%, transparent 65%), var(--color-navy);
  padding: 140px 0 120px 0;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 56px;
  overflow: visible;
  z-index: 10;
}

.marca-divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  bottom: -22px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.marca-divider:hover {
  transform: translateX(-50%) scale(1.08);
}

.marca-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  text-wrap: pretty;
}

.marca-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
  padding: 8px 0;
}

.marca-logo {
  width: clamp(300px, 50vw, 560px);
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.15));
}

.marca-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 24px rgba(217, 79, 4, 0.28));
}

.marca-container .section-heading {
  color: var(--color-white);
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.marca-container p {
  font-family: var(--font-primary);
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.7;
  color: var(--color-blush);
}

.marca-progression-wrapper {
  position: relative;
  width: 100%;
  height: clamp(320px, 25vw, 420px);
  margin: 0;
  overflow: hidden;
}

.marca-svg-progression {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ==========================================================================
   15. SEÇÃO CONTATO
   ========================================================================== */

.contato-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-cream);
  padding: 136px var(--page-padding-x) 112px var(--page-padding-x);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  align-items: start;
  z-index: 1;
}

.contato-svg-lines {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.contato-info-col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contato-info-col .section-heading {
  font-weight: 300;
  font-size: 48px;
}

.contato-info-col > p {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-navy);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.contact-channel-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-channel-item a {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-navy);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.contact-channel-item a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* Formulário de Contato */
.contato-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(2, 64, 89, 0.06);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-navy);
}

.form-field input {
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--color-input-border);
  border-radius: 6px;
  font-size: 16px;
  color: var(--color-navy);
  background-color: var(--color-white);
  outline: none;
  transition: var(--transition-smooth);
}

.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-input-border);
  border-radius: 6px;
  font-size: 16px;
  color: var(--color-navy);
  background-color: var(--color-white);
  resize: vertical;
  outline: none;
  transition: var(--transition-smooth);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(2, 64, 89, 0.14);
}

.btn-submit {
  height: 56px;
  border: 0;
  border-radius: 6px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background-color: #be4300;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 79, 4, 0.35);
}

.form-feedback {
  display: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  animation: feedbackFade 0.4s ease forwards;
}

@keyframes feedbackFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-feedback.success {
  display: block;
  background-color: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

/* ==========================================================================
   16. RODAPÉ (FOOTER)
   ========================================================================== */

.site-footer {
  background-color: var(--color-navy);
  padding: 38px var(--page-padding-x) 18px var(--page-padding-x);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(244, 226, 222, 0.08);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-main .footer-logo {
  height: 36px;
  width: auto;
  display: block;
}

.footer-main .footer-text {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-blush);
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 180px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(244, 226, 222, 0.08);
  border: 1px solid rgba(244, 226, 222, 0.16);
  color: var(--color-orange);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-socials a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(217, 79, 4, 0.35);
}

.footer-socials a:hover svg {
  transform: scale(1.1);
}

.footer-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid rgba(244, 226, 222, 0.06);
}

.footer-copy {
  font-family: var(--font-primary);
  font-size: 12px;
  color: rgba(244, 226, 222, 0.55);
  margin: 0;
  letter-spacing: 0.02em;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  margin-right: 180px;
}

.footer-legal-links a {
  color: var(--color-blush);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--color-orange);
  opacity: 1;
  text-decoration: underline;
}

.footer-divider {
  opacity: 0.35;
  font-size: 11px;
  color: var(--color-blush);
}

.footer-cookie-trigger {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  color: var(--color-blush);
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-cookie-trigger:hover {
  color: var(--color-orange);
  opacity: 1;
  text-decoration: underline;
}

/* ==========================================================================
   17. BOTÃO FLUTUANTE DO WHATSAPP COM ANIMAÇÃO DE PULSO
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 61px;
  right: 32px;
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 3s infinite;
}

.floating-whatsapp:hover {
  background-color: #1eb956;
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   18. RESPONSIVIDADE (TABLETS E DISPOSITIVOS MÓVEIS)
   ========================================================================== */

@media (max-width: 1200px) {
  .site-header {
    padding: 20px 48px;
  }
  
  .site-header.scrolled {
    padding: 14px 48px;
  }

  .hero-section {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 60px 48px 100px 48px;
  }

  .frentes-section,
  .territorios-section,
  .fronteira-section,
  .contato-section {
    padding: 80px 48px;
  }

  .problem-section {
    padding: 96px 48px 120px 48px;
  }

  .atuacao-section {
    padding: 160px 48px 96px 48px;
  }

  .atuacao-svg-lines {
    top: -80px;
    height: 260px;
  }

  .metodologia-section {
    padding: 96px 48px 210px 48px;
  }

  .metodologia-svg-lines {
    bottom: 0;
    height: 220px;
  }

  .marca-section {
    padding: 96px 0;
    min-height: auto;
  }

  .sobre-section {
    grid-template-columns: 460px 1fr;
  }

  .sobre-media-col {
    padding: 80px 0 80px 48px;
  }

  .sobre-photo,
  .sobre-quote-box {
    width: 380px;
  }

  .sobre-content-col {
    padding: 80px 48px 80px 48px;
  }

  .site-footer {
    padding: 38px 48px 18px 48px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-svg-lines {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-60px);
    -webkit-mask-image: linear-gradient(to top, #000 0%, #000 440px, rgba(0, 0, 0, 0.3) 490px, transparent 520px);
    mask-image: linear-gradient(to top, #000 0%, #000 440px, rgba(0, 0, 0, 0.3) 490px, transparent 520px);
  }

  .hero-content {
    padding: 64px 32px 48px 32px;
  }

  .hero-image-pane {
    height: auto;
    padding: 16px 24px 60px 24px;
  }

  .hero-photo-card {
    max-width: 360px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .frentes-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .frente-card.has-divider {
    padding-right: 0;
    border-right: none;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-navy-border);
  }

  .metodologia-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-section {
    padding: 80px 32px 120px 32px;
  }

  .atuacao-section {
    padding: 170px 32px 80px 32px;
  }

  .atuacao-svg-lines {
    top: -75px;
    height: 230px;
  }

  .metodologia-section {
    padding: 80px 32px 220px 32px;
  }

  .metodologia-svg-lines {
    bottom: 0;
    height: 200px;
  }

  .sobre-section {
    grid-template-columns: 1fr;
  }

  .sobre-media-col {
    padding: 64px 32px 32px 32px;
    align-items: center;
  }

  .sobre-photo,
  .sobre-quote-box {
    width: 100%;
    max-width: 480px;
  }

  .sobre-photo {
    height: auto;
    aspect-ratio: 4/5;
  }

  .sobre-content-col {
    padding: 32px 32px 64px 32px;
  }

  .contato-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 32px;
  }

  .site-footer {
    padding: 48px 32px 110px 32px;
    gap: 20px;
    text-align: center;
  }

  .footer-main {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }

  .footer-socials {
    margin-right: 0;
    justify-content: center;
  }

  .footer-sub {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 16px;
  }

  .footer-legal-links {
    margin-right: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 24px;
  }

  .site-header.scrolled {
    padding: 12px 24px;
  }

  .site-header .logo {
    height: 44px;
    max-width: 220px;
  }

  .site-header.scrolled .logo {
    height: 38px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-navy);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: none;
    border-top: 1px solid var(--color-navy-border);
  }

  .site-nav.active {
    display: flex;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-svg-lines {
    -webkit-mask-image: linear-gradient(to top, #000 0%, #000 370px, rgba(0, 0, 0, 0.3) 415px, transparent 440px);
    mask-image: linear-gradient(to top, #000 0%, #000 370px, rgba(0, 0, 0, 0.3) 415px, transparent 440px);
  }

  .hero-photo-card {
    max-width: 300px;
  }

  .hero-photo-backdrop {
    inset: -10px -10px 10px 10px;
    border-radius: 20px;
  }

  .hero-photo-frame {
    border-radius: 18px;
  }

  .hero-description {
    font-size: 18px;
  }

  .frentes-section,
  .territorios-section,
  .fronteira-section,
  .contato-section {
    padding: 64px 24px;
  }

  .problem-section {
    padding: 64px 24px 120px 24px;
  }

  .atuacao-section {
    padding: 175px 24px 64px 24px;
  }

  .atuacao-svg-lines {
    top: -65px;
    height: 210px;
  }

  .metodologia-section {
    padding: 64px 24px 240px 24px;
  }

  .metodologia-svg-lines {
    bottom: 0;
    height: 180px;
  }

  .marca-section {
    padding: 80px 0;
  }

  .marca-container {
    padding: 0 24px;
  }

  .marca-logo-wrapper {
    margin-bottom: 18px;
  }

  .marca-logo {
    width: clamp(240px, 80vw, 380px);
    max-width: 100%;
  }

  .section-heading {
    font-size: 32px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .territorios-grid {
    grid-template-columns: 1fr;
  }

  .metodologia-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contato-form {
    padding: 24px;
  }

  .quote-highlight p,
  .metodologia-quote p,
  .sobre-quote-box p {
    font-size: 22px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 16px;
    border-radius: 50%;
    bottom: 24px;
    right: 24px;
  }
}

@media (max-width: 480px) {
  .problem-section {
    padding: 56px 20px 120px 20px;
  }

  .atuacao-section {
    padding: 180px 20px 56px 20px;
  }

  .atuacao-svg-lines {
    top: -60px;
    height: 200px;
  }

  .metodologia-section {
    padding: 56px 20px 250px 20px;
  }

  .metodologia-svg-lines {
    bottom: 0;
    height: 170px;
  }
}

/* ==========================================================================
   COOKIE CONSENT & LGPD BANNER / MODAL
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 680px;
  background-color: #FFFFFF;
  color: #1F2937;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(2, 64, 89, 0.22), 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(2, 64, 89, 0.12);
  z-index: 9999;
  padding: 24px 28px;
  font-family: var(--font-primary);
  animation: cookieBannerSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cookieBannerSlideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 24px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  position: relative;
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0;
  flex: 1;
  text-align: center;
}

.cookie-banner-close {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #4B5563;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cookie-banner-close:hover {
  background-color: #F3F4F6;
  color: #111827;
}

.cookie-banner-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0 0 20px 0;
  text-align: left;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* Botão Aceitar (Primary) */
.cookie-btn-accept {
  background-color: var(--color-navy);
  color: #FFFFFF;
  border: 1px solid var(--color-navy);
}

.cookie-btn-accept:hover {
  background-color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
  box-shadow: 0 4px 12px rgba(2, 64, 89, 0.25);
}

/* Botão Negar e Ver Preferências (Secondary outline) */
.cookie-btn-reject,
.cookie-btn-preferences,
.cookie-btn-secondary {
  background-color: #FFFFFF;
  color: #374151;
  border: 1px solid #D1D5DB;
}

.cookie-btn-reject:hover,
.cookie-btn-preferences:hover,
.cookie-btn-secondary:hover {
  background-color: #F9FAFB;
  border-color: #9CA3AF;
  color: #111827;
}

/* Detalhes de Preferências */
.cookie-preferences-intro {
  font-size: 13px;
  color: #6B7280;
  margin: 0 0 16px 0;
}

.cookie-policy-link {
  color: var(--color-teal);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-policy-link:hover {
  color: var(--color-navy);
}

.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 20px;
}

.cookie-category-item {
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 12px 14px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.cookie-category-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
}

.cookie-category-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-always-active {
  background-color: rgba(0, 113, 114, 0.12);
  color: var(--color-teal);
}

.cookie-category-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #6B7280;
  margin: 0;
}

/* Switch Toggle */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #D1D5DB;
  transition: 0.25s ease;
  border-radius: 22px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.25s ease;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-switch input:checked + .cookie-slider {
  background-color: var(--color-teal);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}


@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .cookie-banner-title {
    font-size: 16px;
  }

  .cookie-banner-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .cookie-banner-actions {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-btn {
    width: 100%;
    padding: 11px 14px;
  }

  .cookie-details-actions {
    flex-direction: row;
  }
  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-right: 0;
  }
}

