/* ─── VARIABLES ──────────────────────────────────────────────── */
:root {
  --navy:        #0A0A0A;
  --navy-2:      #161616;
  --gold:        #C9A84C;
  --gold-light:  #D9BE6A;
  --gold-pale:   #F5EDD3;
  --white:       #FFFFFF;
  --off-white:   #FAF8F4;
  --gray-50:     #F3F1EC;
  --gray-100:    #E8E4DA;
  --gray-300:    #C5BFB0;
  --gray-500:    #6B6456;
  --gray-700:    #3A3428;
  --shadow-sm:   0 1px 3px rgba(26,18,8,0.08), 0 1px 2px rgba(26,18,8,0.04);
  --shadow-md:   0 4px 16px rgba(26,18,8,0.10), 0 2px 6px rgba(26,18,8,0.06);
  --shadow-lg:   0 12px 40px rgba(26,18,8,0.13), 0 4px 12px rgba(26,18,8,0.07);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --r:           8px;
  --r-lg:        16px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── BASE ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ─── REVEAL ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.from-left  { transform: translateX(-24px); }
.reveal.from-right { transform: translateX(24px); }
.reveal.from-left.visible, .reveal.from-right.visible { transform: translateX(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ─── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 1px;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 68px; overflow: visible;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.navbar.top, .navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

/* ─── LOGO IMG ───────────────────────────────────────────────── */
.logo-img {
  height: 260px; width: auto;
  flex-shrink: 0;
}
.logo-wrap {
  display: flex; align-items: center;
  height: 68px; overflow: hidden;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.01em;
  transition: color 0.3s;
}
.logo-accent { color: var(--gold-light); }
.logo-sub {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.navbar.scrolled .logo-accent { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-link {
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: color 0.22s;
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  padding: 0.52rem 1.2rem;
  background: var(--gold); color: var(--white) !important;
  border-radius: var(--r); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.navbar.scrolled .nav-cta { color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: #000000;
  display: flex; align-items: center;
  padding: 120px 6% 100px;
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 90% 35%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(30,58,95,0.6) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  animation: slideUp 0.7s var(--ease) both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.06; letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s var(--ease) 0.1s both;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.65);
}
.hero-sub {
  font-size: 1.05rem; font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 500px;
  margin-bottom: 2.5rem;
  animation: slideUp 0.8s var(--ease) 0.2s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: slideUp 0.8s var(--ease) 0.3s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--gold); color: var(--white);
  border-radius: var(--r); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.28s var(--ease);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r); font-weight: 600; font-size: 0.9rem;
  transition: all 0.28s var(--ease);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.hero-metrics {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: slideUp 0.8s var(--ease) 0.4s both;
}
.hero-metric-val {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.02em; line-height: 1;
}
.hero-metric-val span { color: var(--gold); }
.hero-metric-label {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--navy); border-top: 1px solid rgba(201,168,76,0.2); padding: 12px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}
.marquee-track .accent { color: rgba(201,168,76,0.3); margin: 0 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--off-white);
  padding: 56px 6%;
  border-bottom: 1px solid var(--gray-100);
}
.stats-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--gray-100);
  border: 1px solid var(--gray-100); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.stat-item {
  background: var(--white); padding: 2rem 1.5rem;
  text-align: center; transition: background 0.25s;
}
.stat-item:hover { background: var(--gold-pale); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem; font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1; display: block;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.7rem; font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 6px; display: block;
}

/* ─── SOBRE ──────────────────────────────────────────────────── */
.sobre {
  padding: 110px 6%; background: var(--white);
  position: relative;
}
.sobre-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sobre-visual { position: relative; }
.sobre-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--r-lg); aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg);
}
.sobre-card-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
}
.sobre-card-glow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(201,168,76,0.12), transparent);
}
.sobre-card-photo { padding: 0; overflow: hidden; }
.raquel-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 8%; display: block; }
.sobre-card-letter {
  font-family: var(--font-display);
  font-size: 13rem; font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  letter-spacing: -0.04em; user-select: none; position: relative; z-index: 1;
}
.sobre-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--gold); color: var(--white);
  border-radius: var(--r); padding: 1.1rem 1.3rem; text-align: center;
  box-shadow: var(--shadow-md);
}
.sobre-badge-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.sobre-badge-txt {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.8;
}
.sobre-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.sobre-text h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.sobre-text p {
  font-size: 0.95rem; color: var(--gray-500); line-height: 1.85; margin-bottom: 1rem;
}
.feature-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.875rem; }
.feature-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-100); border-radius: var(--r);
  transition: all 0.28s var(--ease);
}
.feature-row:hover {
  border-color: rgba(201,168,76,0.25);
  background: var(--gold-pale);
  transform: translateX(4px);
}
.feature-ico {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--navy); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.feature-row strong {
  font-size: 0.85rem; font-weight: 700;
  color: var(--navy); display: block; margin-bottom: 2px;
}
.feature-row span { font-size: 0.8rem; color: var(--gray-500); }

