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

:root {
  --gold: #c5a059;
  --gold-light: #d4b06a;
  --gold-dim: rgba(197,160,89,0.15);
  --bg: #0c1422;
  --bg2: #141e30;
  --bg3: #141e30;
  --border: rgba(255,255,255,0.10);
  --text: #f2eeea;
  --muted: #8a97aa;
  --white06: rgba(255,255,255,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(ellipse 70% 50% at 85% 5%, rgba(197,160,89,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(197,160,89,.05) 0%, transparent 55%),
    linear-gradient(170deg, #0c1422 0%, #0a1018 55%, #0d1828 100%);
  background-attachment: fixed;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Playfair Display', serif; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.18; }

/* ── UTILS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* ── LOGO ── */
.logo-main {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text);
  font-family: 'Playfair Display', serif;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  transition: all .35s ease;
  padding: 24px 0;
}
#navbar.scrolled {
  top: 12px;
  padding: 0;
}
#navbar.scrolled .nav-inner {
  background: rgba(12,20,34,.88);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(197,160,89,.14);
  border-radius: 999px;
  box-shadow: 0 8px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 10px 20px;
}
#navbar.scrolled .nav-inner .container {
  padding: 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: .73rem; font-weight: 500; letter-spacing: .04em; color: var(--text); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--bg); font-weight: 700; font-size: .8rem;
  padding: 10px 20px; border-radius: 4px; transition: background .2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); font-size: 1.4rem; }
.nav-mobile { display: none; background: var(--bg2); border-top: 1px solid var(--border); flex-direction: column; padding: 16px 24px; gap: 4px; }
.nav-mobile a { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--text); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(6,11,17,.72) 40%, rgba(6,11,17,.28));
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 140px 0 80px; text-align: left; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-trust .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.hero-trust span { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(240,236,228,.7); }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; color: var(--text); margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: rgba(240,236,228,.75); margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--bg); font-weight: 700; font-size: .9rem;
  padding: 15px 28px; border-radius: 4px; transition: transform .2s, background .2s;
}
.btn-primary:hover { background: var(--gold-light); transform: scale(1.02); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(240,236,228,.35); color: var(--text); font-weight: 500; font-size: .9rem;
  padding: 15px 28px; border-radius: 4px; transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-dots { position: absolute; bottom: 60px; right: 8%; z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 28px; height: 3px; background: rgba(255,255,255,.25); cursor: pointer; transition: background .3s, width .3s; border: none; border-radius: 2px; }
.hero-dot.active { background: var(--gold); width: 44px; }
.scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 3; text-align: center; }
.scroll-hint span { display: block; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(240,236,228,.45); margin-bottom: 8px; }
.scroll-arrow { width: 20px; height: 20px; border-right: 1px solid rgba(197,160,89,.6); border-bottom: 1px solid rgba(197,160,89,.6); transform: rotate(45deg); margin: 0 auto; animation: scrollBounce 1.8s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ── STATS BAR ── */
.stats-bar { background: var(--bg2); border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat { text-align: center; padding: 12px 20px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg2); }
.section-border { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { text-align: center; max-width: 740px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
.section-header p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.gold-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(197,160,89,.35); border-radius: 100px;
  padding: 8px 20px; margin-bottom: 24px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--gold); background: rgba(197,160,89,.05);
}
.gold-line { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 24px; }

/* ── GLOW CARD ── */
.glow-card {
  border: 1px solid var(--white06);
  border-radius: 6px;
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.glow-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(197,160,89,.12), 0 0 28px rgba(197,160,89,.32), 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(-4px);
}

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; max-width: 880px; margin: 0 auto; }
.service-card { background: var(--bg2); padding: 40px; border-radius: 6px; display: flex; flex-direction: column; height: 100%; }
.service-icon { width: 52px; height: 52px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.service-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }
.service-card p { color: var(--muted); line-height: 1.75; flex: 1; margin-bottom: 28px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; font-size: .88rem; transition: gap .2s; }
.link-arrow:hover { gap: 12px; }

