/* =============================================
   NOTURNO CARIOCA — Start Corretora
   Design System · Shared Stylesheet
   ============================================= */

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

:root {
  --bg:           #04091C;
  --bg2:          #070E26;
  --bg3:          #0B1535;
  --bg4:          #111D45;
  --primary:      #00C853;
  --primary-dk:   #009940;
  --primary-glow: rgba(0,200,83,.10);
  --primary-rim:  rgba(0,200,83,.30);
  --text:         #EDF1FF;
  --text-mid:     #8B97BE;
  --text-dim:     #4A5680;
  --border:       #141F42;
  --border-md:    #1C2B55;
  --gold:         #C9A84C;
  --r:            8px;
  --r-lg:         14px;
  --glow-card:    0 0 40px rgba(0,200,83,.12);
  --max-w:        1200px;
  --nav-h:        68px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain texture */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--primary); flex-shrink: 0;
}

.sec-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.12; letter-spacing: -.5px; color: var(--text);
}
.sec-title em { font-style: italic; color: var(--primary); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 24px; border-radius: var(--r);
  font-family: 'Barlow', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: .3px;
  cursor: pointer; border: none;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-green { background: var(--primary); color: #030810; }
.btn-green:hover {
  background: #00E676;
  box-shadow: 0 0 28px rgba(0,200,83,.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--text-mid);
  border: 1px solid var(--border-md);
}
.btn-outline:hover {
  color: var(--text); border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 10px; }

/* =============================================
   LABELS / BADGES
   ============================================= */
.label {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
}
.label-vida       { background: rgba(0,200,83,.12);    color: var(--primary); }
.label-auto       { background: rgba(64,149,255,.12);  color: #4E9FFF; }
.label-saude      { background: rgba(201,168,76,.12);  color: var(--gold); }
.label-residencial { background: rgba(224,120,68,.12); color: #E07844; }
.label-empresarial { background: rgba(180,100,255,.12); color: #B464FF; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center; padding: 0 28px;
  transition: background .3s, border-color .3s;
  background: rgba(4,9,28,.55);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4,9,28,.92);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: flex; align-items: center;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1; gap: 2px;
  flex-shrink: 0; margin-right: 48px;
}
.nav-logo-name {
  font-family: 'DM Serif Display', serif; font-size: 21px;
  color: var(--text); letter-spacing: -.3px;
}
.nav-logo-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px;
  font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--primary);
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; flex: 1;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-end {
  display: flex; align-items: center; gap: 10px;
  margin-left: auto; flex-shrink: 0;
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(4,9,28,.98); backdrop-filter: blur(28px);
  z-index: 190; flex-direction: column; padding: 48px 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Serif Display', serif; font-size: 28px;
  color: var(--text-mid); padding: 14px 0;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn-green { margin-top: 32px; max-width: 260px; justify-content: center; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-bar {
  padding-top: var(--nav-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-bar .container { padding-top: 14px; padding-bottom: 14px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--text-dim);
}
.breadcrumb a { color: var(--text-mid); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--text-dim); }
.breadcrumb-curr { color: var(--primary); }

/* =============================================
   PAGE HERO (service pages)
   ============================================= */
.page-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 64px 0; overflow: hidden; position: relative;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; right: -5%;
  width: 50%; height: 120%;
  background: radial-gradient(ellipse, rgba(0,200,83,.055) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px; position: relative; z-index: 1;
}
.page-hero-ico {
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--primary-glow); border: 1px solid var(--primary-rim);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 22px;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.1; letter-spacing: -.5px;
  color: var(--text); margin-bottom: 14px;
}
.page-hero-desc {
  font-size: 17px; color: var(--text-mid); line-height: 1.72;
  max-width: 580px; margin-bottom: 28px;
}
.page-hero-cta {
  background: var(--bg3); border: 1px solid var(--border-md);
  border-radius: var(--r-lg); padding: 28px 24px;
  text-align: center; width: 220px; flex-shrink: 0;
}
.page-hero-cta h4 {
  font-family: 'DM Serif Display', serif; font-size: 17px;
  color: var(--text); margin-bottom: 8px; line-height: 1.3;
}
.page-hero-cta p {
  font-size: 13px; color: var(--text-mid);
  margin-bottom: 16px; line-height: 1.5;
}
.page-hero-cta .btn { width: 100%; justify-content: center; }

/* =============================================
   MAIN LAYOUT — Content + Sidebar
   ============================================= */
.main-wrap { padding: 56px 0 88px; }

.page-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 56px; align-items: start;
}

/* Content typography */
.page-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--text); letter-spacing: -.3px; line-height: 1.2;
  margin: 44px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 15.5px; color: var(--text-mid); line-height: 1.78; margin-bottom: 16px;
}
.page-content strong { color: var(--text); font-weight: 600; }

