/* ============================================================
   FORTIS · DESIGN SYSTEM
   Premium SST landing — tokens, primitives, components.
   ============================================================ */

/* -------- TOKENS -------- */
:root {
  /* Brand · deep green spectrum */
  --green-900:#0c1d0d;
  --green-800:#132814;
  --green-700:#1a3a1c;
  --green-600:#234d27;

  /* Brand · olive accents */
  --olive-700:#5a6c30;
  --olive-600:#70853C;
  --olive-500:#8AA34D;
  --olive-400:#a4c061;
  --olive-300:#b6d077;

  /* Neutral */
  --ink-900:#0f1612;
  --ink-800:#1E1E1E;
  --ink-600:#3d433f;
  --ink-500:#5b6360;
  --ink-400:#7c8580;
  --paper:#ffffff;
  --paper-mist:#F4F5F1;
  --paper-soft:#FAFAF7;
  --line:rgba(15,22,18,.08);
  --line-strong:rgba(15,22,18,.14);

  /* WhatsApp official */
  --wa-500:#25D366;
  --wa-600:#1FB958;
  --wa-700:#128C7E;

  /* Radii */
  --r-xs:8px; --r-sm:10px; --r-md:14px; --r-lg:18px; --r-xl:22px; --r-2xl:28px; --r-full:999px;

  /* Spacing scale (used inline as needed) */
  --s-1:4px; --s-2:8px; --s-3:12px; --s-4:16px; --s-5:20px; --s-6:24px; --s-8:32px; --s-10:40px; --s-12:48px; --s-16:64px; --s-20:80px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15,22,18,.06), 0 1px 4px rgba(15,22,18,.04);
  --shadow-md: 0 8px 24px -10px rgba(15,22,18,.18), 0 2px 6px rgba(15,22,18,.06);
  --shadow-lg: 0 28px 60px -28px rgba(15,22,18,.30), 0 6px 18px -8px rgba(15,22,18,.10);
  --shadow-xl: 0 40px 80px -30px rgba(15,22,18,.40);

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --t-fast:.18s; --t-base:.28s; --t-slow:.5s;

  /* Container */
  --container:1240px;
}

/* -------- LOGO HARDENING (high-DPI rendering) -------- */
/* prevent blurry rendering on retina headers */
.logo-img { -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: translateZ(0); }

/* -------- BASE -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: 'Poppins', system-ui, sans-serif;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
::selection { background: var(--olive-600); color:#fff; }

:focus-visible { outline: 2px solid var(--olive-500); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible { outline-offset: 4px; }

/* -------- LAYOUT PRIMITIVES -------- */
.container-fortis { max-width: var(--container); margin-inline:auto; padding-inline: clamp(20px, 4vw, 40px); }

/* Type clamps */
.h-display { font-size: clamp(2.4rem, 4.8vw + .8rem, 5rem); line-height:1.04; font-weight:700; }
.h-section { font-size: clamp(1.85rem, 2.4vw + .8rem, 3rem); line-height:1.1; font-weight:600; }
.h-eyebrow { font-size: 12px; letter-spacing:.18em; text-transform: uppercase; font-weight:600; color: var(--olive-600); }

/* Reveal on scroll */
.reveal { opacity:0; transform: translateY(20px); transition: opacity .7s ease, transform .7s var(--ease-out); }
.reveal.in { opacity:1; transform:none; }
.reveal[data-delay="1"] { transition-delay:.06s; }
.reveal[data-delay="2"] { transition-delay:.12s; }
.reveal[data-delay="3"] { transition-delay:.18s; }
.reveal[data-delay="4"] { transition-delay:.24s; }
.reveal[data-delay="5"] { transition-delay:.30s; }
.reveal[data-delay="6"] { transition-delay:.36s; }

