.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__video,
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,15,0.10) 0%,
    rgba(13,13,15,0.55) 65%,
    rgba(13,13,15,0.72) 100%
  );
}

.hero__conteudo {
  position: relative;
  z-index: 2;
  padding: 0 var(--page-px) 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--washi);
  border: 1px solid rgba(244,240,232,0.5);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.hero__titulo {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 10vw, 3.6rem);
  font-weight: 400;
  color: var(--washi);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 200;
  color: rgba(244,240,232,0.82);
  line-height: 1.65;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  max-width: 280px;
}

.hero__acoes {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botão hero — outline branco */
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--washi);
  color: var(--washi);
  background: transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.hero__btn:hover { background: var(--washi); color: var(--void); }

/* Ícone WhatsApp no hero (círculo verde pequeno) */
.hero__wpp {
  width: 40px;
  height: 40px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  transition: opacity var(--ease);
}
.hero__wpp:hover { opacity: 0.88; }

/* ── CREDIBILITY STRIP ───────────────────────────────────────── */

.trust-strip {
  background: var(--void);
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid rgba(212,197,176,0.1);
}

.trust-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.trust-item {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.7);
  white-space: nowrap;
  padding: 0 18px;
}

.trust-sep {
  color: var(--amadeirado);
  font-size: 10px;
  align-self: center;
  flex-shrink: 0;
}

/* ── CATEGORIAS ──────────────────────────────────────────────── */

.categorias {
  padding-bottom: 8px;
}

.categorias__scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1.2rem 32px;
}
.categorias__scroll::-webkit-scrollbar { display: none; }

.categoria-card {
  position: relative;
  flex-shrink: 0;
  /* 2 cards visíveis + 0.4 do terceiro aparecendo */
  width: calc((100vw - 2.4rem - 8px) / 2.4);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  text-decoration: none;
  scroll-snap-align: start;
}

.categoria-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.categoria-card:hover img { transform: scale(1.06); }

.categoria-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,15,0.32);
  transition: background 0.3s ease;
}
.categoria-card:hover::after { background: rgba(13,13,15,0.18); }

.categoria-card__titulo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--washi);
  text-align: center;
  padding: 8px;
  line-height: 1.4;
}

/* ── PRODUTO DESTAQUE (featured product) ─────────────────────── */

.featured {
  padding: 0 0 40px;
}

.featured__label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amadeirado);
  text-align: center;
  margin-bottom: 20px;
}

.featured__card {
  margin: 0 var(--page-px);
  border: 1px solid var(--stone);
  overflow: hidden;
}

.featured__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--amadeirado);
  color: var(--amadeirado);
  margin: 14px 14px 0;
}

.featured__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured__info {
  padding: 14px;
}

.featured__meta {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 4px;
}

.featured__nome {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--void);
  line-height: 1.1;
  margin-bottom: 6px;
}

.featured__origem {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 200;
  color: var(--ash);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.featured__preco-wrap {
  margin-bottom: 16px;
}

.featured__preco {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--void);
  letter-spacing: 0.06em;
}

.featured__parcela {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 200;
  color: var(--ash);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.featured__pix {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 200;
  color: var(--amadeirado);
  letter-spacing: 0.04em;
}

/* ── TÍTULO DE SEÇÃO — padrão centralizado ───────────────────── */

.secao-titulo {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--void);
  padding: 40px var(--page-px) 24px;
  line-height: 1.1;
}

/* ── COLEÇÕES ────────────────────────────────────────────────── */

.colecoes-mini {
  padding: 0 0 56px;
}

.colecao-bloco {
  padding: 0 0 48px;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 48px;
}
.colecao-bloco:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.colecao-bloco__header {
  padding: 0 1.2rem 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.colecao-bloco__label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amadeirado);
  margin-bottom: 6px;
}

.colecao-bloco__titulo {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  font-weight: 400;
  color: var(--void);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.colecao-bloco__ver {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  border-bottom: 1px solid var(--amadeirado);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 16px;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.colecao-bloco__ver:hover { color: var(--amadeirado); }

.colecao-bloco__scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1.2rem;
}
.colecao-bloco__scroll::-webkit-scrollbar { display: none; }

.colecao-prod-card {
  flex-shrink: 0;
  width: calc((100vw - 2.4rem - 10px) / 2.15);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.colecao-prod-card__img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.colecao-prod-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #F0EBE3;
  transition: transform 0.4s ease;
}
.colecao-prod-card:hover .colecao-prod-card__img { transform: scale(1.04); }

.colecao-prod-card__corpo {
  padding: 10px 0 0;
  text-align: center;
}

.colecao-prod-card__nome {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void);
  line-height: 1.6;
  min-height: calc(1.6em * 2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.colecao-prod-card__sep {
  width: 20px;
  height: 1px;
  background: var(--stone);
  margin: 7px auto;
}

.colecao-prod-card__preco {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--void);
  letter-spacing: 0.06em;
}

.ver-todas-link {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--amadeirado);
  width: fit-content;
  margin: 8px auto 0;
  transition: color 0.2s;
  text-decoration: none;
}
.ver-todas-link:hover { color: var(--void); }.colecao-bloco__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px;
  border: 1px solid var(--void);
  background: transparent;
  color: var(--void);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.colecao-bloco__btn:hover { background: var(--void); color: var(--washi); }

.ver-todas-link {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--amadeirado);
  width: fit-content;
  margin: 8px auto 0;
  transition: color 0.2s;
  text-decoration: none;
}
.ver-todas-link:hover { color: var(--void); }

/* ── STORYTELLING ────────────────────────────────────────────── */

.storytelling {
  padding: 40px 0;
}

