/* ================================================================
   ELOS ASSESSORIA — CSS
   Assessoria jurídica B2B para condomínios e associações
   Paleta: navy profundo (#0D1B2A) + ouro champagne (#C9A86C)
   Tipografia: Playfair Display (títulos) + Source Sans 3 (corpo)
================================================================ */

/* === TOKENS === */
:root {
  --primary:       #0D1B2A;
  --primary-dark:  #060D15;
  --primary-mid:   #162435;
  --accent:        #C9A86C;
  --accent-dark:   #A8884E;
  --accent-light:  rgba(201, 168, 108, 0.14);
  --accent-border: rgba(201, 168, 108, 0.28);

  --bg:        #FAFAFA;
  --surface:   #F0F3F6;
  --surface-2: #E4E9EE;
  --text:      #0F1924;
  --text-muted:#4A5E72;
  --border:    #D8E0E8;
  --white:     #FFFFFF;

  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --section-y: 96px;
  --container: 1080px;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Source Sans 3', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08);
  --shadow-md: 0 4px 16px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 40px rgba(13,27,42,0.14);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.2; }

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 500; }

em { font-style: italic; color: var(--accent); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow--light { color: rgba(201,168,108,0.8); }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-y) 0;
}

.section--alt { background: var(--surface); }

.section--dark {
  background: var(--primary);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.65); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(201,168,108,0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent-border);
}
.btn-outline:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}

.btn-outline--light {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline--light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* === NAV (pill flutuante) === */
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 48px);
  max-width: 920px;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: border-radius 0.3s ease, box-shadow 0.3s ease;
}

.nav-inner {
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta { border-radius: 100px; font-size: 0.85rem; padding: 10px 22px; }

.nav-hamburger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-border);
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 15px; height: 1.5px;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 22px 18px;
  border-top: 1px solid var(--accent-border);
}

.site-nav.nav-open { border-radius: var(--radius-xl); }
.site-nav.nav-open .nav-drawer { display: flex; }

.nav-mobile-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--accent); }
.nav-mobile-cta { margin-top: 8px; text-align: center; justify-content: center; }