/* ── TEAM GRID ── */
.team-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--border); }
.team-row:last-child { border-bottom: none; margin-bottom: 0; }
.team-row.reverse .team-photo { order: 2; }
.team-row.reverse .team-info { order: 1; }
.team-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: 4px; }
.team-name { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.team-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.badge-gold { background: rgba(197,160,89,.12); border: 1px solid rgba(197,160,89,.3); color: var(--gold); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 5px 12px; border-radius: 100px; }
.badge-dark { background: rgba(255,255,255,.06); border: 1px solid var(--border); color: rgba(240,236,228,.7); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 5px 12px; border-radius: 100px; }
.team-specialty { color: var(--gold); font-style: italic; font-size: .95rem; font-weight: 500; margin-bottom: 20px; }
.team-bio { color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.team-divider { width: 100%; height: 1px; background: rgba(197,160,89,.2); margin-bottom: 20px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.team-tag { border: 1px solid var(--border); color: rgba(240,236,228,.6); font-size: .72rem; padding: 4px 12px; border-radius: 100px; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-grid.two-col { grid-template-columns: repeat(2,1fr); }
.blog-card { background: var(--bg2); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.blog-card-img { height: 190px; overflow: hidden; position: relative; display: flex; align-items: flex-end; padding: 16px; background: var(--bg3); }
.blog-img-inner { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.blog-img-inner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,11,17,.72) 0%, rgba(6,11,17,.28) 100%); }
.blog-card:hover .blog-img-inner { transform: scale(1.07); }
.blog-card-img .cat-badge { position: relative; z-index: 2; }
.blog-card-img .cat-badge { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: 5px 12px; border-radius: 100px; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: .72rem; color: var(--muted); margin-bottom: 12px; }
.blog-meta svg { width: 10px; height: 10px; fill: rgba(197,160,89,.5); }
.blog-card h2, .blog-card h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.blog-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; flex: 1; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--white06); }

/* ── ARTICLE LAYOUT ── */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; max-width: 1100px; margin: 0 auto; align-items: flex-start !important; }
.article-body { min-width: 0; }
.article-header { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.article-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; margin-bottom: 20px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; }
.article-meta span { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--muted); }
.article-meta svg { width: 12px; height: 12px; fill: rgba(197,160,89,.6); }
.article-content { color: rgba(240,236,228,.82); line-height: 1.85; }
.article-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 40px 0 16px; }
.article-content h3 { font-size: 1.15rem; font-weight: 600; color: var(--text); margin: 30px 0 12px; }
.article-content p { margin-bottom: 20px; }
.article-content ul { margin: 0 0 20px 20px; list-style: disc; }
.article-content ul li { margin-bottom: 8px; }
.article-content blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 32px 0; background: var(--bg2); border-radius: 0 4px 4px 0; color: var(--text); font-style: italic; }
.article-sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 130px !important;
  height: auto !important;
  z-index: 10 !important;
}
.article-sidebar .border-glow-interactive,
.article-sidebar .sidebar-cta {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
}
.sidebar-cta { background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 28px; }
.sidebar-cta h3 { font-size: 1.1rem; margin-bottom: 10px; }
.sidebar-cta p { font-size: .85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

/* ── CONTACT / FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 36px; line-height: 1.75; }
.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.info-icon { width: 40px; height: 40px; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 16px; height: 16px; fill: var(--gold); }
.info-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.info-value { color: var(--text); font-size: .9rem; line-height: 1.55; }
.map-wrap { margin-top: 28px; border-radius: 8px; overflow: hidden; }
.form-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 40px; }
.form-card h2 { font-size: 1.5rem; margin-bottom: 28px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,.15);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: .9rem; padding: 10px 0;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
  box-shadow: 0 2px 0 rgba(197,160,89,.3);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: var(--bg); font-weight: 700; font-size: .9rem;
  padding: 15px 24px; border: none; border-radius: 4px; cursor: pointer; transition: background .2s;
}
.btn-submit:hover { background: var(--gold-light); }

/* ── LP WHATSAPP (GLASSMORPHISM) ── */
.lp-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, #0a1220 50%, var(--bg) 100%);
}
.lp-hero::before {
  content: ''; position: absolute; top: -20%; left: -20%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(197,160,89,.08), transparent 70%); pointer-events: none;
}
.lp-glass {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 56px; max-width: 560px; width: 100%;
  box-shadow: 0 32px 64px rgba(0,0,0,.5);
}

/* ── LP HIGH-CONVERSION SECTIONS ── */
.lp-full-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background-image: url('img/hero-bg.webp');
  background-size: cover; background-position: center;
}
.lp-full-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,11,17,.92) 55%, rgba(6,11,17,.6) 100%);
}
.lp-hero-inner {
  position: relative; z-index: 2;
  max-width: 620px;
}
.lp-hero-inner h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 22px;
}
.lp-hero-inner h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-inner p {
  font-size: 1.05rem; color: rgba(240,236,228,.78);
  line-height: 1.75; margin-bottom: 36px;
}
.lp-hero-scroll-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 800; font-size: .95rem;
  padding: 17px 32px; border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  letter-spacing: .03em;
}
.lp-hero-scroll-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.lp-hero-trust {
  margin-top: 28px; display: flex; align-items: center; gap: 14px;
  color: rgba(240,236,228,.5); font-size: .78rem;
}
.lp-hero-trust span { display: flex; align-items: center; gap: 5px; }

.lp-solution {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
}
.lp-solution h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900; margin-bottom: 24px;
}
.lp-solution p {
  max-width: 700px; margin: 0 auto;
  color: rgba(240,236,228,.75); line-height: 1.85; font-size: 1rem;
}
.lp-solution-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(197,160,89,.15), rgba(197,160,89,.04));
  border: 1px solid rgba(197,160,89,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}

.lp-cards { padding: 100px 0; background: var(--bg); }
.lp-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.lp-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 36px 32px;
  transition: border-color .25s, box-shadow .25s;
}
.lp-card:hover {
  border-color: rgba(197,160,89,.35);
  box-shadow: 0 0 28px rgba(197,160,89,.07);
}
.lp-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(197,160,89,.15), rgba(197,160,89,.04));
  border: 1px solid rgba(197,160,89,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.lp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 12px; color: var(--text);
}
.lp-card p { color: var(--muted); font-size: .88rem; line-height: 1.75; }

.lp-form-section {
  padding: 100px 0;
  position: relative; overflow: hidden;
  background-image: url('img/page-hero-rafael-desk.webp');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.lp-form-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,11,17,.94) 0%, rgba(10,18,32,.88) 100%);
}
.lp-form-wrap {
  position: relative; z-index: 2;
  max-width: 600px; margin: 0 auto; text-align: center;
}
.lp-form-wrap h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900; margin-bottom: 12px;
}
.lp-form-wrap > p {
  color: rgba(240,236,228,.65); line-height: 1.75;
  margin-bottom: 40px; font-size: .95rem;
}
.glass-card {
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 48px;
  box-shadow: 0 32px 64px rgba(0,0,0,.5);
  text-align: left;
}
.lp-footer-min {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg);
}
.lp-footer-min p {
  color: var(--muted); font-size: .78rem;
}

@media (max-width: 900px) {
  .lp-cards-grid { grid-template-columns: 1fr; }
  .lp-hero-inner h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .glass-card { padding: 32px 24px; }
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
  background-color: var(--bg2);
  background-image: url('img/page-hero-rafael-desk.webp');
  background-size: cover; background-position: center;
  border-top: 1px solid var(--border);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,11,17,.88) 50%, rgba(6,11,17,.78));
  pointer-events: none; z-index: 0;
}
.cta-section::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at top, rgba(197,160,89,.07), transparent 70%);
  pointer-events: none; z-index: 1;
}
.cta-section > .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); max-width: 600px; margin: 0 auto 20px; }
.cta-section p { color: rgba(240,236,228,.75); max-width: 500px; margin: 0 auto 40px; font-size: 1.05rem; line-height: 1.75; }

