/* ===================================================
   EVOLVERE CONSULTORIA — Global Stylesheet v2
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* --- Variables --- */
:root {
  /* Navy scale */
  --navy-abyss:   #020215;
  --navy-deep:    #050520;
  --navy-dark:    #0a0a35;
  --navy:         #0f0f50;
  --navy-mid:     #1a1a6e;
  --navy-light:   #2d2d8a;

  /* Orange */
  --orange:       #ff6b00;
  --orange-hover: #ff8533;
  --orange-tint:  #fff0e5;

  /* Neutrals warm */
  --warm-light:   #f8f7f5;
  --warm-mid:     #eae8e4;
  --bg-light:     #f8f7f5;
  --white:        #ffffff;
  --gray:         #555555;
  --dark:         #232323;
  --text-muted:   #888;
  --border:       rgba(255,255,255,0.08);
  --transition:   0.3s ease;
  --radius:       12px;
  --radius-lg:    20px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 { line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.75; }
.display-font { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

/* --- Utility --- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 3rem; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.25);
}
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.btn-outline-orange { border: 2px solid var(--orange); color: var(--orange); background: transparent; }
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }
.btn-outline-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 6px; font-size: 0.95rem;
  font-weight: 500; color: rgba(255,255,255,0.7);
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition); letter-spacing: 0.02em;
}
.btn-outline-hero:hover {
  color: var(--white); border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}
.btn-link { color: var(--orange); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; transition: var(--transition); }
.btn-link:hover { gap: 0.7rem; }
.btn-link-white { color: var(--white); font-weight: 500; display: inline-flex; align-items: center; gap: 0.4rem; opacity: 0.8; transition: var(--transition); }
.btn-link-white:hover { opacity: 1; gap: 0.7rem; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(5,5,32,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 50px; width: auto; }
.nav-logo span { font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.nav-logo span em { color: var(--orange); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 400;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-wa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-wa:hover { background: var(--orange-hover); transform: translateY(-1px); }
.nav-wa svg { width: 16px; height: 16px; fill: currentColor; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Instagram icon button — nav-actions */
.nav-ig-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: rgba(255,255,255,0.65);
  flex-shrink: 0;
}
.nav-ig-btn:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.2); }
.nav-ig-btn svg { width: 17px; height: 17px; fill: currentColor; }

/* Instagram in nav-links — hidden on desktop, shown only in mobile open menu */
.nav-ig { display: none; }

/* =============================================
   HERO — Full-width dark layout
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
  background: var(--navy-abyss);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26,26,110,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(45,45,138,0.18) 0%, transparent 60%),
    linear-gradient(175deg, var(--navy-deep) 0%, var(--navy-abyss) 40%, #010110 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 1.75rem; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; padding: 0.4rem 1.1rem 0.4rem 0.7rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 400;
  width: fit-content; letter-spacing: 0.02em;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* Title */
.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-title em { font-style: normal; color: var(--white); }

/* Typewriter effect */
.typewriter-word { color: var(--orange); font-style: italic; }
.typewriter-cursor {
  display: inline-block;
  width: 3px; height: 0.82em;
  background: var(--orange);
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 1px;
  animation: cursor-blink 0.75s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.05rem; line-height: 1.78;
  color: rgba(255,255,255,0.42); max-width: 520px; font-weight: 300;
}

/* CTA row */
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Social proof */
.hero-proof { display: flex; align-items: center; gap: 1rem; }
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--navy-abyss);
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.8);
  margin-left: -8px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-proof-text { font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.5; }
.hero-proof-text strong { color: rgba(255,255,255,0.6); font-weight: 500; display: block; }

/* Hero right — stats cards */
.hero-right { display: flex; flex-direction: column; gap: 1rem; }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 1.5rem;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.hero-stat-box::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.3), transparent);
  opacity: 0; transition: opacity 0.35s ease;
}
.hero-stat-box:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); transform: translateY(-2px); }
.hero-stat-box:hover::before { opacity: 1; }
.hero-stat-box .big-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.4rem; font-weight: 400;
  color: var(--white); line-height: 1; display: block; margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.hero-stat-box p { font-size: 0.78rem; color: rgba(255,255,255,0.32); font-weight: 400; }

/* Featured stat bar */
.hero-stat-featured {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.hero-stat-featured-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28); font-weight: 500;
}
.hero-stat-featured-value { font-size: 1rem; color: var(--white); font-weight: 400; margin-top: 0.2rem; }
.hero-stat-bar {
  width: 140px; height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden; flex-shrink: 0;
}
.hero-stat-bar-fill {
  height: 100%; width: 0; background: var(--orange);
  border-radius: 2px;
  animation: bar-fill 2s ease forwards 1.8s;
}
@keyframes bar-fill { to { width: 100%; } }

/* =============================================
   STATS BAR
   ============================================= */
