/* ═══════════════════════════════════════════════════════════
   MESA 360 SOLUÇÕES — Executive Financial Theme
   Color Palette from Logo:
   - Deep Navy:    #0d1b35
   - Navy Mid:     #1a3a6b
   - Gold:         #c8a94d
   - Gold Light:   #e0c36a
   - Silver:       #c0c0c0
   - White:        #f8f9fc
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy-deep:    #0d1b35;
  --navy-mid:     #1a3a6b;
  --navy-light:   #243f72;
  --gold:         #c8a94d;
  --gold-light:   #e0c36a;
  --gold-dark:    #a08530;
  --silver:       #c0c0c0;
  --silver-light: #e8e8e8;
  --white:        #f8f9fc;
  --text-dark:    #0d1b35;
  --text-mid:     #2c3e60;
  --text-muted:   #6b7a99;
  --border:       rgba(200, 169, 77, 0.2);
  --shadow-sm:    0 2px 8px rgba(13,27,53,0.08);
  --shadow-md:    0 8px 32px rgba(13,27,53,0.14);
  --shadow-lg:    0 16px 64px rgba(13,27,53,0.18);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy-deep);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,169,77,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,169,77,0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-primary.full-width {
  width: 100%;
  text-align: center;
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13, 27, 53, 0.98);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  /* backdrop-filter omitido: criaria um containing block
     que quebra o position:fixed do menu mobile */
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 55px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.4,0,0.2,1);
}

@media (min-width: 901px) {
  .nav-logo img {
    height: 120px;
  }

  .navbar.scrolled .nav-logo img {
    height: 64px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: var(--navy-deep) !important;
  font-weight: 600 !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(200,169,77,0.3);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,77,0.5) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animação X ao abrir */
.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ════════════════════════════════════════════
   HERO — Split-Screen Diagonal
════════════════════════════════════════════ */
.hero {
  display: flex;
  height: 100vh;
  height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  overflow: hidden;
}

/* ── Painel esquerdo ── */
.hero-left {
  flex: 0 0 46%;
  min-height: 0;
  overflow: hidden;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  /* Corte diagonal na borda direita */
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  padding-right: 6%;
  transition: background 0.45s ease;
}

/* Linha dourada decorativa vertical à esquerda */
.hero-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.6;
}

.hero-left-inner {
  padding: clamp(72px, 11vh, 150px) clamp(24px, 3.5vw, 48px) clamp(12px, 2vh, 32px) clamp(32px, 4.5vw, 64px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(1rem, 2.8vh, 2.4rem);
}

.eyebrow-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  transition: background 0.45s ease;
}

.eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.45s ease;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, min(3.2vw, 5.2vh), 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: clamp(1.2rem, 3.6vh, 3rem);
  transition: color 0.45s ease;
}

.hero-title-italic {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  transition: color 0.45s ease;
}

.hero-title-accent {
  display: inline-block;
  color: var(--gold);
  position: relative;
  transition: color 0.45s ease;
}

/* Sublinhado dourado decorativo */
.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  border-radius: 2px;
}

.hero-title-sub {
  font-size: 0.92em;
  font-weight: 500;
  font-style: italic;
  color: rgba(200,169,77,0.72);
  letter-spacing: 0.04em;
  transition: color 0.45s ease;
}

body.hero-light .hero-title-sub { color: rgba(150,105,20,0.65); }

.hero-sub {
  font-size: clamp(0.82rem, min(1.3vw, 1.9vh), 1.05rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: clamp(1.2rem, 3.2vh, 3rem);
  max-width: 440px;
  transition: color 0.45s ease;
}

.hero-sub strong {
  color: var(--gold-light);
  font-weight: 600;
  transition: color 0.45s ease;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(1rem, 3.5vh, 4rem);
  align-items: center;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition), color 0.45s ease, border-color 0.45s ease;
}

