/* ============================================================
   Caça Vazamento Almeida — Landing Page
   ============================================================ */

:root {
  --bg:        #0d1117;
  --bg-alt:    #161b22;
  --bg-card:   #1c2333;
  --orange:    #f97316;
  --orange-dk: #ea580c;
  --blue:      #1d4ed8;
  --blue-lt:   #60a5fa;
  --text:      #e6edf3;
  --muted:     #8b949e;
  --border:    rgba(255,255,255,0.08);
  --radius:    8px;
  --radius-lg: 14px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; height:auto; display:block; }
a   { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
ul, ol { list-style:none; }

/* ---- Container ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Typography ---- */
h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.body-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.text-blue { color: var(--blue-lt); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
  letter-spacing: .3px;
}

.btn svg { flex-shrink:0; }

.btn-orange {
  background: var(--orange);
  color: #fff;
  border: 1.5px solid var(--orange);
}

.btn-orange:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(249,115,22,.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.15);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}

.btn-lg  { padding: 14px 28px; font-size: 0.95rem; }
.btn-xl  { padding: 16px 36px; font-size: 1rem; }

/* ---- Section ---- */
.section { padding: 110px 0; }
.bg-alt  { background: var(--bg-alt); }
.mt-48   { margin-top: 52px; }

/* ---- Grid ---- */
.grid-3 {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3,1fr);
}

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.card:hover {
  border-top-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(29,78,216,.12);
  border: 1px solid rgba(96,165,250,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-lt);
  margin-bottom: 22px;
}

.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p   { font-size: .92rem; color: var(--muted); line-height: 1.75; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}