.clients-bar {
  background: var(--navy-deep);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.clients-bar-label {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.clients-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.clients-bar-logos span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s;
  cursor: default;
}
.clients-bar-logos span:hover { color: rgba(255,255,255,0.72); }

/* =============================================
   WAVE DIVIDERS — removed
   ============================================= */
.wave-divider { display: none; }

/* =============================================
   VIDEO INSTITUCIONAL
   ============================================= */
.section-video-inst { background: var(--warm-light); }
.section-video-inst { position: relative; overflow: hidden; }
.section-video-inst .container { position: relative; z-index: 2; }
.video-inst-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.video-inst-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,15,80,0.12);
  aspect-ratio: 16/9;
  position: relative;
}
.video-inst-frame::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(255,107,0,0.35);
  border-radius: calc(var(--radius-lg) + 6px);
  pointer-events: none;
}
.video-inst-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.video-eagle-watermark {
  position: absolute; bottom: -2rem; right: -3rem;
  width: 400px; max-width: 38vw;
  pointer-events: none; z-index: 1;
}
.video-eagle-watermark img {
  width: 100%; height: auto; display: block; opacity: 0.08;
  filter: brightness(0);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, transparent 80%);
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, transparent 80%);
}

/* =============================================
   ABOUT / BRIDGE SECTION
   ============================================= */
.section-bridge {
  background: var(--navy-dark);
  color: var(--white);
  position: relative; overflow: hidden;
}
.bridge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bridge-statement {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
}
.bridge-statement em { color: var(--orange); font-style: normal; }
.bridge-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.bridge-stat .big {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem; font-weight: 400; color: var(--white); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.bridge-stat .label { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }
.bridge-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.bridge-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.bridge-card:hover {
  background: rgba(255,107,0,0.07);
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-4px);
}
.bridge-card-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,0,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.bridge-card-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.bridge-card h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.05rem; }
.bridge-card p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 1rem; }

/* =============================================
   HOW WE WORK (Modo de Atuar)
   ============================================= */
.section-how { background: var(--warm-light); }
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.how-inner.reverse { direction: rtl; }
.how-inner.reverse > * { direction: ltr; }
.how-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.how-label::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--orange);
}
.how-title { color: var(--navy); margin-bottom: 1.2rem; }
.how-text { color: var(--gray); margin-bottom: 1.5rem; font-size: 1rem; }
.how-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.how-pill {
  background: var(--white);
  border: 1px solid var(--warm-mid);
  color: var(--navy);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
}
.how-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.how-visual img { width: 100%; height: 100%; object-fit: cover; }
.how-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,80,0.5), rgba(255,107,0,0.12));
}
.how-visual-tag {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--orange); color: var(--white);
  padding: 0.65rem 1.25rem; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem; z-index: 2;
}
.how-visual-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =============================================
   SERVICES
   ============================================= */
.section-services { background: var(--navy-dark); color: var(--white); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title { color: var(--white); }
.section-title.dark { color: var(--navy); }
.section-subtitle { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 580px; margin: 1rem auto 0; }
.section-subtitle.dark { color: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--orange); }
.service-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.75rem; }
.service-card p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 1.5rem; }
.service-card-link {
  color: var(--orange); font-size: 0.85rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.service-card-link:hover { gap: 0.8rem; }

/* =============================================
   TEMAS DE ATUAÇÃO
   ============================================= */
.section-temas { background: var(--warm-light); }
.temas-tabs {
  display: flex; gap: 0.75rem; margin-bottom: 3rem;
  flex-wrap: wrap; justify-content: center;
}
.tema-tab {
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  background: var(--white); color: var(--navy);
  border: 1px solid var(--warm-mid);
  cursor: pointer; transition: var(--transition);
}
.tema-tab.active, .tema-tab:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.temas-panel { display: none; }
.temas-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.tema-item {
  background: var(--white);
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
}
.tema-item:hover {
  border-color: rgba(255,107,0,0.3);
  box-shadow: 0 4px 20px rgba(255,107,0,0.08);
  transform: translateX(4px);
}
.tema-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-top: 7px; flex-shrink: 0; }
.tema-item h5 { color: var(--navy); font-size: 0.92rem; margin-bottom: 0.3rem; }
.tema-item p { color: var(--gray); font-size: 0.8rem; }

/* =============================================
   PROBLEMAS / BOTTLENECK
   ============================================= */
.section-problems { background: var(--navy-dark); color: var(--white); }
.problems-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.2);
  color: var(--orange); padding: 0.35rem 1rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 2rem;
}
.problems-title { color: var(--white); max-width: 700px; margin-bottom: 1rem; }
.problems-sub { color: rgba(255,255,255,0.5); max-width: 600px; margin-bottom: 4rem; font-size: 1rem; }
.problems-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 2rem;
  position: relative; overflow: hidden;
}
.problem-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--orange), transparent);
}
.problem-card h4 { color: var(--orange); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.8rem; }
.problem-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; font-style: italic; }
.problem-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.18);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.problem-icon svg { width: 24px; height: 24px; fill: var(--orange); }

/* =============================================
   ESPECIALISTAS
   ============================================= */
.section-team { background: var(--warm-light); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.team-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--warm-mid); transition: var(--transition);
  background: var(--white);
}
.team-card:hover {
  box-shadow: 0 20px 60px rgba(15,15,80,0.1);
  transform: translateY(-6px);
}
.team-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  position: relative; overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,80,0.88) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.team-card:hover .team-photo-overlay { opacity: 1; }
.team-photo-overlay p { color: var(--white); font-size: 0.82rem; line-height: 1.5; }
.team-info { padding: 1.5rem; }
.team-info h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-info .role { color: var(--orange); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem; }
.team-info .tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.75rem; }
.team-tag {
  background: var(--warm-light); color: var(--navy);
  padding: 0.22rem 0.65rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 500;
}
.team-slide-img { width: 100%; height: 100%; object-fit: cover; object-position: 18% center; display: block; transition: transform 0.4s ease; }
.team-card:hover .team-slide-img { transform: scale(1.05); }