/* ─── SERVIÇOS ───────────────────────────────────────────────── */
.servicos {
  background: var(--navy); padding: 100px 6%;
  position: relative; overflow: hidden;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -40px 0;
}
.servicos-bg-text {
  position: absolute; right: -1%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 13vw, 15rem); font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.servicos-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; padding: 40px 0; }
.servicos-header {
  display: grid; grid-template-columns: auto 1fr;
  gap: 3rem; align-items: end; margin-bottom: 4rem;
}
.servicos-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -0.02em;
}
.servicos-header h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.servicos-header-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.45);
  line-height: 1.8; max-width: 320px; margin-left: auto;
}
.servicos-list { display: flex; flex-direction: column; }
.servico-row {
  display: grid; grid-template-columns: 64px 1fr 52px;
  gap: 2rem; align-items: center;
  padding: 1.75rem 0; border-top: 1px solid rgba(255,255,255,0.07);
  transition: all 0.28s var(--ease); cursor: default;
}
.servico-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.servico-row:hover { padding-left: 8px; border-color: rgba(201,168,76,0.3); }
.s-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: rgba(255,255,255,0.12); line-height: 1; transition: color 0.3s;
}
.servico-row:hover .s-num { color: rgba(201,168,76,0.6); }
.s-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.35rem; letter-spacing: -0.01em;
}
.s-body p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.s-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem; transition: all 0.28s;
}
.servico-row:hover .s-icon {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
}

/* ─── DIFERENCIAIS ───────────────────────────────────────────── */
.diferenciais { background: var(--off-white); padding: 110px 6%; }
.diferenciais-inner { max-width: 1140px; margin: 0 auto; }
.diferenciais-intro {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: end; margin-bottom: 3.5rem;
}
.diferenciais-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.02em;
}
.diferenciais-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.dif-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.dif-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.dif-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.dif-card:hover::after { transform: scaleX(1); }
.dif-bignumber {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 700; color: transparent;
  -webkit-text-stroke: 1.5px var(--gray-100);
  line-height: 1; margin-bottom: 1rem; letter-spacing: -0.02em;
  transition: -webkit-text-stroke-color 0.3s;
}
.dif-card:hover .dif-bignumber { -webkit-text-stroke-color: rgba(201,168,76,0.25); }
.dif-card h3 {
  font-size: 0.92rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem;
}
.dif-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; }

/* ─── DEPOIMENTOS ────────────────────────────────────────────── */
.depoimentos { background: var(--white); padding: 100px 6%; }
.depoimentos-inner { max-width: 1140px; margin: 0 auto; }
.dep-header { margin-bottom: 3.5rem; }
.dep-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.6rem;
}
.dep-header p { font-size: 0.95rem; color: var(--gray-500); }

