/* ============================================================
   ILUMINA BELLY — Premium Beauty & Perfumes
   style.css — Folha de estilos principal
   ============================================================ */

/* 1 · Custom Properties
   ============================================================ */
:root {
  --white:        #FFFFFF;
  --offwhite:     #F3F0EC;
  --cream:        #EAE4DB;
  --brown-dark:   #8B4513;
  --brown-mid:    #A0522D;
  --brown:        #B87042;
  --brown-light:  #C99B70;
  --gold:         #8B4513;
  --text:         #1A1A1A;
  --muted:        #6B5040;
  --border:       #DDD6CB;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-py: clamp(5rem, 9vw, 9rem);
  --section-px: clamp(1.5rem, 8%, 9rem);

  --shadow-card:  0 4px 24px rgba(139, 69, 19, 0.07);
  --shadow-hover: 0 16px 48px rgba(139, 69, 19, 0.14);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);
}

/* 2 · Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--offwhite);
  line-height: 1.65;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* 3 · Typography helpers
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--brown-dark);
  line-height: 1.12;
  margin-bottom: .75rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 55ch;
  line-height: 1.85;
}

/* 4 · Layout
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5%, 5rem);
}

.section {
  padding: var(--section-py) var(--section-px);
}

/* 5 · Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-dark {
  background: var(--brown-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--brown-mid);
}

.btn-outline {
  background: transparent;
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}
.btn-outline:hover {
  background: var(--brown-dark);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-whatsapp {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}
.btn-whatsapp:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, .28);
}
.btn-whatsapp ion-icon { font-size: 1.1rem; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1.6rem var(--section-px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  padding-block: 1rem;
  background: rgba(243, 240, 236, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* box-shadow: 0 1px 0 var(--border); */
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-self: start;
}

.header__logo-img {
  height: 84px;
  width: auto;
  display: block;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__link {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown-dark);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}

.nav__link:hover::after { width: 100%; }

.nav__whatsapp { display: none; }

.header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.3rem;
  background: var(--brown-dark);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: var(--transition);
  white-space: nowrap;
}
.header__whatsapp ion-icon { font-size: 1rem; }
.header__whatsapp:hover { background: var(--brown-mid); transform: translateY(-2px); }

.header__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1.5px solid var(--brown-dark);
  border-radius: 50%;
  color: var(--brown-dark);
  font-size: 1.15rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.header__instagram:hover { background: var(--brown-dark); color: var(--white); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown-dark);
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--offwhite);
  padding: clamp(6.5rem, 12vw, 8.5rem) var(--section-px) clamp(1.5rem, 3vw, 2.5rem);
}

.hero__banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 82vh;
  min-height: 560px;
  max-height: 820px;
  display: flex;
  align-items: center;
}

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

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 12, 6, .78) 0%, rgba(20, 12, 6, .5) 34%, rgba(20, 12, 6, 0) 64%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 3rem clamp(2rem, 5vw, 4.5rem);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 2.25rem;
}

.hero__shop-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  background: var(--white);
  color: var(--brown-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: var(--transition);
}
.hero__shop-btn:hover { background: var(--offwhite); transform: translateY(-2px); }

.hero__shop-arrow { transition: transform .35s var(--ease); }
.hero__shop-btn:hover .hero__shop-arrow { transform: translate(2px, -2px); }

/* ============================================================
   SOBRE (ABOUT)
   ============================================================ */
.about {
  background: var(--offwhite);
  text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.about__manifesto {
  max-width: 1320px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2.5vw, 2.05rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--muted);
}

.about__manifesto strong {
  color: var(--brown-dark);
}

.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  text-align: center;
  background: var(--offwhite);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-card ion-icon {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin: 0 auto .75rem;
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: .25rem;
}

