/* ============================================================
   GS STUDIO CRIATIVO — azul marinho & branco, serifa elegante
   ============================================================ */

:root {
  --navy: #2C4460;          /* azul da logo */
  --navy-deep: #1E3247;
  --navy-soft: #3D5A7D;
  --blue-mist: #EEF3F8;     /* fundo azulado claro */
  --blue-haze: #DCE6F0;
  --paper: #FBF9F6;         /* fundo tom de papel, quente e artesanal */
  --ink: #22303F;
  --muted: #64748B;
  --white: #FFFFFF;
  --gold: #B98D45;          /* acento dourado (AA sobre fundos claros) */
  --gold-soft: #E8D9BC;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(30, 50, 71, .08);
  --shadow-md: 0 12px 34px rgba(30, 50, 71, .14);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; touch-action: manipulation; }
a, .btn { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
em { font-style: italic; }

/* acessibilidade: anel de foco visível p/ navegação por teclado */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--navy-soft);
  outline-offset: 2px;
  border-radius: 4px;
}

/* acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  padding: .9rem 2.2rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn--solid { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border: 1.5px solid var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.22); }

/* ---------- Barra de anúncio ---------- */
.announce {
  background: var(--navy-deep);
  color: rgba(255,255,255,.92);
  overflow: hidden;
  font-size: .8rem;
  letter-spacing: .08em;
}
.announce__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  padding: .55rem 0;
  animation: marquee 28s linear infinite;
}
.announce__track span { white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 var(--blue-haze);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

/* logo — monograma GS entrelaçado + wordmark */
.logo { display: flex; align-items: center; gap: .7rem; color: var(--navy); flex-shrink: 0; }
.logo__mark { width: 58px; height: 58px; }
.logo__g, .logo__s {
  font-family: var(--serif);
  fill: var(--navy);
}
.logo__g { font-size: 74px; font-weight: 500; }
.logo__s { font-size: 56px; font-weight: 500; }
.logo__diamond {
  width: 8px; height: 8px;
  background: var(--navy);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.logo__word {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.02;
  letter-spacing: .01em;
  color: var(--navy);
}

/* busca */
.search {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--blue-mist);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .2rem .3rem .2rem 1.3rem;
  transition: border-color .3s, background .3s;
  max-width: 460px;
  margin-inline: auto;
}
.search:focus-within { border-color: var(--navy-soft); background: var(--white); }
.search__input {
  flex: 1; border: 0; background: none; outline: none;
  font: inherit; font-size: .92rem; color: var(--ink);
  min-width: 0;
}
.search__input::placeholder { color: var(--muted); }
.search__btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--navy); color: var(--white);
  border-radius: 50%;
  transition: background .3s;
}
.search__btn:hover { background: var(--navy-deep); }
.search__btn svg { width: 17px; height: 17px; }

/* ações */
.header__actions { display: flex; gap: 1.4rem; flex-shrink: 0; }
.header__action {
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  font-size: .72rem; letter-spacing: .05em; color: var(--navy);
  position: relative;
  transition: opacity .25s;
}
.header__action:hover { opacity: .7; }
.header__action svg { width: 24px; height: 24px; }
.cart-count {
  position: absolute; top: -6px; right: 2px;
  background: var(--navy); color: var(--white);
  font-style: normal; font-size: .62rem; font-weight: 600;
  min-width: 17px; height: 17px; border-radius: 999px;
  display: grid; place-items: center;
  padding-inline: 4px;
  transition: transform .3s var(--ease);
}
.cart-count.bump { animation: bump .45s var(--ease); }
@keyframes bump { 40% { transform: scale(1.45); } }

.header__burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; min-width: 44px; min-height: 44px; }
.header__burger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Navegação ---------- */
.nav { border-top: 1px solid var(--blue-haze); }
.nav__list {
  display: flex; justify-content: center; gap: .4rem;
  list-style: none;
}
.nav__item { position: relative; }
.nav__item > a {
  display: flex; align-items: center; gap: .4rem;
  padding: .85rem 1rem;
  font-size: .83rem; font-weight: 400;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink);
  transition: color .25s;
}
.nav__item > a:hover { color: var(--navy); }
.nav__caret {
  width: 7px; height: 7px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s;
}
.nav__item:hover .nav__caret { transform: rotate(225deg) translateY(-2px); }

