/* =============================================
   ECOSSISTEMA LUTYKA - DESIGN SYSTEM
   Paleta: Preto + Dourado (#C9A84C) + Branco
   Tipografia: Outfit (display) + DM Sans (corpo) + Space Grotesk (numeros)
   ============================================= */

/* ---------- VARIABLES ---------- */
:root {
  --primary: #000000;
  --primary-light: #0A0A0A;
  --primary-mid: #111111;
  --gold: #C9A84C;
  --gold-light: #E0C97A;
  --gold-dark: #A8882E;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-subtle: rgba(201, 168, 76, 0.06);
  --white: #FFFFFF;
  --gray-50: #FAFAF9;
  --gray-100: #F0EFED;
  --gray-200: #E0DEDA;
  --gray-400: #999891;
  --gray-500: #6B6A63;
  --gray-600: #444340;
  --gray-800: #1A1A18;

  /* Cores das empresas */
  --solucoes: #2563EB;
  --solucoes-glow: rgba(37, 99, 235, 0.12);
  --distribuidora: #EA580C;
  --distribuidora-glow: rgba(234, 88, 12, 0.12);
  --construcoes: #16A34A;
  --construcoes-glow: rgba(22, 163, 74, 0.12);
  --adm-obras: #7C3AED;
  --adm-obras-glow: rgba(124, 58, 237, 0.12);
  --treinamentos: #DB2777;
  --treinamentos-glow: rgba(219, 39, 119, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.08);
  --shadow-gold: 0 8px 30px rgba(200, 164, 78, 0.35);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
  font-weight: 300;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- KEYFRAMES ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(201, 168, 76, 0); }
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -2%); }
  30% { transform: translate(1%, -3%); }
  50% { transform: translate(-1%, 2%); }
  70% { transform: translate(3%, 1%); }
  90% { transform: translate(2%, -1%); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201, 168, 76, 0.15); }
  50% { border-color: rgba(201, 168, 76, 0.4); }
}

/* ---------- SCROLL ANIMATION ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.75s var(--transition-base), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 0.7rem 2rem;
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.08), 0 8px 32px rgba(0, 0, 0, 0.5);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}
.logo-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.logo-text {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
}
.logo-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--primary) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0 !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}
.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}
.nav-cta::after { display: none !important; }

/* ---------- MOBILE MENU BUTTON ---------- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}
.mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}

/* ---------- MOBILE MENU OVERLAY ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  padding: 0.8rem 0;
  opacity: 0;
  transform: translateX(50px);
  transition: color var(--transition-fast);
  position: relative;
}
.mobile-menu.open a {
  animation: slideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.mobile-menu.open a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { animation-delay: 0.4s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a::before {
  content: '';
  position: absolute;
  left: -20px; top: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform var(--transition-fast);
}
.mobile-menu a:hover::before { transform: translateY(-50%) scale(1); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
  animation: gradientShift 18s ease infinite;
  background-size: 200% 200%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
}
/* Grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.5;
  pointer-events: none;
  animation: grain 6s steps(8) infinite;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--gold);
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 2.2rem;
  animation: fadeIn 1s ease 0.2s both;
  letter-spacing: 0.5px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseGold 2.5s infinite;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 1.6rem;
  animation: fadeInUp 0.9s ease 0.35s both;
}
.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.8rem;
  animation: fadeInUp 0.9s ease 0.55s both;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.7s both;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  letter-spacing: -0.2px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary);
}

/* ---------- HERO STATS ---------- */
.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeInUp 0.9s ease 0.9s both;
}
.hero-stat h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1.5px;
  line-height: 1;
}
.hero-stat p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 0.35rem;
  letter-spacing: 0.3px;
}

/* ---------- SECTIONS ---------- */
section { padding: 7rem 2rem; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 1.1rem auto 0;
  font-weight: 300;
  line-height: 1.7;
}