.value-card__text {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   SAIBA MAIS
   ============================================================ */
.discover__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.discover__head .section-title {
  margin-bottom: 0;
}

.discover__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.discover__panel {
  border-radius: 24px;
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.discover__index {
  font-family: var(--font-serif);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}

.discover__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}

.discover__desc {
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.discover__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.discover__tag {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: 999px;
}

.discover__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding-bottom: .3rem;
  border-bottom: 1px solid currentColor;
}

.discover__btn svg { transition: transform .35s var(--ease); }
.discover__btn:hover svg { transform: translate(2px, -2px); }

.discover__panel--cream {
  background: var(--cream);
  color: var(--text);
}
.discover__panel--cream .discover__index { color: var(--brown-mid); }
.discover__panel--cream .discover__title,
.discover__panel--cream .discover__btn { color: var(--brown-dark); }
.discover__panel--cream .discover__desc { color: var(--muted); }
.discover__panel--cream .discover__tag {
  background: rgba(139, 69, 19, .1);
  color: var(--brown-dark);
}

.discover__panel--dark {
  background: var(--brown-dark);
  color: var(--white);
}
.discover__panel--dark .discover__index { color: rgba(255, 255, 255, .5); }
.discover__panel--dark .discover__title,
.discover__panel--dark .discover__btn { color: var(--white); }
.discover__panel--dark .discover__desc { color: var(--brown-light); }
.discover__panel--dark .discover__tag {
  background: rgba(255, 255, 255, .14);
  color: var(--white);
}

/* ============================================================
   SOBRE A LOJA
   ============================================================ */
.store-about {
  background: var(--offwhite);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.store-about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.store-about__media {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
}

.store-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.store-about__card {
  height: 480px;
  background: var(--cream);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}

.store-about__eyebrow {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.store-about__slides {
  display: grid;
  max-width: 480px;
}

.store-about__slide {
  grid-area: 1 / 1;
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
}

.store-about__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.store-about__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.store-about__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.store-about__dot:hover {
  background: var(--muted);
}

.store-about__dot.is-active {
  background: var(--muted);
  transform: scale(1.2);
}

/* ============================================================
   CATEGORIAS
   ============================================================ */
.categories {
  background: var(--offwhite);
}

.categories__head {
  text-align: center;
  margin-bottom: 3.5rem;
  cursor: default;
}

.categories__head .section-subtitle {
  margin: .75rem auto 0;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cat-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .4s ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.cat-card:hover::after { width: 100%; }

.cat-card ion-icon {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

.cat-card__name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: .5rem;
}

.cat-card__desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   PRODUTOS EM DESTAQUE
   ============================================================ */
.products {
  background: var(--offwhite);
}

.products__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  /* border-bottom: 1px solid var(--border); */
}

.products__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--brown-dark);
}

.products__shop-all {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border: 1px solid var(--brown-dark);
  color: var(--brown-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  transition: var(--transition);
}
.products__shop-all:hover { background: var(--brown-dark); color: var(--white); }
.products__shop-all svg { transition: transform .35s var(--ease); }
.products__shop-all:hover svg { transform: translate(2px, -2px); }

.products__carousel {
  overflow: hidden;
}

.products__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.products__grid {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.products__grid::-webkit-scrollbar { display: none; }

.featured-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 1.75rem * 2) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.products__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--brown-dark);
  background: transparent;
  color: var(--brown-dark);
  cursor: pointer;
  transition: var(--transition);
}
.products__arrow:hover { background: var(--brown-dark); color: var(--white); }
.products__arrow:disabled { opacity: .35; cursor: default; }
.products__arrow:disabled:hover { background: transparent; color: var(--brown-dark); }

.featured-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--offwhite);
  border-radius: 15px;
}

.featured-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.featured-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--cream), var(--brown-light));
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-card__placeholder ion-icon {
  font-size: 3rem;
  color: rgba(255,255,255,.55);
}

.featured-card__body {
  padding: 1.25rem 0px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #F3F0EC;
}

.featured-card__name {
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .4rem;
}

.featured-card__price {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: .6rem;
}

.featured-card__desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: auto;
}

.featured-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  padding: .8rem .5rem;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--brown-dark);
  white-space: nowrap;
  transition: var(--transition);
  border-radius: 999px;
}

.featured-card__btn--outline {
  background: transparent;
  color: var(--brown-dark);
}
.featured-card__btn--outline:hover { background: var(--brown-dark); color: var(--white); }
.featured-card__btn--outline svg { transition: transform .35s var(--ease); }
.featured-card__btn--outline:hover svg { transform: translate(2px, -2px); }

.featured-card__btn--solid {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}
.featured-card__btn--solid:hover { background: var(--brown-mid); border-color: var(--brown-mid); }

/* ── Cards do catálogo (produtos.php) ── */
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__cat {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: .45rem;
}

.product-card__desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--brown-dark);
}

.product-card__price small {
  font-family: var(--font-sans);
  font-size: .78rem;
  color: var(--muted);
  font-weight: 400;
}

.product-card__wa {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  background: var(--brown-dark);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: var(--transition);
}

.product-card__wa:hover {
  background: var(--brown-mid);
  transform: translateY(-1px);
}

.product-card__wa ion-icon { font-size: .95rem; }

.products__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
}

.products__empty ion-icon {
  font-size: 3rem;
  color: var(--border);
  display: block;
  margin: 0 auto 1rem;
}

.products__empty p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   MARCAS PARCEIRAS (carrossel infinito)
   ============================================================ */
