/* ═══════════════════════════════════════════════════════════════════════════
   FG DATA — Consultoria em Dados e Automação
   styles.css — v2.0
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── VARIÁVEIS ──────────────────────────────────────────────────────────── */
:root {
  --navy:      #0f1025;
  --navy-mid:  #181a36;
  --blue:      #126782;
  --blue-mid:  #219ebc;
  --blue-lt:   #58b4d1;
  --blue-glow: rgba(33,158,188,0.25);
  --gold:      #f1ab19;
  --gold-lt:   #ffc940;
  --gold-glow: rgba(241,171,25,0.20);
  --orange:    #ee9b00;
  --white:     #ffffff;
  --gray:      #6b7280;
  --gray-lt:   #d1d5db;
  --gray-bg:   #f1f5f9;
  --bg:        #f8fafc;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── UTILITÁRIOS ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(15,16,37,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(241,171,25,0.3);
  transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: rgba(15,16,37,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom-color: var(--gold);
}

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

.nav-logo svg { height: 38px; }

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900; letter-spacing: 1px;
  color: var(--white);
}

.nav-logo-text span { color: var(--gold); font-weight: 300; }

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

.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: all var(--transition) !important;
  box-shadow: 0 2px 12px var(--gold-glow);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px var(--gold-glow) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 70% at 65% 50%, rgba(33,158,188,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(241,171,25,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 20%, rgba(18,103,130,0.08) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-accent {
  position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px; z-index: 0;
  border: 100px solid rgba(241,171,25,0.04);
  border-radius: 50%;
  animation: floatSlow 20s ease-in-out infinite;
}

.hero-accent2 {
  position: absolute; right: 60px; bottom: -150px;
  width: 400px; height: 400px; z-index: 0;
  border: 60px solid rgba(33,158,188,0.05);
  border-radius: 50%;
  animation: floatSlow 25s ease-in-out infinite reverse;
}

/* Partículas flutuantes */
.hero-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade 6s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 15%; top: 30%; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 70%; top: 20%; animation-delay: 1.5s; }
.hero-particle:nth-child(3) { left: 85%; top: 60%; animation-delay: 3s; width: 3px; height: 3px; background: var(--blue-lt); }
.hero-particle:nth-child(4) { left: 40%; top: 75%; animation-delay: 4.5s; width: 3px; height: 3px; }
.hero-particle:nth-child(5) { left: 55%; top: 15%; animation-delay: 2s; background: var(--blue-mid); }

.hero-content {
  position: relative; z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(241,171,25,0.10);
  border: 1px solid rgba(241,171,25,0.30);
  color: var(--gold);
  padding: 8px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease both;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px; font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  max-width: 560px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy);
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px var(--gold-glow);
  border: none; cursor: pointer;
  font-family: 'Barlow', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241,171,25,0.35);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.20);
  color: var(--white);
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(241,171,25,0.05);
}

.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 56px;
  margin-top: 72px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.7s 0.4s ease both;
}

.stat-item { text-align: left; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-top: 6px; font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════════════════
   SEÇÕES GENÉRICAS
   ══════════════════════════════════════════════════════════════════════════ */
section { padding: 100px 5%; }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

.section-tag {
  display: inline-block;
  color: var(--blue-mid);
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; line-height: 1.05;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-title em {
  font-style: normal;
  color: var(--blue-mid);
}

.section-sub {
  font-size: 17px; color: var(--gray);
  max-width: 580px; line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════════════════
   DOR (O PROBLEMA)
   ══════════════════════════════════════════════════════════════════════════ */
.dor { background: var(--bg); }

.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dor-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}

.dor-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.dor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.dor-card:hover::before { transform: scaleX(1); }

.dor-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(33,158,188,0.1), rgba(33,158,188,0.05));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.dor-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}

.dor-card p {
  font-size: 14px; color: var(--gray); line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════════
   SERVIÇOS
   ══════════════════════════════════════════════════════════════════════════ */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.servico-card {
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}

.servico-card:hover { transform: translateY(-8px); }

.servico-card.dark {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.servico-card.dark:hover { box-shadow: var(--shadow-xl); }

.servico-card.blue {
  background: linear-gradient(145deg, var(--blue), #0e5a72);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.servico-card.blue:hover { box-shadow: 0 20px 60px rgba(18,103,130,0.3); }

.servico-card.gold {
  background: linear-gradient(145deg, var(--gold), var(--orange));
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.servico-card.gold:hover { box-shadow: 0 20px 60px rgba(241,171,25,0.3); }

.servico-card.light {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--navy);
}
.servico-card.light:hover { box-shadow: var(--shadow-lg); border-color: transparent; }

.servico-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px; font-weight: 900;
  opacity: 0.06;
  position: absolute; top: 10px; right: 20px;
  line-height: 1;
  user-select: none;
}

.servico-icon {
  font-size: 36px; margin-bottom: 22px; display: block;
}

.servico-card h3 {
  font-size: 21px; font-weight: 800;
  margin-bottom: 14px;
}

.servico-card p {
  font-size: 14px; line-height: 1.75; opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════════════════════
   PROCESSO (COMO FUNCIONA)
   ══════════════════════════════════════════════════════════════════════════ */
.processo {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.processo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 36px 36px;
}

.processo .section-title { color: var(--white); }
.processo .section-tag { color: var(--gold); }
.processo .section-sub { color: rgba(255,255,255,0.55); }

.processo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.processo-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-mid), var(--gold));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px 40px;
  position: relative; z-index: 1;
}

.step-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 900;
  margin: 0 auto 28px;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 8px rgba(241,171,25,0.15), 0 4px 20px rgba(241,171,25,0.2);
  transition: all var(--transition);
}