/* ─── FUNDADORA CARD ─────────────────────────────────────────── */
.dep-founder {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 0; border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.dep-founder-photo {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; display: block;
}
.dep-founder-content {
  background: var(--navy); padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.dep-founder-content .dep-quote-mark {
  color: rgba(201,168,76,0.15); font-size: 7rem;
  top: -0.75rem; right: 1.5rem;
}
.dep-founder-text {
  font-family: var(--font-display);
  font-size: 1.15rem; font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.85); line-height: 1.75;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.dep-founder-meta { border-top: 1px solid rgba(201,168,76,0.2); padding-top: 1.25rem; }
.dep-founder-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; color: var(--gold);
  margin-bottom: 3px;
}
.dep-founder-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* Carousel */
.dep-carousel-outer {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem;
}
.dep-carousel-viewport {
  overflow: hidden; flex: 1;
}
.dep-carousel-track {
  display: flex; gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.dep-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gold); background: transparent;
  color: var(--gold); font-size: 1.5rem; line-height: 1;
  cursor: pointer; transition: all 0.22s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.dep-arrow:hover:not(:disabled) { background: var(--gold); color: var(--white); }
.dep-arrow:disabled { opacity: 0.25; cursor: default; }
.dep-card {
  flex: 0 0 calc(33.333% - 0.84rem); scroll-snap-align: start;
  border: 1px solid var(--gray-100); border-radius: var(--r-lg);
  padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: all 0.3s var(--ease); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.dep-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}
.dep-quote-mark {
  font-family: var(--font-display); font-size: 6rem; font-weight: 700;
  color: var(--gold-pale); position: absolute; top: -1rem; right: 1.25rem;
  line-height: 1; user-select: none; transition: color 0.3s;
}
.dep-card:hover .dep-quote-mark { color: rgba(201,168,76,0.2); }
.dep-stars { color: #F59E0B; font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 1rem; }
.dep-text {
  font-size: 0.92rem; color: var(--gray-700); line-height: 1.8;
  font-style: italic; margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.dep-author { display: flex; align-items: center; gap: 0.8rem; }
.dep-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,0.7); flex-shrink: 0;
}
.dep-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.dep-role { font-size: 0.72rem; color: var(--gray-500); }

/* ─── CTA STRIP ──────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 80px 6%; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-strip-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 250px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip-content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1.12; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.cta-strip p { font-size: 0.95rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; }

/* ─── CONTATO ────────────────────────────────────────────────── */
.contato { background: var(--off-white); padding: 100px 6%; }
.contato-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 80px; align-items: start;
}
.contato h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.contato-sub {
  font-size: 0.92rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 2.25rem;
}
.contact-items { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.contact-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r); transition: all 0.28s;
  box-shadow: var(--shadow-sm);
}
.contact-row:hover {
  border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-md);
}
.contact-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--navy); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-row strong {
  display: block; font-size: 0.67rem; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 3px;
}
.contact-row span, .contact-row a {
  font-size: 0.88rem; color: var(--navy);
  white-space: pre-line; transition: color 0.22s;
}
.contact-row a:hover { color: var(--gold); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 1.75rem; background: #25D366; color: var(--white);
  border-radius: var(--r); font-weight: 700; font-size: 0.9rem;
  transition: all 0.28s var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: #1fbe5c; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}
.btn-wa svg { width: 18px; height: 18px; fill: white; }
.mapa-frame {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 440px;
}
.mapa-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 64px 6% 28px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr;
  gap: 60px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 700; color: var(--white);
}
.footer-brand-accent { color: var(--gold-light); }
.footer-brand-sub {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  display: block; margin-bottom: 1rem;
}
.footer-brand-desc { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 260px; }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.38); transition: color 0.22s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.soc-btn {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.4);
  transition: all 0.25s;
}
.soc-btn:hover { border-color: rgba(201,168,76,0.5); color: var(--gold-light); background: rgba(201,168,76,0.08); }
.soc-icon { width: 20px; height: 20px; object-fit: contain; opacity: 0.7; transition: opacity 0.25s; }
.soc-btn:hover .soc-icon { opacity: 1; }
.contact-ico-img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.22);
  flex-wrap: wrap; gap: 0.5rem;
}