.brands {
  background: var(--brown-dark);
  overflow: hidden;
  padding-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.brands__head {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 var(--section-px);
}

.brands__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
}

.brands__marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
          mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.brands__track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: max-content;
  animation: brands-scroll 38s linear infinite;
  will-change: transform;
}

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-card {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  padding: 1.25rem 1.5rem;
  /* background: var(--white); */
  background: var(--offwhite);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.brand-card__logo {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-card__quote {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .brands__track { animation-play-state: paused; }
}

/* ============================================================
   VISITE NOSSA LOJA
   ============================================================ */
.visit-store {
  background: var(--offwhite);
}

.visit-store__banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 60vh;
  min-height: 440px;
  max-height: 600px;
  display: flex;
  align-items: center;
}

.visit-store__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.visit-store__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20, 12, 6, .78) 0%, rgba(20, 12, 6, .5) 34%, rgba(20, 12, 6, 0) 64%);
}

.visit-store__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 2.5rem clamp(2rem, 5vw, 4rem);
}

.visit-store__eyebrow {
  display: block;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: .85;
}

.visit-store__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.75rem;
}

.visit-store__btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  background: var(--white);
  color: var(--brown-dark);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: var(--transition);
}

.visit-store__btn svg { transition: transform .35s var(--ease); }

.visit-store__btn:hover {
  background: var(--offwhite);
  transform: translateY(-2px);
}

.visit-store__btn:hover svg { transform: translate(2px, -2px); }

/* ============================================================
   DEPOIMENTOS — cards estilo avaliações do Google
   ============================================================ */
.testimonials {
  background: var(--cream);
  text-align: center;
  padding-top: clamp(3.5rem, 6vw, 6rem);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}

.testimonials__head {
  margin-bottom: 2.5rem;
}

.testimonials__head .eyebrow {
  justify-content: center;
  margin-bottom: .9rem;
}

.testimonials__head .eyebrow svg {
  flex-shrink: 0;
}

.testimonials__head .section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

/* Trilha de cards: grade no desktop, swipe horizontal no mobile */
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}

.testimonials__card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.testimonials__card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.testimonials__card-head {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.testimonials__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}

.testimonials__meta {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
}

.testimonials__author {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonials__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.testimonials__star {
  fill: #FBBC04;
}

.testimonials__card-head .testimonials__google-icon {
  margin-left: auto;
  flex-shrink: 0;
}

.testimonials__quote {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Bolinhas: indicador de posição, visível só no carrossel mobile */
.testimonials__dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.75rem;
}

.testimonials__dot {
  width: 1.75rem;
  height: 2px;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials__dot:hover {
  background: var(--brown-light);
}

.testimonials__dot.is-active {
  background: var(--brown-dark);
  width: 2.25rem;
}

/* ============================================================
   LOCALIZAÇÃO — mapa com card flutuante
   ============================================================ */
.location {
  background: var(--offwhite);
  padding-top: clamp(3.5rem, 6vw, 6rem);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}

.location__wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.location__map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-card);
  background: var(--cream);
}

.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}

.location__card .eyebrow {
  margin-bottom: .75rem;
}

.location__card .section-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 1.5rem;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.location__row {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.location__row > ion-icon:first-child {
  flex-shrink: 0;
  margin-top: .15rem;
  font-size: 1.2rem;
  color: var(--gold);
}

.location__text {
  flex: 1 1 auto;
  font-family: var(--font-sans);
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text);
}

a.location__text--link {
  text-decoration: none;
  transition: var(--transition);
}

a.location__text--link:hover {
  color: var(--brown-dark);
}

.location__copy {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: .2rem;
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}

.location__copy:hover {
  background: var(--cream);
  color: var(--brown-dark);
}

.location__copy.is-copied {
  color: #2E7D32;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.location__actions .btn ion-icon {
  font-size: 1.05rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--offwhite);
  padding-top: clamp(6rem, 11vw, 11rem);
  padding-bottom: clamp(6rem, 11vw, 11rem);
}

.faq__head {
  text-align: center;
  margin-bottom: 4rem;
}

.faq__list {
  max-width: 860px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.85rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--brown-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq__question ion-icon {
  font-size: 1.35rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .35s ease;
}

.faq__item.active .faq__question ion-icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq__answer p {
  padding-bottom: 1.85rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9;
}

.faq__item.active .faq__answer { max-height: 300px; }

/* ============================================================
   INSTAGRAM SPLIT
   ============================================================ */
.instagram-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 55vw, 640px);
}

.instagram-split__left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.instagram-split__logo {
  width: clamp(220px, 28vw, 420px);
  height: auto;
}

