/* ===================================
   EXACTA — Full Design System
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&family=Questrial&display=swap');

:root {
  --color-bg: #0A0F1E;
  --color-secondary: #0D2B6B;
  --color-accent: #1A6FD4;
  --color-highlight: #00D4FF;
  --color-text: #E8EDF5;
  --color-text-muted: #7A8BA8;
  --color-card-bg: #0D1A3A;
  --color-card-border: rgba(26, 111, 212, 0.3);
  --font-exacta: Georgia, 'Times New Roman', serif;
  --font-hero-sub: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Questrial', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 60px rgba(26, 111, 212, 0.15);
  --glow-strong: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 80px rgba(26, 111, 212, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* ===================================
   CUSTOM CURSOR
   =================================== */
#cursor {
  width: 10px; height: 10px;
  background: var(--color-highlight);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: width 0.2s, height 0.2s, background 0.2s;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--color-highlight);
}
#cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s, height 0.25s, border-color 0.25s;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 18px; height: 18px; }
body:has(a:hover) #cursor-follower, body:has(button:hover) #cursor-follower { width: 50px; height: 50px; border-color: var(--color-highlight); }

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 16px 60px;
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 111, 212, 0.2);
}
.nav-logo {
  font-family: var(--font-exacta);
  font-size: 1.4rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--color-text); text-decoration: none;
}
.nav-logo span { color: var(--color-highlight); }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--color-text-muted); text-decoration: none;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--color-highlight); }
.nav-cta {
  padding: 10px 24px; border: 1px solid var(--color-accent);
  color: var(--color-accent) !important; border-radius: 4px;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--color-accent); color: white !important; box-shadow: var(--glow); }

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none; background: none; border: none;
  width: 30px; height: 20px; position: relative; cursor: none; z-index: 1001;
}
.mobile-menu-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--color-text); position: absolute; left: 0;
  transition: 0.3s;
}
.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-toggle span:nth-child(3) { bottom: 0; }
.mobile-menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===================================
   HERO
   =================================== */
#hero {
  position: relative; height: 100vh; min-height: 800px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
#hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,111,212,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(26,111,212,0.04) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none; z-index: 1;
}
#particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 1000px; padding: 0 24px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; background: rgba(26,111,212,0.12);
  border: 1px solid rgba(0,212,255,0.25); border-radius: 50px;
  margin-bottom: 28px; font-size: 0.68rem; letter-spacing: 0.15em;
  color: var(--color-text-muted); text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-highlight); animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0.2; } }

.hero-eyebrow {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.5em;
  color: var(--color-highlight); text-transform: uppercase; margin-bottom: 20px; opacity: 0.8;
}
.hero-title {
  font-family: Georgia, 'Times New Roman', serif; font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700; letter-spacing: 0.1em; line-height: 0.9;
  color: #FFFFFF; text-shadow: none;
  position: relative; display: inline-block; padding-bottom: 30px;
  border-bottom: 2px solid #7A8BA8; margin-bottom: 10px;
}
/* ~30% da escala do EXACTA + linha (hero-title: clamp 4rem / 10vw / 9rem) */
.hero-subtitle {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2.65rem);
  letter-spacing: 0.04em; color: #B0B8C4;
  text-transform: none; margin: 6px 0 26px; position: relative; display: inline-block; font-weight: 500;
}
.hero-subtitle::after {
  content: ''; display: none;
}
.hero-tagline {
  font-size: 1.2rem; color: var(--color-text-muted); font-weight: 300;
  line-height: 1.6; margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-tagline strong { color: var(--color-text); font-weight: 500; }

.hero-btns { display: flex; gap: 20px; justify-content: center; margin-bottom: 60px; }
.btn-primary, .btn-outline {
  padding: 18px 36px; font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  border-radius: 4px; transition: all 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  color: white; border: none; box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-strong); }
.btn-outline {
  border: 1px solid rgba(26, 111, 212, 0.4); color: var(--color-text);
}
.btn-outline:hover { background: rgba(26, 111, 212, 0.1); border-color: var(--color-highlight); }

