/* ===== Base / paleta da marca ===== */
:root {
  --green-deep: #1c4234;   /* esmeralda escuro do logo */
  --green:      #2c5e48;   /* verde da marca */
  --green-soft: #6f9384;   /* verde suave para detalhes */
  --cream:      #fbfaf6;   /* off-white quente (fundo) */
  --cream-2:    #f3f1ea;   /* creme um tom abaixo */
  --ink:        #2a2a26;   /* texto principal */
  --muted:      #8a8a82;   /* texto secundário */
  --line:       #e4e1d8;   /* linhas/divisórias */

  --serif: "Courier Prime", "Courier New", monospace;
  --sans:  "Courier Prime", "Courier New", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* âncoras não somem sob o cabeçalho fixo */
section[id] { scroll-margin-top: 90px; }

/* ===== Tela de carregamento (reutilizável) ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.45s ease;
}
.loader img {
  width: clamp(130px, 34vw, 180px);
  height: auto;
  animation: zrespira 0.95s ease-in-out infinite alternate;
}
.loader.done { opacity: 0; pointer-events: none; }
@keyframes zrespira {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .loader img { animation: none; }
}

::selection { background: var(--green); color: var(--cream); }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ===== Barra de aviso ===== */
.topbar {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
}

/* ===== Cabeçalho ===== */
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.85rem clamp(1.25rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(8px);
  z-index: 50;
}

.nav { display: flex; gap: 2rem; align-items: center; }
.nav--right { justify-content: flex-end; }

.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}
.nav a:hover::after { width: 100%; }

/* "Loja" em destaque no menu */
.nav a.nav__cta {
  background: var(--green);
  color: var(--cream);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  line-height: 1;
  transition: background 0.25s;
}
.nav a.nav__cta:hover { background: var(--green-deep); }
.nav a.nav__cta::after { display: none; }

.destaques-mais { text-align: center; margin-top: clamp(1.6rem, 4vw, 2.4rem); }

.brand img { height: 46px; width: auto; }

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: clamp(4rem, 11vw, 8.5rem) clamp(1.25rem, 6vw, 4rem) clamp(3.5rem, 8vw, 6rem);
  max-width: 60rem;
  margin: 0 auto;
}

.hero__eyebrow,
.section-head__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  color: var(--green-deep);
  letter-spacing: 0.01em;
}

.hero__lead {
  max-width: 34rem;
  margin: 1.8rem auto 2.6rem;
  font-size: 1.05rem;
  color: var(--muted);
}

/* ===== Botões ===== */
.btn {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid var(--green);
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); }

.btn--ghost {
  background: transparent;
  color: var(--green-deep);
}
.btn--ghost:hover { background: var(--green); color: var(--cream); border-color: var(--green); }

/* ===== Cabeçalho de seção ===== */
.section-head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--green-deep);
}

/* ===== Coleção ===== */
.collection {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 76rem;
  margin: 0 auto;
}

.product { text-align: center; cursor: pointer; outline: none; }
.product:focus-visible .product__media { outline: 2px solid var(--green); outline-offset: 4px; }

.product__media {
  aspect-ratio: 3 / 4;
  background: var(--cream-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.product:hover .product__media { transform: translateY(-6px); }

.product__soon {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-soft);
}

.product__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.product__desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 22rem;
  margin: 0 auto 1.2rem;
}

.product__link {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--green-soft);
  padding-bottom: 3px;
  transition: border-color 0.3s ease;
}
.product__link:hover { border-color: var(--green); }

/* ===== Fotos, preço e filtros (vitrine dinâmica) ===== */
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__price {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 0.8rem;
}

.filtros {
  max-width: 76rem;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.filtro-grupo { display: flex; flex-direction: column; gap: 0.6rem; }
.filtro-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-soft);
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--green-deep);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.chip:hover { border-color: var(--green-soft); }
.chip.is-active { background: var(--green); border-color: var(--green); color: var(--cream); }

.empty-cat { text-align: center; color: var(--muted); padding: 2.5rem 1rem; }