/* =============================================
   CLIENTS LOGOS
   ============================================= */
.section-clients { background: var(--warm-light); }
.clients-carousel-wrap {
  position: relative; overflow: hidden; padding: 1.5rem 0;
}
.clients-carousel-wrap::before, .clients-carousel-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.clients-carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--warm-light) 20%, transparent); }
.clients-carousel-wrap::after { right: 0; background: linear-gradient(to left, var(--warm-light) 20%, transparent); }
.carousel-track {
  display: flex; gap: 1.25rem;
  width: max-content;
  animation: scroll-logos 38s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-logo {
  background: var(--white); border: 1px solid var(--warm-mid);
  border-radius: var(--radius); padding: 0 1.75rem;
  min-width: 150px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 600; font-size: 0.8rem; color: #bbb;
  transition: var(--transition); white-space: nowrap;
}
.carousel-logo:hover { border-color: rgba(255,107,0,0.3); color: var(--navy); box-shadow: 0 4px 20px rgba(255,107,0,0.08); }

/* =============================================
   PROJECTS
   ============================================= */
.section-projects { background: var(--warm-light); }
.featured-case {
  background: var(--navy-dark);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  min-height: 360px; margin-bottom: 4rem;
}
.featured-case-left {
  padding: 3rem; display: flex;
  flex-direction: column; justify-content: space-between;
}
.case-quote { color: rgba(255,255,255,0.85); font-size: 1rem; font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; }
.case-author { color: var(--orange); font-weight: 600; font-size: 0.88rem; }
.case-author span { color: rgba(255,255,255,0.5); font-weight: 400; display: block; font-size: 0.8rem; margin-top: 0.2rem; }
.featured-case-center { position: relative; overflow: hidden; }
.featured-case-center iframe { width: 100%; height: 100%; min-height: 340px; border: none; }
.featured-case-right {
  padding: 3rem; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  background: rgba(255,107,0,0.08);
}
.case-metric { font-family: 'DM Serif Display', Georgia, serif; font-size: 3.5rem; font-weight: 400; color: var(--orange); line-height: 1; }
.case-metric-label { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 0.5rem; margin-bottom: 2rem; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.video-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--warm-mid); transition: var(--transition); background: var(--white);
}
.video-card:hover { box-shadow: 0 12px 40px rgba(15,15,80,0.1); transform: translateY(-4px); }
.video-card iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.video-card-info { padding: 1rem 1.2rem; }
.video-card-info p { font-size: 0.85rem; color: var(--gray); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.section-testimonials { background: var(--navy-dark); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 1.5rem; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 380px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 2.5rem; flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.testimonial-card:hover { background: rgba(255,255,255,0.06); transform: scale(1.01); }
.testimonial-stars { color: var(--orange); font-size: 1rem; margin-bottom: 1.2rem; letter-spacing: 3px; }
.testimonial-text { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--orange); font-size: 0.88rem; flex-shrink: 0;
}
.testimonial-name { color: var(--white); font-weight: 600; font-size: 0.92rem; }
.testimonial-role { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 3rem; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* =============================================
   FAQ
   ============================================= */
.section-faq { background: var(--warm-light); }
.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(255,107,0,0.3); }
.faq-question {
  width: 100%; text-align: left;
  padding: 1.4rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; cursor: pointer;
  background: none; color: var(--navy);
  font-size: 0.98rem; font-weight: 600; font-family: 'Poppins', sans-serif;
  line-height: 1.4; transition: color 0.3s ease;
}
.faq-item.open .faq-question { color: var(--orange); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; background: var(--warm-light);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s ease, background 0.3s ease;
  font-size: 1.1rem; color: var(--navy); font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(255,107,0,0.1); color: var(--orange); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.75rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.75rem 1.5rem; }
.faq-answer p { color: var(--gray); font-size: 0.92rem; line-height: 1.75; }

/* =============================================
   CTA FINAL
   ============================================= */
.section-cta {
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.1), transparent 70%);
}
.section-cta::after {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,26,110,0.4), transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-inner .section-label { color: rgba(255,107,0,0.85); }
.cta-title { color: var(--white); margin-bottom: 1.2rem; }
.cta-title em { color: var(--orange); font-style: normal; }
.cta-text { color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.cta-trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.cta-trust-item svg { width: 16px; height: 16px; fill: var(--orange); }

/* =============================================
   LEAD FORM / CONTACT
   ============================================= */
.section-contact { background: var(--warm-light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(255,107,0,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.contact-detail h5 { color: var(--navy); font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-detail p { color: var(--gray); font-size: 0.92rem; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 4px 30px rgba(15,15,80,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--warm-mid); border-radius: 8px;
  font-family: inherit; font-size: 0.9rem; color: var(--dark);
  background: var(--warm-light); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

/* =============================================
   LANDING v3 — Hero limpo (Doc 6)
   ============================================= */
.hero-v3 { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 4rem; }
.hero-v3-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-title-v3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin: 1.5rem 0 1.75rem;
}
.hero-title-v3 em {
  color: var(--orange);
  font-style: italic;
}
.hero-subtitle-v3 {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.hero-scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  border-radius: 100px;
  transition: color 0.25s;
  cursor: pointer;
}
.hero-scroll-cue:hover { color: var(--orange); }
.hero-scroll-cue svg {
  width: 22px; height: 22px;
  animation: cueBounce 1.8s ease-in-out infinite;
}
@keyframes cueBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Problem card tag */
.problem-card-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

/* =============================================
   COMO RESOLVEMOS
   ============================================= */
.section-como { background: var(--warm-light); }
.como-header { text-align: center; max-width: 780px; margin: 0 auto 3rem; }
.como-header h2 { color: var(--navy); margin: 1rem 0 1.25rem; }
.como-header em { color: var(--orange); font-style: italic; }
.como-lead { color: var(--gray); font-size: 1.02rem; line-height: 1.7; }

.como-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
  margin: 3rem 0;
  border-top: 1px solid rgba(15,15,80,0.08);
  border-bottom: 1px solid rgba(15,15,80,0.08);
  text-align: center;
}
.como-stat-num {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.como-stat p {
  color: var(--gray);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.como-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}
.como-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--orange);
  transition: transform 0.25s, box-shadow 0.25s;
}
.como-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,15,80,0.08); }
.como-card-num {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.como-card h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.como-card p {
  color: var(--gray);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .como-stats { grid-template-columns: repeat(2, 1fr); }
  .como-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .como-stats { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* =============================================
   CASES COM RESULTADOS
   ============================================= */
.section-cases { background: var(--warm-light); }
.section-cases .section-header { margin-bottom: 3rem; }
.section-cases .section-header em { color: var(--orange); font-style: italic; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.case-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--warm-mid);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,15,80,0.08); }
.case-client {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--warm-mid);
}
.case-block { margin-bottom: 1.25rem; }
.case-block h5 {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.case-block p { color: var(--navy); font-size: 0.95rem; line-height: 1.5; }
.case-result {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 2px solid var(--orange);
}
.case-result-label {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.case-result p {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 1024px) { .cases-grid { grid-template-columns: 1fr; } }

.services-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* =============================================
   TEAM CENTRAL — Igor protagonista
   ============================================= */
.team-central {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.team-central-photo img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}
.team-central-role {
  display: inline-block;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.team-central-info h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
}
.team-central-info p {
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.team-central-team-line {
  padding-left: 1rem;
  border-left: 2px solid var(--orange);
  font-style: italic;
  color: var(--navy) !important;
}

@media (max-width: 1024px) {
  .team-central { grid-template-columns: 1fr; gap: 2rem; }
  .team-central-photo { text-align: center; }
}

/* =============================================
   TESTIMONIALS V3 (grid + logos inline)
   ============================================= */
.testimonials-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}
.testimonial-v3-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--warm-mid);
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-v3-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(15,15,80,0.1); }
.testimonial-v3-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-v3-play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.testimonial-v3-play svg { width: 22px; height: 22px; margin-left: 3px; }
.testimonial-v3-card:hover .testimonial-v3-play { transform: scale(1.08); }

.testimonial-v3-quote {
  padding: 1.5rem 1.5rem 0;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  min-height: 4.5em;
}
.testimonial-v3-author {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--warm-mid);
  margin-top: 1rem;
}
.testimonial-v3-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.testimonial-v3-author span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .testimonials-v3-grid { grid-template-columns: 1fr; }
}