/* ---------- BENTO GRID ---------- */
.ecossistema { background: var(--gray-50); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover::before { transform: scaleX(1); }
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.bento-card.featured { grid-column: span 2; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--card-glow, var(--gold-glow));
  color: var(--card-accent, var(--gold));
}
.card-solucoes { --card-accent: var(--solucoes); --card-glow: var(--solucoes-glow); }
.card-construcoes { --card-accent: var(--construcoes); --card-glow: var(--construcoes-glow); }
.card-distribuidora { --card-accent: var(--distribuidora); --card-glow: var(--distribuidora-glow); }
.card-adm { --card-accent: var(--adm-obras); --card-glow: var(--adm-obras-glow); }
.card-treinamentos { --card-accent: var(--treinamentos); --card-glow: var(--treinamentos-glow); }

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.7rem;
  letter-spacing: -0.5px;
}
.card-description {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
  font-weight: 300;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--card-glow, var(--gold-subtle));
  color: var(--card-accent, var(--gold-dark));
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--card-accent, var(--gold));
  transition: gap var(--transition-fast);
}
.bento-card:hover .card-arrow { gap: 0.8rem; }

/* ---------- VALORES ---------- */
.valores {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.valores::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(201, 168, 76, 0.05), transparent 60%);
}
.valores .section-title { color: var(--white); }
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.valor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-base);
}
.valor-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}
.valor-icon {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-md);
  color: var(--gold);
}
.valor-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}
.valor-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- IMPACTO ---------- */
.impacto { background: var(--gray-50); }
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.impacto-card {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.impacto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.impacto-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
}
.impacto-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.6rem;
  font-weight: 500;
}

/* ---------- DEPOIMENTOS ---------- */
.depoimentos { background: var(--white); }
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.depoimento-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-base);
}
.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.depoimento-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}
.depoimento-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.depoimento-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.depoimento-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}
.depoimento-role {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 400;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0D0D0D 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255, 255, 255, 0.45); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
  font-weight: 300;
}
.footer h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.2px;
}
.footer ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer ul a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
  font-weight: 400;
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-verse {
  font-style: italic;
  color: rgba(201, 168, 76, 0.35);
  font-size: 0.78rem;
}

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 998;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulseGreen 2.5s infinite;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-tooltip {
  position: absolute;
  right: 72px; top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--gray-800);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero {
  min-height: 50vh;
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, var(--page-accent-glow, rgba(201,168,76,0.08)) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--primary));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--page-accent, var(--gold));
  margin-bottom: 1.2rem;
  animation: fadeIn 0.8s ease both;
}
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* ---------- COMPANY PAGE SECTIONS ---------- */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-base);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--page-accent, var(--gold));
}
.service-card .service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--page-accent-glow, var(--gold-glow));
  color: var(--page-accent, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}

/* Process / how-it-works */
.process-section { background: var(--gray-50); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-200);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  line-height: 1;
}
.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  font-weight: 300;
}

/* ---------- SOBRE PAGE ---------- */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-content {
  width: 45%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}
.timeline-content:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  width: 16px; height: 16px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}
.timeline-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}

/* MVV cards (missao, visao, valores) */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mvv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition-base);
}
.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.mvv-card .mvv-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.mvv-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.8rem;
}
.mvv-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- CONTATO PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition-base);
}
.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.3rem;
}
.contact-info-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 300;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.featured { grid-column: span 2; }
  .impacto-grid { grid-template-columns: repeat(2, 1fr); }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: span 1; }
  .mvv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  section { padding: 5rem 1.5rem; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.featured { grid-column: span 1; }
  .valores-grid,
  .depoimentos-grid,
  .services-grid { grid-template-columns: 1fr; }
  .impacto-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(odd) { flex-direction: column; padding-left: 50px; }
  .timeline-content { width: 100%; }
  .timeline-dot { left: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 40vh; padding: 7rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2rem; letter-spacing: -1px; }
  .whatsapp-fab { width: 54px; height: 54px; bottom: 1.5rem; right: 1.5rem; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .impacto-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .impacto-number { font-size: 2.4rem; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ---------- ACCESSIBILITY ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 100000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Footer heading (non-semantic, avoids h4 hierarchy skip) */
.footer-heading {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.2px;
}