.nav__drop {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 12px);
  display: flex; gap: 2.6rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.6rem 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  min-width: max-content;
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop {
  opacity: 1; visibility: visible;
  transform: translate(-50%, 4px);
}
.nav__col h4 {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 600;
  color: var(--navy);
  margin-bottom: .6rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--blue-haze);
}
.nav__col a {
  display: block;
  font-size: .87rem;
  color: var(--muted);
  padding: .28rem 0;
  transition: color .2s, padding-left .25s var(--ease);
}
.nav__col a:hover { color: var(--navy); padding-left: .4rem; }

/* ---------- Menu mobile ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.mobile-menu__scrim {
  position: absolute; inset: 0;
  background: rgba(30,50,71,.5);
  opacity: 0; transition: opacity .35s;
}
.mobile-menu__panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(320px, 84vw);
  background: var(--white);
  padding: 1.4rem 1.6rem;
  transform: translateX(-100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
  z-index: 1;
}
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu.is-open .mobile-menu__scrim { opacity: 1; }
.mobile-menu.is-open .mobile-menu__panel { transform: none; }
.mobile-menu__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; padding-bottom: .8rem;
  border-bottom: 1px solid var(--blue-haze);
}
.mobile-menu__title { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }
.mobile-menu__close { font-size: 1.1rem; color: var(--muted); padding: .3rem; }
.mobile-menu__panel a,
#mobileLinks a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .95rem .2rem;
  font-size: 1rem; letter-spacing: .04em;
  border-bottom: 1px solid var(--blue-mist);
  color: var(--ink);
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.mobile-menu__panel a::after,
#mobileLinks a::after {
  content: "›";
  color: var(--gold);
  font-size: 1.2rem;
  opacity: .6;
  transition: transform .25s var(--ease), opacity .2s;
}
.mobile-menu__panel a:hover,
#mobileLinks a:hover { color: var(--navy); padding-left: .6rem; }
.mobile-menu__panel a:hover::after,
#mobileLinks a:hover::after { transform: translateX(3px); opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blue-mist) 0%, var(--paper) 55%, var(--blue-mist) 100%);
  overflow: hidden;
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--blue-haze) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: linear-gradient(120deg, transparent 35%, black 75%);
  -webkit-mask-image: linear-gradient(120deg, transparent 35%, black 75%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 3rem;
  padding: 5.5rem 0 6rem;
}
.hero__eyebrow {
  font-size: .78rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
  animation: rise .8s var(--ease) both;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--navy);
  animation: rise .8s var(--ease) .12s both;
}
.hero__title em { color: var(--navy-soft); }
.hero__text {
  max-width: 46ch;
  margin: 1.4rem 0 2.2rem;
  font-size: 1.05rem;
  color: var(--muted);
  animation: rise .8s var(--ease) .24s both;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; animation: rise .8s var(--ease) .36s both; }

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

/* arte flutuante do hero */
.hero__art { position: relative; height: 380px; }
.hero__monogram {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: clamp(11rem, 20vw, 17rem);
  color: var(--blue-haze);
  line-height: 1;
  user-select: none;
  animation: rise 1s var(--ease) .2s both;
}
.hero__card {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.3rem 1.6rem;
  font-size: .82rem; letter-spacing: .06em;
  color: var(--navy);
  z-index: 1;
}
.hero__card svg { width: 34px; height: 34px; }
.hero__card--1 { top: 8%; left: 4%; animation: float 5.5s ease-in-out infinite, rise .8s var(--ease) .4s both; }
.hero__card--2 { top: 40%; right: 2%; animation: float 6.5s ease-in-out .8s infinite, rise .8s var(--ease) .55s both; }
.hero__card--3 { bottom: 4%; left: 22%; animation: float 6s ease-in-out 1.6s infinite, rise .8s var(--ease) .7s both; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -13px; }
}

/* ---------- Benefícios ---------- */
.perks { background: var(--navy); color: var(--white); }
.perks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.7rem 0;
}
.perk { display: flex; align-items: center; gap: .9rem; }
.perk svg { width: 32px; height: 32px; flex-shrink: 0; opacity: .85; }
.perk strong { display: block; font-weight: 500; font-size: .92rem; letter-spacing: .03em; }
.perk span { font-size: .78rem; opacity: .72; }

