/* ============================================================
   HM DE LUCCA — MAIN STYLESHEET v3.0
   Design: Premium Institutional — Light Editorial
   Ref: qualitas-payroll.co.uk style — law firm adaptation
============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
============================================================ */
:root {
  /* Backgrounds */
  --bg:         #ffffff;
  --bg-soft:    #f8f7f4;
  --bg-warm:    #f2ede6;
  --bg-navy:    #0b1a27;
  --bg-navy-2:  #122030;
  --bg-card:    #ffffff;

  /* Brand colors */
  --navy:       #0b1a27;
  --navy-mid:   #1c3449;
  --gold:       #b8913e;
  --gold-light: #cda55a;
  --gold-dim:   rgba(184, 145, 62, 0.08);
  --gold-border:rgba(184, 145, 62, 0.22);

  /* Text */
  --text:       #0e0e14;
  --diferenciais: #ffffff
  --text-body:  #3c3c50;
  --text-muted: #72728a;
  --text-light: #a0a0b4;
  --text-white: #f7f6f3;

  /* Borders */
  --border:     #dddde8;
  --border-soft:#ebebf2;

  /* Typography */
  --font-serif: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-sans:  'Manrope', system-ui, -apple-system, sans-serif;

  /* Sizing */
  --container:  1240px;
  --gutter:     36px;
  --nav-h:      100px;
  --section-py: 110px;

  /* Transitions */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:     0.18s ease;
  --t-normal:   0.35s ease;
  --t-slow:     0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.08), 0 12px 48px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.1), 0 24px 80px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

.section-label5 { 
color: white; 
	text-align: left; 
}
body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar.scrolled {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 24px;
    height: 78px !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}
body.menu-open { overflow: hidden; }
/* Desktop */
.diferencial-body h2 {
  font-size: clamp(2.2rem, 3vw, 3rem) !important;
  color: #ffffff !important;
  text-align: center !important;
  line-height: 1.2 !important;
  margin-bottom: 24px !important;
}
diferencial-body {
    background: #000F01 !important;
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.diferencial-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 32px 0 40px;
 
}
    .img-banner-overlay {
        position: absolute;
        inset: 0;
        background: #000F01 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
  .diferencial-body h2 {
    text-align: center !important;
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
  }
	
	.diferencial-body h2 {
    font-size: clamp(2.2rem, 3vw, 3rem) !important;
    color: #ffffff !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
}
	.diferencial-features {
  display: flex;
  flex-direction: column !important;
  align-items: center !important; /* centraliza horizontal */
  text-align: center !important;  /* centraliza o texto */
}
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ============================================================
   3. TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
}



p { font-size: 1rem; color: var(--text-body); line-height: 1.8; }

/* Display / oversized headings */
.display-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.display-heading em {
  font-style: italic;
  color: var(--navy);
}

/* ============================================================
   4. LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-py) 0; position: relative; overflow: hidden; }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-navy { background: var(--bg-navy); }

/* Section header */
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* On dark backgrounds */
.section-navy .section-label { color: rgba(184,145,62,0.8); }
.section-navy .section-label::before { background: rgba(184,145,62,0.6); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}
@media (max-width:1000px) { 

  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: center;
  }

  .area-full-card-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    transition: border-color var(--t-normal), background var(--t-normal);
  }

  .footer-col-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 24px;
    margin-top: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .btn-lg {
    padding: 18px 48px;
    font-size: 0.85rem;
    margin-right: auto;
    margin-left: auto;
  }

  .img-banner-overlay {
    position: absolute;
    inset: 0;
    background: #000F01 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
    text-align: center;
  }

  .h2 { 
    text-align: center !important;
  }

  .diferencial-body {
    background: #000F01 !important;
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
    text-align: center;
  }

  .area-card-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    text-align: center;
    color: var(--gold);
    margin-bottom: 20px;
    transition: border-color var(--t-normal), background var(--t-normal), transform var(--t-normal);
  }

  .area-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 12px;
    text-align: center;
    transition: color var(--t-normal);
  }

  .area-card-text {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 28px;
    text-align: justify;
  }

  .sobre-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
    text-align: center;
  }

  .sobre-card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 20px;
    margin-right: auto;
    color: var(--gold);
    transition: border-color var(--t-normal), background var(--t-normal);
  }

  .sobre-intro-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 28px;
    text-align: justify;
  }

  .sobre-card-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.8;
    text-align: justify;
  }

}
} 
.section-title2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 20px;
}
}