/* Clients section — light bg, white cards grayscale style (referência Nossos Clientes) */
.section-clients-inline {
  background: var(--warm-light);
  padding: 4rem 0 4.5rem;
}
.clients-inline-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.clients-inline-header .how-label {
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.clients-inline-header h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}
.clients-inline-header .accent-bar {
  width: 46px; height: 3px;
  background: var(--orange);
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}
.clients-inline-header p {
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.6;
}
.clients-marquee-inline {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}
.clients-marquee-inline::before,
.clients-marquee-inline::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2; pointer-events: none;
}
.clients-marquee-inline::before { left: 0;  background: linear-gradient(to right, var(--warm-light), transparent); }
.clients-marquee-inline::after  { right: 0; background: linear-gradient(to left,  var(--warm-light), transparent); }
.clients-marquee-inline-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  width: max-content;
  animation: scroll-logos-inline 34s linear infinite;
}
.clients-marquee-inline:hover .clients-marquee-inline-track { animation-play-state: paused; }
.client-logo-card {
  background: var(--white);
  border: 1px solid var(--warm-mid);
  border-radius: 12px;
  padding: 0 2rem;
  min-width: 180px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.client-logo-card span {
  color: #b8b8c2;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
.client-logo-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(255,107,0,0.12);
  transform: translateY(-3px);
}
.client-logo-card:hover span { color: var(--navy); }
@keyframes scroll-logos-inline {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 480px) {
  .client-logo-card { min-width: 140px; height: 82px; padding: 0 1.4rem; }
  .client-logo-card span { font-size: 0.82rem; }
}

/* CTA pills abaixo dos botões */
.cta-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.cta-pills span {
  padding: 0.4rem 0.95rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
}

/* =============================================
   ESPECIALISTAS v2 — Origem + CEO + Time
   ============================================= */
.section-origem { background: var(--warm-light); }
.origem-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: center;
}
.origem-photo {
  width: 100%; max-width: 420px;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(15,15,80,0.15);
}
.origem-inner h2 { color: var(--navy); margin-bottom: 1.5rem; }
.origem-inner p { color: var(--gray); margin-bottom: 1.2rem; line-height: 1.7; font-size: 1.02rem; }
.origem-inner em { color: var(--navy); font-style: italic; font-weight: 500; }