/* ---- Coverage grid ---- */
.coverage-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 8px 0;
}
.cov-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px 20px;
  transition: border-color .2s, background .2s, transform .25s;
}
.cov-card:hover { background: var(--bg3); border-color: var(--border-md); transform: translateY(-3px); }
.cov-ico { font-size: 26px; margin-bottom: 12px; }
.cov-card h4 {
  font-family: 'DM Serif Display', serif; font-size: 15.5px;
  color: var(--text); margin-bottom: 7px;
}
.cov-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ---- For-whom list ---- */
.forwhom-list { display: flex; flex-direction: column; gap: 12px; margin: 8px 0; }
.forwhom-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  transition: border-color .2s;
}
.forwhom-item:hover { border-color: var(--border-md); }
.forwhom-ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--primary-glow); border: 1px solid var(--primary-rim);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.forwhom-item p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin: 0; }
.forwhom-item strong { color: var(--text); }

/* ---- Steps ---- */
.steps-list { display: flex; flex-direction: column; margin: 8px 0; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary-glow); border: 1px solid var(--primary-rim);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--primary);
}
.step h4 { font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--text); margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; margin: 8px 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; cursor: pointer;
  font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--text);
  transition: color .2s; user-select: none;
}
.faq-q:hover { color: var(--primary); }
.faq-arrow {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--text-mid);
  transition: transform .3s, background .2s, color .2s, border-color .2s;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--primary-glow); color: var(--primary); border-color: var(--primary-rim);
}
.faq-a {
  display: none; padding: 0 0 20px;
  font-size: 15px; color: var(--text-mid); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ---- Quote form block ---- */
.quote-block {
  background: var(--bg2); border: 1px solid var(--border-md);
  border-radius: var(--r-lg); padding: 36px;
  margin-top: 52px; position: relative; overflow: hidden;
}
.quote-block::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,200,83,.06) 0%, transparent 65%);
  pointer-events: none;
}
.quote-block-head { position: relative; z-index: 1; margin-bottom: 28px; }
.quote-block .eyebrow { margin-bottom: 12px; }
.quote-block h2 {
  font-family: 'DM Serif Display', serif !important;
  font-size: 1.9rem !important; color: var(--text) !important;
  letter-spacing: -.3px; margin: 0 0 8px !important;
}
.quote-sub { font-size: 15px; color: var(--text-mid); }