/* -------- HERO -------- */
.hero {
  position: relative;
  background: #0c1d0d;
  color:#fff;
  overflow: hidden;
  isolation: isolate;
}
/* Technical grid only — no ornaments, no diagonals */
.hero::before {
  content:""; position:absolute; inset:0; z-index:0; 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;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, #000 50%, transparent 100%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, #000 50%, transparent 100%);
}
/* One soft directional light to add depth, no decorative shapes */
.hero::after {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(112,133,60,.16), transparent 65%);
}

/* Crisp section seam — no gradient bleed */
.sobre-intro { position:relative; background:#ffffff; }

/* Glass card (hero panel) */
.glass {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}

/* -------- BUTTONS -------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius: var(--r-md);
  font-weight:600;
  letter-spacing:.005em;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              background-color var(--t-base) ease,
              color var(--t-base) ease,
              border-color var(--t-base) ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.99); }

/* WhatsApp official — single source of truth */
.btn-wa {
  background: var(--wa-500);
  color:#fff;
  box-shadow:
    0 10px 28px -10px rgba(37,211,102,.55),
    0 2px 6px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-wa:hover { background: var(--wa-600); box-shadow: 0 14px 36px -10px rgba(37,211,102,.65), 0 2px 6px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.22); }
.btn-wa:active { background: var(--wa-700); }

.btn-dark { background: var(--green-800); color:#fff; box-shadow: var(--shadow-md); }
.btn-dark:hover { background: var(--green-700); }

.btn-ghost { color: rgba(255,255,255,.92); border:1px solid rgba(255,255,255,.20); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.35); }

/* Sizes */
.btn-sm { padding: 10px 14px; font-size: 13.5px; border-radius: var(--r-sm); }
.btn-md { padding: 12px 18px; font-size: 14.5px; }
.btn-lg { padding: 16px 24px; font-size: 15.5px; border-radius: var(--r-md); }

/* -------- NAV -------- */
.nav { transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease; }
.nav.scrolled {
  background: rgba(12, 26, 14, .82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-color: rgba(255,255,255,.08);
}

/* Logo image */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.logo-img--lg { height: 48px; }
@media (min-width: 768px) {
  .logo-img { height: 48px; }
  .logo-img--lg { height: 56px; }
}
@media (min-width: 1024px) {
  .logo-img { height: 60px; }
  .logo-img--lg { height: 64px; }
}

/* -------- SERVICE CARDS -------- */
.svc-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  position:relative;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) ease,
              border-color var(--t-base) ease;
  overflow:hidden;
}
.svc-card::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(380px 220px at 100% 0%, rgba(112,133,60,.10), transparent 60%);
  opacity:0; transition: opacity var(--t-base) ease; pointer-events:none;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(112,133,60,.32);
  box-shadow: 0 4px 8px rgba(19,40,20,.04), 0 24px 44px -20px rgba(19,40,20,.22);
}
.svc-card:hover::before { opacity:1; }

.svc-card .icon-tile {
  width:48px; height:48px; border-radius: var(--r-md);
  display:inline-grid; place-items:center;
  background: linear-gradient(180deg, rgba(112,133,60,.14), rgba(112,133,60,.06));
  color: var(--olive-600);
  border:1px solid rgba(112,133,60,.22);
}
.svc-card h3 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-800);
  line-height: 1.35;
}
.svc-card p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-600);
}
.svc-card .svc-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,22,18,.06);
}
.svc-tag {
  display:inline-flex; align-items:center; gap:6px;
  font-size: 11.5px; font-weight:600;
  letter-spacing:.05em;
  color: var(--olive-600);
  background: rgba(112,133,60,.08);
  border:1px solid rgba(112,133,60,.18);
  padding: 5px 10px;
  border-radius: var(--r-full);
  transition: background-color var(--t-base) ease, border-color var(--t-base) ease;
}
.svc-card:hover .svc-tag { background: rgba(112,133,60,.16); border-color: rgba(112,133,60,.34); }