.section-navy .section-title { color: var(--text-white); }

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}

.section-navy .section-subtitle { color: rgba(247,246,243,0.6); }

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-soft);
}

/* ============================================================
   5. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0;
  text-decoration: none;
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

/* Primary — Navy fill */
.btn-primary {
  background: var(--navy);
  color: var(--text-white);
  border: 1.5px solid var(--navy);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-mid);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary { position: relative; z-index: 1; }
.btn-primary > * { position: relative; z-index: 1; }

/* Ensure legible text on hover */
.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--text-white);
}

/* Outline — Navy border */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.btn-outline:hover { color: #ffffff; }
.btn-outline:hover::before { transform: scaleX(1); }
.btn-outline > * { position: relative; z-index: 1; }
.btn-outline { position: relative; z-index: 1; }

/* Gold variant */
.btn-gold {
  background: var(--gold);
  color: white;
  border: 1.5px solid var(--gold);
}

.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* White outline (on dark backgrounds) */
.btn-white-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
}

.btn-white-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.btn-white-outline:hover { border-color: white; }
.btn-white-outline:hover::before { transform: scaleX(1); }
.btn-white-outline > * { position: relative; z-index: 1; }
.btn-white-outline { position: relative; z-index: 1; }

.btn-white-outline:hover,
.btn-white-outline:focus-visible {
  color: #ffffff;
}

/* Ghost */
.btn-ghost {
  background: transparent;
  border: 1.5px solid transparent;
  color: var(--text-body);
  padding: 12px 0;
}

.btn-ghost:hover { color: var(--navy); }

/* Sizes */
.btn-sm { padding: 11px 24px; font-size: 0.74rem; }
.btn-lg { padding: 18px 48px; font-size: 0.85rem; }

/* Arrow */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform var(--t-normal);
}

.btn:hover .btn-arrow { transform: translateX(5px); }

/* ============================================================
   6. IMAGE PLACEHOLDERS
============================================================ */
.img-wrap {
  position: relative;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
  display: block;
}

.img-wrap:hover img { transform: scale(1.04); }

/* Placeholder (shows when no image) */
.img-placeholder {
  position: relative;
  background: linear-gradient(140deg, var(--bg-navy) 0%, var(--bg-navy-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

.img-placeholder::after {
  content: 'Foto';
  position: absolute;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}

/* Overlay on images */
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,26,39,0.7) 100%);
  pointer-events: none;
}

/* ============================================================
   7. PRELOADER
============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.preloader-monogram {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 1;
  color: var(--navy);
  opacity: 0;
  transform: translateY(24px);
  animation: preloaderUp 0.7s var(--ease) 0.2s forwards;
}

.preloader-monogram span { color: var(--gold); }

.preloader-subtitle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(10px);
  animation: preloaderUp 0.5s var(--ease) 0.8s forwards;
  margin-top: 4px;
}

.preloader-divider {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
  animation: preloaderLine 0.6s var(--ease) 1.1s forwards;
}

.preloader-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: preloaderFade 0.5s ease 1.5s forwards;
}

.preloader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloaderProgress 2s var(--ease) 0.1s forwards;
}

@keyframes preloaderUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes preloaderFade { to { opacity: 1; } }
@keyframes preloaderLine { to { width: 56px; } }
@keyframes preloaderProgress {
  0%   { width: 0; }
  100% { width: 100%; }
}
.preloader-logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  opacity: 0;
  transform: translateY(24px);
  animation: preloaderUp 0.7s var(--ease) 0.2s forwards;
}

/* ============================================================
   8. NAVBAR — LIGHT THEME
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.4s ease, height 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease, transform 0.7s var(--ease), opacity 0.7s var(--ease);
  opacity: 0;
  transform: translateY(-16px);
  animation: navFadeDown 0.7s var(--ease) 0.4s forwards;
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  height: 68px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-monogram {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  border: 1.5px solid var(--border);
  padding: 6px 11px;
  transition: border-color var(--t-normal), background var(--t-normal);
}

.navbar-logo:hover .logo-monogram {
  border-color: var(--navy);
  background: var(--bg-soft);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.navbar-menu li > a,
.navbar-menu > ul > li > a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-body);
  padding: 8px 14px;
  display: inline-block;
  position: relative;
  transition: color var(--t-fast);
}

.navbar-menu li > a::after,
.navbar-menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.navbar-menu li > a:hover,
.navbar-menu > ul > li > a:hover { color: var(--navy); }

.navbar-menu li > a:hover::after,
.navbar-menu > ul > li > a:hover::after { transform: scaleX(1); }

.navbar-menu li.current-menu-item > a { color: var(--navy); font-weight: 500; }
.navbar-menu li.current-menu-item > a::after { transform: scaleX(1); }

/* WP menu container */
.navbar-menu > ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

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

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.35s var(--ease), opacity 0.35s, width 0.35s;
  transform-origin: center;
}