.quote-form {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
  align-items: end; position: relative; z-index: 1;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-mid);
}
.form-input, .form-select {
  background: var(--bg3); border: 1px solid var(--border-md);
  border-radius: var(--r); padding: 11px 14px;
  font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus { border-color: var(--primary); }
.quote-form .btn { height: 44px; }
.quote-success {
  display: none; margin-top: 16px; padding: 14px 18px;
  border-radius: var(--r); background: rgba(0,200,83,.1);
  border: 1px solid var(--primary-rim);
  font-size: 14px; color: var(--primary);
}
.quote-wa {
  margin-top: 16px; text-align: center; position: relative; z-index: 1;
  font-size: 14px; color: var(--text-mid);
}
.quote-wa a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.s-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
}
.s-card-cta { background: var(--bg3); border-color: var(--primary-rim); }
.s-card h4 { font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.s-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.s-card .btn { width: 100%; justify-content: center; font-size: 14px; }

.related-list { display: flex; flex-direction: column; gap: 14px; }
.related-item { display: flex; gap: 12px; align-items: flex-start; }
.related-ico {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.related-item a {
  font-size: 13.5px; color: var(--text); line-height: 1.4;
  transition: color .2s; display: block; margin-bottom: 3px;
}
.related-item a:hover { color: var(--primary); }
.related-item time { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; color: var(--text-dim); letter-spacing: .5px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-sec {
  padding: 96px 0; background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,200,83,.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-body { position: relative; z-index: 1; text-align: center; max-width: 580px; margin: 0 auto; }
.cta-body .eyebrow { justify-content: center; }
.cta-body .eyebrow::before { display: none; }
.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem,4vw,3.4rem); line-height: 1.13;
  letter-spacing: -.5px; margin-bottom: 18px;
}
.cta-title em { font-style: italic; color: var(--primary); }
.cta-desc { font-size: 17px; color: var(--text-mid); line-height: 1.72; margin-bottom: 44px; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-row { display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-mid); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.f-brand-name { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--text); line-height: 1; margin-bottom: 3px; }
.f-brand-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; }
.f-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 22px; }
.f-contact { display: flex; flex-direction: column; gap: 10px; }
.f-contact-item { display: flex; gap: 10px; font-size: 13px; color: var(--text-mid); align-items: flex-start; }
.f-contact-ico { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.f-col-head { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.f-links a { font-size: 14px; color: var(--text-mid); transition: color .2s; }
.f-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.f-copy { font-size: 13px; color: var(--text-dim); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.42);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.09); box-shadow: 0 6px 30px rgba(37,211,102,.55); }
.wa-float::before {
  content: ''; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.2);
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .65; } 100% { transform: scale(1.5); opacity: 0; } }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fade-up .75s cubic-bezier(.16,1,.3,1) forwards; animation-play-state: paused; }
.anim.visible { animation-play-state: running; }
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .18s; }
.d3 { animation-delay: .28s; }
.d4 { animation-delay: .40s; }
.d5 { animation-delay: .52s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-cta { display: none; }
  .sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
  .coverage-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-end .btn-outline { display: none; }
  .nav-burger { display: flex; }
  .quote-form { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .nav-end .btn-green { display: none; }
}

/* =============================================
   BLOG INDEX
   ============================================= */
.blog-index-head { padding: 56px 0 40px; }
.blog-index-head h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem,4vw,3rem); line-height: 1.1;
  letter-spacing: -.5px; margin-bottom: 12px;
}
.blog-index-head p { font-size: 17px; color: var(--text-mid); }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 48px;
}
.filter-btn {
  display: inline-flex; align-items: center;
  padding: 7px 16px; border-radius: 20px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--bg3); border: 1px solid var(--border-md);
  color: var(--text-mid); cursor: pointer; transition: all .2s;
}
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,.2); }
.filter-btn.active {
  background: var(--primary-glow); border-color: var(--primary-rim);
  color: var(--primary);
}

.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.blog-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .2s, transform .25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--border-md); transform: translateY(-4px); }

.blog-card-thumb {
  height: 140px; background: var(--bg3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 22px 22px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body .label { margin-bottom: 12px; }
.blog-card-body h3 {
  font-family: 'DM Serif Display', serif; font-size: 17px;
  line-height: 1.35; color: var(--text); margin-bottom: 10px;
  transition: color .2s;
}
.blog-card:hover h3 { color: var(--primary); }
.blog-card-body p {
  font-size: 13.5px; color: var(--text-mid); line-height: 1.65;
  flex: 1; margin: 0 0 16px;
}
.blog-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto;
}
.blog-card-date {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--text-dim);
}
.blog-card-read {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--primary); transition: opacity .2s;
}
.blog-card-read:hover { opacity: .75; }

/* =============================================
   BLOG POST
   ============================================= */
.post-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 28px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.post-meta span { display: flex; align-items: center; gap: 6px; }