.section-ceo { background: var(--navy-dark); color: var(--white); }
.ceo-inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem; align-items: start;
}
.ceo-photo-wrap { position: relative; }
.ceo-photo {
  width: 100%; max-width: 460px;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.ceo-badge {
  position: absolute; bottom: -1rem; left: 1rem;
  background: var(--orange); color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 12px 30px rgba(255,107,0,0.35);
}
.ceo-content .how-label { color: var(--orange); }
.ceo-role {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.ceo-content p { color: rgba(255,255,255,0.75); margin-bottom: 1.15rem; line-height: 1.7; }
.ceo-content strong { color: var(--white); }
.ceo-certifications {
  display: flex; flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.ceo-pill {
  padding: 0.42rem 0.95rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s;
}
.ceo-pill:hover { background: rgba(255,107,0,0.15); border-color: rgba(255,107,0,0.35); }

.section-alocacao { background: var(--warm-light); text-align: center; }
.alocacao-inner { max-width: 780px; margin: 0 auto; }
.alocacao-inner h2 { color: var(--navy); margin-bottom: 2rem; }
.alocacao-inner p { color: var(--gray); margin-bottom: 1.2rem; line-height: 1.75; font-size: 1.05rem; }
.alocacao-inner strong { color: var(--navy); }

.section-time { background: var(--white); }
.time-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.time-header h2 { color: var(--navy); margin-bottom: 1rem; }
.time-header p { color: var(--gray); font-size: 1.02rem; }
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.time-card {
  background: var(--warm-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.time-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(15,15,80,0.08); }
.time-card img {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  background: var(--warm-mid);
}
.time-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.35rem; }
.time-card p { color: var(--gray); font-size: 0.82rem; line-height: 1.4; }

@media (max-width: 1024px) {
  .origem-inner, .ceo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .time-grid { grid-template-columns: 1fr; }
}

/* =============================================
   WIZARD DE CONTATO — Diagnóstico Guiado
   ============================================= */
.wizard-intro { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.wizard-title {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.wizard-title em { color: var(--orange); font-style: italic; }
.wizard-lead { color: var(--gray); font-size: 1.02rem; line-height: 1.65; }

.wizard-shell {
  max-width: 760px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.75rem;
  box-shadow: 0 8px 40px rgba(15,15,80,0.08);
  position: relative;
}
.wizard-progress {
  display: flex; justify-content: center; gap: 0.65rem;
  margin-bottom: 2rem;
}
.wizard-dot {
  width: 32px; height: 4px; border-radius: 100px;
  background: var(--warm-mid);
  transition: background 0.3s ease, transform 0.3s ease;
}
.wizard-dot.active { background: #C8A96E; transform: scaleX(1.15); }

.wizard-step { display: none; animation: wizardFadeIn 0.4s ease; }
.wizard-step.active { display: block; }
@keyframes wizardFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.wizard-step-title {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-align: center;
}

.wizard-back {
  background: transparent; border: none;
  color: var(--text-muted); font-size: 0.85rem;
  cursor: pointer; margin-bottom: 1rem;
  padding: 0.4rem 0;
  transition: color 0.2s;
  font-family: inherit;
}
.wizard-back:hover { color: var(--navy); }

/* Cards Etapa 1 */
.wizard-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.wizard-card {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  background: var(--warm-light);
  border: 1.5px solid transparent;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.35;
  min-height: 68px;
}
.wizard-card:hover { border-color: #C8A96E; background: #fffbf3; }
.wizard-card.selected {
  border-color: #C8A96E; background: #fff8ea;
}
.wizard-card-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200, 169, 110, 0.12);
  color: #C8A96E;
}
.wizard-card-icon svg { width: 20px; height: 20px; }
.wizard-card-text { flex: 1; font-weight: 500; }
.wizard-card-full { grid-column: 1 / -1; }

.wizard-other {
  margin-top: 1.25rem;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.wizard-other textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--warm-mid); border-radius: 8px;
  font-family: inherit; font-size: 0.9rem;
  background: var(--warm-light); resize: vertical;
  outline: none;
}
.wizard-other textarea:focus { border-color: #C8A96E; background: var(--white); }

/* Pills Etapa 2 */
.wizard-fieldset {
  border: none; padding: 0; margin: 0 0 1.75rem 0;
}
.wizard-fieldset legend {
  color: var(--navy); font-weight: 600;
  font-size: 0.95rem; margin-bottom: 0.85rem;
  display: block; padding: 0;
}
.wizard-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.wizard-pill {
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--warm-mid);
  background: transparent;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
}
.wizard-pill:hover { border-color: #C8A96E; }
.wizard-pill.active {
  background: #C8A96E;
  color: #fff;
  border-color: #C8A96E;
}

.wizard-next-btn, .wizard-submit {
  width: 100%; padding: 1rem 1.4rem;
  background: #C8A96E;
  color: #fff;
  border: none; border-radius: 10px;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}
.wizard-next-btn:hover:not(:disabled), .wizard-submit:hover { background: #b89658; transform: translateY(-2px); }
.wizard-next-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* Etapa 3 - form */
.wizard-fields { display: flex; flex-direction: column; gap: 1.15rem; margin-top: 0.5rem; }
.wizard-field label {
  display: block; color: var(--navy);
  font-weight: 600; font-size: 0.85rem;
  margin-bottom: 0.45rem;
}
.wizard-field input {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--warm-mid); border-radius: 8px;
  font-family: inherit; font-size: 0.92rem;
  background: var(--warm-light); outline: none;
  transition: all 0.2s ease;
}
.wizard-field input:focus { border-color: #C8A96E; background: var(--white); box-shadow: 0 0 0 3px rgba(200,169,110,0.12); }

.wizard-channel-toggle {
  display: flex; gap: 0; margin-bottom: 0.65rem;
  border: 1.5px solid var(--warm-mid); border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.wizard-channel {
  padding: 0.5rem 1.2rem;
  background: transparent; border: none;
  font-family: inherit; font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.wizard-channel.active { background: var(--navy); color: #fff; }

.wizard-success {
  text-align: center; padding: 3rem 1rem;
}
.wizard-success-icon {
  font-size: 3rem; color: #6B8E4E;
  margin-bottom: 1rem; line-height: 1;
}
.wizard-success h3 {
  color: var(--navy); font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'DM Serif Display', Georgia, serif;
}
.wizard-success p { color: var(--gray); }

/* Prova social */
.wizard-proof {
  text-align: center; max-width: 760px; margin: 2.5rem auto 0;
  padding: 1.75rem 1.5rem;
  background: var(--warm-light);
  border-radius: var(--radius-lg);
}
.wizard-proof-lead {
  color: var(--navy); font-weight: 600;
  font-size: 0.95rem; margin-bottom: 1.2rem;
}
.wizard-proof-logos {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.wizard-proof-logos span {
  color: rgba(15,15,80,0.42);
  font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: color 0.2s;
}
.wizard-proof-logos span:hover { color: var(--navy); }
.wizard-proof-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
}

/* Canal direto */
.wizard-direct {
  text-align: center; max-width: 760px; margin: 2rem auto 0;
  padding: 1.5rem;
}
.wizard-direct p { color: var(--navy); font-weight: 600; margin-bottom: 0.85rem; }
.wizard-hours {
  display: block; color: var(--text-muted);
  font-size: 0.82rem; margin-top: 0.85rem;
  font-style: italic;
}

/* Wizard responsive */
@media (max-width: 768px) {
  .wizard-shell { padding: 2rem 1.5rem; }
  .wizard-cards { grid-template-columns: 1fr; }
  .wizard-card-full { grid-column: auto; }
  .wizard-pill { flex: 1 1 45%; text-align: center; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin: 1.2rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.65rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: rgba(255,255,255,0.55);
}
.social-btn:hover { background: var(--orange); color: var(--white); }
.social-btn svg { width: 17px; height: 17px; fill: currentColor; }
.footer-col h5 { color: var(--white); font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 0.78rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.wa-float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
  animation: float-pulse 3s infinite;
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
.wa-float-btn svg { width: 30px; height: 30px; fill: white; }
.wa-float-tooltip {
  background: var(--navy); color: var(--white);
  padding: 0.45rem 0.9rem; border-radius: 8px;
  font-size: 0.8rem; font-weight: 500; white-space: nowrap;
  opacity: 0; transform: translateX(10px); transition: var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }
@keyframes float-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.5), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 180px 0 100px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.breadcrumb span:last-child { color: var(--orange); }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 600px; margin-top: 1rem; }

/* =============================================
   BLOG
   ============================================= */
.section-blog { background: var(--warm-light); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--warm-mid); transition: var(--transition); background: var(--white);
}
.blog-card:hover { box-shadow: 0 16px 50px rgba(15,15,80,0.08); transform: translateY(-4px); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  overflow: hidden; position: relative;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--orange); color: var(--white);
  padding: 0.28rem 0.7rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.blog-info { padding: 1.75rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.blog-meta span { color: var(--text-muted); font-size: 0.78rem; }
.blog-info h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.7rem; line-height: 1.35; }
.blog-info p { color: var(--gray); font-size: 0.88rem; margin-bottom: 1.2rem; }
.blog-read-more { color: var(--orange); font-size: 0.85rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.4rem; transition: var(--transition); }
.blog-read-more:hover { gap: 0.8rem; }

/* =============================================
   BLOG v2 — featured + sidebar + colored category tags
   ============================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.blog-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--warm-mid);
  background: var(--white);
  transition: var(--transition);
}
.blog-featured:hover { box-shadow: 0 20px 60px rgba(15,15,80,0.1); transform: translateY(-4px); }
.blog-featured-link { display: block; color: inherit; }
.blog-featured-thumb {
  position: relative;
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  overflow: hidden;
}
.blog-featured-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.42;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.blog-featured:hover .blog-featured-thumb img { transform: scale(1.05); opacity: 0.55; }
.blog-featured-body { padding: 2rem 2.2rem 2.4rem; }
.blog-featured-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.blog-featured-summary { color: var(--gray); font-size: 0.98rem; line-height: 1.6; margin-bottom: 1.5rem; }

/* Category color tags */
.blog-tag {
  display: inline-block;
  padding: 0.32rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
}
.blog-tag[data-cat="lideranca"]   { background: #C8A96E; }
.blog-tag[data-cat="comunicacao"] { background: #2C6E7E; }
.blog-tag[data-cat="rh"]          { background: #6B8E4E; }
.blog-tag[data-cat="gestao"]      { background: #B85C38; }

/* Author row */
.blog-author-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--warm-mid);
}
.blog-author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; background: var(--warm-mid);
}
.blog-author-avatar-sm {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; background: var(--warm-mid);
}
.blog-author-row > div { display: flex; flex-direction: column; }
.blog-author-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; line-height: 1.2; }
.blog-meta-sm { color: var(--text-muted); font-size: 0.78rem; margin-top: 0.15rem; }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.75rem; }
.blog-filter-block {
  padding: 1.5rem;
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.blog-filter-block h5 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 600;
}
.blog-filter-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.blog-filter-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  background: transparent;
  border: 1px solid var(--warm-mid);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.blog-filter-tag:hover { border-color: var(--navy); }
.blog-filter-tag.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.blog-filter-tag .dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
}
.blog-filter-tag .dot[data-cat="lideranca"]   { background: #C8A96E; }
.blog-filter-tag .dot[data-cat="comunicacao"] { background: #2C6E7E; }
.blog-filter-tag .dot[data-cat="rh"]          { background: #6B8E4E; }
.blog-filter-tag .dot[data-cat="gestao"]      { background: #B85C38; }

/* Blog cards v2 (no image, no summary in card) */
.blog-card-link { display: block; color: inherit; }
.blog-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}
.blog-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.blog-card-body h3 {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  min-height: 4.2em;
}

/* Featured author row on dark thumb */
.blog-featured-body .blog-author-row { border-top-color: var(--warm-mid); }

/* Responsive */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { flex-direction: row; }
  .blog-filter-block { flex: 1; }
}
@media (max-width: 768px) {
  .blog-sidebar { flex-direction: column; }
  .blog-featured-body { padding: 1.5rem 1.4rem 1.75rem; }
}

/* =============================================
   ARTICLE PAGE v2 — long-form reading
   ============================================= */
.article-header {
  background: var(--navy);
  color: #fff;
  padding: 8rem 0 4rem;
  position: relative;
}
.article-header .breadcrumb a,
.article-header .breadcrumb span { color: rgba(255,255,255,0.55); }
.article-header .breadcrumb a:hover { color: var(--orange); }
.article-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin: 1rem 0 1.75rem;
  color: #fff;
}
.article-header-meta {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.article-header-meta img {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.15);
}
.article-header-meta .author-info strong {
  display: block; color: #fff; font-size: 1rem;
}
.article-header-meta .author-info span {
  display: block; color: rgba(255,255,255,0.55); font-size: 0.82rem;
  font-style: italic;
}
.article-body {
  max-width: 760px; margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--navy-abyss);
  font-size: 1.08rem;
  line-height: 1.75;
}
.article-body p { margin-bottom: 1.4rem; }
.article-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}
.article-body em { color: var(--navy); font-style: italic; }
.article-bio {
  margin-top: 3rem; padding: 1.75rem 2rem;
  background: var(--warm-light);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  font-style: italic;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
}
.article-related { background: var(--warm-light); padding: 4rem 0; }
.article-related h3 {
  text-align: center;
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy); font-size: 1.75rem;
  margin-bottom: 2.5rem;
}
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

/* =============================================
   ARTICLE PAGE
   ============================================= */
.article-body { max-width: 780px; margin: 0 auto; padding: 80px 2rem; }
.article-body h2 { color: var(--navy); margin: 2.5rem 0 1rem; }
.article-body h3 { color: var(--navy); margin: 2rem 0 0.75rem; }
.article-body p { color: var(--gray); margin-bottom: 1.4rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; color: var(--gray); margin-bottom: 1.4rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
  border-left: 3px solid var(--orange); padding: 1rem 1.5rem;
  background: var(--warm-light); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0; font-style: italic; color: var(--navy);
}

/* =============================================
   ANIMATIONS
   ============================================= */
/* GSAP handles the reveal — CSS only sets the initial hidden state.
   Fallback: if JS fails, .no-motion class on <html> shows everything. */
.fade-in       { opacity: 0; transform: translateY(24px); }
.fade-in-left  { opacity: 0; transform: translateX(-30px); }
.fade-in-right { opacity: 0; transform: translateX(30px); }
.no-motion .fade-in,
.no-motion .fade-in-left,
.no-motion .fade-in-right { opacity: 1; transform: none; }

/* Scroll progress bar (Melhoria 8) */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--orange);
  z-index: 1001;
  pointer-events: none;
}

/* Hero subtitle SplitType (Melhoria 4) */
.hero-subtitle .word { display: inline-block; }

/* Parallax image containers (Melhoria 5) */
[data-parallax] { will-change: transform; }
.how-visual, .team-photo, .video-inst-frame { overflow: hidden; }
.how-visual img[data-parallax],
.team-photo img[data-parallax] { height: 120%; object-fit: cover; }

/* Tilt 3D cards (Melhoria 7) */
.service-card, .bridge-card, .problem-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card .js-tilt-glare-inner,
.bridge-card .js-tilt-glare-inner,
.problem-card .js-tilt-glare-inner {
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, transparent 50%) !important;
}

/* Section transitions — subtle skew (Melhoria 9) */
.section-services, .section-problems, .section-testimonials,
.section-how, .section-temas, .section-team, .section-faq {
  position: relative;
}
/* dark -> light transition (section fades into the warm-light next section) */
.section-services::before,
.section-problems::before,
.section-testimonials::before {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px; background: var(--warm-light);
  clip-path: polygon(0 100%, 100% 55%, 100% 100%);
  -webkit-clip-path: polygon(0 100%, 100% 55%, 100% 100%);
  z-index: 1; pointer-events: none;
}
/* light -> dark transition */
.section-how::before,
.section-temas::before,
.section-team::before,
.section-faq::before {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px; background: var(--navy-dark);
  clip-path: polygon(0 55%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 55%, 100% 100%, 0 100%);
  z-index: 1; pointer-events: none;
}

/* =============================================
   SIDEWAYS DECORATIVE TEXT
   ============================================= */
.section-side-text {
  position: absolute; right: 0; top: 0; bottom: 0;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.4em; text-transform: uppercase;
  pointer-events: none; white-space: nowrap;
  display: flex; align-items: center; padding: 0 0.5rem;
  user-select: none;
}

/* =============================================
   LOGO IMAGES — NAVBAR & FOOTER
   ============================================= */
.nav-logo-img { height: 46px; width: auto; display: block; transition: height 0.4s ease; }
.navbar.scrolled .nav-logo-img { height: 38px; }
.footer-logo-img { height: 50px; width: auto; display: block; margin-bottom: 1.2rem; }

/* =============================================
   SERVICOS — PHOTO VISUAL BOXES
   ============================================= */
.svc-photo-box { position: relative; border-radius: 20px; overflow: hidden; min-height: 320px; }
.svc-photo-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-photo-box::after { content: ''; position: absolute; inset: 0; background: rgba(10,10,53,0.35); }
.svc-photo-tag {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--orange); color: white;
  padding: 0.5rem 1.1rem; border-radius: 6px; font-weight: 600; font-size: 0.85rem; z-index: 2;
}

