/* ============================================
   AXIS Governance — Premium Institutional Site
   ============================================ */

:root {
  --navy: #1a2744;
  --navy-deep: #0f1a2e;
  --navy-light: #243352;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --graphite: #4a4a4a;
  --graphite-light: #6b6b6b;
  --graphite-dark: #333333;
  --gold: #b8976b;
  --gold-light: #d4b88c;
  --gold-dark: #9a7d57;
  --border: rgba(26, 39, 68, 0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--graphite-dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.section {
  padding: 120px 0;
}

.text-gold {
  color: var(--gold);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background-color: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1rem;
}

/* ============================================
   Section Tags & Headers
   ============================================ */

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--graphite-light);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-light {
  mix-blend-mode: multiply;
}

.logo-dark {
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.nav-logo-img {
  height: 72px;
  width: auto;
  transition: var(--transition);
  border-radius: 8px;
}

.navbar.scrolled .nav-logo-img {
  height: 56px;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--graphite);
}

.nav-links a:hover {
  color: var(--white);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--navy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 4px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.nav-cta-client {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy-deep) !important;
  font-weight: 600 !important;
}

.nav-cta-client:hover {
  background-color: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
}

.navbar.scrolled .nav-cta {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
}

.navbar.scrolled .nav-cta:hover {
  background-color: var(--navy) !important;
  color: var(--white) !important;
}

.navbar.scrolled .nav-cta-client {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy-deep) !important;
}

.navbar.scrolled .nav-cta-client:hover {
  background-color: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
  color: var(--navy-deep) !important;
}

/* Language Selector */
.lang-selector {
  position: relative;
  margin-left: 8px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 4px;
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .lang-btn {
  color: var(--graphite);
}

.navbar.scrolled .lang-btn:hover {
  color: var(--navy);
  background: rgba(26, 39, 68, 0.05);
}

.lang-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lang-chevron {
  width: 10px !important;
  height: 10px !important;
  transition: var(--transition);
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 8px;
  z-index: 1001;
}

.lang-selector.open .lang-dropdown {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--graphite);
  border-radius: 6px;
  transition: var(--transition);
}

.lang-option:hover {
  background: var(--off-white);
  color: var(--navy);
}

.lang-option.active {
  color: var(--navy);
  font-weight: 600;
  background: var(--off-white);
}

.lang-flag {
  font-size: 1.1rem;
}

.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: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background-color: var(--navy);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
}

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

.hero .btn-primary {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
}

.hero .btn-primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

.hero .btn-outline {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg-visual {
  width: 110%;
  max-width: 600px;
  height: auto;
  animation: hero-float 8s ease-in-out infinite;
  margin-right: -40px;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* ============================================
   Metrics Section
   ============================================ */

.metrics {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.metrics-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(184, 151, 107, 0.08) 0%, transparent 50%),
                     radial-gradient(circle at 80% 50%, rgba(184, 151, 107, 0.05) 0%, transparent 50%);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.metric-item {
  position: relative;
}

.metric-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-item:last-child::after {
  display: none;
}

.metric-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.metric-suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
}

.metric-label {
  margin-top: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* ============================================
   Visual Banner
   ============================================ */

.visual-banner {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, #0a1220 100%);
  overflow: hidden;
}

.visual-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(184, 151, 107, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(184, 151, 107, 0.06) 0%, transparent 50%);
}

.visual-banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.visual-banner-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.visual-banner .section-tag {
  color: var(--gold);
}

.visual-banner-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  line-height: 1.6;
  font-weight: 300;
}

.visual-banner-title .text-gold {
  font-weight: 600;
}

/* ============================================
   Clientes
   ============================================ */

.clientes {
  background: var(--navy-deep);
  padding: 80px 0;
  overflow: hidden;
}

.clientes-header {
  text-align: center;
  margin-bottom: 56px;
}

