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

:root {
  --bg-dark:    #0B0B0D;
  --bg-mid:     #111115;
  --bg-card:    #141418;
  --bg-alt:     #0E0E12;
  --border:     rgba(255,255,255,0.07);
  --blue:       #1C2A44;
  --blue-light: #2A3F63;
  --blue-glow:  rgba(28,42,68,0.6);
  --text:       #EDEDED;
  --text-muted: #8A8A99;
  --text-dim:   #5A5A6A;
  --accent:     #4D7AFF;
  --font-sans:  'Inter', sans-serif;
  --font-serif: 'Lora', serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (hover: hover) {
  body { cursor: none; }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

strong {
  font-weight: 600;
  color: #fff;
}

/* =============================================
   CURSOR
   ============================================= */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease;
  mix-blend-mode: screen;
}

body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot {
  width: 20px;
  height: 20px;
  background: rgba(77,122,255,0.6);
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 2px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}

.navbar.scrolled {
  background: rgba(11,11,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s;
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

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

/* Item destacado: Treinamentos */
.nav-link-highlight {
  color: var(--accent) !important;
  font-weight: 500 !important;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(77,122,255,0.35);
  border-radius: 100px;
  transition: color 0.2s, background 0.2s, border-color 0.2s !important;
}

.nav-link-highlight:hover {
  background: rgba(77,122,255,0.12) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* =============================================
   LAYOUT BASE
   ============================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 120px 0;
}

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

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, var(--blue-glow), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(77,122,255,0.04), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-tag-dot {
  color: #4D7AFF;
  font-size: 0.5rem;
  vertical-align: middle;
  opacity: 0.85;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
  text-shadow: 0 0 40px rgba(77,122,255,0.25);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hero-btn:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(77,122,255,0.12);
  box-shadow: 0 0 18px rgba(77,122,255,0.2);
}

.hero-btn::after {
  content: '↓';
  display: inline;
}

/* ── Foto Hero (cutout style) ────────────────── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Sombra 3D azul atrás da figura */
.hero-photo-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 88%;
  background: radial-gradient(ellipse 70% 80% at 50% 60%, #1C2A44 0%, #2A3F63 30%, transparent 72%);
  filter: blur(32px);
  z-index: 0;
  border-radius: 50%;
  opacity: 0.85;
}

/* Brilho azul vivo mais concentrado no centro */
.hero-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 70%, rgba(77,122,255,0.22) 0%, transparent 65%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  /* Corte no tronco: mostra da cabeça até ~70% do corpo */
  mask-image: linear-gradient(to bottom, black 55%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 92%);
  filter: drop-shadow(0 8px 32px rgba(28,42,68,0.7));
  transition: transform 0.6s ease;
}

.hero-photo-frame:hover .hero-photo {
  transform: translateY(-6px);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--text-dim));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

/* =============================================
   HISTÓRIA
   ============================================= */
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.historia-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.85;
}

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

.historia-quote {
  position: sticky;
  top: 120px;
}

.historia-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  margin-bottom: 2rem;
}

.empresas-passagem {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.empresas-passagem span {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* =============================================
   HOJE
   ============================================= */
.hoje-text {
  max-width: 640px;
  margin-bottom: 3rem;
}

.hoje-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.hoje-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.hoje-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.hoje-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.2rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  text-align: center;
  width: 100%;
}

.hoje-card:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}

.hoje-card-link {
  cursor: none;
}

.hoje-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* Carbee Logo */
.carbee-logo-wrap {
  background: #8B00FF;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}

.carbee-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Spotz Logo */
.spotz-logo-wrap {
  background: linear-gradient(135deg, #FF6B6B, #C850C0);
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}

.spotz-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Renan Araujo Imóveis Logo */
.renan-logo-wrap {
  background: #111115;
  border: 1px solid rgba(200,160,60,0.2);
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
}

.renan-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Re Petit Logo */
.hoje-card-logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}

.repetit-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hoje-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hoje-card-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.hoje-card-info span {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* =============================================
   O QUE FAZ
   ============================================= */
.faz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faz-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.faz-card:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.025);
  transform: translateY(-3px);
}

.faz-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

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

.faz-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}

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

/* =============================================
   MERCADO
   ============================================= */
.mercado-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mercado-opener {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.mercado-text > p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.mercado-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mercado-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55em;
  flex-shrink: 0;
}

.mercado-close {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Visual mercado */
.mercado-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mv-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
}

.mv-item span {
  width: 170px;
  color: var(--text-dim);
  flex-shrink: 0;
}

.mv-item strong {
  width: 40px;
  text-align: right;
  font-size: 0.8rem;
  color: var(--accent);
}

.mv-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.mv-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--blue-light), var(--accent));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.mv-bar.animate::after {
  animation: barGrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.mv-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  font-style: italic;
}

/* =============================================
   EMPRESAS
   ============================================= */
.empresas-grid {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 2rem;
}

.empresa-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.empresa-card-link:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.025);
  transform: translateY(-3px);
  cursor: none;
}

.empresa-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

/* Maub logo wrap */
.empresa-logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.maub-logo-wrap {
  background: #fff;
  padding: 4px;
}

.zenthor-logo-wrap {
  background: #111115;
  padding: 3px;
  border: 1px solid rgba(200,160,60,0.25);
}

.empresa-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.empresa-link-hint {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}

.empresa-card-link:hover .empresa-link-hint {
  opacity: 1;
  transform: translateY(0);
}