/* =============================================
   RESPONSIVE — 1440px+
   ============================================= */
@media (min-width: 1440px) {
  .container { max-width: 1380px; }
  .hero-title { font-size: 5.2rem; }
}

/* =============================================
   RESPONSIVE — 1024px (tablet landscape)
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  .hero { padding: 7rem 0 4rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-title { font-size: clamp(2.8rem, 7vw, 3.8rem); }
  .hero-right { margin-top: 1rem; }
  .video-inst-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bridge-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .featured-case { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; }
}

/* =============================================
   RESPONSIVE — 768px (tablet portrait)
   ============================================= */
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 999; font-size: 1.2rem;
  }
  .nav-links.open .nav-ig {
    display: flex;
    align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.65); font-size: 1.1rem;
  }
  .nav-links.open .nav-ig svg { width: 20px; height: 20px; fill: currentColor; }
  .nav-ig { display: none; }

  .section-pad { padding: 70px 0; }
  .hero { padding: 6rem 0 3.5rem; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3rem); }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn, .hero-actions .btn-outline-hero { width: 100%; justify-content: center; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat-box { padding: 1.25rem; }
  .hero-stat-box .big-num { font-size: 2rem; }
  .clients-bar-logos { gap: 1.25rem 2rem; }
  .clients-bar-logos span { font-size: 0.75rem; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .bridge-cards { grid-template-columns: 1fr; }
  .temas-panel.active { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-card { min-width: 300px; }
  .bridge-stat .big { font-size: 2.4rem; }
  .featured-case-left, .featured-case-right { padding: 2rem; }
  .section-side-text { display: none; }
  .video-eagle-watermark { display: none; }
  .hero-stat-featured { flex-direction: column; align-items: flex-start; }
  .hero-stat-bar { width: 100%; }
}

/* =============================================
   RESPONSIVE — 480px (large phones)
   ============================================= */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h2 { font-size: 1.85rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .hero-stats-grid { gap: 0.75rem; }
  .hero-stat-box .big-num { font-size: 1.75rem; }
  .section-pad { padding: 55px 0; }
}

/* =============================================
   RESPONSIVE — 375px (iPhone SE, most popular in BR)
   ============================================= */
@media (max-width: 375px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 0.92rem; }
  .hero-stat-box .big-num { font-size: 1.6rem; }
  h2 { font-size: 1.65rem; }
  .section-pad { padding: 50px 0; }
  .testimonial-card { min-width: 280px; padding: 1.75rem; }
}