/* Hero Stats */
.hero-stats-bar {
  display: flex; gap: 40px; justify-content: center; align-items: center;
  padding: 24px 48px; background: rgba(13, 26, 58, 0.4);
  border: 1px solid rgba(26, 111, 212, 0.15); border-radius: 12px;
  backdrop-filter: blur(10px);
}
.h-stat { display: flex; flex-direction: column; align-items: center; }
.h-stat-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--color-highlight); }
.h-stat-lab { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); }
.h-stat-sep { width: 1px; height: 40px; background: rgba(26, 111, 212, 0.2); }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.5; animation: pulse-down 2s ease-in-out infinite;
}
.scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-text-muted); }
.scroll-arrow { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--color-highlight), transparent); }
@keyframes pulse-down { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(10px); } }

/* ===================================
   SECTIONS GENERAL
   =================================== */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 140px 60px; }
.section-label {
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.5em;
  color: var(--color-highlight); text-transform: uppercase; margin-bottom: 16px; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.1; color: var(--color-text); margin-bottom: 24px;
}
.section-line { width: 80px; height: 3px; background: var(--color-highlight); margin-bottom: 48px; }
.section-desc { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 40px; max-width: 800px; }
.text-center { text-align: center; }
.text-center .section-line { margin-left: auto; margin-right: auto; }

/* ===================================
   SOBRE
   =================================== */
#sobre { background: linear-gradient(180deg, var(--color-bg) 0%, #0D1A3A 100%); }
.sobre-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 72px;
  row-gap: 48px;
  align-items: stretch;
}
.sobre-photo-wrap {
  position: relative; max-width: 300px; width: 100%; margin: 0; justify-self: start;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-bottom: 52px;
}
.sobre-head {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
}
.sobre-head .section-label { margin-bottom: 12px; }
.sobre-head-line {
  margin-bottom: 0;
}
.sobre-section-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.12;
}
.sobre-title-row {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.12;
}
.sobre-title-row--indented {
  padding-left: 0.15em;
}
.sobre-body {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: stretch;
  max-width: min(52rem, 100%);
  margin: 0;
  text-align: left;
}
.sobre-photo {
  flex: 1 1 auto;
  width: 100%;
  min-height: 260px;
  border-radius: 16px; overflow: hidden;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.sobre-photo-initials { display: none; }
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sobre-credentials-row {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 100%;
}
.sobre-credentials-badge {
  background: var(--color-highlight); color: var(--color-bg);
  padding: 10px 18px; font-family: var(--font-display); font-size: 0.62rem;
  font-weight: 700; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: var(--glow-strong);
  white-space: nowrap;
}
.sobre-credentials-badge--outline {
  background: rgba(10, 15, 30, 0.92);
  color: var(--color-highlight);
  border: 1px solid rgba(0, 212, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.sobre-bio { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 0.42rem; line-height: 1.5; }
.sobre-body .sobre-bio:last-of-type { margin-bottom: 20px; }
.sobre-bio strong { color: var(--color-text); }
.sobre-tags {
  display: flex; flex-wrap: wrap; gap: 12px; list-style: none;
  margin-top: 28px; justify-content: flex-start;
}
.sobre-tags li {
  padding: 8px 16px; background: rgba(26, 111, 212, 0.1);
  border: 1px solid rgba(26, 111, 212, 0.2); border-radius: 4px;
  font-size: 0.8rem; color: var(--color-highlight);
}

/* ===================================
   DIFERENCIAIS
   =================================== */
#diferenciais { background: #070C15; }
.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.dif-card {
  padding: 40px; background: var(--color-card-bg); border: 1px solid var(--color-card-border);
  border-radius: 16px; transition: all 0.3s;
}
.dif-card:hover { transform: translateY(-10px); border-color: var(--color-highlight); box-shadow: var(--glow); }
.dif-icon { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; margin-bottom: 24px; }
.dif-icon img { width: 100%; height: 100%; object-fit: contain; }
.dif-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--color-text); margin-bottom: 16px; letter-spacing: 0.05em; }
.dif-card p { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.7; }

/* ===================================
   PRÁTICAS
   =================================== */
#praticas { background: #0A0F1E; }
.praticas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card-3d { height: 440px; perspective: 1200px; cursor: none; }
.card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); transform-style: preserve-3d; }
.card-3d:hover .card-inner { transform: rotateY(180deg); }