.storytelling__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.storytelling__corpo {
  padding: 28px var(--page-px) 0;
}

.storytelling__badge {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amadeirado);
  margin-bottom: 12px;
}

.storytelling__titulo {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 6vw, 2rem);
  font-weight: 400;
  color: var(--void);
  line-height: 1.15;
  margin-bottom: 14px;
}

.storytelling__texto {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 200;
  color: var(--ash);
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.storytelling__selos {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.selo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.selo__icone {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash);
}

.selo__texto {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ash);
  line-height: 1.3;
  text-align: center;
}

/* ── SOCIAL PROOF / DEPOIMENTOS ──────────────────────────────── */

.social-proof {
  background: var(--void);
  padding: 40px var(--page-px);
}

.social-proof__titulo {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 400;
  color: var(--washi);
  line-height: 1.1;
  margin-bottom: 8px;
}

.social-proof__sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 200;
  color: rgba(244,240,232,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  line-height: 1.6;
}

.depoimento {
  border-left: 1px solid var(--amadeirado);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.depoimento:last-child { margin-bottom: 0; }

.depoimento__texto {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(244,240,232,0.85);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 12px;
}

.depoimento__autor {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(244,240,232,0.6);
}

/* ── STORE EXPERIENCE ────────────────────────────────────────── */

.store-exp {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.store-exp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-exp__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,15,0.75) 0%, rgba(13,13,15,0.15) 55%);
}

.store-exp__conteudo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px var(--page-px);
}

.store-exp__badge {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.65);
  margin-bottom: 8px;
}

.store-exp__titulo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--washi);
  line-height: 1.15;
  margin-bottom: 14px;
}

.store-exp__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid rgba(244,240,232,0.6);
  color: var(--washi);
  background: transparent;
  transition: background var(--ease), color var(--ease);
  cursor: pointer;
}
.store-exp__btn:hover { background: var(--washi); color: var(--void); }

/* ── LISTA VIP ───────────────────────────────────────────────── */

.vip-block {
  padding: 40px var(--page-px);
  border-top: 1px solid var(--stone);
}

.vip-block__label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amadeirado);
  margin-bottom: 10px;
}

.vip-block__titulo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--void);
  line-height: 1.15;
  margin-bottom: 8px;
}

.vip-block__sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 200;
  color: var(--ash);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.65;
}

/* ============================================================
   DESKTOP — HOME (≥1024px)
   ============================================================ */
@media (min-width: 1024px) {

  /* ── HERO ────────────────────────────────────────────────── */
  .hero { min-height: 600px; height: 85vh; }
  .hero__conteudo {
    padding: 0 3rem 64px;
    align-items: flex-start;
    text-align: left;
    max-width: 700px;
  }
  .hero__titulo { font-size: clamp(3rem, 5vw, 4.2rem); }
  .hero__desc   { font-size: 14px; max-width: 420px; }
  .hero__btn    { padding: 16px 40px; font-size: 11px; }

  /* ── TRUST STRIP ─────────────────────────────────────────── */
  .trust-item { font-size: 10px; padding: 0 24px; }

  /* ── CATEGORIAS — grid 6 colunas ─────────────────────────── */
  .categorias { padding-bottom: 16px; }
  .secao-titulo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 3rem 28px;
    text-align: left;
  }

  .categorias__scroll {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    overflow: visible;
    padding: 0 3rem 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .categoria-card {
    width: auto;
    aspect-ratio: 1 / 1;
  }
  .categoria-card__titulo { font-size: 14px; letter-spacing: 0.14em; }

  /* ── COLEÇÕES — grid de produtos ─────────────────────────── */
  .colecoes-mini {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 56px;
  }

  .colecao-bloco { padding: 0 0 48px; }

  .colecao-bloco__header { padding: 0 3rem 20px; }
  .colecao-bloco__titulo { font-size: clamp(2rem, 3vw, 2.6rem); }

  .colecao-bloco__scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: visible;
    padding: 0 3rem;
  }

  .colecao-prod-card {
    width: auto;
    flex-shrink: unset;
  }

  .colecao-prod-card__nome { font-size: 10px; }
  .colecao-prod-card__preco { font-size: 0.9rem; }

  .ver-todas-link { margin-top: 16px; }

  /* ── FEATURED — lado a lado ──────────────────────────────── */
  .featured {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 48px;
  }

  .featured__card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .featured__img {
    width: 55%;
    aspect-ratio: auto;
    flex-shrink: 0;
  }

  .featured__info {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .featured__nome  { font-size: 2rem; }
  .featured__preco { font-size: 1.3rem; }

  /* ── STORYTELLING — lado a lado ──────────────────────────── */
  .storytelling {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 0;
  }

  .storytelling__img {
    width: 50%;
    aspect-ratio: auto;
    flex-shrink: 0;
    object-fit: cover;
  }

  .storytelling__corpo {
    flex: 1;
    padding: 48px 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .storytelling__titulo { font-size: clamp(1.8rem, 2.5vw, 2.2rem); }
  .storytelling__texto  { font-size: 14px; }

  .storytelling__selos { gap: 32px; }
  .selo__icone svg { width: 32px; height: 32px; }
  .selo__texto { font-size: 10px; }

  /* ── STORE EXPERIENCE — mais alto ────────────────────────── */
  .store-exp { aspect-ratio: 21 / 9; }
  .store-exp__conteudo { padding: 40px 3rem; }
  .store-exp__titulo   { font-size: 2.2rem; }

  /* ── VIP BLOCK — centralizado ────────────────────────────── */
  .vip-block {
    max-width: 700px;
    margin: 0 auto;
    padding: 56px 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .vip-block__titulo { font-size: 2rem; }
  .vip-block__sub    { font-size: 14px; }
}