/* ---------- Cabeçalho de seção ---------- */
.section-head { text-align: center; margin-bottom: 2.8rem; }
.section-head__eyebrow {
  font-size: .75rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: .5rem;
}
.section-head__eyebrow--light { color: var(--blue-haze); }
.section-head__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--navy);
}
.section-head__title::after {
  content: "";
  display: block;
  width: 46px; height: 2px;
  background: var(--gold);
  margin: .9rem auto 0;
}

/* ---------- Categorias ---------- */
.cats { padding: 5.5rem 0 4.5rem; }
.cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.cat {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  background: var(--blue-mist);
  border-radius: var(--radius);
  padding: 2.4rem 1.4rem 2rem;
  text-align: center;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cat::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--navy);
  transform: translateY(101%);
  transition: transform .4s var(--ease);
  border-radius: inherit;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat:hover::before { transform: none; }
.cat > * { position: relative; transition: color .35s; }
.cat__icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease);
}
.cat:hover .cat__icon { transform: rotate(-8deg) scale(1.08); }
.cat__icon svg { width: 28px; height: 28px; }
.cat__name {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--navy);
}
.cat__count { font-size: .78rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.cat:hover .cat__name { color: var(--white); }
.cat:hover .cat__count { color: var(--blue-haze); }

/* ---------- Vitrine ---------- */
.shop { padding: 4rem 0 5.5rem; background: linear-gradient(var(--paper), var(--blue-mist)); }
.shop__filters {
  display: flex; justify-content: center; flex-wrap: wrap; gap: .6rem;
  margin-top: 1.6rem;
}
.chip {
  padding: .5rem 1.3rem;
  border: 1px solid var(--blue-haze);
  border-radius: 999px;
  font-size: .82rem; letter-spacing: .05em;
  color: var(--muted);
  background: var(--white);
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.product {
  background: var(--white);
  border: 1px solid rgba(30,50,71,.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .4s, scale .4s;
  display: flex; flex-direction: column;
}
.product.is-hidden { display: none; }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.product__media {
  position: relative;
  aspect-ratio: 1 / .92;
  display: grid; place-items: center;
  overflow: hidden;
}
.product__media svg.product__icon {
  width: 74px; height: 74px;
  color: var(--white);
  opacity: .95;
  transition: transform .5s var(--ease);
}
.product:hover .product__media svg.product__icon { transform: scale(1.12) rotate(-4deg); }
.product__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  z-index: 0;
}
.product:hover .product__photo { transform: scale(1.06); }
.product__media::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.4px, transparent 1.4px);
  background-size: 20px 20px;
}
.product__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--white); color: var(--gold);
  border: 1px solid var(--gold-soft);
  font-size: .66rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
  z-index: 1;
}
.product__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.product__cat { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.product__name {
  font-family: var(--serif);
  font-size: 1.22rem; font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.product__desc {
  font-size: .82rem; color: var(--muted); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product__varhint { font-size: .74rem; color: var(--gold); font-weight: 500; letter-spacing: .02em; }
.product__price { margin-top: auto; padding-top: .5rem; }
.product__price strong { font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.product__price small { display: block; font-size: .75rem; color: var(--muted); }
.product__add {
  margin-top: .8rem;
  padding: .7rem;
  border-radius: 10px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: .85rem; font-weight: 500; letter-spacing: .04em;
  transition: all .3s var(--ease);
}
.product__add:hover { background: var(--navy); color: var(--white); }

/* ---------- Personalização ---------- */
.custom {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(255,255,255,.07), transparent 55%),
    var(--navy);
  color: var(--white);
  overflow: hidden;
}
.custom__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
  padding: 5.5rem 0;
}
.custom__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}
.custom__title em { color: var(--blue-haze); }
.custom__copy > p { color: rgba(255,255,255,.82); max-width: 52ch; }
.custom__steps {
  list-style: none;
  margin: 2rem 0 2.4rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.custom__steps li { display: flex; align-items: center; gap: 1rem; font-size: .97rem; }
.custom__steps span {
  width: 34px; height: 34px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.custom__visual { position: relative; height: 340px; }
.custom__frame {
  position: absolute; inset: 12% 18%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .2rem;
  transform: rotate(-3deg);
  transition: transform .5s var(--ease);
}
.custom__visual:hover .custom__frame { transform: rotate(0deg) scale(1.02); }
.custom__frame svg { width: 110px; height: 110px; }
.frame__g, .frame__s { font-family: var(--serif); fill: var(--navy); }
.frame__g { font-size: 68px; }
.frame__s { font-size: 52px; }
.custom__frame p {
  font-size: .8rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); text-align: center; line-height: 1.7;
}
.custom__swatch {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.custom__swatch--a { background: var(--navy-soft); top: 4%; right: 8%; animation: float 5s ease-in-out infinite; }
.custom__swatch--b { background: var(--blue-haze); bottom: 10%; right: 16%; animation: float 6s ease-in-out 1s infinite; }
.custom__swatch--c { background: var(--gold); bottom: 2%; left: 10%; animation: float 5.5s ease-in-out .5s infinite; }

/* ---------- Depoimentos ---------- */
.quotes { padding: 5.5rem 0; }
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.quote {
  background: var(--blue-mist);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); background: var(--white); }
.quote__stars { color: var(--gold); letter-spacing: .2em; font-size: .9rem; }
.quote blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}
.quote figcaption { font-size: .85rem; font-weight: 500; color: var(--ink); }
.quote figcaption span { color: var(--muted); font-weight: 300; }

/* ---------- Newsletter ---------- */
.news { background: var(--blue-mist); }
.news__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
  padding: 3.6rem 0;
}
.news__title { font-family: var(--serif); font-weight: 500; font-size: 1.9rem; color: var(--navy); }
.news p { color: var(--muted); }
.news__form {
  display: flex; gap: .7rem;
  flex: 1;
  max-width: 480px;
}
.news__form input {
  flex: 1;
  border: 1px solid var(--blue-haze);
  border-radius: 999px;
  padding: .85rem 1.4rem;
  font: inherit; font-size: .92rem;
  outline: none;
  background: var(--white);
  transition: border-color .3s;
  min-width: 0;
}
.news__form input:focus { border-color: var(--navy-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.8); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 3rem;
  padding: 4.5rem 0 3.5rem;
}
.logo--footer, .logo--footer .logo__word { color: var(--white); }
.logo--footer .logo__g, .logo--footer .logo__s { fill: var(--white); }
.logo--footer .logo__diamond { background: var(--white); }
.footer__brand p { margin: 1.1rem 0 1.4rem; font-size: .92rem; max-width: 34ch; }
.footer__social { display: flex; gap: .8rem; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  transition: all .3s var(--ease);
}
.footer__social a:hover { background: var(--white); color: var(--navy-deep); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: .9rem;
  padding: .3rem 0;
  transition: color .25s, padding-left .25s var(--ease);
}
.footer__col a:hover { color: var(--white); padding-left: .35rem; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bar-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  padding: 1.3rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

/* ---------- WhatsApp flutuante ---------- */
.whats {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  z-index: 60;
  transition: transform .3s var(--ease), background .3s;
}
.whats:hover { transform: scale(1.1); background: var(--navy-deep); }
.whats svg { width: 28px; height: 28px; }

/* ---------- Sacola (gaveta lateral) ---------- */
.cartd { position: fixed; inset: 0; z-index: 95; pointer-events: none; }
.cartd__scrim {
  position: absolute; inset: 0;
  background: rgba(30,50,71,.5);
  opacity: 0; transition: opacity .35s;
}
.cartd__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(400px, 92vw);
  background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: -18px 0 50px rgba(30,50,71,.18);
}
.cartd.is-open { pointer-events: auto; }
.cartd.is-open .cartd__scrim { opacity: 1; }
.cartd.is-open .cartd__panel { transform: none; }
.cartd__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 1.5rem 1.1rem;
  border-bottom: 1px solid var(--blue-haze);
}
.cartd__head h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--navy); }
.cartd__close {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; color: var(--muted);
  transition: background .25s, color .25s;
}
.cartd__close:hover { background: var(--blue-mist); color: var(--navy); }
.cartd__close svg { width: 18px; height: 18px; }
.cartd__items { flex: 1; overflow-y: auto; padding: 1.1rem 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.cartd__empty {
  margin: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  color: var(--muted);
}
.cartd__empty svg { width: 52px; height: 52px; opacity: .4; margin-bottom: .6rem; }
.cartd__empty strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--navy); }
.cartd__empty span { font-size: .88rem; }