.hamburger span:nth-child(2) { width: 70%; margin-left: auto; }

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  transition: right 0.5s var(--ease);
  z-index: 999;
}

.mobile-menu.open { right: 0; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,26,39,0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu-overlay.visible { opacity: 1; pointer-events: all; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav ul li a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--text-body);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--t-normal), padding-left var(--t-normal);
}

.mobile-nav ul li a:hover { color: var(--navy); padding-left: 8px; }
.mobile-nav ul li:last-child a { border-bottom: none; }

.mobile-nav-cta { margin-top: 40px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close:hover { color: var(--navy); }

/* ============================================================
   9. HERO — SPLIT LAYOUT
============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}

/* LEFT: Text content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter) 80px calc((100vw - var(--container)) / 2 + var(--gutter));
  background: var(--bg);
  min-height: calc(100vh - var(--nav-h));
   /* For smooth parallax */
  will-change: transform;
}

@media (min-width: 1440px) {
  .hero-content {
    padding-left: calc((100vw - 1240px) / 2 + 36px);
  }
}
.logo-img{
  height:80px;
  width:auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroUp 0.8s var(--ease) 0.1s forwards;
  animation-play-state: paused;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease) 0.25s forwards;
  animation-play-state: paused;
  max-width: 560px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease) 0.4s forwards;
  animation-play-state: paused;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease) 0.55s forwards;
  animation-play-state: paused;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.hero-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease) 0.7s forwards;
  animation-play-state: paused;
}

/* RIGHT: Image */
.hero-image {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
  /* For smooth parallax */
  will-change: transform;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(184,145,62,0.22), transparent 50%),
              radial-gradient(circle at 80% 90%, rgba(11,26,39,0.35), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  opacity: 0.85;
}

.hero-image .img-placeholder,
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image .img-placeholder {
  min-height: 100%;
}

/* Stats overlay */
.hero-stats {
  position: absolute;
  bottom: 48px;
	width: 60%¨; 
  left: 48px;
  right: 48px;
  display: flex;
  gap: 2px;
  opacity: 0;
  animation: heroFadeIn 1s ease 1.2s forwards;
  animation-play-state: paused;
}

.hero-stat {
  flex: 1;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-top: 2px solid var(--gold);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroFadeIn 1s ease 1.5s forwards;
  animation-play-state: paused;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: vertical-lr;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,145,62,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(184,145,62,0); }
}
@keyframes heroUp     { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%       { transform: scaleY(0.3); transform-origin: bottom; }
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   10. REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   11. SECTION: SOBRE (3 cards + image row)
============================================================ */
.sobre-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.sobre-intro-img {
  height: 480px;
  border-radius: 0;
}

.sobre-intro-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 28px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
}

.sobre-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  transition: background var(--t-normal);
}

.sobre-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border-soft);
  transition: background 0.4s ease;
}

.sobre-card:hover { background: var(--bg-soft); }
.sobre-card:hover::before { background: var(--gold); }

.sobre-card-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  transition: border-color var(--t-normal), background var(--t-normal);
}

.sobre-card:hover .sobre-card-icon {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.sobre-card-icon svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.sobre-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}

.sobre-card-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
}

.valores-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.valores-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
}

.valores-list li:last-child { border-bottom: none; }

.valores-list li::before {
  content: '';
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7l2.5 2.5L11 4.5' stroke='%23b8913e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   12. SECTION: ÁREAS DE ATUAÇÃO
============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
}

.area-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--t-normal), transform var(--t-normal);
}

.area-card-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border-soft);
  transform-origin: left;
  transition: background 0.4s ease;
}

.area-card:hover { background: var(--bg-soft); }
.area-card:hover .area-card-top-line { background: var(--gold); }

