/* Sprint 2 - Reset base seguro */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  font: inherit;
}

a {
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--green, #39ff14);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  background: #39ff14;
  color: #001400;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}