/* ===== Página Loja ===== */
.loja-busca-wrap { max-width: 34rem; margin: 0 auto clamp(1.6rem, 4vw, 2.4rem); display: flex; align-items: baseline; gap: 0.8rem; }
.loja-busca {
  flex: 1; background: transparent; border: none; border-bottom: 1px solid var(--line);
  font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: 0.6rem 0.2rem;
  transition: border-color 0.25s;
}
.loja-busca::placeholder { color: var(--muted); }
.loja-busca:focus { outline: none; border-color: var(--green); }
.loja-conta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-soft); white-space: nowrap; }
.chip--promo { border-color: #a23b3b; color: #a23b3b; }
.chip--promo:hover { border-color: #a23b3b; }
.chip--promo.is-active { background: #a23b3b; border-color: #a23b3b; color: #fff; }
.pbadge--promo { background: #a23b3b; }

.loja-convite { text-align: center; color: var(--muted); max-width: 30rem; margin: 0 auto 1.6rem; }
.loja-convite-btn { text-align: center; }

/* ordenação da loja */
.loja-ordem-wrap { max-width: 34rem; margin: -0.8rem auto 1.6rem; display: flex; align-items: center; gap: 0.7rem; }
.loja-ordem { background: transparent; border: 1px solid var(--line); color: var(--ink); font-family: var(--sans); font-size: 0.85rem; padding: 0.45rem 0.7rem; cursor: pointer; }
.loja-ordem:focus { outline: none; border-color: var(--green); }

/* Instagram no rodapé */
.footer__insta { display: inline-block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); border-bottom: 1px solid var(--green-soft); padding-bottom: 2px; margin-bottom: 1.2rem; transition: color 0.25s; }
.footer__insta:hover { color: var(--green-deep); }

/* Garantia & Cuidados */
.garantia { background: var(--cream-2); }
.garantia__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.5rem); max-width: 62rem; margin: 0 auto; }
.garantia__item { text-align: center; padding: 0 0.5rem; }
.garantia__icone { display: block; color: var(--green-soft); font-size: 1.4rem; margin-bottom: 0.7rem; }
.garantia__item h3 { font-family: var(--serif); font-weight: 700; color: var(--green-deep); font-size: 1.05rem; margin-bottom: 0.5rem; }
.garantia__item p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; max-width: 20rem; margin: 0 auto; }
@media (max-width: 760px) {
  .garantia__grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ===== Carrossel de coleções ===== */
.carousel { position: relative; width: 100%; height: min(64vh, 640px); overflow: hidden; background: var(--cream-2); }
.carousel__track { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; display: flex; align-items: flex-end; overflow: hidden; }
.slide.is-active { opacity: 1; }
.slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide__scrim { display: none; }

/* Enquadramento (posição + zoom por device) */
.pz { object-position: var(--dx, 50%) var(--dy, 50%); transform: scale(var(--ds, 1)); transform-origin: var(--dx, 50%) var(--dy, 50%); }
@media (max-width: 760px) {
  .pz { object-position: var(--mx, var(--dx, 50%)) var(--my, var(--dy, 50%)); transform: scale(var(--ms, var(--ds, 1))); transform-origin: var(--mx, var(--dx, 50%)) var(--my, var(--dy, 50%)); }
}
.slide__content { position: relative; z-index: 1; color: var(--sc, #fff); padding: clamp(1.4rem, 3.5vw, 2.8rem); max-width: 30rem; }
.slide__nome { font-family: var(--serif); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.12; text-shadow: 2px 3px 6px var(--ss, rgba(0,0,0,0.6)), 0 1px 2px var(--ss, rgba(0,0,0,0.6)); }
.slide__desc { margin-top: 0.5rem; font-size: 0.92rem; line-height: 1.45; max-width: 24rem; text-shadow: 1px 2px 4px var(--ss, rgba(0,0,0,0.65)), 0 1px 2px var(--ss, rgba(0,0,0,0.6)); }
.slide__cta { margin-top: 0.9rem; display: inline-block; background: var(--green); color: var(--cream); border: none; font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.7rem 1.7rem; cursor: pointer; transition: background 0.25s; }
.slide__cta:hover { background: var(--green-deep); }
.carousel__dots { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 2; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; padding: 0; transition: background 0.25s; }
.dot.is-active { background: #fff; }

/* ===== Destaque em banner (produto) ===== */
.destbanner { position: relative; display: block; width: 100%; min-height: clamp(300px, 42vh, 460px); margin-bottom: 1.5rem; cursor: pointer; overflow: hidden; }
.destbanner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.destbanner--nofoto { background: var(--cream-2); }
.destbanner__scrim { display: none; }
.destbanner__content { position: absolute; left: 0; bottom: 0; z-index: 1; color: #fff; padding: clamp(1.5rem, 4vw, 3rem); }
.destbanner--nofoto .destbanner__content { color: var(--green-deep); }
.destbanner__content h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.6rem); text-shadow: 2px 3px 6px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.6); }
.destbanner__preco { font-family: var(--serif); font-size: 1.3rem; margin-top: 0.3rem; text-shadow: 1px 2px 4px rgba(0,0,0,0.6); }
.destbanner__content .product__link { color: #fff; border-color: rgba(255,255,255,0.6); text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
.destbanner--nofoto .destbanner__content h3, .destbanner--nofoto .destbanner__preco { text-shadow: none; }
.destbanner--nofoto .destbanner__content .product__link { color: var(--green); border-color: var(--green-soft); }

/* ===== Selos, disponibilidade, parcelas, compartilhar ===== */
.product__media { position: relative; }
.pbadges { position: absolute; top: 0.5rem; left: 0.5rem; z-index: 2; display: flex; flex-direction: column; gap: 0.3rem; align-items: flex-start; }
.pbadge { background: var(--green-deep); color: var(--cream); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.5rem; }
.pbadge--pronta { background: var(--green); }
.pbadge--encomenda { background: var(--green-soft); }
.pbadge--esgotado { background: #8a8a82; }
.product__parc { display: block; font-size: 0.74rem; color: var(--muted); margin: -0.4rem 0 0.8rem; }
.modal__precoextra { font-size: 0.85rem; color: var(--muted); margin: -0.5rem 0 1rem; }
.modal__share { background: none; border: none; color: var(--green); font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; margin-top: 0.8rem; }
.modal__share:hover { color: var(--green-deep); }

@media (max-width: 760px) {
  /* Carrossel no celular: foto inteira em cima, legenda elegante embaixo (sem sobreposição) */
  .carousel { height: 76vh; }
  .slide { flex-direction: column; align-items: stretch; }
  .slide > img { position: relative; inset: auto; width: 100%; height: 56%; }
  .slide__content {
    flex: 1;
    max-width: none;
    background: var(--capbg, var(--green-deep));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 1.3rem 1.4rem 2.3rem;
  }
  .slide__nome, .slide__desc { text-shadow: none !important; }
  .slide__nome { font-size: 1.45rem; }
  .slide__desc { font-size: 0.92rem; margin-top: 0.4rem; }
  .slide__cta { margin-top: 1rem; }
  /* bolinhas sobem pra ficar sobre a FOTO (não sobre a legenda) */
  .carousel__dots { bottom: calc(44% + 0.8rem); filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45)); }
  .destbanner { min-height: 60vh; }
}

.modal__specs li { display: flex; justify-content: space-between; gap: 1rem; }
.spec-k { color: var(--muted); }
.spec-v { color: var(--ink); text-align: right; }

/* Opções de personalização (modal do produto) */
.modal__opcoes { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.4rem; }
.modal__opcoes:empty { display: none; }
.opc { display: flex; flex-direction: column; gap: 0.45rem; }
.opc__lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-soft); }
.opc__vals { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.opc__val { display: inline-flex; align-items: center; gap: 0.4rem; border: 1px solid var(--line); padding: 0.4rem 0.8rem; cursor: pointer; font-size: 0.9rem; transition: border-color 0.2s; }
.opc__val:hover { border-color: var(--green-soft); }
.opc__val input { accent-color: var(--green); }
.opc__texto { width: 100%; border: 1px solid var(--line); background: #fff; padding: 0.6rem 0.8rem; font-family: var(--sans); font-size: 0.95rem; color: var(--ink); }
.opc__texto:focus { outline: none; border-color: var(--green); }

/* ===== A Marca ===== */
.about {
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.25rem, 6vw, 4rem);
  text-align: center;
}
.about__inner { max-width: 44rem; margin: 0 auto; }
.about .section-head__eyebrow { color: var(--green-soft); margin-bottom: 1.3rem; }
.about__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.6rem;
}
.about__text {
  font-size: 1.08rem;
  color: rgba(251, 250, 246, 0.82);
}