.card-front, .card-back {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: 16px; padding: 40px; display: flex; flex-direction: column;
  background: var(--color-card-bg); border: 1px solid var(--color-card-border);
}
.card-front { justify-content: center; }
.card-back { transform: rotateY(180deg); background: linear-gradient(135deg, #0D2B6B, #0A0F1E); justify-content: flex-start; overflow-y: auto; }
.card-back .card-title { margin-bottom: 16px; text-align: center; }
.card-back-text { text-align: left; }
.card-back-text p { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.55; }
.card-back-text p + p { margin-top: 12px; }


.card-number { font-family: var(--font-display); font-size: 0.7rem; color: var(--color-highlight); opacity: 0.5; letter-spacing: 0.3em; margin-bottom: 12px; }
.card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--color-text); margin-bottom: 16px; line-height: 1.3; text-align: center; }
.card-excerpt {
  font-size: 0.85rem; color: var(--color-text-muted); text-align: center; line-height: 1.5;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 8; line-clamp: 8; overflow: hidden;
}

/* Touch / sem mouse: cursor padrão e esconde cursor customizado */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  #cursor, #cursor-follower { display: none !important; }
  .card-3d, .mobile-menu-toggle, .tc-item, .btn-primary, .btn-outline, .btn-submit, .nav-cta, .practice-premium {
    cursor: pointer;
  }
}

.card-back-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--color-highlight); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; }
.card-back ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.card-back li { font-size: 0.85rem; color: var(--color-text); position: relative; padding-left: 20px; }
.card-back li::before { content: '→'; position: absolute; left: 0; color: var(--color-highlight); }

/* ===================================
   CONSULTORIA — DETALHAMENTO (SEÇÃO PREMIUM)
   =================================== */
#consultoria-premium {
  background: linear-gradient(180deg, #070C15 0%, #0A0F1E 100%);
  border-top: 1px solid rgba(26, 111, 212, 0.12);
  border-bottom: 1px solid rgba(26, 111, 212, 0.12);
}
.consultoria-premium-grid {
  display: flex; flex-direction: column; gap: 40px; margin-top: 8px;
}
.practice-premium {
  padding: 40px 44px; background: var(--color-card-bg);
  border: 1px solid var(--color-card-border); border-radius: 16px;
  transition: border-color 0.38s ease, box-shadow 0.38s ease, transform 0.38s ease;
}
.practice-premium:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.38);
  box-shadow:
    0 -6px 24px rgba(0, 212, 255, 0.12),
    0 -2px 36px rgba(26, 111, 212, 0.1),
    0 0 20px rgba(0, 212, 255, 0.2),
    0 0 44px rgba(26, 111, 212, 0.12),
    0 16px 36px rgba(0, 0, 0, 0.28);
}
.practice-premium-head {
  display: flex; align-items: baseline; gap: 20px; margin-bottom: 28px;
  flex-wrap: wrap; border-bottom: 1px solid rgba(26, 111, 212, 0.2); padding-bottom: 20px;
}
.practice-premium-num {
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.35em;
  color: var(--color-highlight); opacity: 0.65; flex-shrink: 0;
}
.practice-premium-title {
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700; color: var(--color-text); line-height: 1.25; margin: 0;
}
.practice-premium-tags {
  display: flex; flex-wrap: wrap; gap: 10px 12px; margin-bottom: 28px;
}
.practice-tag {
  display: inline-block; padding: 8px 14px; font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--color-text); background: rgba(26, 111, 212, 0.12);
  border: 1px solid rgba(26, 111, 212, 0.35); border-radius: 6px;
  font-family: var(--font-display); font-weight: 600; line-height: 1.3;
}
.practice-premium-body p {
  font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.75; margin: 0;
}
.practice-premium-body p + p { margin-top: 16px; }

