/* ============================================================
   BOTICA NATURAL — base/reset
   Equivalente ao alchemy-reset da referência + tipografia.
   Mobile-first: base = <=640px (breakpoints da ref: 640 / 1024).
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
  -webkit-tap-highlight-color: transparent;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--f-base);
  font-size: 16px;
  line-height: 24px;
  color: var(--tinta);
  background: #fff;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
button {
  font-family: inherit;
  background: none;
  cursor: pointer;
  color: inherit;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* utilitário de transição da ref (54 ocorrências, valor único) */
.t { transition: var(--trans); }

/* quebra de linha só no celular */
.br-mob { display: inline; }
@media (min-width: 641px) { .br-mob { display: none; } }

/* live region acessível (contrato replo-sr-only) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* placeholder de arte (some quando as imagens reais entrarem) */
.ph {
  background:
    repeating-linear-gradient(45deg, #EFE7D6, #EFE7D6 12px, #E7DCC6 12px, #E7DCC6 24px);
  border: 1px dashed rgba(20, 69, 47, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--verde);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 10px;
}

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