.area-card-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.5;
  transition: opacity var(--t-normal);
}

.area-card:hover .area-card-number { opacity: 0.8; }

.area-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: border-color var(--t-normal), background var(--t-normal), transform var(--t-normal);
}

.area-card:hover .area-card-icon {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: scale(1.06);
}

.area-card-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.area-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color var(--t-normal);
}

.area-card:hover .area-card-title { color: var(--gold); }

.area-card-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}

.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t-normal), transform var(--t-normal);
}

.area-card:hover .area-card-link { opacity: 1; transform: translateX(0); }

.area-card-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform var(--t-normal);
}

.area-card:hover .area-card-link svg { transform: translateX(4px); }

/* ============================================================
   13. SECTION: DIFERENCIAL (split with dark bg + image)
============================================================ */
.diferencial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.diferencial-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.diferencial-img .img-placeholder,
.diferencial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diferencial-body {
  background: #000F01;
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diferencial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.5;
  margin: 24px 0 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  opacity: 0.9;
}

.diferencial-title { 
color: #FFFFFF;



}
.diferencial-text p {
  font-size: 0.96rem;
  color: rgba(247,246,243,0.65);
  line-height: 1.85;
  margin-bottom: 18px;
}

@media (max-width: 1000px) {
	
	.diferencial-features {
  display: grid;
		width: fit-content !important;
    margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0 40px;

}
}

.diferencial-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0 40px;

}

.df-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(247,246,243,0.75);
}

.df-item::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(184,145,62,0.4);
  background: rgba(184,145,62,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 9l3 3 7-7' stroke='%23b8913e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   14. SECTION: IMAGEM FULL WIDTH
============================================================ */
.img-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.img-banner .img-placeholder,
.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,26,39,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}

.img-banner-overlay h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.img-banner-overlay p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
}

/* ============================================================
   15. SECTION: BLOG / CONTEÚDO
============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-normal);
}

.blog-card:hover { transform: translateY(-4px); }

.blog-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
  flex-shrink: 0;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  display: block;
}

.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }

.blog-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--bg-navy) 0%, var(--bg-navy-2) 100%);
  min-height: 200px;
  color: rgba(255,255,255,0.15);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.blog-card-body {
  padding: 28px 0;
  border-top: 2px solid var(--border-soft);
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-normal);
}

.blog-card:hover .blog-card-body { border-color: var(--gold); }

.blog-card-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
  transition: color var(--t-normal);
}

.blog-card:hover .blog-card-title { color: var(--gold); }

.blog-card-excerpt {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.blog-card-read-more {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast), gap var(--t-fast);
}

.blog-card:hover .blog-card-read-more { color: var(--gold); gap: 10px; }

/* Blog empty */
.blog-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 40px;
  border: 1px dashed var(--border);
}

/* ============================================================
   16. SECTION: CONTATO
============================================================ */
.contato-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contato-img-side {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.contato-img-side .img-placeholder,
.contato-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contato-info-side {
  padding: 80px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-info-side p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 400px;
}

.contato-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 44px;
}

.contato-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-body);
}

.contato-list li:first-child { padding-top: 0; }

.contato-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.contato-list li:hover .contato-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.contato-icon svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}

.contato-detail { display: flex; flex-direction: column; gap: 2px; }
.contato-detail strong {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contato-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   17. SECTION: TRES IMAGENS (strip visual)
============================================================ */
.img-strip {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 4px;
  height: 400px;
}

.img-strip-item {
  position: relative;
  overflow: hidden;
}

.img-strip-item .img-placeholder,
.img-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.img-strip-item:hover img,
.img-strip-item:hover .img-placeholder { transform: scale(1.05); }

/* ============================================================
   18. FOOTER
============================================================ */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 96px 0 48px; /* mais respiro vertical */
}

.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr;
  gap: 72px; /* mais espaço entre colunas */
  margin-bottom: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px; /* respira mais */
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8; /* melhora leitura */
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px; /* separa melhor do conteúdo */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px; /* mais espaçamento entre links */
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-body);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-block;
}

.footer-links a:hover { 
  color: var(--navy); 
  padding-left: 6px; /* leve aumento */
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 18px; /* mais respiro vertical */
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 15px; 
  height: 15px;
  stroke: var(--gold); 
  fill: none; 
  stroke-width: 1.5;
  flex-shrink: 0; 
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 12px; /* mais espaçado */
  margin-top: 12px;
}