/* ===================================
   TURNAROUND VENDAS
   =================================== */
#turnaround-vendas { position: relative; padding: 100px 0; overflow: hidden; background: #040815; }
.tv-bg { position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, #0D2B6B 0%, transparent 60%); opacity: 0.3; }
.tv-grid-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(26,111,212,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(26,111,212,0.05) 1px, transparent 1px); background-size: 50px 50px; }
.tv-content { position: relative; z-index: 5; }

.tv-quote {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--color-text);
  font-style: italic; border-left: 4px solid var(--color-highlight);
  padding: 20px 0 20px 40px; margin-bottom: 60px; line-height: 1.6;
}

.tv-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.tv-column h4 { font-family: var(--font-display); font-size: 0.85rem; color: var(--color-highlight); margin-bottom: 32px; text-transform: uppercase; letter-spacing: 0.2em; }
.tv-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.tv-list li { font-size: 1rem; color: var(--color-text-muted); display: flex; gap: 12px; }
.tv-list li::before { content: '▸'; color: var(--color-accent); }

/* ===================================
   TURNAROUND COMPRAS
   =================================== */
#turnaround-compras { background: #070C18; }
.tc-wheel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 60px 0; }
.tc-item {
  background: var(--color-card-bg); border: 1px solid var(--color-card-border);
  padding: 24px; border-radius: 12px; cursor: none; transition: all 0.3s;
}
.tc-item:hover, .tc-item.active { border-color: var(--color-highlight); background: rgba(26, 111, 212, 0.1); transform: scale(1.05); box-shadow: var(--glow); }

.tc-number { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--color-highlight); opacity: 0.2; display: block; margin-bottom: 12px; transition: opacity 0.3s; }
.tc-item:hover .tc-number, .tc-item.active .tc-number { opacity: 1; }
.tc-label { font-size: 0.9rem; font-weight: 600; color: var(--color-text); }

.tc-detail {
  background: rgba(13, 26, 58, 0.6); border: 1px solid var(--color-accent);
  padding: 40px; border-radius: 16px; opacity: 0; transform: translateY(20px); transition: all 0.5s;
}
.tc-detail.visible { opacity: 1; transform: translateY(0); }
.tc-detail h4 { font-family: var(--font-display); color: var(--color-highlight); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.tc-detail p { font-size: 1.05rem; color: var(--color-text); line-height: 1.8; }

/* ===================================
   SETORES
   =================================== */
#setores { background: #040815; }
.setores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.setor-card {
  padding: 40px 30px; background: var(--color-card-bg); border: 1px solid var(--color-card-border);
  border-radius: 16px; text-align: center; transition: all 0.3s;
}
.setor-card:hover { border-color: var(--color-highlight); background: rgba(26, 111, 212, 0.08); transform: translateY(-8px); }
.setor-icon { display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; margin: 0 auto 24px; }
.setor-icon img { width: 100%; height: 100%; object-fit: contain; }
.setor-card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--color-text); margin-bottom: 16px; letter-spacing: 0.05em; }
.setor-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }

/* ===================================
   METODOLOGIA
   =================================== */
#metodologia { background: #0A0F1E; }
.timeline { position: relative; padding-left: 40px; max-width: 900px; margin-top: 80px; }
.timeline-line {
  position: absolute; left: 15px; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--color-highlight), var(--color-secondary));
  transform-origin: top; transform: scaleY(0);
}
.timeline-step { position: relative; padding: 0 0 80px 60px; }
.timeline-dot {
  position: absolute; left: -36px; top: 0; width: 24px; height: 24px;
  border-radius: 50%; background: var(--color-highlight);
  box-shadow: 0 0 20px var(--color-highlight); border: 4px solid var(--color-bg); z-index: 2;
}
.timeline-step-num { font-family: var(--font-display); font-size: 0.8rem; color: var(--color-highlight); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.2em; }
.timeline-step-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-text); margin-bottom: 16px; }
.timeline-step-text { font-size: 1.05rem; color: var(--color-text-muted); max-width: 600px; }

