/* ============================================================================
   standalone-reset.css

   Reproduz o reset base que o tema Shopify (Dawn) injeta em theme.liquid.
   É NECESSÁRIO porque todo o CSS da marca (tne-*.css) assume que
   1rem = 10px, ou seja, html { font-size: 62.5% }. Sem isto, tipografia
   e espaçamentos ficariam ~1.6x maiores.

   Carregado SEMPRE em primeiro lugar, antes de tne-base.css.
   ============================================================================ */

html {
  box-sizing: border-box;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100%;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.06rem;
}

img,
video {
  max-width: 100%;
}

/* Skip-link (definido no tema via Dawn; versão mínima aqui). */
.tne-skip-link {
  position: absolute;
  top: -60px;
  left: 8px;
  z-index: 10000;
  padding: 10px 16px;
  background: #002e26;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.tne-skip-link:focus {
  top: 8px;
}