/* ─── WA FLOAT ───────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s; animation: waPulse 3s ease infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%     { box-shadow: 0 4px 38px rgba(37,211,102,0.7); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-intro { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    flex-direction: column; align-items: stretch;
    padding: 1.5rem 6%; gap: 0;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: all 0.35s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--gray-100); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-link { display: block; padding: 0.875rem 0; font-size: 0.95rem; color: var(--gray-700) !important; }
  .nav-cta { margin-top: 0.75rem; text-align: center; display: block; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-visual { display: none; }
  .servicos-header { grid-template-columns: 1fr; }
  .servico-row { grid-template-columns: 52px 1fr; }
  .s-icon { display: none; }
  .dep-card { flex: 0 0 calc(100% - 0px); }
  .dep-founder { grid-template-columns: 1fr; }
  .dep-founder-photo { height: 260px; }
  .contato-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hero { clip-path: none; padding: 100px 6% 60px; }
  .servicos { clip-path: none; margin: 0; }
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { justify-content: center; }
  .hero-metrics { gap: 1.75rem; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── NAV LINK ACTIVE ────────────────────────────────────────── */
.nav-link-active { color: var(--white) !important; }
.navbar.scrolled .nav-link-active { color: var(--navy) !important; }

/* ─── PAGE HEADER ────────────────────────────────────────────── */
.page-header {
  background: var(--navy); padding: 120px 6% 64px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -24px;
}
.page-header-inner { max-width: 1140px; margin: 0 auto; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 1rem;
}
.page-header-sub {
  font-size: 1rem; color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 520px;
}

/* ─── FILTERS BAR ────────────────────────────────────────────── */
.blog-filters-bar {
  background: var(--white); padding: 28px 6%;
  border-bottom: 1px solid var(--gray-100);
  position: sticky; top: 68px; z-index: 100;
}
.blog-filters-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; gap: 0.625rem; flex-wrap: wrap;
}
.filter-btn {
  padding: 0.4rem 1rem;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  color: var(--gray-500); cursor: pointer;
  transition: all 0.22s var(--ease); font-family: var(--font-body);
}
.filter-btn:hover { background: var(--off-white); color: var(--navy); border-color: var(--gray-300); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ─── BLOG / NOTICIAS GRID ───────────────────────────────────── */
.blog-grid-section { padding: 48px 6% 80px; background: var(--off-white); }
.blog-grid-inner { max-width: 1140px; margin: 0 auto; }
.post-featured {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 2.5rem;
  margin-bottom: 1.5rem; cursor: pointer;
  transition: all 0.3s var(--ease); box-shadow: var(--shadow-sm);
  display: block; text-decoration: none; color: inherit;
}
.post-featured:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
  border-color: rgba(201,168,76,0.3);
}
.post-featured-label, .noticia-featured-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block;
}
.post-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; letter-spacing: -0.02em; margin: 0.5rem 0 0.875rem;
}
.post-featured-resumo {
  font-size: 0.95rem; color: var(--gray-500);
  line-height: 1.75; max-width: 680px; margin-bottom: 1.25rem;
}
.post-featured-meta {
  font-size: 0.75rem; color: var(--gray-300);
  display: flex; gap: 0.5rem; margin-bottom: 1rem;
}
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.post-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 1.75rem; cursor: pointer;
  transition: all 0.28s var(--ease); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.post-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}