.citem {
  display: grid; grid-template-columns: 58px 1fr auto;
  gap: .9rem; align-items: center;
  background: var(--paper);
  border: 1px solid rgba(30,50,71,.07);
  border-radius: 12px; padding: .7rem .8rem;
}
.citem__thumb {
  width: 58px; height: 58px; border-radius: 9px; overflow: hidden;
  display: grid; place-items: center; color: var(--white);
}
.citem__thumb img { width: 100%; height: 100%; object-fit: cover; }
.citem__thumb svg { width: 26px; height: 26px; }
.citem__info { min-width: 0; display: flex; flex-direction: column; gap: .1rem; }
.citem__info strong { font-weight: 500; font-size: .92rem; color: var(--navy); line-height: 1.3; }
.citem__vars { font-size: .74rem; color: var(--gold); font-weight: 500; }
.citem__price { font-size: .84rem; color: var(--muted); }
.citem__side { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.citem__remove {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 8px; color: var(--muted);
  transition: background .25s, color .25s;
}
.citem__remove:hover { background: #F6E7E2; color: #B4513D; }
.citem__remove svg { width: 15px; height: 15px; }
.citem__qty {
  display: flex; align-items: center; gap: .1rem;
  border: 1px solid var(--blue-haze); border-radius: 999px;
  background: var(--white);
}
.citem__qty button {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  font-size: 1rem; color: var(--navy);
  border-radius: 50%;
  transition: background .2s;
}
.citem__qty button:hover { background: var(--blue-mist); }
.citem__qty span { min-width: 22px; text-align: center; font-weight: 500; font-size: .9rem; }

.cartd__foot {
  border-top: 1px solid var(--blue-haze);
  padding: 1.1rem 1.5rem calc(1.3rem + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: .8rem;
}
.cartd__summary { display: flex; flex-direction: column; gap: .35rem; }
.cartd__line { display: flex; justify-content: space-between; font-size: .9rem; color: var(--muted); }
.cartd__line--disc { color: var(--gold); font-weight: 500; }
.cartd__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: .3rem; border-top: 1px dashed var(--blue-haze); }
.cartd__total span { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cartd__total strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--navy); }

/* cupom */
.coupon { display: flex; flex-direction: column; gap: .55rem; }
.coupon__field { display: flex; gap: .5rem; }
.coupon__field input {
  flex: 1; min-width: 0;
  border: 1px solid var(--blue-haze); border-radius: 10px;
  padding: .6rem .8rem; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--white); outline: none; transition: border-color .25s;
}
.coupon__field input:focus { border-color: var(--gold); }
.coupon__field button {
  padding: 0 1.1rem; border-radius: 10px;
  background: var(--navy); color: var(--white);
  font-size: .85rem; font-weight: 500; letter-spacing: .03em;
  transition: background .25s;
}
.coupon__field button:hover { background: var(--navy-deep); }
.coupon__available { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.coupon__hint { font-size: .75rem; color: var(--muted); width: 100%; }
.coupon__chip {
  border: 1px dashed var(--gold); color: var(--gold);
  background: var(--paper);
  border-radius: 999px; padding: .3rem .7rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .04em;
  transition: all .25s var(--ease);
}
.coupon__chip:hover { background: var(--gold); color: var(--white); }
.coupon__applied { font-size: .82rem; color: var(--ok, #3E7A5E); }
.coupon__applied.is-warn { color: var(--danger, #B4513D); }
.coupon__applied button { color: var(--muted); text-decoration: underline; font-size: .8rem; }

/* histórico de pedidos (conta) */
.orders { display: flex; flex-direction: column; gap: .8rem; max-height: 46vh; overflow-y: auto; margin-bottom: 1rem; }
.orders__empty, .orders__loading { text-align: center; color: var(--muted); font-size: .9rem; padding: 1.5rem 0; }
.order {
  background: var(--paper); border: 1px solid rgba(30,50,71,.08);
  border-radius: 12px; padding: .9rem 1rem;
}
.order__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .5rem; }
.order__date { font-size: .78rem; color: var(--muted); }
.order__total { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.order__items { list-style: none; display: flex; flex-direction: column; gap: .15rem; }
.order__items li { font-size: .86rem; color: var(--ink); }
.order__items span { color: var(--gold); font-weight: 600; }
.order__items em { color: var(--muted); font-style: normal; font-size: .8rem; }
.order__coupon { display: inline-block; margin-top: .5rem; font-size: .76rem; color: var(--gold); font-weight: 500; }
.acct__orders-btn { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; margin-bottom: .6rem; }
.acct__orders-btn svg { width: 18px; height: 18px; }
.cartd__checkout {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%;
}
.cartd__checkout svg { width: 20px; height: 20px; }
.cartd__foot small { text-align: center; font-size: .74rem; color: var(--muted); }

/* ---------- Minha conta ---------- */
.acct { position: fixed; inset: 0; z-index: 97; display: grid; place-items: center; padding: 1.2rem; pointer-events: none; }
.acct__scrim { position: absolute; inset: 0; background: rgba(30,50,71,.5); opacity: 0; transition: opacity .3s; }
.acct__card {
  position: relative;
  background: var(--white); border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
  width: min(440px, 100%);
  max-height: 92dvh; overflow-y: auto;
  padding: 2.1rem 2.1rem 1.9rem;
  opacity: 0; transform: translateY(22px) scale(.98);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.acct.is-open { pointer-events: auto; }
.acct.is-open .acct__scrim { opacity: 1; }
.acct.is-open .acct__card { opacity: 1; transform: none; }
.acct__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; color: var(--muted);
  transition: background .25s, color .25s;
}
.acct__close:hover { background: var(--blue-mist); color: var(--navy); }
.acct__close svg { width: 16px; height: 16px; }
.acct__eyebrow { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.acct__card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--navy); margin: .15rem 0 1rem; }
.acct__text { font-size: .9rem; color: var(--muted); margin: -0.4rem 0 1rem; }
.acct__form { display: flex; flex-direction: column; gap: .9rem; }
.acct__form label {
  display: block; font-size: .82rem; font-weight: 500; color: var(--navy);
}
.acct__form input {
  width: 100%; margin-top: .3rem;
  border: 1px solid var(--blue-haze); border-radius: 10px;
  padding: .7rem .9rem; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--white); outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.acct__form input:focus { border-color: var(--navy-soft); box-shadow: 0 0 0 3px rgba(61,90,125,.14); }
.acct__form .btn { width: 100%; margin-top: .3rem; }
.acct__link {
  color: var(--navy-soft); font-size: .84rem; font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
  align-self: flex-start;
  transition: color .2s;
}
.acct__link:hover { color: var(--navy); }
.acct__alt { text-align: center; font-size: .88rem; color: var(--muted); margin-top: 1.1rem; }
.acct__profile {
  background: var(--paper); border: 1px solid rgba(30,50,71,.08);
  border-radius: 12px; padding: 1rem 1.2rem;
  display: flex; flex-direction: column; gap: .4rem;
  font-size: .92rem; margin-bottom: 1.2rem;
}
.acct__profile strong { font-weight: 500; color: var(--navy); }
.acct__view > .btn--ghost { width: 100%; }

@media (max-width: 640px) {
  .acct { padding: 0; place-items: end stretch; }
  .acct__card {
    width: 100%; border-radius: 20px 20px 0 0;
    padding: 1.8rem 1.4rem calc(1.6rem + env(safe-area-inset-bottom));
  }
}

/* ---------- Escolha de variações ---------- */
.vpick { position: fixed; inset: 0; z-index: 96; display: grid; place-items: center; padding: 1.2rem; pointer-events: none; }
.vpick__scrim { position: absolute; inset: 0; background: rgba(30,50,71,.5); opacity: 0; transition: opacity .3s; }
.vpick__card {
  position: relative;
  background: var(--white); border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
  width: min(430px, 100%);
  padding: 2rem 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .5rem;
  opacity: 0; transform: translateY(22px) scale(.98);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.vpick.is-open { pointer-events: auto; }
.vpick.is-open .vpick__scrim { opacity: 1; }
.vpick.is-open .vpick__card { opacity: 1; transform: none; }
.vpick__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; color: var(--muted);
  transition: background .25s, color .25s;
}
.vpick__close:hover { background: var(--blue-mist); color: var(--navy); }
.vpick__close svg { width: 16px; height: 16px; }
.vpick__eyebrow { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.vpick__card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.55rem; color: var(--navy); line-height: 1.2; }
.vpick__price { font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: .4rem; }
.vpick__groups { display: flex; flex-direction: column; gap: 1rem; margin: .4rem 0 1.2rem; }
.vpick__label { display: block; font-size: .82rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); margin-bottom: .5rem; }
.vpick__opts { display: flex; flex-wrap: wrap; gap: .5rem; }
.vopt {
  padding: .55rem 1.15rem;
  border: 1.5px solid var(--blue-haze);
  border-radius: 999px;
  font-size: .9rem; color: var(--ink);
  transition: all .25s var(--ease);
  min-height: 44px;
}
.vopt:hover { border-color: var(--navy); color: var(--navy); }
.vopt.is-selected { background: var(--navy); border-color: var(--navy); color: var(--white); }
.vpick__add { width: 100%; }
.vpick__add:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

@media (max-width: 640px) {
  .vpick { padding: 0; place-items: end stretch; }
  .vpick__card {
    width: 100%; border-radius: 20px 20px 0 0;
    padding: 1.7rem 1.4rem calc(1.6rem + env(safe-area-inset-bottom));
  }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 80px);
  background: var(--navy-deep);
  color: var(--white);
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-size: .88rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s;
  z-index: 70;
  pointer-events: none;
}
.toast.is-show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Polimento & microinterações — experiência premium
   ============================================================ */

/* header ganha profundidade ao rolar */
.header { transition: box-shadow .35s var(--ease), background .35s; }
.header.is-scrolled { box-shadow: 0 6px 28px rgba(30, 50, 71, .12); background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(10px); }

/* brilho que percorre os botões sólidos ao passar o mouse */
.btn { position: relative; overflow: hidden; }
.btn--solid::after {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.30), transparent);
  transform: skewX(-18deg); transition: left .65s var(--ease);
  pointer-events: none;
}
.btn--solid:hover::after { left: 140%; }