/* -------- KPI -------- */
.kpi {
  background:#fff; border:1px solid var(--line);
  border-radius: var(--r-md); padding:18px 20px;
  transition: border-color var(--t-base) ease, transform var(--t-base) ease, box-shadow var(--t-base) ease;
  position: relative;
  overflow: hidden;
}
.kpi::after {
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
  background: linear-gradient(90deg, var(--olive-600), var(--olive-300));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out);
}
.kpi:hover { border-color: rgba(112,133,60,.30); transform: translateY(-3px); box-shadow: 0 18px 36px -22px rgba(19,40,20,.25); }
.kpi:hover::after { transform: scaleX(1); }
.kpi .num { font-family:'Poppins',sans-serif; font-weight:700; font-size: clamp(28px, 3.5vw, 40px); line-height:1; color: var(--green-800); letter-spacing:-.02em; }
.kpi .lbl { font-size: 12.5px; color: var(--ink-500); margin-top: 8px; }

/* -------- PHOTO -------- */
.photo {
  position:relative;
  border-radius: var(--r-lg); overflow:hidden;
  background: var(--green-900);
  box-shadow: 0 30px 60px -30px rgba(19,40,20,.35);
  cursor: zoom-in;
}
.photo img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .8s var(--ease-out); }
.photo:hover img { transform: scale(1.04); }
.photo .ph-caption {
  position:absolute; inset:auto 0 0 0;
  padding:18px 18px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.65) 100%);
  color:#fff;
  font-size: 13px;
  font-weight: 500;
}
.photo .ph-tag {
  position:absolute; top:14px; left:14px;
  background: rgba(255,255,255,.94);
  color: var(--green-800);
  border:1px solid rgba(0,0,0,.05);
  border-radius: var(--r-full);
  padding: 5px 11px;
  font-size: 11px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  z-index: 1;
}

/* -------- MASONRY GALLERY -------- */
.masonry {
  column-count: 3;
  column-gap: 16px;
}
@media (max-width: 900px) { .masonry { column-count: 2; column-gap: 12px; } }
@media (max-width: 520px) { .masonry { column-count: 1; } }
.masonry .photo {
  break-inside: avoid;
  margin-bottom: 16px;
  display: block;
}
@media (max-width: 900px) { .masonry .photo { margin-bottom: 12px; } }
.masonry .photo img { width:100%; height:auto; aspect-ratio: var(--ar, 4 / 3); object-fit: cover; }

/* -------- SECTION SEAMS (editorial dividers) -------- */
.bg-fortis-green, .bg-fortis-green3 { position: relative; }
.bg-fortis-green::before, .bg-fortis-green3::before {
  content:""; position:absolute; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(780px 380px at 85% 12%, rgba(138,163,77,.12), transparent 65%);
}
.bg-fortis-green > *, .bg-fortis-green3 > * { position: relative; z-index: 1; }