.nav.scrolled {
  background: rgba(13,17,23,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 84px;
  gap: 40px;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ---- Nav links ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .25s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: auto; }

/* ---- Mobile burger ---- */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- Drawer (mobile) ---- */
.nav-drawer {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  gap: 4px;
}

.nav-drawer.open { display: flex; }

.drawer-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.drawer-link:hover { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(29,78,216,.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 { color: var(--text); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* hero stats */
.hero-badges {
  display: flex;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.badge {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.badge:first-child { padding-left: 0; }

.badge strong, .badge .badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.badge span {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

.badge-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* hero photo */
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px var(--border);
  align-self: center;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(13,17,23,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-tag svg { color: var(--blue-lt); }

/* ============================================================
   SINAIS / SERVIÇOS
   ============================================================ */
.sinais  { background: var(--bg); }
.servicos { background: var(--bg-alt); }

/* ============================================================
   TECNOLOGIA
   ============================================================ */
.tecnologia { background: var(--bg); }

.tecnologia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tecnologia-foto {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 56px rgba(0,0,0,.45), 0 0 0 1px var(--border);
}

.tecnologia-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.tecnologia-foto:hover img { transform: scale(1.04); }

.tecnologia-texto h2 { margin-bottom: 16px; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.55;
}

.check-list svg {
  color: var(--blue-lt);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   GALERIA
   ============================================================ */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.galeria-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  cursor: pointer;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}

.galeria-item:hover img {
  transform: scale(1.06);
}

.galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
}

.galeria-item:hover::after {
  background: rgba(0,0,0,.15);
}

@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .galeria-grid .galeria-item:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-grid .galeria-item:last-child {
    grid-column: auto;
    aspect-ratio: 3/4;
  }
}

/* ============================================================
   PROCESSO
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  max-width: 680px;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 40px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(29,78,216,.2);
}

.step-body { padding-top: 6px; }
.step-body h3 { margin-bottom: 6px; font-size: 1.1rem; }
.step-body p  { font-size: .92rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   REGIÃO
   ============================================================ */
.regiao { background: var(--bg-alt); }

.cidades {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.cidade {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
  cursor: default;
}

.cidade:hover {
  border-color: rgba(96,165,250,.4);
  color: var(--blue-lt);
  background: rgba(96,165,250,.06);
}

.endereco {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.endereco svg { color: var(--blue-lt); flex-shrink: 0; }

.mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border);
}

.mapa iframe { display: block; filter: brightness(.85) contrast(1.1) saturate(.8); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.rating-label {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 6px;
}

.depo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(245,158,11,.4);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.depo::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(245,158,11,.15);
  pointer-events: none;
  user-select: none;
}

.depo-stars {
  font-size: .95rem;
  color: #f59e0b;
  letter-spacing: 3px;
}

.depo blockquote {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.depo cite {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-lt);
  font-style: normal;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.cta-text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: #fff;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.cta-band .btn-orange {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  font-size: 1rem;
  padding: 15px 32px;
}

.cta-band .btn-orange:hover {
  background: var(--text);
  border-color: var(--text);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}

.cta-note {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-wrap { max-width: 760px; }

.accordion { display: flex; flex-direction: column; }

.acc-item { border-bottom: 1px solid var(--border); }

.acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color .2s;
}

.acc-trigger:hover { color: var(--orange); }

.acc-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  position: relative;
  flex-shrink: 0;
  transition: border-color .2s, transform .3s;
}

.acc-icon::before, .acc-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: opacity .2s, transform .3s, background .2s;
}

.acc-icon::before { width: 10px; height: 1.5px; top:50%; left:50%; transform: translate(-50%,-50%); }
.acc-icon::after  { width: 1.5px; height: 10px; top:50%; left:50%; transform: translate(-50%,-50%); }

.acc-item.active .acc-trigger { color: var(--orange); }
.acc-item.active .acc-icon { border-color: var(--orange); transform: rotate(45deg); }
.acc-item.active .acc-icon::before,
.acc-item.active .acc-icon::after { background: var(--orange); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.acc-item.active .acc-body { max-height: 240px; padding-bottom: 22px; }

.acc-body p { font-size: .92rem; color: var(--muted); line-height: 1.75; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080c12;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-img { height: 48px; }

.footer-col > p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-col ul { display:flex; flex-direction:column; gap:12px; }

.footer-col ul li a,
.footer-col ul li span {
  font-size: .88rem;
  color: var(--muted);
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--text); }

.footer-contato li a,
.footer-contato li span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contato svg { color: var(--orange); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-inner p { font-size: .8rem; color: var(--muted); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.wpp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 900;
  transition: transform .2s, box-shadow .2s;
}

.wpp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 26px rgba(37,211,102,.55);
}

.back-top {
  position: fixed;
  bottom: 28px; right: 96px;
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s, color .2s;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}

.reveal       { transform: translateY(30px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tecnologia-grid { gap: 48px; }
  .hero-grid { gap: 48px; }
}

@media (max-width: 960px) {
  .hero-grid,
  .tecnologia-grid { grid-template-columns: 1fr; gap: 40px; }

  .hero-photo { order: -1; aspect-ratio: 16/9; }
  .hero-sub   { max-width: none; }
  .hero { padding: 120px 0 80px; min-height: auto; }

  .grid-3 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-col > p { max-width: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .nav-inner { height: 72px; }
  .logo-img { height: 44px; }

  .section { padding: 80px 0; }

  h1 { font-size: 2.3rem; letter-spacing: -1px; }
  h2 { font-size: 1.8rem; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .hero-badges { flex-wrap: wrap; row-gap: 16px; }
  .badge { padding: 0 20px; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-action { align-items: stretch; width: 100%; }
  .cta-action .btn { justify-content: center; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }

  h1 { font-size: 2rem; }

  .hero-badges { flex-wrap: wrap; gap: 12px; }
  .badge-sep   { display: none; }
  .badge       { padding: 0; }

  .badge strong,
  .badge .badge-num { font-size: 1.5rem; }

  .back-top  { right: 22px; bottom: 90px; }
  .wpp-float { bottom: 22px; right: 22px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right { opacity:1; transform:none; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #484f58; }

::selection { background: rgba(249,115,22,.3); color: #fff; }