/* cartão de produto com elevação e anel dourado */
.product { position: relative; }
.product::after {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--radius); pointer-events: none;
  box-shadow: inset 0 0 0 1.5px transparent;
  transition: box-shadow .35s var(--ease);
}
.product:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(30, 50, 71, .18); }
.product:hover::after { box-shadow: inset 0 0 0 1.5px var(--gold-soft); }
.product__add { position: relative; overflow: hidden; }
.product__add::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-130%) skewX(-18deg); transition: transform .6s var(--ease);
}
.product:hover .product__add::after { transform: translateX(230%) skewX(-18deg); }

/* categoria: ícone com halo dourado ao hover */
.cat__icon { position: relative; }
.cat:hover .cat__icon { box-shadow: 0 8px 22px rgba(185, 141, 69, .35); }

/* pulso suave no botão flutuante do WhatsApp */
.whats { position: fixed; }
.whats::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(44, 68, 96, .5);
  animation: whatsPulse 2.6s var(--ease) infinite;
}
@keyframes whatsPulse { to { box-shadow: 0 0 0 16px rgba(44, 68, 96, 0); } }

/* revelação em cascata (delay aplicado via JS) */
.reveal { will-change: opacity, transform; }

/* chips de filtro com leve escala ativa */
.chip { position: relative; }
.chip.is-active { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(30,50,71,.2); }