.instagram-split__right {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.instagram-split__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.instagram-split__right:hover .instagram-split__photo { transform: scale(1.04); }

.instagram-split__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, .45);
}

.instagram-split__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.instagram-split__text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 300;
  color: var(--white);
  text-align: center;
  line-height: 1.35;
}

.instagram-split__text em {
  font-style: italic;
}

@media (max-width: 768px) {
  .instagram-split {
    grid-template-columns: 1fr;
  }

  .instagram-split__left {
    min-height: 220px;
  }

  .instagram-split__right {
    min-height: 320px;
  }

  .testimonials__track {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    margin: 0 calc(var(--section-px) * -1);
    padding: 0 var(--section-px) .5rem;
  }

  .testimonials__track::-webkit-scrollbar {
    display: none;
  }

  .testimonials__card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .testimonials__dots {
    display: flex;
  }

  .location__wrap {
    grid-template-columns: 1fr;
  }

  .location__map {
    height: 300px;
    border-radius: 18px;
  }

  .location__card {
    padding: 1.75rem;
  }

  .location__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--offwhite);
  color: var(--text);
  padding: 5rem var(--section-px) 0;
  overflow: hidden;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer__mark {
  display: block;
}

.footer__mark-img {
  width: 60px;
  height: auto;
}

.footer__address {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  max-width: 220px;
  font-family: var(--font-sans);
  font-size: .78rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer__address ion-icon {
  flex-shrink: 0;
  margin-top: .15rem;
  font-size: 1rem;
  color: var(--gold);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.footer__nav-list a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}

.footer__nav-list a ion-icon { font-size: 1rem; }

.footer__nav-list a:hover { color: var(--gold); }

.footer__cta-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer__cta-title em { font-style: italic; color: var(--gold); }

.footer__wa-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: .75rem;
  transition: border-color .3s var(--ease);
}

.footer__wa-form:focus-within { border-color: var(--gold); }

.footer__wa-input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text);
  outline: none;
}

.footer__wa-input::placeholder { color: var(--muted); }

.footer__wa-submit {
  border: none;
  background: none;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--brown-dark);
  cursor: pointer;
  white-space: nowrap;
}

.footer__wa-submit:hover { color: var(--gold); }

.footer__watermark {
  display: block;
  width: 100%;
  font-family: var(--font-serif);
  font-size: 11vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.01em;
  text-align: center;
  color: rgba(139, 69, 19, .08);
  white-space: nowrap;
  transform: translateY(18%);
}

.footer__bottom {
  position: relative;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: var(--muted);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a { color: var(--muted); transition: color .3s; }
.footer__bottom-links a:hover { color: var(--gold); }

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: var(--brown-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(139, 69, 19, .35);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(139, 69, 19, .5);
  background: var(--brown-mid);
}

/* ============================================================
   PÁGINA DE PRODUTOS — Catálogo público
   ============================================================ */

/* Hero da página */
.produtos-page-hero {
  background: var(--offwhite);
  padding: clamp(6.5rem, 12vw, 8.5rem) var(--section-px) clamp(1.5rem, 3vw, 2.5rem);
}

.produtos-page-hero__banner {
  background: var(--brown-dark);
  border-radius: 28px;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.produtos-page-hero__banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border: 1px solid rgba(166,124,82,.15);
  border-radius: 50%;
  top: -250px; right: -100px;
  pointer-events: none;
}

.produtos-page-hero .eyebrow { color: var(--gold); }

.produtos-page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin: 1rem 0 .5rem;
}

/* Header não fixo — específico da página de produtos */
.page-produtos .header {
  position: static;
}

.page-produtos .produtos-page-hero {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.produtos-page-hero__sub {
  font-size: .92rem;
  color: var(--brown-light);
}

/* Barra de filtros */
.produtos-filters {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem var(--section-px);
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.produtos-search {
  flex: 1;
  min-width: 180px;
  max-width: 340px;
  position: relative;
}

.produtos-search ion-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1rem;
  pointer-events: none;
}

.produtos-search input {
  width: 100%;
  padding: .6rem .85rem .6rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .88rem;
  color: var(--text);
  outline: none;
  background: var(--offwhite);
  transition: border-color .2s;
}

.produtos-search input:focus { border-color: var(--gold); }

.cat-pills {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  flex: 1;
}

.cat-pill {
  padding: .4rem .9rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-sans);
  transition: all .2s;
}

.cat-pill:hover { border-color: var(--gold); color: var(--gold); }
.cat-pill.active { background: var(--brown-dark); color: var(--white); border-color: var(--brown-dark); }

.produtos-actions-bar { flex-shrink: 0; }