/* ── AREAS PAGE ── */
.area-tabs { position: sticky; top: 72px; z-index: 40; background: rgba(6,11,17,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.area-tabs .container { display: flex; gap: 4px; padding: 10px 16px; }

/* Tab buttons — claramente clicáveis */
.tab-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  font-size: .85rem; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  border-bottom: 1.5px solid rgba(255,255,255,.1);
  transition: color .2s, background .2s, border-color .2s, transform .15s, box-shadow .2s;
  position: relative;
}
/* Aba inativa — pulsa levemente para chamar atenção */
.tab-btn:not(.active) {
  animation: rjd-tab-hint 3s ease-in-out 1.2s 2;
}
@keyframes rjd-tab-hint {
  0%, 100% { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
  50%       { background: rgba(197,160,89,.12); border-color: rgba(197,160,89,.35); color: var(--gold); }
}
/* Ícone de seta indicando interatividade */
.tab-btn:not(.active)::after {
  content: '›';
  font-size: 1.1rem;
  color: var(--gold);
  opacity: .5;
  margin-left: 2px;
  display: inline-block;
  transition: opacity .2s, transform .2s;
}
.tab-btn:not(.active):hover::after { opacity: 1; transform: translateX(3px); }
.tab-btn:not(.active):hover {
  color: var(--gold);
  background: rgba(197,160,89,.1);
  border-color: rgba(197,160,89,.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(197,160,89,.12);
}
/* Aba ativa */
.tab-btn.active {
  color: var(--gold);
  background: rgba(197,160,89,.12);
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(197,160,89,.15);
}
.tab-btn.active:hover { transform: none; }
.area-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; padding: 48px 0; }
.area-sidebar-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin-bottom: 20px; }
.area-sidebar-card h3 { font-size: 1rem; margin-bottom: 14px; }
.sidebar-link { display: flex; align-items: center; gap: 8px; padding: 8px 0; font-size: .85rem; color: var(--muted); border-bottom: 1px solid var(--border); transition: color .2s; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--gold); }
.service-block { background: var(--bg2); border-radius: 8px; overflow: hidden; margin-bottom: 32px; }
.service-block-header { padding: 28px 32px; border-bottom: 1px solid var(--border); }
.service-block-header h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.service-block-header .subtitle { color: var(--gold); font-size: .85rem; font-weight: 500; }
.service-block-body { padding: 28px 32px; }
.service-block-body > p { color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.service-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 28px; }
.service-col-title { display: flex; align-items: center; gap: 8px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 16px; }
.step-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.step-num { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(197,160,89,.12); border: 1px solid rgba(197,160,89,.3); color: var(--gold); font-size: .68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-text { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.timeline-box { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: 12px 16px; font-size: .82rem; color: var(--text); margin-bottom: 20px; }
.doc-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-size: .8rem; color: var(--muted); }
.doc-check { color: var(--gold); font-size: .65rem; margin-top: 3px; flex-shrink: 0; }
.faq-item { border: 1px solid var(--border); border-radius: 4px; margin-bottom: 8px; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; background: var(--bg3); color: var(--text); font-size: .82rem; font-weight: 500; text-align: left; border: none; cursor: pointer; transition: background .2s; }
.faq-question:hover { background: var(--bg2); }
.faq-answer { padding: 12px 16px; background: var(--bg); border-top: 1px solid var(--border); font-size: .82rem; color: var(--muted); line-height: 1.65; display: none; }
.faq-answer.open { display: block; }
.faq-icon { flex-shrink: 0; color: var(--gold); font-size: .75rem; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 56px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.75; max-width: 300px; }
.footer-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: .88rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .78rem; color: var(--muted); }
.footer-credit { font-size: .78rem; color: var(--muted); }
.footer-credit a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.footer-credit a:hover { border-bottom-color: var(--gold); }

/* ── PAGE HERO ── */
/* .hero-layout-container — alias for hero-content-alignment-left */
.hero-layout-container {
    max-width: 1200px !important; width: 100% !important;
    margin: 0 auto !important; padding: 0 24px !important;
    display: flex !important; justify-content: flex-start !important;
}