.post-hero-ico {
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--bg3); border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 32px;
}

.post-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.35rem,2.2vw,1.85rem);
  color: var(--text); letter-spacing: -.3px; line-height: 1.2;
  margin: 44px 0 16px;
}
.post-body h2:first-child { margin-top: 0; }
.post-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--text);
  line-height: 1.25; margin: 32px 0 12px;
}
.post-body p {
  font-size: 15.5px; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 18px;
}
.post-body strong { color: var(--text); font-weight: 600; }
.post-body em { color: var(--text-mid); font-style: italic; }
.post-body ul, .post-body ol {
  padding-left: 0; margin-bottom: 20px; display: flex;
  flex-direction: column; gap: 10px;
}
.post-body ul li, .post-body ol li {
  font-size: 15px; color: var(--text-mid); line-height: 1.7;
  padding-left: 22px; position: relative;
}
.post-body ul li::before {
  content: '–'; position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}
.post-body ol { counter-reset: item; }
.post-body ol li { counter-increment: item; }
.post-body ol li::before {
  content: counter(item) '.'; position: absolute; left: 0;
  color: var(--primary); font-weight: 700; font-size: 13px;
}

.post-body table {
  width: 100%; border-collapse: collapse; margin: 8px 0 24px;
  font-size: 14px;
}
.post-body thead th {
  background: var(--bg3); color: var(--text);
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border-md);
}
.post-body tbody td {
  padding: 11px 16px; color: var(--text-mid);
  border-bottom: 1px solid var(--border); line-height: 1.5;
}
.post-body tbody tr:last-child td { border-bottom: none; }
.post-body tbody tr:hover td { background: var(--bg3); }

.highlight-box {
  background: var(--bg3); border: 1px solid var(--border-md);
  border-left: 3px solid var(--primary);
  border-radius: var(--r); padding: 20px 22px;
  margin: 8px 0 20px; font-size: 14.5px; color: var(--text-mid);
  line-height: 1.7;
}
.highlight-box strong { color: var(--text); }

.share-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border);
}
.share-bar > span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); margin-right: 4px;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--r);
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid var(--border-md); color: var(--text-mid);
  transition: all .2s;
}
.share-btn:hover { color: var(--text); border-color: rgba(255,255,255,.2); }
.share-btn-wa { border-color: rgba(37,211,102,.3); color: #25D366; }
.share-btn-wa:hover { background: rgba(37,211,102,.08); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  padding: 80px 0 64px; background: var(--bg2);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; top: -30%; left: -5%;
  width: 50%; height: 120%;
  background: radial-gradient(ellipse, rgba(0,200,83,.05) 0%, transparent 65%);
  pointer-events: none;
}
.about-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.about-hero .eyebrow { margin-bottom: 16px; }
.about-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem,4vw,3.2rem); line-height: 1.1;
  letter-spacing: -.5px; margin-bottom: 20px;
}
.about-hero h1 em { font-style: italic; color: var(--primary); }
.about-hero p { font-size: 17px; color: var(--text-mid); line-height: 1.75; }

.about-section { padding: 80px 0; }
.about-section + .about-section { padding-top: 0; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: border-color .2s, transform .25s;
}
.value-card:hover { border-color: var(--border-md); transform: translateY(-4px); }
.value-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-glow); border: 1px solid var(--primary-rim);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.value-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 19px;
  color: var(--text); margin-bottom: 12px; line-height: 1.25;
}
.value-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin: 0; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.mission-card {
  background: var(--bg2); border: 1px solid var(--border-md);
  border-radius: var(--r-lg); padding: 36px 32px;
}
.mission-card-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-glow); border: 1px solid var(--primary-rim);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.mission-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 18px;
  color: var(--primary); margin-bottom: 14px;
}
.mission-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.75; margin: 0; }