/* Barra de resultados */
.produtos-results-bar {
  padding: .9rem var(--section-px);
  font-size: .8rem;
  color: var(--muted);
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
}

/* Grid de produtos */
.produtos-grid-section {
  background: var(--offwhite);
  padding: 2rem var(--section-px) var(--section-py);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Mensagem sem resultados */
.produtos-empty,
.produtos-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--muted);
}

.produtos-empty ion-icon {
  font-size: 3.5rem;
  color: var(--border);
  display: block;
  margin: 0 auto 1rem;
}

.produtos-empty p,
.produtos-no-results {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

/* ── Carrossel de produto ─────────────────────────── */
.product-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--offwhite);
}

.carousel__track-wrap {
  overflow: hidden;
  height: 100%;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.product-card:hover .carousel__slide img { transform: scale(1.04); }

.carousel__slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--cream), var(--brown-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__slide-placeholder ion-icon {
  font-size: 3rem;
  color: rgba(255,255,255,.55);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  background: rgba(139, 69, 19, .6);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  transition: background .2s;
  opacity: 0;
}

.product-carousel:hover .carousel__btn { opacity: 1; }
.carousel__btn:hover { background: rgba(139, 69, 19, .9); }
.carousel__btn--prev { left: .4rem; }
.carousel__btn--next { right: .4rem; }

.carousel__dots {
  position: absolute;
  bottom: .65rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .3rem;
  z-index: 10;
}

.carousel__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.carousel__dot.active {
  background: #fff;
  transform: scale(1.25);
}

.product-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--brown-dark);
  color: var(--white);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  z-index: 5;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .header__logo-img { height: 66px; }

  .nav { gap: 1.4rem; }

  .nav__link { font-size: .76rem; }

  .header__whatsapp { padding: .55rem 1rem; font-size: .64rem; }

  .hero__banner {
    height: auto;
    min-height: 70vh;
  }

  .about__values { grid-template-columns: 1fr 1fr 1fr; }

  .discover__grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .categories__grid { grid-template-columns: 1fr; gap: 1rem; }

  .featured-card { flex-basis: calc((100% - 1.75rem) / 2); }

  .produtos-grid { grid-template-columns: repeat(3, 1fr); }

  .brand-card { width: 190px; padding: 1.5rem 1.25rem; }

  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__cta { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
  .header { grid-template-columns: 1fr auto; }

  .header__logo-img { height: 56px; }

  /* Mobile nav */
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    justify-self: stretch;
    align-self: stretch;
    background: var(--offwhite);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1050;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open { display: flex; }

  .nav__link {
    font-size: 1rem;
    letter-spacing: .16em;
  }

  .hamburger { display: flex; }

  .hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.is-active span:nth-child(2) { opacity: 0; }
  .hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .header__whatsapp { display: none; }

  .nav__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: .5rem;
    padding: .95rem 2rem;
    background: var(--brown-dark);
    color: var(--white) !important;
    font-size: .8rem;
    letter-spacing: .12em;
    border-radius: 999px;
  }
  .nav__whatsapp::after { display: none; }
  .nav__whatsapp ion-icon { font-size: 1.15rem; }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero__banner { border-radius: 18px; min-height: 78vh; }

  .hero__content { padding: 2rem 1.5rem; }

  .hero__shop-btn { width: 100%; }

  .about__values { grid-template-columns: 1fr; }

  .store-about__grid { grid-template-columns: 1fr; }
  .store-about__media { height: 320px; }
  .store-about__card { height: auto; padding: 2rem 1.5rem; }

  .products__head { flex-direction: column; align-items: flex-start; }
  .products__grid { gap: 1rem; }
  .featured-card { flex-basis: 82%; }
  .products__nav { display: none; }

  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .produtos-filters { gap: .75rem; }
  .produtos-search { max-width: 100%; }
  .produtos-actions-bar { width: 100%; }
  .produtos-actions-bar .btn { width: 100%; justify-content: center; }

  .brands__head { margin-bottom: 2.5rem; }
  .brands__track { gap: 1rem; animation-duration: 26s; }
  .brand-card { width: 160px; padding: 1.25rem 1rem; gap: .85rem; border-radius: 12px; }
  .brand-card__logo { height: 34px; }
  .brand-card__quote { font-size: .85rem; }

  .visit-store__banner { border-radius: 18px; height: auto; min-height: 460px; }
  .visit-store__content { padding: 2rem 1.5rem; }
  .visit-store__btn { width: 100%; justify-content: center; }

  .footer__top { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__brand { order: -1; }

  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { justify-content: center; flex-wrap: wrap; }

  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 480px) {
  .produtos-grid { grid-template-columns: 1fr; }
}