.social-btn {
  width: 36px; 
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.social-btn:hover {
  color: var(--navy);
  border-color: var(--navy);
  background: var(--bg-soft);
}

.social-btn svg {
  width: 16px; 
  height: 16px;
  stroke: currentColor; 
  fill: none; 
  stroke-width: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
	  padding-left: 20px !important;
        padding-right: 20px !important;
}

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

.footer-copy strong { 
  color: var(--navy); 
  font-weight: 500; 
}

.footer-legal { 
  display: flex; 
  gap: 28px; /* mais espaçamento */
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-light);
  transition: color var(--t-fast);
}

.footer-legal a:hover { 
  color: var(--navy); 
}

.footer-oab {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 6px;
}
/* ============================================================
   19. PAGE HERO (generic inner pages)
============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
	text-align: center; 
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(180deg, rgba(184,145,62,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-hero-breadcrumb a { color: var(--text-light); transition: color var(--t-fast); }
.page-hero-breadcrumb a:hover { color: var(--navy); }
.page-hero-breadcrumb .current { color: var(--gold); }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
	font-family: Manrope !important; 
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero .lead {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 600px;
	text-align: center;
	    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   20. PAGE: EQUIPE
============================================================ */
}
	.team-grid {
    display: flex;
    width: 400px !important;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}


  .team-card {
    background: var(--bg);
    overflow: hidden;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t-normal), transform var(--t-normal);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.team-card-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}

.team-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
  filter: grayscale(10%);
}

.team-card:hover .team-card-photo img { transform: scale(1.04); filter: grayscale(0%); }

.team-card-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--bg-navy) 0%, var(--bg-navy-2) 100%);
}

.team-card-photo-placeholder-inner {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(184,145,62,0.25);
}

.team-card-body {
  padding: 32px;
  border-top: 2px solid var(--border-soft);
  transition: border-color var(--t-normal);
}

.team-card:hover .team-card-body { border-color: var(--gold); }

.team-card-role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.team-card-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.team-card-bio {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.team-card-oab {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

/* ============================================================
   21. PAGE: AREAS
============================================================ */
.areas-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
}

.area-full-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  transition: background var(--t-normal);
}

.area-full-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border-soft);
  transition: background 0.4s;
}

.area-full-card:hover { background: var(--bg-soft); }
.area-full-card:hover::before { background: var(--gold); }

.area-full-card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-light);
  opacity: 0.5;
  margin-bottom: 16px;
}

.area-full-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: border-color var(--t-normal), background var(--t-normal);
}

.area-full-card:hover .area-full-card-icon { border-color: var(--gold); background: var(--gold-dim); }

.area-full-card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.area-full-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  transition: color var(--t-normal);
}

.area-full-card:hover .area-full-card-title { color: var(--gold); }

.area-full-card-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ============================================================
   22. BLOG SINGLE / GENERIC PAGES
============================================================ */
.single-post-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.single-post-category { color: var(--gold); font-weight: 600; }

.single-post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  color: var(--navy);
  margin: 40px 0 16px;
}

.single-post-content p { margin-bottom: 22px; color: var(--text-body); }
.single-post-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.single-post-content ul, .single-post-content ol { margin: 20px 0 20px 24px; }
.single-post-content ul li { list-style: disc; }
.single-post-content ol li { list-style: decimal; }
.single-post-content li { margin-bottom: 8px; }

.single-post-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--bg-soft);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
}

/* Blog layout */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
.blog-posts { display: flex; flex-direction: column; gap: 32px; }