.page-hero {
  position: relative; overflow: hidden;
  background-color: var(--bg2);
  background-size: cover; background-position: center;
  padding: 140px 0 72px; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,11,17,.82) 55%, rgba(6,11,17,.68));
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.breadcrumb { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: rgba(255,255,255,.2); }
.breadcrumb .current { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; margin-bottom: 20px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto; line-height: 1.75; }
.page-hero .blog-meta { justify-content: center !important; width: 100% !important; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .team-row, .contact-grid, .article-layout, .area-layout { grid-template-columns: 1fr; }
  .team-row.reverse .team-photo, .team-row.reverse .team-info { order: unset; }
  .area-sidebar-card { display: none; }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .service-cols { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .blog-grid, .blog-grid.two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-content { padding: 120px 0 80px; }
  .lp-glass { padding: 32px 24px; }
  .team-photo img { aspect-ratio: 3/2; }
}

/* ── MOUSE SPOTLIGHT ── */
.mouse-spotlight {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(circle 450px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(197,160,89,.06), transparent 70%);
}

/* ── FAQ ACCORDION (Home) ── */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.border-glow-interactive {
  border: 1px solid var(--white06);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.border-glow-interactive.open {
  border-color: rgba(197,160,89,.4);
  box-shadow: 0 0 24px rgba(197,160,89,.1);
}
.faq-accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: transparent; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 500;
  text-align: left; border: none; cursor: pointer; transition: color .2s;
}
.faq-accordion-btn:hover { color: var(--gold); }
.faq-accordion-icon {
  flex-shrink: 0; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.5rem; font-weight: 300; line-height: 1;
  border: 1px solid rgba(197,160,89,.3); border-radius: 50%;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.border-glow-interactive.open .faq-accordion-icon { transform: rotate(45deg); }
.faq-accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.border-glow-interactive.open .faq-accordion-body { max-height: 500px; }
.faq-accordion-content {
  padding: 0 24px 24px; color: var(--muted);
  font-size: .9rem; line-height: 1.8;
  border-top: 1px solid var(--border); padding-top: 16px;
}

/* ── 4-COLUMN FOOTER ── */
.footer-4col { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-col p { color: var(--muted); font-size: .88rem; line-height: 1.75; max-width: 260px; margin-top: 12px; }
.footer-logo-text { display: inline-block; }
.footer-address { display: block; color: var(--muted); font-size: .84rem; line-height: 1.7; margin-top: 10px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.social-icon {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  background-color: transparent !important;
  color: var(--muted); transition: border-color .2s, color .2s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background-color: #c5a059 !important; color: #060b11 !important; font-weight: 700; font-size: .82rem;
  padding: 12px 20px; border-radius: 2px !important;
  transition: background .2s, box-shadow .2s, transform .2s; white-space: nowrap;
}
.footer-whatsapp-btn:hover { background-color: #d4b06a !important; box-shadow: 0 4px 18px rgba(197,160,89,.25); transform: translateY(-2px); }
.footer-bottom-flex {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 10px;
}
.footer-bottom-flex p { font-size: .78rem; color: var(--muted); }

@media (max-width: 1024px) {
  .footer-4col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-4col { grid-template-columns: 1fr; }
  .footer-bottom-flex { flex-direction: column; gap: 8px; text-align: center; }
}

/* COMPENSAÇÃO E RESPIRAÇÃO DE MALHA UI/UX - HERO */
.slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.hero-content-alignment-left {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    display: flex !important;
    justify-content: flex-start !important;
}

.hero-text-box {
    text-align: left !important;
    max-width: 720px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.hero-text-box h1,
.hero-text-box p,
.hero-actions {
    text-align: left !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
}

/* ── FOOTER BOTTOM TRANSLUCENT ── */
.footer-bottom-flex {
  opacity: 0.3;
  transition: opacity .4s ease;
}
.footer-bottom-flex:hover { opacity: 1; }

/* ── ABORDAGEM PREVENTIVA HIGHLIGHT ── */
.preventive-highlight { background: var(--bg2); border: 1px solid rgba(197,160,89,.18); border-radius: 8px; padding: 32px 36px; }
.preventive-inner { display: flex; align-items: center; gap: 28px; }
.preventive-icon { flex-shrink: 0; width: 56px; height: 56px; border: 1px solid rgba(197,160,89,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.preventive-text { flex: 1; }
.preventive-text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.preventive-text p { color: var(--muted); font-size: .87rem; line-height: 1.7; }
@media (max-width: 768px) {
  .preventive-inner { flex-direction: column; align-items: flex-start; }
  .preventive-highlight { padding: 24px 20px; }
}

/* ── REGIONAL SEO GRID ── */
.regional-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.regional-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 28px 24px; }
.regional-icon { margin-bottom: 14px; }
.regional-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.regional-card p { color: var(--muted); font-size: .84rem; line-height: 1.7; }
@media (max-width: 1024px) { .regional-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .regional-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ── */
.review-stars-header {
  display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 20px;
}
.stars-lg { font-size: 1.4rem; color: var(--gold); letter-spacing: 3px; }
.review-score { font-size: 1.1rem; font-weight: 700; color: var(--text); font-family: 'Playfair Display', serif; }
.review-count { font-size: .78rem; font-weight: 400; color: var(--muted); letter-spacing: .06em; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg2);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(197,160,89,.08) 0%, var(--bg2) 60%);
  border-color: rgba(197,160,89,.3) !important;
}
.testimonial-card--featured .testimonial-quote-mark {
  color: rgba(197,160,89,.35);
}

.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: .7;
  color: rgba(197,160,89,.18);
  margin-bottom: 16px;
  user-select: none;
  font-style: italic;
}

.testimonial-text {
  color: var(--text);
  font-size: .97rem;
  line-height: 1.78;
  flex: 1;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-card--featured .testimonial-text {
  font-size: 1rem;
  color: var(--text);
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: rgba(197,160,89,.18);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197,160,89,.25), rgba(197,160,89,.08));
  border: 1px solid rgba(197,160,89,.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .85rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: .03em;
}

.testimonial-info { flex: 1; }
.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 3px;
}
.testimonial-role {
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold);
  font-weight: 600; margin-bottom: 5px;
}
.testimonial-stars { color: var(--gold); font-size: .78rem; letter-spacing: 2px; }

.testimonial-google-badge {
  flex-shrink: 0; opacity: .7;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-quote-mark { font-size: 4rem; }
}

/* ── ESCRITÓRIO SECTION BG ── */
.escritorio-section {
  position: relative;
  background-image: url('img/page-hero-dr.webp') !important;
  background-size: cover;
  background-position: center top;
}
.escritorio-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,11,17,.91) 50%, rgba(6,11,17,.84));
  pointer-events: none; z-index: 0;
}
.escritorio-section > .container { position: relative; z-index: 1; }

/* ── CONTACT PAGE PARALLAX ── */
.contact-page-main {
  position: relative;
  background-image: url('img/page-hero-office.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}
.contact-page-main::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6,11,17,.86);
  pointer-events: none; z-index: 0;
}
.contact-page-main > section { position: relative; z-index: 1; }
.contact-page-main .form-card {
  background: rgba(17,24,39,.75);
  backdrop-filter: blur(12px);
  border-color: rgba(197,160,89,.18);
}
.contact-page-main .info-icon {
  background: rgba(17,24,39,.6);
}
@media (max-width: 768px) {
  .contact-page-main { background-attachment: scroll; }
}

/* ── DUE DILIGENCE GRID ── */
.due-diligence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.dd-step { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 28px 24px; }
.dd-step.dd-cta { border-color: rgba(197,160,89,.3); background: linear-gradient(135deg, rgba(197,160,89,.06), var(--bg2)); }
.dd-num { font-size: 1.8rem; font-weight: 900; color: rgba(197,160,89,.3); margin-bottom: 12px; line-height: 1; font-family: 'Playfair Display', serif; }
.dd-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.dd-step p { color: var(--muted); font-size: .84rem; line-height: 1.7; }
@media (max-width: 1024px) { .due-diligence-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .due-diligence-grid { grid-template-columns: 1fr; } }

/* CONTROLES DO SLIDER COM MARGEM DE SEGURANÇA */
.slider-controls {
    position: absolute !important;
    bottom: 60px !important;
    right: 8% !important;
    z-index: 10 !important;
    display: flex !important;
    gap: 12px !important;
}