.btn-outline-dark svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline-dark:hover svg {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(200,169,77,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 420px;
  background: rgba(255,255,255,0.03);
  transition: background 0.45s ease, border-color 0.45s ease;
}

.stat {
  flex: 1;
  padding: clamp(8px, 1.6vh, 18px) clamp(10px, 1.4vw, 20px);
  text-align: center;
  border-right: 1px solid rgba(200,169,77,0.25);
}

.stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, min(2.2vw, 2.8vh), 1.75rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  line-height: 1.4;
  transition: color 0.45s ease;
}

.stat-divider { display: none; }

.hero-left-footer {
  padding: 18px 48px 18px 64px;
  border-top: 1px solid rgba(200,169,77,0.25);
  background: rgba(255,255,255,0.04);
  transition: background 0.45s ease;
  margin-right: -25px;
}

.hero-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.45s ease;
}

/* ── Painel direito ── */
.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin-left: -8%;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(13,27,53,0.5) 0%,
    rgba(13,27,53,0.1) 40%,
    transparent 70%
  );
}

/* ── HERO CAROUSEL ── */
.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

.hero-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Dots indicadores */
.hero-carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Corte diagonal (espelho do painel esquerdo) — cor igual ao hero-left */
.hero-diagonal-cut {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--navy-deep);
  clip-path: polygon(0 0, 14% 0, 0 100%);
  transition: background 0.45s ease;
}

/* Badge flutuante sobre a foto */
.hero-float-card {
  position: absolute;
  bottom: 175px;
  right: 125px;
  z-index: 6;
  background: rgba(13,27,53,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200,169,77,0.35);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.hfc-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hfc-icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy-deep);
}

.hfc-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hfc-text strong,
.hfc-text span {
  transition: opacity 0.3s ease;
}

.hfc-text.updating strong,
.hfc-text.updating span {
  opacity: 0;
}

.hfc-text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.hfc-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ── Responsive Hero ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: auto;
    max-height: none;
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }

  /* Remove corte diagonal no mobile — fica torto ao empilhar */
  .hero-left {
    flex: none;
    min-height: 0;
    height: auto;
    overflow: visible;
    clip-path: none;
    padding-right: 0;
    border-bottom: 3px solid var(--gold);
  }

  .hero-left::before { display: none; }

  .hero-left-inner {
    padding: 100px 24px 36px;
  }

  .hero-eyebrow {
    margin-top: 0;
  }

  .hero-left-footer {
    padding: 16px 24px;
  }

  .hero-right {
    flex: 0 0 260px;
    min-height: 260px;
    margin-left: 0;
    margin-top: 0; /* Sem sobreposição */
  }

  /* Oculta o corte diagonal (era só visual de desktop) */
  .hero-diagonal-cut {
    display: none;
  }

  .hero-photo-overlay {
    background: linear-gradient(
      to bottom,
      rgba(13,27,53,0.25) 0%,
      transparent 50%
    );
  }

  .hero-float-card {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }

  .hero-carousel-dots {
    bottom: 48px;
  }

  .hero-stats {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  60% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* ════════════════════════════════════════════
   HERO — Variante Clara (clique no logo para alternar)
════════════════════════════════════════════ */
body.hero-light .hero-left          { background: #f4f6fb; }
body.hero-light .hero-diagonal-cut  { background: #f4f6fb; }
body.hero-light .eyebrow-line       { background: var(--gold-dark); }
body.hero-light .eyebrow-text       { color: var(--gold-dark); }
body.hero-light .hero-title         { color: var(--navy-deep); }
body.hero-light .hero-title-italic  { color: rgba(13,27,53,0.45); }
body.hero-light .hero-title-accent  { color: var(--gold-dark); }
body.hero-light .hero-sub           { color: var(--text-mid); }
body.hero-light .hero-sub strong    { color: var(--gold-dark); }
body.hero-light .btn-outline-dark   { color: var(--text-mid); border-color: rgba(13,27,53,0.2); }
body.hero-light .btn-outline-dark:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
body.hero-light .hero-stats         { background: rgba(255,255,255,0.7); border-color: rgba(200,169,77,0.35); }
body.hero-light .stat-label         { color: rgba(13,27,53,0.5); }
body.hero-light .hero-left-footer   { background: rgba(13,27,53,0.03); }
body.hero-light .hero-tagline       { color: rgba(13,27,53,0.35); }

/* ════════════════════════════════════════════
   SOBRE
════════════════════════════════════════════ */
.sobre {
  padding: 120px 0;
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sobre-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.badge-txt {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sobre-text p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
  line-height: 1.75;
}

.sobre-pillars {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.pillar:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,77,0.1);
  border-radius: 8px;
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.pillar div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar strong {
  font-size: 0.9rem;
  color: var(--navy-deep);
  font-weight: 600;
}

.pillar span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   CONCEPT STRIP
════════════════════════════════════════════ */
.concept-strip {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  isolation: isolate;
}

.concept-bg {
  position: absolute;
  top: -40%;
  left: 0;
  right: 0;
  width: 100%;
  height: 180%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

.concept-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,53,0.95) 0%, rgba(26,58,107,0.88) 100%);
  z-index: 1;
}

.concept-content {
  position: relative;
  z-index: 2;
}

.acronym-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.acronym-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
}

.acronym-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.acronym-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 36px;
  border-right: 1px solid rgba(200,169,77,0.2);
  position: relative;
}

