/* =====================
   BASE — reset, variáveis, tipografia
   ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

:root {
  --k: #080808;       /* background escuro */
  --w: #f4f3ef;       /* branco quente */
  --g: #666;          /* cinza médio */
  --a: #d4c9b4;       /* areia / accent */
  --l: rgba(255,255,255,0.07);   /* linha clara */
  --ld: rgba(0,0,0,0.08);        /* linha escura (seção clara) */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--k);
  color: var(--w);
  overflow-x: hidden;
  cursor: none;
}

/* Utilitário de reveal por scroll */
.rv { opacity: 0; transform: translateY(34px); transition: opacity .7s, transform .7s; }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }

/* Label de seção (linha + texto uppercase) */
.sl {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 72px;
}
.sl::before { content: ''; width: 28px; height: 1px; background: var(--g); }

/* Botões globais */
.bp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--w);
  color: var(--k);
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.bp:hover { transform: scale(1.04); background: var(--a); }

.bg2 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(244,243,239,.48);
  font-size: 14.5px;
  text-decoration: none;
  transition: color .3s;
}
.bg2:hover { color: var(--w); }
.bg2 .ai { transition: transform .3s; }
.bg2:hover .ai { transform: translateX(4px); }

.bd {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--k);
  color: var(--w);
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s;
}
.bd:hover { transform: scale(1.04); }

.la {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--w);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(244,243,239,.16);
  padding-bottom: 3px;
  transition: border-color .3s, gap .3s;
}
.la:hover { border-color: var(--w); gap: 13px; }

/* Responsivo global */
@media (max-width: 900px) {
  #services, #process, #light, #testimonial, #cta, #showcase {
    padding-left: 20px;
    padding-right: 20px;
  }
}
