/* ============================================================
   Tema: Serviços Gerais
   Paleta: navy #003366, laranja #FF6B35, cinza claro #F5F7FA
   Fontes: Inter (display/bold) + Open Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --bz-navy:      #003366;
  --bz-navy-dk:   #002244;
  --bz-navy-lt:   #1a4a7a;
  --bz-orange:    #FF6B35;
  --bz-orange-dk: #E55A24;
  --bz-bg:        #F5F7FA;
  --bz-bg2:       #FFFFFF;
  --bz-text:      #1A2332;
  --bz-text2:     #3D5068;
  --bz-muted:     #8A9BB0;
  --bz-border:    rgba(0,51,102,.1);
  --bz-border2:   rgba(0,51,102,.18);
  --bz-card:      #FFFFFF;
  --bz-card-hov:  #F8FAFF;
  --ff-display:   'Inter', sans-serif;
  --ff-body:      'Open Sans', sans-serif;
  --maxw:         1120px;
  --radius:       12px;
}

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

body {
  background: var(--bz-bg);
  color: var(--bz-text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.edit-mode { padding-top: 56px; }

img { max-width: 100%; display: block; }
a { color: var(--bz-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ── NAV ──────────────────────────────────────────── */
.bz-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bz-navy);
  padding: 0 1.5rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,51,102,.3);
}
.bz-brand {
  font-family: var(--ff-display); font-size: 1.15rem;
  color: #fff; font-weight: 800; letter-spacing: -.02em;
}
.bz-nav-links { display: flex; gap: 2rem; list-style: none; }
.bz-nav-links a {
  color: rgba(255,255,255,.7); font-size: .875rem;
  letter-spacing: .04em; transition: color .2s;
}
.bz-nav-links a:hover { color: #fff; text-decoration: none; }
.bz-nav-cta {
  background: var(--bz-orange); color: #fff;
  padding: .55rem 1.4rem; border-radius: 8px;
  font-family: var(--ff-display); font-weight: 700; font-size: .875rem;
  transition: background .2s, transform .2s;
}
.bz-nav-cta:hover { background: var(--bz-orange-dk); text-decoration: none; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────── */
.bz-hero {
  background: var(--bz-navy);
  padding: 80px 0 90px;
  position: relative; overflow: hidden;
}
.bz-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 42%; background: var(--bz-navy-lt);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.bz-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.bz-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-display); font-size: .78rem;
  font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--bz-orange); margin-bottom: 1.25rem;
}
.bz-hero h1 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15; color: #fff; margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.bz-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75;
}
.bz-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.bz-hero-badges {
  display: flex; flex-direction: column; gap: .6rem;
}
.bz-hero-badge {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.75); font-size: .875rem; font-family: var(--ff-display);
}
.bz-hero-badge::before {
  content: '✓';
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,107,53,.2); color: var(--bz-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; flex-shrink: 0;
  line-height: 20px; text-align: center;
}
.bz-hero-img {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.bz-hero-img .se-img-wrap,
.bz-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bz-hero-img-placeholder {
  width: 100%; height: 100%; min-height: 320px;
  background: linear-gradient(135deg, var(--bz-navy-lt), var(--bz-navy));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); flex-direction: column; gap: .75rem;
  font-family: var(--ff-display);
}

/* ── BUTTONS ──────────────────────────────────────── */
.bz-btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--bz-orange); color: #fff;
  padding: .9rem 2rem; border-radius: 8px;
  font-family: var(--ff-display); font-weight: 700; font-size: .97rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255,107,53,.4);
}
.bz-btn-primary:hover {
  background: var(--bz-orange-dk); text-decoration: none;
  transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,107,53,.5);
}
.bz-btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
  padding: .9rem 2rem; border-radius: 8px;
  font-family: var(--ff-display); font-weight: 600; font-size: .97rem;
  transition: all .2s;
}
.bz-btn-ghost:hover {
  border-color: rgba(255,255,255,.7); color: #fff; text-decoration: none;
}
.bz-btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; color: var(--bz-navy);
  border: 1.5px solid var(--bz-navy);
  padding: .8rem 1.75rem; border-radius: 8px;
  font-family: var(--ff-display); font-weight: 600; font-size: .95rem;
  transition: all .2s;
}
.bz-btn-outline:hover {
  background: var(--bz-navy); color: #fff; text-decoration: none;
}

