/* Envision3D — Global styles (complementa o <style> inline do index.html) */

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

body {
  background-color: #111a22;
  color: #ffffff;
  font-family: Inter, "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Reset default link decoration nos cards de serviço */
a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; }

/* Smooth scroll global */
html { scroll-behavior: smooth; }

/* Placeholder color */
::placeholder { color: rgba(146, 173, 201, 0.45); }

/* Focus ring acessível */
:focus-visible {
  outline: 2px solid #1380ec;
  outline-offset: 2px;
}

/* Seleção de texto */
::selection {
  background: rgba(19, 128, 236, 0.35);
  color: #ffffff;
}