.step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(241,171,25,0.2), 0 8px 30px rgba(241,171,25,0.3);
}

.step h3 {
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}

.step p {
  font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.7;
  max-width: 220px; margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════════════════
   POR QUE NÓS
   ══════════════════════════════════════════════════════════════════════════ */
.porque { background: var(--bg); }

.porque-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.porque-visual {
  position: relative;
}

.porque-card-big {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-xl);
  padding: 56px;
  color: var(--white);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.porque-card-big::after {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.porque-card-big .big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.porque-card-big p {
  font-size: 15px; color: rgba(255,255,255,0.60);
  margin-top: 12px; line-height: 1.7;
}

.porque-card-small {
  position: absolute;
  bottom: -28px; right: -28px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: var(--navy);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.porque-card-small .small-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 900; line-height: 1;
}

.porque-card-small p { font-size: 13px; font-weight: 600; margin-top: 6px; opacity: 0.75; }

.diferenciais {
  display: flex; flex-direction: column; gap: 24px;
}

.diferencial {
  display: flex; align-items: flex-start; gap: 18px;
}

.diferencial-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(33,158,188,0.2);
}

.diferencial h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.diferencial p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════════════
   SEGMENTOS
   ══════════════════════════════════════════════════════════════════════════ */
.segmentos { background: var(--white); }

.segmentos-grid {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}

.segmento-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px; font-weight: 600;
  transition: all var(--transition);
  cursor: default;
}

.segmento-pill:hover {
  background: var(--blue);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(18,103,130,0.25);
}

.segmento-pill span { font-size: 22px; }

/* ══════════════════════════════════════════════════════════════════════════
   FORMULÁRIO DE CONTATO
   ══════════════════════════════════════════════════════════════════════════ */
.contato {
  background: linear-gradient(160deg, var(--navy) 0%, #0d2940 50%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}

.contato-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contato-text { color: var(--white); }

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

.contato-text .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.contato-text .section-title em { color: var(--gold); }

.contato-text .section-sub {
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.contato-info {
  display: flex; flex-direction: column; gap: 20px;
}

.contato-info-item {
  display: flex; align-items: center; gap: 16px;
}

.contato-info-icon {
  width: 48px; height: 48px;
  background: rgba(241,171,25,0.12);
  border: 1px solid rgba(241,171,25,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contato-info-item p {
  color: rgba(255,255,255,0.75);
  font-size: 15px; line-height: 1.5;
}

.contato-info-item a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}

.contato-info-item a:hover { color: var(--gold-lt); }

/* Form */
.contato-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(241,171,25,0.1);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  margin-top: 28px;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 17px 36px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--white);
}

.form-success.show { display: block; }

.form-success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px var(--gold-glow);
}

.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900;
  margin-bottom: 12px;
}

.form-success p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(241,171,25,0.2);
  padding: 48px 5%;
}

.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}

.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 900;
  color: var(--white);
}

.footer-logo-text span { color: var(--gold); font-weight: 300; }

footer p { color: rgba(255,255,255,0.35); font-size: 13px; }

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color var(--transition);
}

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

/* ══════════════════════════════════════════════════════════════════════════
   ANIMAÇÕES
   ══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(3deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes particleFade {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-20px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Children stagger base */
.dor-card,
.servico-card,
.step,
.diferencial,
.segmento-pill {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .porque-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contato-wrap { grid-template-columns: 1fr; gap: 48px; }
  .processo-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .processo-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(15,16,37,0.98);
    flex-direction: column;
    padding: 32px 5%;
    gap: 24px;
    border-bottom: 1px solid rgba(241,171,25,0.2);
  }
  
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  section { padding: 72px 5%; }

  .hero { padding: 100px 5% 60px; }
  .hero h1 { font-size: clamp(40px, 10vw, 60px); }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-accent, .hero-accent2 { display: none; }

  .servicos-grid { grid-template-columns: 1fr; }
  .processo-steps { grid-template-columns: 1fr; }
  .porque-card-small { position: static; display: inline-block; margin-top: 16px; }

  .form-grid { grid-template-columns: 1fr; }
  .contato-form { padding: 32px 24px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 38px; }
  .dor-grid { grid-template-columns: 1fr; }
  .segmentos-grid { flex-direction: column; align-items: stretch; }
  .contato-form { padding: 28px 20px; }
}