.acronym-item:last-child {
  border-right: none;
}

.letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.word {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.concept-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto 1.6rem;
}

.concept-desc:last-child {
  margin-bottom: 0;
}

.concept-desc strong {
  color: var(--gold-light);
}

/* Expand extra paragraphs */
.concept-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease;
  opacity: 0;
}

.concept-extra.open {
  max-height: 400px;
  opacity: 1;
}

.concept-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 1.4rem auto 0;
  background: rgba(200,169,77,0.12);
  border: 1px solid rgba(200,169,77,0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.concept-toggle:hover {
  background: rgba(200,169,77,0.22);
  border-color: rgba(200,169,77,0.6);
}

.concept-chevron {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.concept-toggle.open .concept-chevron {
  transform: rotate(180deg);
}

/* ════════════════════════════════════════════
   SERVIÇOS
════════════════════════════════════════════ */
.servicos {
  padding: 120px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-color: var(--gold);
  color: #fff;
  grid-column: auto;
}

.service-card.featured h3,
.service-card.featured p {
  color: #fff;
}

.service-card.featured p {
  color: rgba(255,255,255,0.75);
}

.service-card.featured::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-icon.credit { background: rgba(200,169,77,0.12); color: var(--gold-dark); }
.service-icon.capital { background: rgba(26,58,107,0.1); color: var(--navy-mid); }
.service-icon.property { background: rgba(200,169,77,0.12); color: var(--gold-dark); }
.service-icon.construction { background: rgba(26,58,107,0.1); color: var(--navy-mid); }
.service-icon.vehicles { background: rgba(200,169,77,0.12); color: var(--gold-dark); }
.service-icon.consortium { background: rgba(26,58,107,0.1); color: var(--navy-mid); }
.service-icon.auto { background: rgba(200,169,77,0.12); color: var(--gold-dark); }
.service-icon.insurance { background: rgba(93,39,82,0.08); color: #7b3f7f; }
.service-icon.pension { background: rgba(200,169,77,0.12); color: var(--gold-dark); }
.service-icon.energy { background: rgba(26,100,50,0.08); color: #1a6432; }
.service-icon.leaseback { background: rgba(26,58,107,0.1); color: var(--navy-mid); }
.service-icon.legal { background: rgba(200,169,77,0.15); color: var(--gold); }

.service-card.featured .service-icon.legal {
  background: rgba(200,169,77,0.2);
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy-deep);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.service-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200,169,77,0.1);
  padding: 4px 12px;
  border-radius: 60px;
  margin-top: auto;
  align-self: flex-start;
}

.service-card.featured .service-tag {
  background: rgba(200,169,77,0.2);
  color: var(--gold-light);
}

/* ════════════════════════════════════════════
   DIFERENCIAIS
════════════════════════════════════════════ */
.diferenciais {
  padding: 120px 0;
  background: var(--white);
}

.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dif-list {
  margin: 1.75rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dif-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--silver-light);
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  position: relative;
}

.check-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.dif-img-wrap {
  position: relative;
}

.dif-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.dif-card-float {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 300px;
  box-shadow: var(--shadow-md);
}

.dif-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(200,169,77,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.dif-card-float strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.dif-card-float span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.dif-text p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

/* ════════════════════════════════════════════
   PROCESSO
════════════════════════════════════════════ */
.processo {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

.processo .section-tag { color: var(--gold); }
.processo .section-title { color: #fff; }
.processo .section-sub { color: rgba(255,255,255,0.6); }

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(200,169,77,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}

.step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,169,77,0.35);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.8;
}

.step h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.65;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   CONTATO
════════════════════════════════════════════ */
.contato {
  padding: 120px 0;
  background: var(--white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-info p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.channel-btn svg {
  width: 18px;
  height: 18px;
}

.channel-btn.whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.channel-btn.whatsapp:hover {
  background: #20bc5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

.channel-btn.email {
  background: var(--navy-deep);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,27,53,0.2);
}

.channel-btn.email:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13,27,53,0.3);
}

.contato-img-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-height: 260px;
}

.contato-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.contato-img-wrap:hover img {
  transform: scale(1.03);
}

/* ── FORM ── */
.contato-form-wrap {
  background: #fff;
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.contato-form h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.form-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--silver-light);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,77,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7a99' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
  border-top: 1px solid rgba(200,169,77,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  background: rgba(200,169,77,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a,
.footer-col li span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sobre-grid { gap: 48px; }
  .dif-grid { gap: 48px; }
  .contato-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid { flex-wrap: wrap; }
  .step { min-width: calc(50% - 24px); }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .sobre-grid,
  .dif-grid,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-img-wrap img,
  .dif-img-wrap img {
    height: 320px;
  }

  .sobre-badge-float { bottom: -20px; right: 0; }
  .dif-card-float { left: 0; bottom: -20px; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-deep);
    gap: 12px;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: 80px 24px 40px;
    /* Animação suave — sem display:none para permitir transição */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.38s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    border-top: 3px solid var(--gold);
  }

  /* Links entram em cascata */
  .nav-links a {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      color var(--transition);
  }

  .nav-links.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open a:nth-child(1) { transition-delay: 0.10s; }
  .nav-links.open a:nth-child(2) { transition-delay: 0.16s; }
  .nav-links.open a:nth-child(3) { transition-delay: 0.22s; }
  .nav-links.open a:nth-child(4) { transition-delay: 0.28s; }
  .nav-links.open a:nth-child(5) { transition-delay: 0.34s; }
  .nav-links.open a:nth-child(6) { transition-delay: 0.40s; }
  .nav-links.open a:nth-child(7) { transition-delay: 0.46s; }

  .nav-links a.nav-cta {
    margin-top: 12px;
    border-bottom: none;
    padding: 14px 40px;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow var(--transition);
  }

  .nav-links.open a.nav-cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hamburger acima do overlay do menu */
  .hamburger { display: flex; z-index: 9999; position: relative; }

  /* Hero-left escuro por padrão: hamburguer é branco */
  .hamburger span { background: #fff; transition: background 0.45s ease; }
  .navbar.scrolled .hamburger span { background: #fff; }
  /* Variante clara: hamburguer escuro sobre fundo claro */
  body.hero-light .hamburger span { background: var(--navy-deep); }
  body.hero-light .navbar.scrolled .hamburger span { background: #fff; }

  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-divider { height: 24px; }

  .acronym-grid {
    flex-wrap: wrap;
    gap: 0;
  }

  .acronym-item {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(200,169,77,0.15);
  }

  .steps-grid { flex-direction: column; gap: 16px; }
  .step { width: 100%; }

  .contato-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
}