/* ── SECTION BASE ─────────────────────────────────── */
.bz-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--bz-border);
}
.bz-section-dark {
  background: var(--bz-navy); color: #fff;
}
.bz-section-alt { background: var(--bz-bg2); }
.bz-section-header { text-align: center; margin-bottom: 3.5rem; }
.bz-section-header h2 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--bz-text); margin-bottom: .75rem; letter-spacing: -.02em;
}
.bz-section-header p { color: var(--bz-text2); max-width: 540px; margin: 0 auto; }
.bz-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: .75rem; font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase;
  font-family: var(--ff-display); font-weight: 700;
  color: var(--bz-orange);
}
.bz-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--bz-orange); flex-shrink: 0;
}

/* ── ABOUT ────────────────────────────────────────── */
.bz-about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.bz-about-title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--bz-text); margin-bottom: 1.25rem; letter-spacing: -.02em;
}
.bz-about-title span { color: var(--bz-navy); }
.bz-about-body {
  color: var(--bz-text2); font-size: 1.02rem; line-height: 1.85;
  margin-bottom: 2rem;
}
.bz-highlights { display: flex; flex-direction: column; gap: .75rem; }
.bz-highlight {
  display: flex; align-items: center; gap: .75rem;
  font-size: .93rem; color: var(--bz-text); font-family: var(--ff-display); font-weight: 500;
}
.bz-highlight-dot {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, var(--bz-orange), #ff8c5a);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .7rem; font-weight: 700; flex-shrink: 0;
}
.bz-about-img {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: 8px 12px 40px rgba(0,51,102,.15);
}
.bz-about-img .se-img-wrap,
.bz-about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bz-about-placeholder {
  width: 100%; height: 100%; min-height: 320px;
  background: linear-gradient(135deg, #e8f0ff, #dce8ff);
  display: flex; align-items: center; justify-content: center;
  color: var(--bz-muted); flex-direction: column; gap: .75rem; text-align: center; padding: 2rem;
}

/* ── SERVICES ─────────────────────────────────────── */
.bz-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.bz-service-card {
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; gap: 1rem;
}
.bz-service-card:hover {
  border-color: var(--bz-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255,107,53,.12);
}
.bz-service-icon {
  font-size: 2rem; width: 56px; height: 56px;
  background: linear-gradient(135deg, #fff5f0, #ffe5d9);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.bz-service-name {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.1rem; color: var(--bz-text); margin-top: .25rem;
}
.bz-service-desc { color: var(--bz-text2); font-size: .92rem; line-height: 1.65; flex: 1; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.bz-testi-section { background: var(--bz-navy); }
.bz-testi-section .bz-section-header h2 { color: #fff; }
.bz-testi-section .bz-section-header p { color: rgba(255,255,255,.6); }
.bz-testi-section .bz-eyebrow { color: var(--bz-orange); }
.bz-testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.bz-testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color .2s, background .2s;
}
.bz-testi-card:hover {
  border-color: rgba(255,107,53,.4);
  background: rgba(255,255,255,.09);
}
.bz-testi-stars { color: var(--bz-orange); font-size: 1rem; letter-spacing: .1em; }
.bz-testi-quote {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,.85); flex: 1;
  font-style: italic;
}
.bz-testi-quote::before { content: '\201C'; }
.bz-testi-quote::after  { content: '\201D'; }
.bz-testi-author { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.bz-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bz-orange), #ff8c5a);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.bz-testi-name { font-weight: 700; color: #fff; font-size: .93rem; font-family: var(--ff-display); }
.bz-testi-role { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ── CONTACT ──────────────────────────────────────── */
.bz-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.bz-contact-info { display: flex; flex-direction: column; gap: 2rem; }
.bz-contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.bz-contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #e8f0ff, #d0e0ff);
  display: flex; align-items: center; justify-content: center;
  color: var(--bz-navy); flex-shrink: 0;
}
.bz-contact-label {
  font-family: var(--ff-display); font-size: .75rem; font-weight: 600;
  color: var(--bz-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem;
}
.bz-contact-value { color: var(--bz-text); font-size: .97rem; line-height: 1.6; }
.bz-wa-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25d366; color: #fff;
  padding: .85rem 1.75rem; border-radius: 8px;
  font-family: var(--ff-display); font-weight: 700; font-size: .92rem;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.bz-wa-btn:hover { background: #1db954; text-decoration: none; transform: translateY(-1px); }
.bz-map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--bz-border);
  background: var(--bz-bg); min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bz-muted); font-size: .9rem;
}
.bz-map-wrap iframe { width: 100%; height: 320px; border: none; }

/* ── FOOTER ───────────────────────────────────────── */
.bz-footer {
  background: var(--bz-navy-dk);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 2.5rem;
}
.bz-footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.bz-footer-brand {
  font-family: var(--ff-display); font-size: 1.3rem;
  color: #fff; font-weight: 800; margin-bottom: .75rem;
}
.bz-footer-tagline { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.7; }
.bz-footer-col h4 {
  font-family: var(--ff-display); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.bz-footer-col a {
  display: block; color: rgba(255,255,255,.65); font-size: .9rem;
  margin-bottom: .7rem; transition: color .2s;
}
.bz-footer-col a:hover { color: #fff; text-decoration: none; }
.bz-footer-social { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .5rem; }
.bz-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: all .2s;
}
.bz-footer-social a:hover { background: var(--bz-orange); border-color: var(--bz-orange); color: #fff; text-decoration: none; }
.bz-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.3); font-family: var(--ff-display);
}
.bz-footer-bottom a { color: rgba(255,255,255,.4); }

/* ── EDIT MODE CONTROLS ──────────────────────────── */
.se-section { position: relative; }
.se-section-controls {
  position: absolute; top: .75rem; right: .75rem; z-index: 50;
  display: flex; gap: .5rem; align-items: center;
  background: rgba(0,0,0,.75); border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px; padding: .35rem .6rem;
  opacity: 0; transition: opacity .2s;
}
.se-section:hover .se-section-controls { opacity: 1; }
.se-drag-handle {
  cursor: grab; font-size: 1rem; color: rgba(255,255,255,.5);
  padding: 0 .25rem; user-select: none;
}
.se-drag-handle:active { cursor: grabbing; }
.se-section-label { font-size: .72rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }
.se-del-btn {
  background: none; border: none; color: rgba(255,100,80,.7);
  cursor: pointer; font-size: 1.1rem; padding: 0 .2rem; line-height: 1;
}
.se-del-btn:hover { color: #ff6050; }
.se-img-wrap { position: relative; }
.se-img-replace {
  position: absolute; bottom: .5rem; right: .5rem;
  background: rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.2);
  color: #fff; border-radius: 8px; padding: .4rem .8rem;
  font-size: .82rem; cursor: pointer; font-family: var(--ff-body);
  transition: background .2s; display: none;
}
body.edit-mode .se-img-wrap:hover .se-img-replace { display: block; }

body.se-preview-mode .se-section-controls,
body.se-preview-mode #editor-toolbar { display: none !important; }
body.se-preview-mode [contenteditable] { outline: none !important; cursor: default !important; }

body.edit-mode [contenteditable]:hover { outline: 2px dashed rgba(255,107,53,.5); outline-offset: 3px; border-radius: 4px; }
body.edit-mode [contenteditable]:focus { outline: 2px solid var(--bz-orange); outline-offset: 3px; border-radius: 4px; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .bz-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bz-hero::before { display: none; }
  .bz-hero-img { display: none; }
  .bz-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bz-services-grid { grid-template-columns: 1fr 1fr; }
  .bz-testi-grid { grid-template-columns: 1fr; }
  .bz-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bz-nav-links { display: none; }
  .bz-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .bz-services-grid { grid-template-columns: 1fr; }
  .bz-footer-inner { grid-template-columns: 1fr; }
  .bz-hero-actions { flex-direction: column; }
}

/* ── PALETTE VARIANTS ────────────────────────────────────────
   data-palette="dark"  → navy escuro total
   data-palette="mid"   → azul corporativo (padrão — reafirma :root)
   data-palette="light" → branco limpo, navy e laranja
   ─────────────────────────────────────────────────────────── */

/* dark: fundo navy escuro, texto claro */
html[data-palette="dark"] {
  --bz-navy:    #4a90d9;
  --bz-navy-lt: #6aaae0;
  --bz-navy-dk: #3a80c9;
  --bz-orange:  #FF6B35;
  --bz-bg:      #0a1628;
  --bz-bg2:     #0f1e36;
  --bz-text:    #e8f0f8;
  --bz-text2:   #b0c4d8;
  --bz-muted:   #6a8aaa;
  --bz-border:  rgba(74,144,217,.15);
  --bz-card:    rgba(255,255,255,.05);
  --bz-card-hov:rgba(255,255,255,.08);
}
html[data-palette="dark"] .bz-nav {
  background: rgba(10,22,40,.92);
  border-bottom-color: rgba(74,144,217,.12);
}
html[data-palette="dark"] .bz-nav-links a { color: var(--bz-text2); }
html[data-palette="dark"] .bz-brand { color: #fff; }

/* mid: reafirma :root (padrão corporativo) */
html[data-palette="mid"] {
  --bz-navy:    #003366;
  --bz-navy-lt: #1a4a7a;
  --bz-navy-dk: #00254d;
  --bz-orange:  #FF6B35;
  --bz-bg:      #F5F7FA;
  --bz-bg2:     #FFFFFF;
  --bz-text:    #1A2332;
  --bz-text2:   #3D5068;
  --bz-muted:   #8A9BB0;
  --bz-border:  rgba(0,51,102,.1);
  --bz-card:    #ffffff;
  --bz-card-hov:#f8fafc;
}
html[data-palette="mid"] .bz-nav {
  background: rgba(245,247,250,.95);
}
html[data-palette="mid"] .bz-brand,
html[data-palette="mid"] .bz-nav-links a { color: var(--bz-navy); }
html[data-palette="mid"] .bz-nav-links a:hover { color: var(--bz-navy-dk); }

/* light: branco puro, navy moderado */
html[data-palette="light"] {
  --bz-navy:    #1a4a8a;
  --bz-navy-lt: #2a5a9a;
  --bz-navy-dk: #0d3570;
  --bz-orange:  #e85f28;
  --bz-bg:      #ffffff;
  --bz-bg2:     #f8f9fb;
  --bz-text:    #1A2332;
  --bz-text2:   #3D5068;
  --bz-muted:   #7a8fa5;
  --bz-border:  rgba(0,51,102,.08);
  --bz-card:    #f5f7fb;
  --bz-card-hov:#eef1f8;
}
html[data-palette="light"] .bz-nav {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--bz-border);
}
html[data-palette="light"] .bz-brand,
html[data-palette="light"] .bz-nav-links a { color: var(--bz-navy); }
html[data-palette="light"] .bz-nav-links a:hover { color: var(--bz-navy-dk); }

/* ── HAMBURGER MENU ───────────────────────────────── */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: .4rem; color: #fff;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-close { display: none; }
.nav-toggle-active .nav-hamburger { display: none; }
.nav-toggle-active .nav-close { display: block; }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .bz-nav-cta { display: none; }
  .bz-nav {
    height: auto; min-height: 64px;
  }
  .bz-nav .se-site-logo-wrap { align-self: center !important; flex: 1; }
  .bz-nav .se-site-logo-img  { max-height: 70px !important; }
  .bz-nav .se-site-logo-text { font-size: 1.2rem; }
  .bz-nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .35s ease, opacity .1s ease;
    z-index: 100;
    border-top: 1px solid rgba(255,255,255,.1);
    background: #0a1628;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .bz-nav-links li {
    padding: .65rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .bz-nav-links li:last-child { border-bottom: none; }
  .bz-nav-links a { font-size: 1rem; color: rgba(255,255,255,.85); }
  .bz-nav.nav-open .bz-nav-links {
    max-height: 400px; opacity: 1;
  }
}

/* ── Gallery ─────────────────────────────────────── */
.bz-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bz-gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px; overflow: hidden; position: relative;
  background: rgba(255,255,255,.04);
}
.bz-gallery-item .se-img-wrap { width: 100%; height: 100%; }
.bz-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bz-gallery-item:hover img { transform: scale(1.05); }
.bz-gallery-empty {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1.5px dashed rgba(255,255,255,.15);
  border-radius: 10px; color: var(--bz-muted);
  font-size: .85rem; text-align: center; padding: 1rem;
}
@media (max-width: 700px) {
  .bz-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .bz-gallery-grid { grid-template-columns: 1fr; }
}