.post-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  background: var(--gold-pale); border-radius: 100px;
  padding: 3px 10px; margin-bottom: 0.75rem;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 0.625rem;
}
.post-card-resumo {
  font-size: 0.82rem; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 1.25rem; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.post-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.post-date { font-size: 0.72rem; color: var(--gray-300); }
.post-read-link { font-size: 0.78rem; font-weight: 700; color: var(--gold); transition: color 0.22s; }
.post-card:hover .post-read-link,
.post-featured:hover .post-read-link { color: var(--gold-light); }

/* ─── POST DETAIL ────────────────────────────────────────────── */
.blog-post-detail { padding-top: 68px; background: var(--off-white); min-height: 100vh; }
.blog-post-detail-inner { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.back-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.82rem; font-weight: 600; color: var(--gray-500);
  font-family: var(--font-body); padding: 0; margin-bottom: 2rem;
  transition: color 0.22s; display: block;
}
.back-btn:hover { color: var(--navy); }
.post-meta-top { display: flex; align-items: center; gap: 0.875rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.post-meta-top .post-date, .post-read { font-size: 0.78rem; color: var(--gray-500); }
.post-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 1rem;
}
.post-detail-resumo { font-size: 1.05rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 2rem; }
.post-divider { height: 1px; background: var(--gray-100); margin-bottom: 2rem; }
.post-p { font-size: 0.97rem; color: var(--gray-700); line-height: 1.85; margin-bottom: 1.25rem; }
.post-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; color: var(--navy);
  margin: 2rem 0 0.75rem; letter-spacing: -0.01em;
}
.post-list { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-list li { font-size: 0.97rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 0.375rem; }
.post-cta-box {
  margin-top: 3rem; padding: 2rem; background: var(--navy);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.post-cta-box h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.post-cta-box p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.7rem 1.35rem; background: var(--gold); color: var(--white);
  border-radius: var(--r); font-weight: 700; font-size: 0.82rem;
  white-space: nowrap; transition: all 0.25s var(--ease);
}
.btn-primary-sm:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── NOTICIAS ───────────────────────────────────────────────── */
.noticia-featured-img { width: 100%; height: 200px; border-radius: var(--r); overflow: hidden; margin-bottom: 1.25rem; background: var(--gray-50); }
.noticia-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.noticia-card-img { width: 100%; height: 140px; border-radius: var(--r); overflow: hidden; margin-bottom: 1rem; background: var(--gray-50); }
.noticia-card-img img { width: 100%; height: 100%; object-fit: cover; }
.noticia-card { text-decoration: none; }
.noticias-loading { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.skeleton-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; border: 1px solid var(--gray-100); }
.skeleton-tag, .skeleton-title, .skeleton-text { background: var(--gray-50); border-radius: 4px; animation: shimmer 1.5s ease infinite; }
.skeleton-tag { height: 20px; width: 70px; margin-bottom: 0.875rem; border-radius: 100px; }
.skeleton-title { height: 18px; width: 90%; margin-bottom: 0.5rem; }
.skeleton-title.short { width: 70%; margin-bottom: 1rem; }
.skeleton-text { height: 13px; width: 100%; margin-bottom: 0.375rem; }
.skeleton-text.short { width: 75%; }
@keyframes shimmer { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.noticias-erro { text-align: center; padding: 4rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.noticias-erro span { font-size: 2.5rem; }
.noticias-erro p { font-size: 0.95rem; color: var(--gray-500); }

/* ─── BLOG PREVIEW NA HOME ───────────────────────────────────── */
.blog-preview { padding: 100px 6%; background: var(--white); }
.blog-preview-inner { max-width: 1140px; margin: 0 auto; }
.blog-preview-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.blog-preview-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 700; color: var(--navy); line-height: 1.1; letter-spacing: -0.02em; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.post-card-sm {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 1.75rem; cursor: pointer;
  transition: all 0.28s var(--ease); display: flex; flex-direction: column; gap: 0.625rem;
  text-decoration: none; color: inherit;
}
.post-card-sm:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(201,168,76,0.3); }
.post-card-sm h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; letter-spacing: -0.01em; }
.post-card-sm p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.btn-outline-sm {
  display: inline-flex; align-items: center; padding: 0.55rem 1.1rem;
  background: transparent; color: var(--navy); border: 1px solid var(--gray-300);
  border-radius: var(--r); font-weight: 600; font-size: 0.8rem; white-space: nowrap;
  cursor: pointer; font-family: var(--font-body); transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn-outline-sm:hover { border-color: var(--navy); background: var(--off-white); }

/* ─── RESPONSIVE BLOG/NOTICIAS ───────────────────────────────── */
@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr 1fr; }
  .noticias-loading { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .noticias-loading { grid-template-columns: 1fr; }
  .blog-preview-header { flex-direction: column; align-items: flex-start; }
  .post-cta-box { flex-direction: column; }
}