/* === HERO === */
.hero {
  padding: 148px 0 96px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(201,168,108,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-text .eyebrow { margin-bottom: 20px; }

.hero-text h1 {
  margin-bottom: 24px;
  color: var(--text);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

/* Stats card (hero right) */
.hero-stats {
  background: var(--primary);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.hero-stats::before {
  content: 'Case de Sucesso';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.stat-card {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-card:nth-child(1) { border-radius: var(--radius) 0 0 0; }
.stat-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.stat-card:nth-child(3) { border-radius: 0 0 0 var(--radius); }
.stat-card:nth-child(4) { border-radius: 0 0 var(--radius) 0; }

.stat-num {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* === CASE DE SUCESSO === */
.case {
  background: var(--primary-dark);
  padding: var(--section-y) 0;
}

.case-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.case-col {
  padding: 52px 48px;
  background: var(--primary-mid);
}

.case-col--results {
  background: rgba(201,168,108,0.06);
  border-left: 1px solid var(--accent-border);
}

.case-col h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.case-col--results h3 { color: var(--accent); border-color: var(--accent-border); }

.case-list { display: flex; flex-direction: column; gap: 14px; }

.case-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.case-list li::before {
  content: '○';
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  margin-top: 2px;
}

.case-col--results .case-list li::before {
  content: '●';
  color: var(--accent);
}

.case-col--results .case-list li { color: rgba(255,255,255,0.85); }

.case-highlight {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.case-context {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.case-context h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.case-context p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
}

/* === DESAFIOS === */
.desafios { background: var(--surface); }

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

.desafio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.desafio-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
}

.desafio-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.desafio-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text);
}

.desafio-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 5th card spans full on last row when 3-col grid */
.desafios-grid .desafio-card:nth-child(4) { grid-column: 1 / 2; }
.desafios-grid .desafio-card:nth-child(5) { grid-column: 2 / 4; }

/* === SERVIÇOS === */
.servicos { background: var(--bg); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.servico-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.servico-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-sm);
}

.servico-icone {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  font-family: var(--font-body);
}

.servico-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === DIFERENCIAIS === */
.diferenciais { background: var(--primary); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.diferencial-item {
  background: var(--primary);
  padding: 40px 36px;
  transition: background 0.25s;
}

.diferencial-item:hover {
  background: var(--primary-mid);
}

.diferencial-titulo {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.diferencial-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* === EQUIPE === */
.equipe { background: var(--bg); }

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

.membro-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.membro-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-border);
}

.membro-foto {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.membro-card--lex .membro-foto {
  background: var(--primary);
  color: rgba(255,255,255,0.4);
  font-size: 2.5rem;
}

.membro-info {
  padding: 24px 28px;
}

.membro-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.membro-cargo {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.membro-credenciais {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.membro-credenciais li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.membro-credenciais li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.membro-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.membro-card--lex {
  border-color: var(--accent-border);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
}

.membro-card--lex .membro-info h3,
.membro-card--lex .membro-bio { color: var(--white); }
.membro-card--lex .membro-bio { color: rgba(255,255,255,0.65); }

/* last row: 2 cards span wider */
.equipe-grid .membro-card:nth-child(4) { grid-column: 1 / 2; }
.equipe-grid .membro-card:nth-child(5) { grid-column: 2 / 4; }

/* === COMO FUNCIONA === */
.como-funciona { background: var(--surface); }

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

.etapas::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--accent-border), var(--accent-border));
}

.etapa {
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.etapa-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--accent-border);
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.etapa h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}

.etapa p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* === DEPOIMENTOS (marquee — single row) === */
.depoimentos { background: var(--bg); overflow: hidden; }

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 12px 0 8px;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}

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

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s;
}

.testimonial-card:hover { border-color: var(--accent-border); }

.tc-stars {
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 3px;
}

.tc-text {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.tc-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.tc-name { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.tc-role { font-size: 0.78rem; color: var(--text-muted); }

/* === FAQ === */
.faq { background: var(--surface); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--accent-border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  font-weight: 300;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* === CONTATO === */
.contato { background: var(--bg); }

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.contato-form-wrap h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 8px;
}

.contato-form-wrap > p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,108,0.14);
}

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

.form-submit { margin-top: 8px; width: 100%; justify-content: center; border-radius: var(--radius); }

/* Contato info lateral */
.contato-info {
  padding: 40px 36px;
  background: var(--primary);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.contato-info h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.info-item:last-child { border-bottom: none; }

.info-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.info-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.info-value a {
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}

.info-value a:hover { color: var(--accent); }

.contato-wpp {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* === FOOTER === */
.site-footer {
  background: var(--primary-dark);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-nome {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col-titulo {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-contato {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contato a,
.footer-contato span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-contato a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-oab {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* === RESPONSIVE === */
@media (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { max-width: 440px; }

  .case-inner { grid-template-columns: 1fr; }
  .case-col--results { border-left: none; border-top: 1px solid var(--accent-border); }

  .desafios-grid { grid-template-columns: repeat(2, 1fr); }
  .desafios-grid .desafio-card:nth-child(4) { grid-column: auto; }
  .desafios-grid .desafio-card:nth-child(5) { grid-column: auto; }

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

  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
  .equipe-grid .membro-card:nth-child(4) { grid-column: auto; }
  .equipe-grid .membro-card:nth-child(5) { grid-column: auto; }

  .contato-inner { grid-template-columns: 1fr; gap: 40px; }
  .contato-info { max-width: 480px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --section-y: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 120px 0 64px; }

  .hero-stats { grid-template-columns: 1fr 1fr; }

  .desafios-grid { grid-template-columns: 1fr; }
  .desafios-grid .desafio-card:nth-child(5) { grid-column: auto; }

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

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

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

  .etapas {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .etapas::before { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