/* ===== Contato ===== */
.contact {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 6vw, 4rem);
}
.contact__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--green-deep);
  margin: 1.1rem 0 0.8rem;
}
.contact__text { color: var(--muted); margin-bottom: 2.2rem; }
.contact__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Rodapé ===== */
.footer {
  background: var(--cream-2);
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 1.25rem;
  border-top: 1px solid var(--line);
}
.footer__logo { height: 56px; width: auto; margin: 0 auto 1rem; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 1.4rem;
}
.footer__copy {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__staff {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--line);
  transition: color 0.3s ease;
}
.footer__staff:hover { color: var(--green-soft); }

/* ===== Modal de produto ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.modal.is-open { display: flex; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 66, 52, 0.55);
  backdrop-filter: blur(3px);
  animation: fade 0.3s ease;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  background: var(--cream);
  width: min(960px, 100%);
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.5rem, 3vw, 3rem);
  animation: rise 0.35s ease;
}

.modal__close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--green-deep);
  cursor: pointer;
  z-index: 2;
}

/* Galeria */
.gallery__main {
  aspect-ratio: 3 / 4;
  background: var(--cream-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }

.gallery__thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.7rem;
}
.thumb {
  flex: 1;
  aspect-ratio: 1 / 1;
  background: var(--cream-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.25s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active { border-color: var(--green); }
.thumb .product__soon { font-size: 0.55rem; letter-spacing: 0.12em; }

/* Info */
.modal__info { display: flex; flex-direction: column; }
.modal__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 0.8rem;
}
.modal__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-deep);
  line-height: 1.1;
}
.modal__price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--green);
  margin: 0.8rem 0 1.2rem;
}
.modal__desc { color: var(--muted); margin-bottom: 1.4rem; }