.empresa-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.maub-icon {
  background: linear-gradient(135deg, #1C2A44, #2A3F63);
  color: #7da0e0;
}

.zenthor-icon {
  background: linear-gradient(135deg, #2a1c44, #3f2a63);
  color: #a07de0;
}

.empresa-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.empresa-header h4 sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0;
}

.empresa-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.empresa-tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.empresa-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 1.2rem;
  flex-shrink: 0;
  align-self: stretch;
}

.divider-line {
  width: 1px;
  flex: 1;
  max-height: 60px;
  background: var(--border);
}

.empresas-nota {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

/* =============================================
   COMO PENSA
   ============================================= */
.pensa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pensa-item {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.25s, transform 0.25s;
}

.pensa-item:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.pensa-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.pensa-item p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

/* =============================================
   PRÓXIMOS PASSOS
   ============================================= */
.proximos {
  background: linear-gradient(135deg, var(--bg-mid), var(--blue) 80%);
  position: relative;
  overflow: hidden;
}

.proximos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(77,122,255,0.08), transparent);
  pointer-events: none;
}

.proximos-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.proximos-inner .section-title {
  margin-bottom: 1rem;
}

.proximos-inner > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

/* Grid de contato */
.contato-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
}

.contato-card:hover {
  background: rgba(77,122,255,0.1);
  border-color: rgba(77,122,255,0.35);
  transform: translateY(-2px);
}

.contato-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(77,122,255,0.12);
  border: 1px solid rgba(77,122,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contato-icon svg {
  width: 18px;
  height: 18px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.contato-info strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.contato-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contato-arrow {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.contato-card:hover .contato-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.footer-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.footer-divider {
  color: var(--text-dim);
}

.footer-companies {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-companies sup {
  font-size: 0.6em;
  vertical-align: super;
  opacity: 0.6;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* =============================================
   RESPONSIVE
   ============================================= */
.br-desktop { display: inline; }

@media (max-width: 900px) {
  /* Hero tablet: colunas menores mas mantém lado a lado */
  .hero-inner {
    gap: 2rem;
  }

  .hero-photo-frame {
    max-width: 300px;
  }

  .historia-grid,
  .mercado-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .historia-quote {
    position: static;
  }

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

  .empresas-grid {
    flex-direction: column;
  }

  .empresa-divider {
    flex-direction: row;
  }

  .empresa-divider .divider-line {
    width: 40px;
    height: 1px;
  }

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

  .mv-item span {
    width: 130px;
  }
}

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

  /* Hero mobile: coluna única, foto abaixo */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1.5rem;
    padding-top: 5rem;
  }

  .hero-photo-frame {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-photo {
    max-height: 360px;
  }

  .hero-photo-wrap {
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11,11,13,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    padding: 0;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
  }

  .hamburger {
    display: flex;
  }

  .br-desktop { display: none; }

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

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

  .hero-name {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .proximos-inner {
    max-width: 100%;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }
}
/* Ícone do menu membros */
.nav-members {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-members .nav-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
/* =============================================
   HERO CTA (botões lado a lado)
   ============================================= */

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Remove a seta padrão dos botões */
.hero-btn::after {
  display: none;
}

/* Botão base (já existente, mas garantimos consistência) */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.25s ease;
}

/* Hover botão secundário */
.hero-btn:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(77,122,255,0.12);
  box-shadow: 0 0 18px rgba(77,122,255,0.2);
}

/* Botão principal (WhatsApp) */
.hero-btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-weight: 500;
}

/* Hover botão principal */
.hero-btn-primary:hover {
  background: #3a66ee;
  border-color: #3a66ee;
  box-shadow: 0 8px 28px rgba(77,122,255,0.35);
  transform: translateY(-1px);
}

/* =============================================
   RESPONSIVO (mobile)
   ============================================= */

@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }
}
/* =============================================
   TREINAMENTO HOME — BLOCO ÚNICO
   ============================================= */

.treinamento-home {
  position: relative;
  overflow: hidden;
}

.treinamento-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 42% at 80% 50%, rgba(77,122,255,0.08), transparent),
    radial-gradient(ellipse 28% 28% at 18% 82%, rgba(28,42,68,0.24), transparent);
  pointer-events: none;
}

.treinamento-home-single {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(77,122,255,0.14);
  border-radius: 24px;
  padding: 3.2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}

.treinamento-home-single .section-title {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.treinamento-home-lead {
  max-width: 820px;
  font-size: 1.04rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.treinamento-home-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.treinamento-highlight {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.25rem 1.1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.treinamento-highlight:hover {
  transform: translateY(-2px);
  border-color: rgba(77,122,255,0.22);
  background: rgba(77,122,255,0.05);
}

.treinamento-highlight span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.treinamento-highlight p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.treinamento-home-copy {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.treinamento-home-copy p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.treinamento-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.treinamento-home-actions .hero-btn {
  min-height: 48px;
  padding: 0.9rem 1.6rem;
}

.treinamento-home-actions .hero-btn-primary {
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(77,122,255,0.22);
}

.treinamento-home-actions .hero-btn-primary:hover {
  box-shadow: 0 14px 36px rgba(77,122,255,0.34);
}

@media (max-width: 980px) {
  .treinamento-home-highlights {
    grid-template-columns: 1fr;
  }

  .treinamento-home-single {
    padding: 2.4rem;
  }
}

@media (max-width: 640px) {
  .treinamento-home-single {
    padding: 2rem 1.4rem;
    border-radius: 18px;
  }

  .treinamento-home-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .treinamento-home-actions .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .treinamento-home-lead {
    font-size: 0.98rem;
  }
}
.text-accent {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(77,122,255,0.25);
}