/* ── FULL-BLEED MAP SECTION ── */
.full-bleed-map-section {
  position: relative; width: 100%; height: 500px; overflow: hidden;
}
#contato-map {
  width: 100%; height: 100%; display: block;
}
/* Deixa o tile layer do Leaflet sem filtro — já é escuro pelo CartoDB */
.leaflet-container { background: #0c1420; }
.map-floating-card {
  position: absolute; top: 50%; left: 60px; transform: translateY(-50%); z-index: 1000;
  background: rgba(6,11,17,.92); backdrop-filter: blur(20px);
  border: 1px solid rgba(197,160,89,.25); border-radius: 10px; padding: 32px; max-width: 320px;
}
.map-floating-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.map-floating-card p { color: var(--muted); font-size: .86rem; line-height: 1.65; }
/* Controles do Leaflet — escurecer para combinar */
.leaflet-bar a, .leaflet-bar a:hover { background: var(--bg2); color: var(--text); border-color: var(--border); }
.leaflet-bar a:hover { background: var(--bg3); }
@media (max-width: 768px) {
  .full-bleed-map-section { height: 460px; }
  .map-floating-card { left: 16px; right: 16px; max-width: none; padding: 22px; top: auto; bottom: 16px; transform: none; z-index: 1000; }
}

/* ═══════════════════════════════════════════════
   CORREÇÕES E MELHORIAS — OVERRIDE
   ═══════════════════════════════════════════════ */

/* ── LOGO IMAGE (navbar + footer) ── */
.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 180px;
  display: block;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.footer-logo-img img {
  height: 52px;
  width: auto;
  max-width: 200px;
  display: block;
  filter: brightness(0) invert(1);
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-logo-text { display: none; }

/* ── MOBILE NAVBAR FIX ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta {
    display: flex !important;
    font-size: .72rem;
    padding: 9px 14px;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 101;
  }
  .nav-inner {
    gap: 10px;
  }
  .nav-logo img {
    height: 40px;
    max-width: 130px;
  }
}

/* ── TEAM PHOTOS FIX (quem-somos) ── */
.team-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .team-photo img {
    aspect-ratio: 3/2;
    object-position: center 20%;
    max-height: 420px;
  }
}
@media (max-width: 768px) {
  .team-photo img {
    aspect-ratio: 1/1;
    object-position: center 15%;
    max-height: 320px;
    border-radius: 4px;
  }
}

/* ── ARTICLE HEADER FIX ── */
.article-page-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 0;
}
.article-page-header .container {
  max-width: 1100px;
}
.article-page-header h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 900;
  max-width: 800px;
  margin: 16px 0 20px;
  line-height: 1.2;
  word-break: break-word;
}

/* ═══════════════════════════════════════════════
   ÁREAS DE ATUAÇÃO — REDESIGN PREMIUM
   ═══════════════════════════════════════════════ */

/* Override service-block para visual mais premium */
.service-block {
  background: var(--bg2);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  transition: border-color .3s ease;
}
.service-block:hover {
  border-color: rgba(197,160,89,.2);
}

/* Header da seção com accent lateral dourado */
.service-block-header {
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  background: linear-gradient(135deg, rgba(197,160,89,.04) 0%, transparent 60%);
}
.service-block-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), rgba(197,160,89,.3));
  border-radius: 0 2px 2px 0;
}
.service-block-header .service-block-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-block-header .service-block-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(197,160,89,.2);
  max-width: 60px;
}
.service-block-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.service-block-header .subtitle {
  color: rgba(240,236,228,.55);
  font-size: .88rem;
  font-weight: 400;
}

/* Body */
.service-block-body {
  padding: 36px 40px;
}
.service-block-body > p {
  color: rgba(240,236,228,.75);
  line-height: 1.85;
  margin-bottom: 36px;
  font-size: .97rem;
  max-width: 720px;
}

/* Quick facts bar */
.service-quick-facts {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.quick-fact {
  flex: 1;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  background: rgba(197,160,89,.03);
}
.quick-fact:last-child { border-right: none; }
.quick-fact-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 6px;
}
.quick-fact-value {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* Timeline de etapas — vertical premium */
.process-timeline {
  margin-bottom: 36px;
}
.process-timeline-title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-timeline-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.timeline-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(to right, rgba(197,160,89,.3), rgba(197,160,89,.1));
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.timeline-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.timeline-step-text {
  font-size: .82rem;
  color: rgba(240,236,228,.72);
  line-height: 1.55;
}

/* Dois painéis: docs + FAQ */
.service-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.service-panel {
  background: rgba(6,11,17,.5);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.service-panel-title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.doc-list .doc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .83rem;
  color: rgba(240,236,228,.72);
}
.doc-list .doc-check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: .75rem;
}

/* FAQ premium dentro do service block */
.service-faq .faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
}
.service-faq .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: transparent;
  color: var(--text);
  font-size: .83rem;
  font-weight: 500;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.service-faq .faq-question:hover { color: var(--gold); }
.service-faq .faq-icon {
  color: var(--gold);
  font-size: .7rem;
  transition: transform .2s;
  flex-shrink: 0;
}
.service-faq .faq-item.open .faq-icon { transform: rotate(180deg); }
.service-faq .faq-answer {
  padding: 0 18px 14px;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  display: none;
}
.service-faq .faq-answer.open { display: block; padding-top: 12px; }

/* CTA inline do service block */
.service-block-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.service-block-cta-text {
  font-size: .88rem;
  color: var(--muted);
}
.service-block-cta-text strong {
  color: var(--text);
  display: block;
  font-size: .95rem;
  margin-bottom: 2px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .service-two-col { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: 1fr 1fr; }
  .timeline-steps::before { display: none; }
  .service-quick-facts { flex-direction: column; }
  .quick-fact { border-right: none; border-bottom: 1px solid var(--border); }
  .quick-fact:last-child { border-bottom: none; }
  .service-block-header { padding: 28px 28px; }
  .service-block-body { padding: 28px 28px; }
}
@media (max-width: 640px) {
  .timeline-steps { grid-template-columns: 1fr; }
  .service-block-header { padding: 24px 20px; }
  .service-block-body { padding: 20px; }
  .service-block-header h3 { font-size: 1.4rem; }
  .service-block-cta { flex-direction: column; align-items: flex-start; }
}