.modal__specs {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 1.8rem;
}
.modal__specs li {
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.modal__cta { text-align: center; margin-top: auto; }
.modal__note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ===== Responsivo ===== */
@media (max-width: 760px) {
  /* Cabeçalho: logo centralizado no topo, menu numa linha embaixo */
  .header {
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: 0.35rem 1.2rem; padding: 0.55rem 1rem;
  }
  .brand { flex-basis: 100%; display: flex; justify-content: center; order: -1; }
  .brand img { height: 36px; }
  .nav { gap: 1.1rem; }
  .nav--left, .nav--right { justify-content: center; }
  .nav a { font-size: 0.66rem; letter-spacing: 0.1em; }

  .topbar { font-size: 0.56rem; letter-spacing: 0.06em; padding: 0.45rem 0.8rem; white-space: nowrap; overflow: hidden; }
  .topbar__extra { display: none; }

  .hero { padding-top: clamp(2.8rem, 9vw, 5rem); }
  .hero__lead { font-size: 0.95rem; }

  /* Catálogo em 2 colunas — mais peças visíveis pra navegar */
  .products { grid-template-columns: 1fr 1fr; max-width: none; gap: 0.9rem; }
  .product__name { font-size: 0.98rem; }
  .product__price { font-size: 0.92rem; }
  .product__link { font-size: 0.66rem; }

  .filtros { gap: 0.9rem; }
  .chip { font-size: 0.74rem; padding: 0.45rem 0.9rem; }

  /* Modal de produto: empilha, foto quadrada */
  .modal__dialog { grid-template-columns: 1fr; max-height: 92vh; padding: 1.5rem 1.2rem; }
  .gallery__main { aspect-ratio: 1 / 1; }
  .modal__name { font-size: 1.4rem; }
}

/* ===== Tipografia máquina de escrever (Courier Prime) — harmonia de tamanhos ===== */
body { font-weight: 400; }
.hero__title { font-size: clamp(1.7rem, 4vw, 2.9rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
.hero__lead { font-size: 0.98rem; }
.hero__eyebrow, .section-head__eyebrow { letter-spacing: 0.2em; }
.section-head__title { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; }
.about__title { font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 700; }
.about__text { font-size: 0.98rem; }
.contact__title { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; }
.product__name { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.01em; }
.product__price { font-size: 1rem; font-weight: 400; }
.modal__name { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
.modal__price { font-size: 1.15rem; }
.footer__tag { font-size: 0.95rem; }
.nav a, .btn { letter-spacing: 0.08em; }