/* ===================================
   CONTATO
   =================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.contact-lead { font-size: 1.25rem; color: var(--color-text); margin-bottom: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.ct-item { display: flex; align-items: center; gap: 20px; }
.ct-icon { font-size: 1.8rem; height: 60px; width: 60px; background: rgba(26, 111, 212, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ct-item p { font-size: 1.1rem; color: var(--color-text-muted); }
.ct-item a { color: inherit; text-decoration: none; transition: color 0.3s; }
.ct-item a:hover { color: var(--color-highlight); }

.contact-form-wrap { background: #0D1A3A; padding: 60px; border-radius: 24px; border: 1px solid var(--color-card-border); }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-text-muted); }
.form-group input, .form-group textarea {
  background: #081226; border: 1px solid rgba(26, 111, 212, 0.2); border-radius: 8px;
  padding: 18px; color: white; font-family: var(--font-body); outline: none; transition: all 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-highlight); box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1); }
.form-group textarea { min-height: 150px; resize: vertical; }

.btn-submit {
  padding: 20px; background: var(--color-highlight); color: var(--color-bg);
  border: none; border-radius: 8px; font-family: var(--font-display); font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; cursor: none; transition: all 0.3s;
}
.btn-submit:hover { background: white; transform: translateY(-3px); box-shadow: var(--glow-strong); }

/* ===================================
   FOOTER
   =================================== */
.footer { background: #040815; border-top: 1px solid rgba(26, 111, 212, 0.1); padding: 100px 0 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.footer-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 80px; }
.footer-logo { font-family: var(--font-exacta); font-size: 2rem; font-weight: 700; color: white; text-decoration: none; letter-spacing: 0.12em; }
.footer-logo span { color: var(--color-highlight); }
.footer-tagline { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 10px; }

.footer-links { list-style: none; display: flex; gap: 40px; }
.footer-links a { color: var(--color-text-muted); text-decoration: none; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; transition: color 0.3s; }
.footer-links a:hover { color: var(--color-highlight); }

.footer-bottom { border-top: 1px solid rgba(26, 111, 212, 0.05); padding-top: 40px; display: flex; justify-content: space-between; font-size: 0.75rem; color: #3A4A60; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1100px) {
  .hero-stats-bar { gap: 20px; padding: 20px; }
  .praticas-grid, .tc-wheel, .setores-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: 1fr; }
  .practice-premium { padding: 32px 28px; }
}

@media (max-width: 900px) {
  .section-inner { padding: 100px 30px; }
  .hero-title { font-size: 4.5rem; }
  .contact-grid, .tv-columns { grid-template-columns: 1fr; gap: 50px; }
  .sobre-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 40px;
    column-gap: 0;
  }
  .sobre-photo-wrap {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
    justify-self: center;
    max-width: 280px;
  }
  .sobre-head {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
    align-items: center;
  }
  .sobre-head-line { margin-left: auto; margin-right: auto; }
  .sobre-title-row--indented { padding-left: 0; }
  .sobre-body {
    grid-column: 1;
    grid-row: 3;
    text-align: center;
    max-width: 100%;
  }
  .sobre-tags { justify-content: center; }
  .footer-top { flex-direction: column; gap: 60px; }
  .footer-links { flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
  .card-3d { height: 400px; }
  .practice-premium { padding: 28px 22px; }
  .practice-tag { font-size: 0.68rem; padding: 7px 11px; }
  .navbar { padding: 20px 30px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: #0D1A3A; flex-direction: column; justify-content: center;
    transition: 0.5s cubic-bezier(0.8, 0, 0.2, 1); box-shadow: -10px 0 50px rgba(0,0,0,0.5);
  }
  .nav-links.active { right: 0; }
  .mobile-menu-toggle { display: block; }
  .hero-stats-bar { display: none; }
  .hero-btns { flex-direction: column; width: 100%; }
  .tc-wheel { grid-template-columns: 1fr; }
  .setores-grid { grid-template-columns: 1fr; }
  .praticas-grid { grid-template-columns: 1fr; }
}