/* ─── ÁREA DE ATUAÇÃO: SIDEBAR STICKY ─── */
.area-layout > aside {
  position: -webkit-sticky;
  position: sticky;
  top: 144px;          /* navbar (~72px) + area-tabs (~52px) + gap */
  height: fit-content;
  align-self: start;
}

/* ─── MAPA CONTATO: MASCARAR CARD DO GOOGLE ─── */
.map-gmaps-mask {
  display: none;
}

/* ─── FOOTER SOCIAL ICONS: LINKEDIN + GOOGLE ─── */
.social-icon svg { display: block; }

/* ─── YOUTUBE: THUMBNAILS ─── */
.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.yt-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,11,17,.75) 0%, transparent 60%);
  z-index: 1;
}
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.blog-card-img { position: relative; overflow: hidden; }

/* ═══════════════════════════════════════════════
   SISTEMA VISUAL PREMIUM — ORBS + SPOTLIGHT + GRID
   ═══════════════════════════════════════════════ */

/* Orbs de fundo animados */
.site-orbs {
  position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none;
}
.site-orbs span {
  position: absolute; border-radius: 999px;
  filter: blur(120px); animation: orbDrift 22s ease-in-out infinite alternate;
}
.site-orbs span:nth-child(1) {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(197,160,89,.22), transparent 70%);
  right: -12%; top: -15%; animation-delay: 0s;
}
.site-orbs span:nth-child(2) {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,140,60,.14), transparent 70%);
  left: -8%; bottom: 15%; animation-delay: 9s;
}
.site-orbs span:nth-child(3) {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(30,60,140,.28), transparent 70%);
  right: 22%; bottom: -8%; animation-delay: 16s;
}
@keyframes orbDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(20px,-25px) scale(1.06); }
  100% { transform: translate(-15px,20px) scale(0.96); }
}

/* Spotlight global (mouse-follow) */
.site-spotlight {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 30%), rgba(255,255,255,.055), transparent 52%);
  transition: background 0.08s linear;
}

/* Navbar pill — afinamentos */
#navbar.scrolled {
  top: 12px; padding: 0;
}
#navbar:not(.scrolled) .nav-inner {
  padding: 0 24px;
}

/* Cards — mais leves e com mais contraste */
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.service-card:hover {
  border-color: rgba(197,160,89,.35);
  box-shadow: 0 0 32px rgba(197,160,89,.1), 0 8px 40px rgba(0,0,0,.4);
  transform: translateY(-4px);
}
.blog-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}
.blog-card:hover {
  border-color: rgba(197,160,89,.28);
  box-shadow: 0 0 28px rgba(197,160,89,.08);
}
.form-card, .sidebar-cta, .area-sidebar-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
}
.lp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(8px);
}
.lp-card:hover {
  border-color: rgba(197,160,89,.32);
  box-shadow: 0 0 28px rgba(197,160,89,.09);
}

/* Stats bar — mais clara */
.stats-bar {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}

/* Section-alt — mais clara */
.section-alt {
  background: rgba(255,255,255,.03);
}

/* Hero overlay — menos pesado */
.hero-slide::after {
  background: linear-gradient(110deg, rgba(12,20,34,.65) 35%, rgba(12,20,34,.2));
}

/* Glow card hover */
.glow-card:hover {
  border-color: rgba(197,160,89,.5);
  box-shadow: 0 0 0 1px rgba(197,160,89,.15), 0 0 36px rgba(197,160,89,.28), 0 8px 32px rgba(0,0,0,.4);
}

/* CTA section overlay — menos pesado */
.cta-section::before {
  background: linear-gradient(135deg, rgba(12,20,34,.82) 50%, rgba(12,20,34,.65));
}

/* Área tabs — mais leve */
.area-tabs {
  background: rgba(12,20,34,.9);
}

/* Nav pill — transição suave no inner quando não scrolled */
.nav-inner {
  transition: all .35s ease;
  border-radius: 999px;
  border: 1px solid transparent;
}

/* LP hero overlay — mais claro */
.lp-full-hero::before {
  background: linear-gradient(100deg, rgba(12,20,34,.88) 50%, rgba(12,20,34,.5) 100%);
}

/* ═══════════════════════════════════════════════
   CARD BACKGROUND IMAGE ENHANCEMENT
   ─ service-card e regional-card com imagem de fundo
   ═══════════════════════════════════════════════ */

.service-card.has-bg-img,
.regional-card.has-bg-img {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* Remove solid bg — a imagem fica no style inline */
  background-color: transparent;
}

/* Overlay escuro degradê para garantir legibilidade */
.service-card.has-bg-img::before,
.regional-card.has-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 13, 22, 0.68) 0%,
    rgba(8, 13, 22, 0.82) 50%,
    rgba(8, 13, 22, 0.94) 100%
  );
  z-index: 0;
  transition: opacity .4s ease;
}

/* No hover: revela um pouco mais a imagem */
.service-card.has-bg-img:hover::before,
.regional-card.has-bg-img:hover::before {
  background: linear-gradient(
    160deg,
    rgba(8, 13, 22, 0.55) 0%,
    rgba(8, 13, 22, 0.72) 50%,
    rgba(8, 13, 22, 0.90) 100%
  );
}

/* Todo conteúdo do card acima do overlay */
.service-card.has-bg-img > *,
.regional-card.has-bg-img > * {
  position: relative;
  z-index: 1;
}

/* Ícone com fundo translúcido dourado nos cards com imagem */
.service-card.has-bg-img .service-icon {
  background: rgba(197, 160, 89, 0.14);
  border-color: rgba(197, 160, 89, 0.35);
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.15);
}

/* Regional icon brilho dourado */
.regional-card.has-bg-img .regional-icon svg {
  filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.45));
}

/* Texto do regional-card sobre imagem: cor mais clara */
.regional-card.has-bg-img h4 {
  color: var(--text);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.regional-card.has-bg-img p {
  color: rgba(240, 236, 228, 0.82);
}

/* Borda dourada mais visível sobre as imagens */
.service-card.has-bg-img.glow-card,
.regional-card.has-bg-img {
  border-color: rgba(197, 160, 89, 0.22);
}

.service-card.has-bg-img.glow-card:hover {
  border-color: rgba(197, 160, 89, 0.6);
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.18), 0 0 36px rgba(197, 160, 89, 0.35), 0 12px 40px rgba(0,0,0,0.6);
  transform: translateY(-5px);
}