/* -------- COMPARATIVO -------- */
.cmp-col {
  position:relative;
  border-radius: var(--r-xl);
  padding:28px;
  overflow:hidden;
  height:100%;
}
.cmp-bad {
  background: radial-gradient(800px 300px at 100% 0%, rgba(220,80,70,.07), transparent 60%), #fafafa;
  border:1px solid rgba(176,60,50,.15);
}
.cmp-good {
  background: radial-gradient(800px 300px at 0% 0%, rgba(112,133,60,.20), transparent 60%), linear-gradient(180deg,#15311a,#0f240f);
  color:#fff;
  border:1px solid rgba(138,163,77,.25);
  box-shadow: 0 30px 60px -25px rgba(15,40,20,.4);
}
.cmp-row {
  display:flex; align-items:flex-start; gap:14px;
  padding:12px 0; border-top:1px solid rgba(0,0,0,.07);
}
.cmp-good .cmp-row { border-color: rgba(255,255,255,.08); }
.cmp-row:first-of-type { border-top:0; }
.cmp-dot {
  flex:none; width:26px; height:26px; border-radius: var(--r-xs);
  display:grid; place-items:center; margin-top:2px;
}
.cmp-bad .cmp-dot  { background: rgba(190,65,55,.10); color:#b8443a; }
.cmp-good .cmp-dot { background: rgba(138,163,77,.18); color: var(--olive-300); }

.bar-track { background: rgba(0,0,0,.06); height:8px; border-radius:999px; overflow:hidden; }
.cmp-good .bar-track { background: rgba(255,255,255,.08); }
.bar-fill { height:100%; border-radius:999px; }
.bar-bad  { background: linear-gradient(90deg,#d6584a,#b8443a); }
.bar-good { background: linear-gradient(90deg, var(--olive-500), var(--olive-300)); }

/* -------- REVIEW CARDS (Google-style) -------- */
.rcard {
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) ease,
              border-color var(--t-base) ease;
}
.rcard:hover {
  transform: translateY(-3px);
  border-color: rgba(15,22,18,.14);
  box-shadow: 0 24px 48px -22px rgba(15,22,18,.16);
}
.rcard__stars {
  display: inline-flex; gap: 2px;
  color: #F5B400;
}
.rcard__stars svg { width: 18px; height: 18px; }
.rcard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rcard__quote-wrap {
  position: relative;
  overflow: hidden;
  max-height: 5.2em;
  transition: max-height .55s cubic-bezier(.16,1,.3,1);
}
.rcard__quote-wrap[data-clamped="false"] { max-height: 60em; }
.rcard__quote-wrap::after {
  content:""; position:absolute; left:0; right:0; bottom:0; height: 1.8em;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 92%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.rcard__quote-wrap[data-truncated="true"][data-clamped="true"]::after { opacity: 1; }
.rcard__quote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-600);
  letter-spacing: -.005em;
  margin: 0;
}
.rcard__more {
  align-self: flex-start;
  margin-top: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--olive-600);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease, gap .25s ease;
}
.rcard__more:hover { color: var(--olive-700); gap: 9px; }
.rcard__more svg { width: 12px; height: 12px; transition: transform .35s var(--ease-out); }
.rcard__more[aria-expanded="true"] svg { transform: rotate(180deg); }
.rcard__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-800);
  letter-spacing: -.01em;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,22,18,.06);
}
.gbadge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 13px;
  color: var(--ink-600);
  box-shadow: var(--shadow-sm);
}
.gbadge__g {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
}
.gbadge__rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
  color: var(--ink-800);
}
.gbadge__rating svg { width: 14px; height: 14px; color: #F5B400; }

/* -------- TESTIMONIALS (legacy) -------- */
.tcard {
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r-lg);
  padding:28px;
  position:relative;
  transition: transform var(--t-base) ease, box-shadow var(--t-base) ease, border-color var(--t-base) ease;
}
.tcard:hover { transform: translateY(-3px); border-color: rgba(112,133,60,.25); box-shadow: 0 24px 48px -20px rgba(19,40,20,.18); }
.tcard::before {
  content:"\201C"; position:absolute; top:8px; right:22px;
  font-family:'Poppins',serif; font-size:80px; line-height:1;
  color: rgba(112,133,60,.18); pointer-events:none;
}

/* -------- FAQ -------- */
.faq-panel { display:grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-panel > div { overflow:hidden; }
.faq-item[data-open="true"] .faq-panel { grid-template-rows: 1fr; }
.faq-item[data-open="true"] .faq-chev { transform: rotate(45deg); background: var(--olive-600); color:#fff; border-color: var(--olive-600); }
.faq-chev { transition: transform .3s ease, background-color .3s ease, color .3s ease, border-color .3s ease; }

/* -------- STEPS -------- */
.step-card {
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r-md);
  padding:22px;
  transition: border-color var(--t-base) ease, transform var(--t-base) ease;
}
.step-card:hover { border-color: rgba(112,133,60,.30); transform: translateY(-2px); }
.step-num {
  font-family:'Poppins',sans-serif; font-weight:700;
  color: var(--olive-600); font-size: 13px;
  letter-spacing: .18em;
}

/* -------- STATUS ROWS (hero panel) -------- */
.status-row {
  display:flex; align-items:center; justify-content:space-between;
  padding: 11px 13px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm);
}