.clientes .section-title {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.clientes-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.clientes-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.clientes-track:hover {
  animation-play-state: paused;
}

.cliente-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.cliente-logo img {
  max-height: 44px;
  max-width: 150px;
  width: auto;
  height: 44px;
  object-fit: contain;
  opacity: 0.5;
  transition: var(--transition);
}

.cliente-logo:hover img {
  opacity: 0.9;
}

.cliente-no-process img {
  filter: none !important;
  opacity: 0.85 !important;
}

.cliente-lg img {
  max-height: 64px;
  height: 64px;
  max-width: 200px;
}

.cliente-xl img {
  max-height: 80px;
  height: 80px;
  max-width: 240px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   Impact Section
   ============================================ */

.impact-section {
  padding: 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 400px;
}

.impact-card {
  position: relative;
  padding: 60px 40px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: var(--transition-slow);
}

.impact-card-1 {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.impact-card-2 {
  background: linear-gradient(160deg, #1e3050 0%, var(--navy) 100%);
}

.impact-card-3 {
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
}

.impact-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(184, 151, 107, 0.15) 0%, transparent 100%);
  transition: var(--transition-slow);
}

.impact-card:hover .impact-card-overlay {
  opacity: 1;
}

.impact-card:hover {
  transform: scale(1.02);
  z-index: 2;
}

.impact-card-content {
  position: relative;
  z-index: 1;
}

.impact-icon {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}

.impact-icon svg {
  width: 100%;
  height: 100%;
}

.impact-card h3 {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}

.impact-card p {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-fade 2s ease-in-out infinite;
}

@keyframes scroll-fade {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Manifesto
   ============================================ */

.manifesto {
  background-color: var(--white);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 100px;
  align-items: start;
}

.manifesto-logo {
  height: 100px;
  width: auto;
  margin-bottom: 24px;
}

.manifesto-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 32px;
  line-height: 1.3;
}

.manifesto-text {
  font-size: 1.125rem;
  color: var(--graphite);
  margin-bottom: 20px;
  line-height: 1.9;
  font-weight: 300;
}

.manifesto-text:last-child {
  margin-bottom: 0;
}

/* ============================================
   Quem Somos
   ============================================ */

.quem-somos {
  background-color: var(--off-white);
}

.quem-somos-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quem-somos-text {
  font-size: 1.25rem;
  color: var(--graphite);
  line-height: 1.9;
  margin-bottom: 48px;
  font-weight: 300;
}

.quem-somos-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.area-tag {
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: var(--transition);
}

.area-tag:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.highlight-quote {
  position: relative;
  padding: 40px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.highlight-quote p {
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.7;
  font-weight: 300;
}

.highlight-quote strong {
  font-weight: 600;
}

/* ============================================
   Soluções
   ============================================ */

.solucoes {
  background-color: var(--white);
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solucao-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.solucao-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 8px 8px 0 0;
  opacity: 0;
  transition: var(--transition);
}

.solucao-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.solucao-card:hover::before {
  opacity: 1;
}

.solucao-icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
  margin-bottom: 24px;
}

.solucao-icon svg {
  width: 100%;
  height: 100%;
}

.solucao-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.solucao-desc {
  font-size: 0.938rem;
  color: var(--graphite-light);
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 300;
}

.solucao-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solucao-services li {
  font-size: 0.875rem;
  color: var(--graphite);
  padding-left: 16px;
  position: relative;
}

.solucao-services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

.solucao-highlight {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--gold-dark);
  font-style: italic;
}

/* ============================================
   Metodologia
   ============================================ */

.metodologia {
  background-color: var(--navy);
  color: var(--white);
}

.metodologia .section-tag {
  color: var(--gold);
}

.metodologia .section-title {
  color: var(--white);
}

.metodologia .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.metodologia-logo {
  height: 100px;
  width: auto;
  margin-bottom: 24px;
}

.metodologia-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(184, 151, 107, 0.2));
}

.metodo-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.metodo-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 80px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  right: -21px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.step-content h3 {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.step-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================
   Resultados
   ============================================ */

.resultados {
  background-color: var(--off-white);
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.resultado-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.resultado-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.resultado-category {
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.resultado-card h3 {
  font-size: 1.063rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.resultado-card p {
  font-size: 0.875rem;
  color: var(--graphite-light);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   Diferenciais
   ============================================ */

.diferenciais {
  background-color: var(--white);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}

.diferencial-item {
  position: relative;
}

.diferencial-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.diferencial-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.diferencial-item p {
  font-size: 0.938rem;
  color: var(--graphite-light);
  line-height: 1.7;
  font-weight: 300;
}

.diferencial-full {
  grid-column: 1 / -1;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.diferencial-full .diferencial-line {
  margin: 0 auto 20px;
}

/* ============================================
   CTA Final
   ============================================ */

.cta-final {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.2;
}

.cta-lines {
  margin-bottom: 48px;
}

.cta-lines p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 300;
}

.cta-lines strong {
  color: var(--gold);
  font-weight: 500;
}

.cta-brand {
  margin-bottom: 48px;
}

.cta-logo {
  height: 180px;
  width: auto;
  margin-bottom: 28px;
}

.cta-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  font-weight: 300;
}

.cta-final .btn-primary {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
}

.cta-final .btn-primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background-color: var(--navy-deep);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-weight: 300;
}

.footer-pillars {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer-links h4 {
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact h4 {
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 151, 107, 0.1);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

/* ============================================
   Animations
   ============================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

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

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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


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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .metrics {
    padding: 60px 0;
  }

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

  .metric-item::after {
    display: none;
  }

  .visual-banner {
    padding: 100px 0;
  }

  .impact-card {
    padding: 48px 32px;
  }


  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }

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

  .nav-links a {
    color: var(--graphite) !important;
    font-size: 1rem;
    padding: 8px 0;
  }

  .nav-links a:hover {
    color: var(--navy) !important;
  }

  .nav-cta {
    text-align: center;
    border-color: var(--navy) !important;
    color: var(--navy) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .diferencial-full {
    text-align: left;
  }

  .diferencial-full .diferencial-line {
    margin-left: 0;
  }

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

  .section-header {
    margin-bottom: 48px;
  }

  .timeline-line {
    left: 20px;
  }

  .step-number {
    width: 40px;
    font-size: 1.5rem;
  }

  .step-number::after {
    right: -21px;
  }

  .metodo-step {
    gap: 32px;
  }

  .cta-final {
    padding: 100px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-container {
    padding-top: 80px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.813rem;
  }

  .btn-lg {
    padding: 16px 32px;
  }

  .quem-somos-areas {
    gap: 8px;
  }

  .area-tag {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}