/* título de seção: brilho no filete dourado */
.section-head__title::after { box-shadow: 0 0 12px rgba(185,141,69,.5); }

/* respeita quem prefere menos movimento (reforço) */
@media (prefers-reduced-motion: reduce) {
  .btn--solid::after, .product__add::after, .whats::before { display: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .shop__grid { grid-template-columns: repeat(3, 1fr); }
  .perks__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; padding: 3.5rem 0 4rem; }
  .hero__art { display: none; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .header__burger { display: flex; }
  .header__inner { gap: 1rem; padding: .7rem 0; }
  .search { order: 3; flex-basis: 100%; max-width: none; }
  .header__inner { flex-wrap: wrap; }
  .header__action span { display: none; }
  .logo__mark { width: 44px; height: 44px; }
  .logo__word { font-size: 1.2rem; }
  /* 16px evita o zoom automático do iOS ao focar campos */
  .search__input, .news__form input { font-size: 16px; }
  .shop__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .quotes__grid { grid-template-columns: 1fr; }
  .custom__inner { grid-template-columns: 1fr; padding: 4rem 0; }
  .custom__visual { display: none; }
  .news__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .news__form { max-width: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; padding: 3.5rem 0 2.5rem; }
  .footer__bar-inner { justify-content: center; text-align: center; }
  .cats { padding: 3.5rem 0 3rem; }
  .shop { padding: 3rem 0 4rem; }
  .quotes { padding: 3.5rem 0; }
  .whats { right: 16px; bottom: 16px; }
}

@media (max-width: 460px) {
  .shop__grid { grid-template-columns: 1fr; }
  .cats__grid { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .perks__grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .news__form { flex-direction: column; }
  .news__form .btn { width: 100%; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; }
  .footer__bar-inner { flex-direction: column; align-items: center; }
}