.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px;
}
.stat-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px; text-align: center;
}
.stat-num {
  font-family: 'DM Serif Display', serif; font-size: clamp(2.4rem,4vw,3.5rem);
  color: var(--primary); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-mid); line-height: 1.5; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  padding: 80px 0 56px; background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.contact-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem,3.5vw,2.8rem);
  line-height: 1.1; letter-spacing: -.4px; margin-bottom: 12px;
}
.contact-hero h1 em { font-style: italic; color: var(--primary); }
.contact-hero p { font-size: 16px; color: var(--text-mid); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px;
  padding: 56px 0 88px; align-items: start;
}

.contact-form-card {
  background: var(--bg2); border: 1px solid var(--border-md);
  border-radius: var(--r-lg); padding: 36px;
}
.contact-form-card h2 {
  font-family: 'DM Serif Display', serif; font-size: 1.6rem;
  color: var(--text); margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-textarea {
  background: var(--bg3); border: 1px solid var(--border-md);
  border-radius: var(--r); padding: 11px 14px;
  font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: border-color .2s; resize: vertical;
  min-height: 110px; width: 100%;
}
.form-textarea::placeholder { color: var(--text-dim); }
.form-textarea:focus { border-color: var(--primary); }
.form-note { font-size: 12px; color: var(--text-dim); text-align: center; margin-top: 10px; }

.contact-success {
  display: none; background: rgba(0,200,83,.08);
  border: 1px solid var(--primary-rim); border-radius: var(--r);
  padding: 28px; text-align: center; margin-bottom: 20px;
}
.contact-success h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--primary); margin-bottom: 8px; }
.contact-success p { font-size: 14px; color: var(--text-mid); margin: 0; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.wa-highlight {
  background: rgba(37,211,102,.07); border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--r-lg); padding: 28px 24px; text-align: center;
}
.wa-highlight-ico { font-size: 2.5rem; margin-bottom: 10px; }
.wa-highlight h3 {
  font-family: 'DM Serif Display', serif; font-size: 18px;
  color: #25D366; margin-bottom: 4px;
}
.wa-highlight-num { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.wa-highlight p { font-size: 13px; color: var(--text-mid); margin-bottom: 16px; }
.wa-highlight .btn { width: 100%; justify-content: center; background: #25D366; color: #fff; }
.wa-highlight .btn:hover { background: #22c55e; box-shadow: 0 0 20px rgba(37,211,102,.3); }

.contact-info-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 20px;
}
.contact-info-card h4 {
  font-family: 'DM Serif Display', serif; font-size: 16px;
  color: var(--text); margin-bottom: 12px;
}
.contact-info-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-mid); line-height: 1.65;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.contact-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-ico { color: var(--primary); flex-shrink: 0; margin-top: 1px; }

.map-wrap {
  margin-top: 40px; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
}

/* =============================================
   REGIONAL PAGES
   ============================================= */
.region-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 64px 0; position: relative; overflow: hidden;
}
.region-hero::before {
  content: ''; position: absolute; top: -30%; right: -5%;
  width: 50%; height: 120%;
  background: radial-gradient(ellipse, rgba(0,200,83,.055) 0%, transparent 65%);
  pointer-events: none;
}
.region-hero-inner { position: relative; z-index: 1; }
.region-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem,3.8vw,3rem);
  line-height: 1.1; letter-spacing: -.5px;
  color: var(--text); margin-bottom: 14px;
}
.region-hero p { font-size: 17px; color: var(--text-mid); line-height: 1.72; max-width: 620px; }

.region-section { padding: 64px 0; }
.region-section + .region-section { padding-top: 0; }
.region-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem,2.5vw,2rem);
  color: var(--text); letter-spacing: -.3px; margin-bottom: 20px;
}
.region-section p {
  font-size: 15.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px;
}

.services-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.service-link-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 16px; text-align: center;
  transition: border-color .2s, transform .25s, background .2s;
}
.service-link-card:hover {
  background: var(--bg3); border-color: var(--primary-rim);
  transform: translateY(-4px);
}
.service-link-card .ico { font-size: 28px; margin-bottom: 10px; }
.service-link-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 14px;
  color: var(--text); line-height: 1.3;
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .filter-bar { gap: 6px; }
}