.regional-card.has-bg-img:hover {
  border-color: rgba(197, 160, 89, 0.55);
  box-shadow: 0 0 28px rgba(197, 160, 89, 0.28), 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(-4px);
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

/* ═══════════════════════════════════════════════
   CARD BG IMAGE — DD-STEP (Due Diligence)
   ═══════════════════════════════════════════════ */
.dd-step.has-bg-img {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: transparent;
}
.dd-step.has-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,13,22,.70) 0%, rgba(8,13,22,.88) 100%);
  z-index: 0;
  transition: background .4s ease;
}
.dd-step.has-bg-img:hover::before {
  background: linear-gradient(160deg, rgba(8,13,22,.56) 0%, rgba(8,13,22,.78) 100%);
}
.dd-step.has-bg-img > * { position: relative; z-index: 1; }
.dd-step.has-bg-img .dd-num {
  color: rgba(197,160,89,.65);
  text-shadow: 0 0 20px rgba(197,160,89,.35);
}
.dd-step.has-bg-img h4 { color: var(--text); text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.dd-step.has-bg-img p  { color: rgba(240,236,228,.82); }
.dd-step.has-bg-img { border-color: rgba(197,160,89,.22); }
.dd-step.has-bg-img:hover {
  border-color: rgba(197,160,89,.5);
  box-shadow: 0 0 28px rgba(197,160,89,.22), 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(-4px);
  transition: border-color .35s, box-shadow .35s, transform .35s;
}

/* ═══════════════════════════════════════════════
   CARD BG IMAGE — TESTIMONIAL
   ═══════════════════════════════════════════════ */
.testimonial-card.has-bg-img {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: transparent;
}
.testimonial-card.has-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,13,22,.82) 0%, rgba(8,13,22,.94) 100%);
  z-index: 0;
  transition: background .4s ease;
}
.testimonial-card.has-bg-img:hover::before {
  background: linear-gradient(160deg, rgba(8,13,22,.72) 0%, rgba(8,13,22,.88) 100%);
}
.testimonial-card.has-bg-img > * { position: relative; z-index: 1; }
.testimonial-card.has-bg-img .testimonial-quote-mark { color: rgba(197,160,89,.38); }
.testimonial-card.has-bg-img .testimonial-text { color: rgba(240,236,228,.96); }
.testimonial-card.has-bg-img .testimonial-divider { background: rgba(197,160,89,.25); }
.testimonial-card.has-bg-img { border: 1px solid rgba(197,160,89,.18) !important; }
.testimonial-card.has-bg-img:hover {
  border-color: rgba(197,160,89,.48) !important;
  box-shadow: 0 0 28px rgba(197,160,89,.18), 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(-4px);
  transition: border-color .35s, box-shadow .35s, transform .35s;
}

/* ═══════════════════════════════════════════════
   CARD BG IMAGE — SERVICE-BLOCK-HEADER
   ═══════════════════════════════════════════════ */
.service-block-header.has-bg-img {
  position: relative;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  background-color: transparent;
}
/* Overlay escuro lateral: mais denso à esquerda (onde fica o texto) */
.service-block-header.has-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8,13,22,.92) 0%,
    rgba(8,13,22,.78) 55%,
    rgba(8,13,22,.60) 100%
  );
  z-index: 0;
}
/* A borda dourada lateral (::before) fica acima do overlay */
.service-block-header.has-bg-img::before { z-index: 1; }
/* Todo conteúdo acima do overlay */
.service-block-header.has-bg-img > * { position: relative; z-index: 2; }
.service-block-header.has-bg-img .subtitle { color: rgba(240,236,228,.72); }
.service-block-header.has-bg-img h3 { text-shadow: 0 1px 6px rgba(0,0,0,.5); }

/* ═══════════════════════════════════════════════
   NAVBAR — FULL-WIDTH FLAT (sem pill, sem espaço)
   Sobrescreve todas as regras anteriores do scrolled
   ═══════════════════════════════════════════════ */
#navbar.scrolled {
  top: 0 !important;
  padding: 0 !important;
}
#navbar.scrolled .nav-inner {
  border-radius: 0 !important;
  padding: 12px 32px !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.45) !important;
  /* mantém o background e blur */
  background: rgba(10,16,26,.92) !important;
  backdrop-filter: blur(22px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
  border: none !important;
  border-bottom: 1px solid rgba(197,160,89,.12) !important;
}
#navbar.scrolled .nav-inner .container {
  padding: 0 !important;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
/* Estado não scrolled: também sem padding lateral extra */
#navbar:not(.scrolled) .nav-inner {
  padding: 0 32px !important;
  border-radius: 0 !important;
}

/* ═══════════════════════════════════════════════
   CARD BG IMAGE — LP-CARD
   ═══════════════════════════════════════════════ */