/* ============================================================
   23. UTILITIES
============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }

/* ============================================================
   24. RESPONSIVE — TABLET (< 1024px)
============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; --gutter: 24px; }
	.hero-eyebrow-dot { 
	display: none !important;
	}
	    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
.hero-eyebrow-text {
 display:none;
  color: var(--gold);
}
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content {
    min-height: auto;
    padding: 70px 24px 60px;
  }
  .hero-image { min-height: 480px; }
  .hero-stats { bottom: 24px; left: 24px; right: 24px; }
.logo-img{
  height:80px;
  width:auto;
}
  .sobre-intro { grid-template-columns: 1fr; gap: 48px; }
  .sobre-intro-img { height: 360px; }
  .sobre-grid { grid-template-columns: 1fr 1fr; }
  .sobre-card:last-child { grid-column: 1/-1; }

  .areas-grid { grid-template-columns: 1fr 1fr; }
  .areas-full-grid { grid-template-columns: 1fr 1fr; }

  .diferencial-split { grid-template-columns: 1fr; }
  .diferencial-img { min-height: 360px; }
  .diferencial-body { padding: 60px 40px; }

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

  .contato-split { grid-template-columns: 1fr; }
  .contato-img-side { min-height: 320px; }
  .contato-info-side { padding: 60px 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .navbar-right .btn-sm { display: none; }

  .img-strip { grid-template-columns: 1fr 1fr; height: 320px; }
  .img-strip-item:last-child { display: none; }

  .blog-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   25. RESPONSIVE — MOBILE (< 640px)
============================================================ */
@media (max-width: 640px) {
  :root { --section-py: 60px; --gutter: 20px; --nav-h: 68px; }
	.hero-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-top: 2px solid var(--gold);
    width: 60%;
}
	.logo-img{
  height:40px;
  width:auto;
}
	.hero-stat-label {
  font-size: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

	.hero-scroll {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: heroFadeIn 1s ease 1.5s forwards;
    animation-play-state: paused;
}
  .hero-title { font-size: 2.4rem; text-align:center; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: row; gap: 2px; bottom: 16px; }

	
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-card:last-child { grid-column: auto; }
  .sobre-card { padding: 36px 28px; }

  .areas-grid { grid-template-columns: 1fr; }
	
  .area-card { padding: 36px 28px; }

  .areas-full-grid { grid-template-columns: 1fr; }

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

  .img-strip { grid-template-columns: 1fr; height: 280px; }
  .img-strip-item:not(:first-child) { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 14px; }

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

  .diferencial-body { padding: 48px 24px; }
  .diferencial-features { grid-template-columns: 1fr; }

  .contato-info-side { padding: 48px 24px; }

  .section-header { margin-bottom: 44px; }
  .section-title { font-size: 1.9rem; }

  /* Área individual — mobile */
  .area-content-split { grid-template-columns: 1fr; }
  .area-etapas-grid { grid-template-columns: 1fr 1fr; }
  .outras-areas-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PÁGINA INDIVIDUAL DE ÁREA DE ATUAÇÃO
============================================================ */

/* Hero — meta (número + label) */
.area-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.area-hero-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-family: var(--font-sans);
}

/* Banner com frase */
.area-banner { height: 280px; }
.area-banner-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-light);
}
.area-banner-frase {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  text-align: center;
  max-width: 600px;
}

/* Conteúdo — split: descrição + serviços */
.area-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.area-descricao p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Serviços */
.area-servicos {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  padding: 36px;
}
.area-servicos-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}
.area-servicos-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.area-servicos-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.area-servicos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.area-servico-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.area-servico-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* Etapas de trabalho */
.area-etapas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.area-etapa {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  background: var(--bg);
  transition: box-shadow var(--t-normal), transform var(--t-normal);
}
.area-etapa:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.area-etapa-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-dim);
  color: rgba(184,145,62,0.15);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}
.area-etapa-titulo {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.area-etapa-texto {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Outras áreas */
.outras-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.outra-area-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  background: var(--bg);
  text-decoration: none;
  transition: box-shadow var(--t-normal), transform var(--t-normal), border-color var(--t-fast);
}
.outra-area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-border);
}
.outra-area-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-light);
  font-family: var(--font-sans);
}
.outra-area-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.outra-area-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.outra-area-card:hover .outra-area-icon { background: var(--gold); color: #fff; border-color: var(--gold); }
.outra-area-titulo {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  transition: color var(--t-fast);
}
.outra-area-card:hover .outra-area-titulo { color: var(--gold); }
.outra-area-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: auto;
  transition: color var(--t-fast);
}
.outra-area-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.outra-area-card:hover .outra-area-link { color: var(--gold); }

/* Responsivo — área individual */
@media (max-width: 1024px) {
  .area-etapas-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .area-content-split { grid-template-columns: 1fr; gap: 48px; }
  .area-etapas-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .outras-areas-grid { grid-template-columns: 1fr; }
  .area-servicos { padding: 24px; }
}
@media (max-width: 480px) {
  .area-etapas-grid { grid-template-columns: 1fr; }
}