/* -------- FOOTER -------- */
.footer-link { color: rgba(255,255,255,.65); transition: color .2s ease; font-size: 14px; }
.footer-link:hover { color: #fff; }
.client-pill {
  display:flex; align-items:center; justify-content:center;
  padding:14px 18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r-md);
  font-family:'Poppins',sans-serif; font-weight:600;
  color: var(--ink-500);
  font-size: 13px; letter-spacing:.04em;
  transition: border-color var(--t-base) ease, color var(--t-base) ease, transform var(--t-base) ease, background-color var(--t-base) ease;
}
.client-pill:hover { border-color: rgba(112,133,60,.35); color: var(--green-800); transform: translateY(-2px); background: var(--paper-soft); }

/* -------- WHATSAPP FAB -------- */
@keyframes wa-pulse {
  0%, 70%, 100% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 2px 6px rgba(0,0,0,.2), 0 0 0 0 rgba(37,211,102,.5); }
  82% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 2px 6px rgba(0,0,0,.2), 0 0 0 16px rgba(37,211,102,0); }
  92% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 2px 6px rgba(0,0,0,.2), 0 0 0 24px rgba(37,211,102,0); }
}
.wa-fab { animation: wa-pulse 4s ease-out infinite; }

/* -------- MOBILE STICKY CTA -------- */
.mob-cta {
  position: fixed; left:12px; right:12px; bottom:12px;
  z-index: 45;
  background: var(--wa-500); color:#fff;
  border-radius: var(--r-md); padding: 14px;
  font-weight: 700; font-size: 15px;
  display:flex; align-items:center; justify-content:center; gap:10px;
  box-shadow: 0 18px 36px -10px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.18);
  opacity:0; transform: translateY(120%);
  transition: opacity .35s ease, transform .35s ease;
}
.mob-cta.show { opacity:1; transform: translateY(0); }
@media (min-width: 768px) { .mob-cta { display:none !important; } }

/* -------- LGPD -------- */
.lgpd {
  position: fixed; left:16px; right:16px; bottom:16px;
  max-width:980px; margin:0 auto;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border:1px solid rgba(19,40,20,.10);
  border-radius: var(--r-lg);
  padding:16px 20px;
  box-shadow: 0 30px 60px -20px rgba(19,40,20,.32), 0 8px 24px -8px rgba(19,40,20,.12);
  z-index:60;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s ease;
}
.lgpd.show { transform: translateY(0); opacity:1; }

/* -------- LIGHTBOX -------- */
.lb {
  position: fixed; inset:0; z-index: 100;
  background: rgba(8, 14, 10, .94);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.lb.open { opacity: 1; pointer-events: auto; }
.lb-stage {
  position: relative;
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  transform: scale(.96);
  transition: transform .45s var(--ease-out);
}
.lb.open .lb-stage { transform: scale(1); }
.lb-img {
  max-width: 100%; max-height: 86vh;
  border-radius: var(--r-md);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.65);
  user-select: none;
  -webkit-user-drag: none;
}
.lb-cap {
  position: absolute; left: 0; right: 0; bottom: -42px;
  text-align: center;
  color: rgba(255,255,255,.86);
  font-size: 13.5px; letter-spacing: .02em;
}
.lb-ctrl {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background-color .2s ease, transform .2s ease;
}
.lb-ctrl:hover { background: rgba(255,255,255,.20); transform: scale(1.06); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-counter {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
@media (max-width: 640px) {
  .lb-ctrl { width: 42px; height: 42px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; }
}

/* -------- ACCESSIBILITY -------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  .wa-fab { animation:none; }
  html { scroll-behavior:auto; }
  .photo img { transition:none; }
  .lb, .lb-stage { transition: none !important; }
}
@media print { .lgpd, .wa-fab, .mob-cta, .nav, .lb { display:none !important; } }