.lp-card.has-bg-img {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: transparent;
}
.lp-card.has-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,13,22,.72) 0%, rgba(8,13,22,.90) 100%);
  z-index: 0;
  transition: background .4s ease;
}
.lp-card.has-bg-img:hover::before {
  background: linear-gradient(160deg, rgba(8,13,22,.58) 0%, rgba(8,13,22,.80) 100%);
}
.lp-card.has-bg-img > * { position: relative; z-index: 1; }
.lp-card.has-bg-img .lp-card-icon {
  background: rgba(197,160,89,.14);
  border-color: rgba(197,160,89,.35);
  box-shadow: 0 0 16px rgba(197,160,89,.15);
}
.lp-card.has-bg-img h3 { text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.lp-card.has-bg-img p  { color: rgba(240,236,228,.82); }
.lp-card.has-bg-img { border-color: rgba(197,160,89,.22) !important; }
.lp-card.has-bg-img:hover {
  border-color: rgba(197,160,89,.52) !important;
  box-shadow: 0 0 28px rgba(197,160,89,.22), 0 10px 36px rgba(0,0,0,.55) !important;
  transform: translateY(-4px);
  transition: border-color .35s, box-shadow .35s, transform .35s;
}


/* ═══════════════════════════════════════════════
   PORTAL DO CLIENTE — ESTILOS
   ═══════════════════════════════════════════════ */

/* Hero da página portal */
.portal-hero {
  background-color: var(--bg2);
  background-image: url('img/page-hero-rafael-laptop.webp');
}

/* Seção genérica do portal */
.portal-section { padding: 80px 0; }

/* ── MÓDULO 1: ACESSO RÁPIDO ── */
.portal-access-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg2);
  border-radius: 12px;
  padding: 56px;
}
.portal-access-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}
.portal-access-left p {
  color: var(--muted);
  line-height: 1.8;
  font-size: .97rem;
  margin-bottom: 32px;
}
.portal-access-btn {
  font-size: .92rem;
  padding: 14px 28px;
}
.portal-access-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.portal-shield-icon {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197,160,89,.12), rgba(197,160,89,.03));
  border: 1px solid rgba(197,160,89,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  box-shadow: 0 0 48px rgba(197,160,89,.12);
}
.portal-access-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.portal-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(240,236,228,.75);
  padding: 10px 16px;
  background: rgba(197,160,89,.05);
  border: 1px solid rgba(197,160,89,.12);
  border-radius: 6px;
}
@media (max-width: 900px) {
  .portal-access-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }
  .portal-access-right { align-items: flex-start; }
}

/* ── MÓDULO 2: PASSO A PASSO ── */
.portal-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.portal-step-card {
  background: var(--bg2);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.portal-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(197,160,89,.22);
  line-height: 1;
  position: absolute;
  top: 28px;
  right: 28px;
}
.portal-step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.portal-step-content p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}
/* Links das app stores */
.portal-app-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.portal-app-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--text);
  transition: border-color .25s, background .25s;
}
.portal-app-btn:hover {
  border-color: rgba(197,160,89,.4);
  background: rgba(197,160,89,.07);
  color: var(--text);
}
.portal-app-btn svg { color: var(--gold); flex-shrink: 0; }
.portal-app-label {
  display: block;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.portal-app-store {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
}
@media (max-width: 1024px) {
  .portal-steps { grid-template-columns: 1fr; gap: 20px; }
  .portal-step-card { padding: 28px 24px; }
}

/* ── MÓDULO 3: RODAPÉ DA PÁGINA ── */
.portal-footer-section { background: var(--bg2); }

/* Bloco Acesso Seguro */
.portal-security-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(197,160,89,.05);
  border: 1px solid rgba(197,160,89,.18);
  border-radius: 10px;
  padding: 36px;
  margin-bottom: 40px;
}
.portal-security-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(197,160,89,.08);
  border: 1px solid rgba(197,160,89,.25);
  display: flex; align-items: center; justify-content: center;
}
.portal-security-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.portal-security-text p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .portal-security-block { flex-direction: column; padding: 24px 20px; }
}

/* Bloco Precisa de Ajuda */
.portal-help-block {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--bg);
}
.portal-help-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px;
}
.portal-help-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}
.portal-help-text p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}
.portal-help-btn {
  white-space: nowrap;
  font-size: .88rem;
  padding: 16px 32px;
}
@media (max-width: 768px) {
  .portal-help-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }
  .portal-help-btn { width: 100%; justify-content: center; }
}

/* Badge Plataforma Homologada */
.portal-homologado {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.portal-homologado-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  border: 1px solid rgba(197,160,89,.3);
  border-radius: 100px;
  padding: 8px 18px;
  width: fit-content;
  background: rgba(197,160,89,.05);
}
.portal-homologado p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
  max-width: 800px;
}
.portal-homologado p strong { color: var(--gold); }

/* ═══════════════════════════════════════════════
   CORREÇÃO MAPA CONTATO — sem margens brancas
   ═══════════════════════════════════════════════ */
.full-bleed-map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: block;
  /* Sem margens ou padding que causem gap */
  margin: 0;
  padding: 0;
}
#contato-map {
  width: 100% !important;
  height: 100% !important;
  display: block;
  background: #0c1420;
}
/* Garante que o fundo do Leaflet seja escuro mesmo antes dos tiles carregarem */
.leaflet-container {
  background: #0c1420 !important;
}
/* Remove borda/fundo branco padrão do Leaflet attribution */
.leaflet-control-attribution {
  background: rgba(8,13,22,.75) !important;
  color: rgba(240,236,228,.45) !important;
  font-size: .65rem !important;
}
.leaflet-control-attribution a { color: var(--gold) !important; }
/* Botões de zoom escuros */
.leaflet-bar a {
  background: rgba(12,20,34,.9) !important;
  color: var(--text) !important;
  border-color: rgba(197,160,89,.2) !important;
}
.leaflet-bar a:hover {
  background: var(--bg2) !important;
  color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════
   CORREÇÃO META POST (single.php) — centralizado
   ═══════════════════════════════════════════════ */
.page-hero .blog-meta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-align: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-top: 8px !important;
}

/* ═══════════════════════════════════════════════
   ÁREAS DE ATUAÇÃO — MELHORIAS DE USABILIDADE
   ═══════════════════════════════════════════════ */

/* Sidebar links: maior contraste + translateX no hover */
.sidebar-link {
  color: rgba(240,236,228,.65) !important;
  transition: color .3s ease, transform .3s ease !important;
  cursor: pointer;
}
.sidebar-link:hover {
  color: var(--gold) !important;
  transform: translateX(5px) !important;
}

/* Aba ativa: retém dourado e linha inferior acesa */
.tab-btn.active {
  color: var(--gold) !important;
  background: rgba(197,160,89,.12) !important;
  border-color: var(--gold) !important;
  border-bottom-color: var(--gold) !important;
  box-shadow: 0 2px 10px rgba(197,160,89,.15) !important;
}
/* Hover na aba inativa: transição suave para dourado */
.tab-btn:not(.active):hover {
  color: var(--gold) !important;
  background: rgba(197,160,89,.1) !important;
  border-color: rgba(197,160,89,.4) !important;
  cursor: pointer;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(197,160,89,.12);
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
