/* Brilha Perus — estilos do site público */
:root {
  --red: #c2040e;
  --red-600: #a8030c;
  --red-800: #7a020a;
  --red-900: #4f0106;
  --gold: #f8b107;
  --gold-600: #dc9a00;
  --gold-50: #fff7e0;
  --ink: #1d1a17;
  --ink-2: #4a443e;
  --muted: #7b736b;
  --line: #ebe4dc;
  --bg: #fbf8f4;
  --tint: #f5efe7;
  --card: #fff;
  --wa: #1ea952;
  --wa-700: #168a43;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(40, 20, 10, .06), 0 2px 8px rgba(40, 20, 10, .05);
  --shadow: 0 6px 24px rgba(60, 20, 10, .08), 0 2px 6px rgba(60, 20, 10, .05);
  --shadow-lg: 0 20px 50px rgba(80, 10, 10, .18);
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --wrap: 1240px;
  --header-h: 76px;
}
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 140px; }
body { margin: 0; font-family: var(--font); font-size: 15px; line-height: 1.6; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3 { line-height: 1.2; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }
.i { width: 1.25em; height: 1.25em; flex: none; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
.wrap--narrow { max-width: 860px; }
@media (min-width: 720px) { .wrap { padding: 0 24px; } }

/* ---------- botões ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; min-height: 44px; padding: .65em 1.25em; border-radius: 999px; font-weight: 600; font-size: 15px; line-height: 1.1; border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s; white-space: nowrap; text-align: center; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn .i { width: 1.2em; height: 1.2em; }
.btn--sm { min-height: 38px; padding: .45em .95em; font-size: 14px; }
.btn--lg { min-height: 52px; padding: .8em 1.6em; font-size: 16px; }
.btn--block { width: 100%; }
.btn--grow { flex: 1; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 6px 16px rgba(194, 4, 14, .25); }
.btn--primary:hover { background: var(--red-600); }
.btn--gold { background: var(--gold); color: var(--red-900); box-shadow: 0 8px 20px rgba(248, 177, 7, .35); }
.btn--gold:hover { background: #ffc12e; }
.btn--gold .i { width: 1em; height: 1em; }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 6px 16px rgba(30, 169, 82, .28); }
.btn--wa:hover { background: var(--wa-700); }
.btn--ghost { background: #fff; color: var(--red); border-color: rgba(194, 4, 14, .25); }
.btn--ghost:hover { border-color: var(--red); background: #fff5f5; }
.btn--light { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255, 255, 255, .25); }
.btn--light-border { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--light-border:hover { border-color: var(--ink-2); }
.btn--icon { width: 44px; min-height: 44px; padding: 0; border-radius: 50%; background: var(--gold-50); color: var(--red); border: 2px solid transparent; }
.btn--icon:hover { background: var(--gold); color: var(--red-900); }

/* ---------- topo ---------- */
.topbar { background: var(--red-900); color: rgba(255, 255, 255, .88); font-size: 12.5px; }
.topbar__in { display: flex; align-items: center; gap: 18px; min-height: 34px; }
.topbar__in > * { display: inline-flex; align-items: center; gap: 6px; }
.topbar .i { width: 15px; height: 15px; color: var(--gold); }
.topbar__addr { display: none !important; }
.topbar__addr:hover { color: #fff; }
.topbar__social { margin-left: auto; gap: 10px !important; }
.topbar__social a { opacity: .85; }
.topbar__social a:hover { opacity: 1; }
.topbar__social .i { color: #fff; width: 16px; height: 16px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 3px rgba(61, 220, 132, .25); flex: none; }
.status-dot--off { background: #ff8a80; box-shadow: 0 0 0 3px rgba(255, 138, 128, .25); }
@media (min-width: 900px) { .topbar__addr { display: inline-flex !important; } }

.header { position: sticky; top: 0; z-index: 40; background: linear-gradient(180deg, var(--red) 0%, #b5030d 100%); color: #fff; box-shadow: 0 6px 20px rgba(80, 0, 0, .18); }
.header__in { display: grid; grid-template-columns: auto 1fr auto; grid-template-areas: 'menu logo actions' 'search search search'; align-items: center; gap: 10px 12px; padding-top: 10px; padding-bottom: 12px; }
.header__menu { grid-area: menu; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: rgba(255, 255, 255, .12); }
.header__menu .i { width: 24px; height: 24px; }
.logo { grid-area: logo; justify-self: start; }
.logo__img img { width: 132px; height: auto; }
.search { grid-area: search; position: relative; display: flex; background: #fff; border-radius: 999px; box-shadow: inset 0 0 0 2px transparent, 0 4px 14px rgba(0, 0, 0, .12); }
.search:focus-within { box-shadow: inset 0 0 0 2px var(--gold), 0 4px 14px rgba(0, 0, 0, .12); }
.search input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 12px 8px 12px 20px; color: var(--ink); outline: none; font-size: 15px; }
.search input::placeholder { color: #9b928a; }
.search button { width: 48px; margin: 4px; border-radius: 999px; background: var(--gold); color: var(--red-900); display: grid; place-items: center; }
.search button .i { width: 20px; height: 20px; }
.search--inline { max-width: 460px; margin: 20px auto 0; border: 1px solid var(--line); }
.search__suggest { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; color: var(--ink); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; z-index: 60; }
.search__suggest a { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.search__suggest a:hover, .search__suggest a.is-active { background: var(--gold-50); }
.search__suggest img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; background: var(--tint); }
.search__suggest span { flex: 1; font-size: 14px; line-height: 1.3; }
.search__suggest strong { font-size: 13px; color: var(--red); white-space: nowrap; }
.search__suggest .all { justify-content: center; font-weight: 600; color: var(--red); border: 0; }
.header__actions { grid-area: actions; display: flex; align-items: center; gap: 8px; }
.header__wa { display: none; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; border-radius: 999px; background: rgba(255, 255, 255, .12); font-weight: 600; line-height: 1.1; }
.header__wa .i { width: 30px; height: 30px; padding: 5px; border-radius: 50%; background: var(--wa); color: #fff; }
.header__wa small { display: block; font-weight: 400; font-size: 11px; opacity: .85; }
.header__wa:hover { background: rgba(255, 255, 255, .2); }
.header__cart { position: relative; display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 12px; border-radius: 999px; background: var(--gold); color: var(--red-900); font-weight: 700; }
.header__cart .i { width: 24px; height: 24px; }
.header__cart-label { display: none; }
.header__cart-count { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: #fff; color: var(--red); font-size: 12px; font-weight: 700; display: grid; place-items: center; box-shadow: 0 2px 6px rgba(0, 0, 0, .2); }
.header__cart.bump { animation: bump .45s ease; }
@keyframes bump { 30% { transform: scale(1.15); } 60% { transform: scale(.95); } }

.nav { background: #fff; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.nav__in::-webkit-scrollbar { display: none; }
.nav__head { display: none; }
.nav__link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 14px; font-weight: 600; font-size: 14px; white-space: nowrap; color: var(--ink-2); border-bottom: 3px solid transparent; }
.nav__link .i { width: 20px; height: 20px; color: var(--red); }
.nav__link:hover, .nav__link[aria-current] { color: var(--red); border-bottom-color: var(--gold); }
.nav__link--muted { margin-left: auto; }
.menu-backdrop { position: fixed; inset: 0; background: rgba(20, 5, 5, .5); z-index: 45; }

@media (max-width: 899px) {
  .nav { position: fixed; inset: 0 auto 0 0; width: min(86vw, 340px); z-index: 50; transform: translateX(-102%); transition: transform .28s ease; box-shadow: var(--shadow-lg); overflow-y: auto; border: 0; }
  .nav.is-open { transform: none; }
  .nav__in { flex-direction: column; padding: 0 0 24px; gap: 0; }
  .nav__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: var(--red); color: #fff; margin: 0 -16px 8px; }
  .nav__head button { color: #fff; width: 36px; height: 36px; display: grid; place-items: center; }
  .nav__link { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav__link--muted { margin-left: 0; }
}
@media (min-width: 900px) {
  .header__in { grid-template-columns: auto 1fr auto; grid-template-areas: 'logo search actions'; gap: 28px; padding-top: 12px; padding-bottom: 12px; }
  .header__menu { display: none; }
  .logo__img img { width: 180px; }
  .header__wa { display: flex; }
  .header__cart { padding: 0 18px 0 14px; }
  .header__cart-label { display: inline; }
  .menu-backdrop { display: none !important; }
}

/* ---------- hero / slider ---------- */
.hero { position: relative; overflow: hidden; background: var(--red-900); color: #fff; }
.hero__track { display: grid; }
.slide { grid-area: 1 / 1; position: relative; min-height: 520px; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s; }
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.slide__bg { position: absolute; inset: 0; }
.slide__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.slide__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(40, 2, 4, .88) 0%, rgba(60, 3, 6, .72) 45%, rgba(40, 2, 4, .35) 100%), linear-gradient(0deg, rgba(20, 0, 0, .55), transparent 45%); }
.slide__in { position: relative; z-index: 1; padding-top: 48px; padding-bottom: 80px; }
.slide__in--split { display: grid; gap: 8px; align-items: center; }
.slide__text { max-width: 620px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25); font-size: 12.5px; font-weight: 600; letter-spacing: .02em; backdrop-filter: blur(4px); }
.eyebrow .i { width: 16px; height: 16px; color: var(--gold); }
.slide h1, .slide__h { font-size: clamp(30px, 6.4vw, 56px); font-weight: 800; line-height: 1.08; margin: 18px 0 14px; letter-spacing: -.02em; text-wrap: balance; }
.slide h1 em, .slide__h em { font-style: italic; color: var(--gold); }
.slide p { font-size: clamp(15px, 2vw, 18px); color: rgba(255, 255, 255, .88); max-width: 540px; }
.slide__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.slide--art { background: radial-gradient(1200px 500px at 85% 40%, rgba(248, 177, 7, .28), transparent 60%), radial-gradient(900px 600px at 0% 100%, rgba(255, 255, 255, .06), transparent 60%), linear-gradient(120deg, #6b0209 0%, var(--red) 55%, #d2140f 100%); }
.slide--party { background: radial-gradient(900px 500px at 80% 30%, rgba(236, 95, 164, .35), transparent 60%), radial-gradient(900px 500px at 70% 90%, rgba(248, 177, 7, .3), transparent 60%), linear-gradient(120deg, #4f0106 0%, #9a030b 50%, var(--red) 100%); }
.slide--art::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .18) 1.2px, transparent 1.3px); background-size: 26px 26px; mask-image: linear-gradient(90deg, transparent, #000 60%); -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%); }
.slide__art { justify-self: center; width: min(100%, 520px); }
.slide__art img { width: 100%; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .25)); }
.slide.is-active .slide__text > * { animation: rise .7s both; }
.slide.is-active .slide__text > :nth-child(2) { animation-delay: .08s; }
.slide.is-active .slide__text > :nth-child(3) { animation-delay: .16s; }
.slide.is-active .slide__text > :nth-child(4) { animation-delay: .24s; }
.slide.is-active .slide__art { animation: float-in .9s .1s both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes float-in { from { opacity: 0; transform: translateX(30px) scale(.96); } to { opacity: 1; transform: none; } }
.hero__nav { position: absolute; top: 50%; z-index: 3; width: 46px; height: 46px; margin-top: -23px; border-radius: 50%; display: none; place-items: center; background: rgba(255, 255, 255, .14); color: #fff; border: 1px solid rgba(255, 255, 255, .3); backdrop-filter: blur(6px); }
.hero__nav:hover { background: rgba(255, 255, 255, .28); }
.hero__nav--prev { left: 18px; }
.hero__nav--prev .i { transform: rotate(180deg); }
.hero__nav--next { right: 18px; }
.hero__dots { position: absolute; left: 0; right: 0; bottom: 46px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.hero__dots button { width: 10px; height: 10px; border-radius: 99px; background: rgba(255, 255, 255, .45); transition: width .3s, background .3s; }
.hero__dots button[aria-selected='true'] { width: 30px; background: var(--gold); }
@media (max-width: 719px) {
  .slide { min-height: 0; align-items: flex-start; }
  .slide--photo { min-height: 560px; }
  .slide__in--split { padding-top: 32px; padding-bottom: 64px; }
  .slide__art { width: 88%; margin-top: 4px; order: -1; max-height: 230px; }
  .slide__art img { max-height: 230px; width: auto; margin: 0 auto; }
  .slide__cta .btn { flex: 1 1 auto; }
}
@media (min-width: 720px) {
  .slide { min-height: 560px; }
  .slide__in--split { grid-template-columns: 1.05fr 1fr; }
  .hero__nav { display: grid; }
}
@media (min-width: 1100px) { .slide { min-height: 600px; } }

/* ---------- vantagens ---------- */
.perks { position: relative; z-index: 2; margin-top: -30px; }
.perks__in { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.perk { display: flex; align-items: center; gap: 12px; padding: 14px; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.perk .i { width: 42px; height: 42px; padding: 9px; border-radius: 12px; background: var(--gold-50); color: var(--red); }
.perk strong { display: block; font-size: 14px; line-height: 1.25; }
.perk span { display: block; font-size: 12px; color: var(--muted); line-height: 1.3; }
@media (min-width: 900px) { .perks__in { grid-template-columns: repeat(4, 1fr); gap: 16px; } .perk { padding: 18px 20px; } }

/* ---------- seções ---------- */
.section { padding: 56px 0; }
.section--tint { background: var(--tint); }
.section__head { text-align: center; margin-bottom: 28px; }
.section__head h2 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 800; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; text-align: left; }
.kicker { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.kicker .i { width: 16px; height: 16px; }
.section__head:not(.section__head--row) .kicker::before, .section__head:not(.section__head--row) .kicker::after { content: ''; width: 26px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--red)); }
.link-more { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; color: var(--red); white-space: nowrap; font-size: 14px; }
.link-more .i { width: 16px; height: 16px; transition: transform .2s; }
.link-more:hover .i { transform: translateX(3px); }

/* categorias */
.cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cat { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 20px 16px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s, box-shadow .2s; isolation: isolate; }
.cat::after { content: ''; position: absolute; right: -40px; bottom: -40px; width: 140px; height: 140px; border-radius: 50%; background: var(--gold-50); z-index: -1; transition: transform .3s; }
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat:hover::after { transform: scale(1.25); }
.cat__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--red), #e3241d); color: #fff; box-shadow: 0 8px 18px rgba(194, 4, 14, .25); }
.cat__icon .i { width: 30px; height: 30px; }
.cat--festas-e-decoracao .cat__icon { background: linear-gradient(135deg, var(--gold), #ff8f1f); color: var(--red-900); }
.cat__name { font-weight: 700; font-size: 16px; line-height: 1.25; margin-top: 8px; }
.cat__desc { display: none; font-size: 13px; color: var(--muted); line-height: 1.45; }
.cat__more { display: inline-flex; align-items: center; gap: 4px; margin-top: auto; font-size: 13px; font-weight: 600; color: var(--red); }
.cat__more .i { width: 14px; height: 14px; }
@media (min-width: 900px) { .cats { grid-template-columns: repeat(4, 1fr); gap: 20px; } .cat { padding: 26px 22px; } .cat__desc { display: block; } }

/* grade de produtos */
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 720px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
.listing__main .grid { }
@media (min-width: 1100px) { .listing__main .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .listing__main .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.rail { margin: 0 -16px; }
.grid--rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 16px 18px; gap: 12px; scrollbar-width: thin; }
.grid--rail .card { flex: 0 0 min(46vw, 230px); scroll-snap-align: start; }
@media (min-width: 1100px) { .rail { margin: 0; } .grid--rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: visible; padding: 4px 0 0; gap: 20px; } .grid--rail .card { flex: none; } .grid--rail .card:nth-child(n+9) { display: none; } }

.card { position: relative; display: flex; flex-direction: column; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__media { position: relative; display: block; aspect-ratio: 1; background: var(--tint); overflow: hidden; }
.card__media img, .card__media .img-ph { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.badge { position: absolute; top: 10px; left: 10px; padding: 3px 10px; border-radius: 999px; background: var(--gold); color: var(--red-900); font-size: 11px; font-weight: 700; letter-spacing: .02em; }
.badge--promo { background: var(--red); color: #fff; }
.card__body { display: flex; flex-direction: column; gap: 6px; padding: 12px 12px 14px; flex: 1; }
.card__brand { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.card__title { font-size: 14px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; }
.card__title a::after { content: ''; position: absolute; inset: 0; z-index: 0; }
.card__title a:hover { color: var(--red); }
.card__actions { position: relative; z-index: 1; display: flex; gap: 8px; margin-top: auto; padding-top: 6px; }
.card__actions .btn--wa { flex: 1; }
@media (max-width: 400px) { .card__actions .btn--wa span { font-size: 13px; } .card__body { padding: 10px; } }
.img-ph { display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-50), var(--tint)); color: var(--gold-600); aspect-ratio: 1; }
.img-ph .i { width: 40%; height: 40%; opacity: .5; }

.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 6px; }
.price__now { font-size: 19px; font-weight: 800; color: var(--red); letter-spacing: -.01em; }
.price__old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price__off { font-size: 11px; font-weight: 700; color: #fff; background: var(--wa); padding: 1px 6px; border-radius: 6px; }
.price__unit { font-size: 12px; color: var(--muted); }
.price__ask { font-size: 14px; font-weight: 700; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.price__ask::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.price--big .price__now { font-size: 34px; }
.price--big .price__old { font-size: 16px; }
.price--big .price__ask { font-size: 20px; }

/* como comprar */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: s; }
.step { position: relative; padding: 26px 22px 22px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.step > .i { width: 48px; height: 48px; padding: 11px; border-radius: 14px; background: var(--gold-50); color: var(--red); margin-bottom: 14px; }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--ink-2); font-size: 14px; }
.step__n { position: absolute; top: 18px; right: 20px; font-size: 44px; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(194, 4, 14, .18); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

/* marcas */
.brands { padding: 34px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brands__title { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.brands__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.brands__list a { padding: 8px 18px; border-radius: 999px; border: 1px solid var(--line); font-weight: 700; font-size: 15px; color: var(--ink-2); background: var(--bg); transition: all .2s; }
.brands__list a:hover { border-color: var(--red); color: var(--red); background: #fff; }

/* avaliações */
.rating-sum { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; padding: 8px 16px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); }
.rating-sum strong { font-size: 22px; }
.rating-sum span:last-child { font-size: 13px; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; color: #d9d2c9; }
.stars .on { color: #fbbc04; }
.stars .i { width: 16px; height: 16px; }
.rev-list { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 16px 18px; margin: 0 -16px; }
.rev { flex: 0 0 min(82vw, 330px); scroll-snap-align: start; margin: 0; padding: 20px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; }
.rev__top { display: flex; align-items: center; gap: 12px; }
.rev__top figcaption { font-weight: 600; line-height: 1.2; }
.rev__top small { color: var(--muted); font-size: 12px; }
.rev__avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; font-weight: 700; }
.rev__g { margin-left: auto; font-weight: 800; font-size: 18px; background: conic-gradient(#ea4335 0 25%, #fbbc04 0 50%, #34a853 0 75%, #4285f4 0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rev blockquote { margin: 0; font-size: 14px; color: var(--ink-2); }
.reviews__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 18px; }
@media (min-width: 1100px) { .rev-list { margin: 0; padding: 4px 0 18px; } }

/* visite a loja */
.visit__in { display: grid; gap: 24px; align-items: center; }
.visit__photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.visit__photo img { width: 100%; height: 100%; object-fit: cover; }
.visit__info h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; margin-bottom: 16px; }
.visit__list { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 12px; }
.visit__list li { display: flex; gap: 12px; align-items: flex-start; }
.visit__list .i { width: 40px; height: 40px; padding: 9px; border-radius: 12px; background: var(--gold-50); color: var(--red); }
.visit__list span { padding-top: 7px; }
.visit__status { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-bottom: 18px; }
.visit__status:empty { display: none; }
.visit__cta { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) { .visit__in { grid-template-columns: 1.1fr 1fr; gap: 56px; } }

/* FAQ */
.qa { background: #fff; border-radius: var(--radius-sm); margin-bottom: 10px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.qa summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; font-weight: 600; cursor: pointer; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .i { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--red); color: #fff; transition: transform .25s; }
.qa[open] summary .i { transform: rotate(45deg); background: var(--gold); color: var(--red-900); }
.qa p { padding: 0 20px 18px; color: var(--ink-2); }

/* faixa final */
.cta-band { background: linear-gradient(110deg, var(--red-800), var(--red) 60%, #d91a12); color: #fff; padding: 40px 0; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; border: 40px solid rgba(248, 177, 7, .18); }
.cta-band__in { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.cta-band h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.cta-band p { color: rgba(255, 255, 255, .85); }
@media (min-width: 900px) { .cta-band__in { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- rodapé ---------- */
.footer { background: #1e0a0b; color: rgba(255, 255, 255, .78); font-size: 14px; position: relative; }
.footer__wave { height: 6px; background: linear-gradient(90deg, var(--red), var(--gold), var(--red)); }
.footer__grid { display: grid; gap: 30px; padding-top: 44px; padding-bottom: 36px; }
.footer__logo img { width: 170px; margin-bottom: 14px; }
.footer__brand p { max-width: 340px; }
.footer__h { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer__list, .footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact .i { width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); }
.footer__social a:hover { background: var(--red); }
.footer__social .i { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 16px 0 90px; font-size: 12px; color: rgba(255, 255, 255, .55); }
.footer__bottom .wrap { display: flex; flex-direction: column; gap: 4px; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; } .footer__bottom { padding-bottom: 18px; } .footer__bottom .wrap { flex-direction: row; justify-content: space-between; } }

/* ---------- WhatsApp flutuante ---------- */
.fab-wa { position: fixed; right: 16px; bottom: 18px; z-index: 35; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(30, 169, 82, .45); transition: transform .2s; }
.fab-wa::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--wa); animation: pulse 2.4s infinite; z-index: -1; }
.fab-wa .i { width: 34px; height: 34px; }
.fab-wa:hover { transform: scale(1.06); }
.fab-wa__tip { position: absolute; right: 70px; white-space: nowrap; background: #fff; color: var(--ink); font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: 12px; box-shadow: var(--shadow); opacity: 0; transform: translateX(8px); transition: all .3s; pointer-events: none; }
.fab-wa:hover .fab-wa__tip, .fab-wa.show-tip .fab-wa__tip { opacity: 1; transform: none; }
@keyframes pulse { 0% { transform: scale(1); opacity: .5; } 80%, 100% { transform: scale(1.6); opacity: 0; } }
body.has-buybar .fab-wa { bottom: 92px; }
@media (min-width: 900px) { body.has-buybar .fab-wa { bottom: 18px; } }

/* ---------- carrinho (drawer) ---------- */
.drawer { position: fixed; inset: 0; z-index: 70; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(20, 5, 5, .5); animation: fade .2s; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(100%, 420px); background: #fff; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); animation: slide-in .25s ease; }
@keyframes fade { from { opacity: 0; } }
@keyframes slide-in { from { transform: translateX(100%); } }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer__head h2 { display: flex; align-items: center; gap: 10px; font-size: 18px; }
.drawer__head h2 .i { color: var(--red); }
.drawer__head button { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; }
.drawer__head button:hover { background: var(--tint); }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 20px; }
.drawer__foot { padding: 16px 20px 20px; border-top: 1px solid var(--line); display: grid; gap: 10px; background: var(--bg); }
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; }
.drawer__total strong { font-size: 22px; color: var(--red); }
.drawer__note { font-size: 12px; color: var(--muted); }
.ci { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.ci img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: var(--tint); }
.ci__name { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.ci__price { font-size: 13px; color: var(--red); font-weight: 700; margin-top: 2px; }
.ci__remove { color: var(--muted); width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; }
.ci__remove:hover { color: var(--red); background: #fff1f1; }
.ci .qty { grid-column: 2; margin-top: 6px; height: 36px; width: 120px; }
.cart-empty { text-align: center; padding: 50px 10px; color: var(--muted); }
.cart-empty .i { width: 56px; height: 56px; margin: 0 auto 12px; color: var(--line); }

.qty { display: inline-flex; align-items: center; border: 2px solid var(--line); border-radius: 999px; height: 52px; background: #fff; overflow: hidden; }
.qty button { width: 42px; height: 100%; display: grid; place-items: center; color: var(--red); }
.qty button:hover { background: var(--gold-50); }
.qty button .i { width: 18px; height: 18px; }
.qty input { width: 52px; text-align: center; border: 0; font-weight: 700; font-size: 16px; outline: none; -moz-appearance: textfield; appearance: textfield; background: transparent; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 90; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 14px; box-shadow: var(--shadow-lg); font-size: 14px; display: flex; align-items: center; gap: 12px; max-width: calc(100% - 32px); animation: rise .3s; }
.toast a, .toast button { color: var(--gold); font-weight: 700; }

.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; max-width: 560px; margin: 0 auto; background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; border: 1px solid var(--line); }
.consent a { color: var(--red); text-decoration: underline; }
.consent > div { display: flex; gap: 8px; justify-content: flex-end; }
@media (min-width: 720px) { .consent { flex-direction: row; align-items: center; } .consent > div { flex: none; } }

/* ---------- listagem ---------- */
.page-head { background: linear-gradient(120deg, var(--red-800), var(--red)); color: #fff; padding: 22px 0 30px; position: relative; overflow: hidden; }
.page-head::after { content: ''; position: absolute; right: -60px; bottom: -120px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(248, 177, 7, .35), transparent 70%); }
.page-head h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin-top: 8px; }
.page-head p { color: rgba(255, 255, 255, .85); max-width: 680px; margin-top: 6px; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px; font-size: 13px; }
.crumbs li + li::before { content: '›'; margin-right: 4px; opacity: .6; }
.page-head .crumbs { color: rgba(255, 255, 255, .8); }
.page-head .crumbs a:hover { color: #fff; }
.wrap > .crumbs { padding: 16px 0 4px; color: var(--muted); }
.wrap > .crumbs a:hover { color: var(--red); }
.listing { display: grid; gap: 20px; padding-top: 24px; padding-bottom: 56px; }
.filters { display: grid; gap: 16px; }
.filters__h { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.filters__list { list-style: none; margin: 0 -16px; padding: 0 16px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filters__list a { display: flex; gap: 6px; align-items: center; white-space: nowrap; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: 14px; }
.filters__list a small { color: var(--muted); font-weight: 500; }
.filters__list a.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.filters__list a.is-active small { color: rgba(255, 255, 255, .8); }
.chips { display: flex; gap: 8px; overflow-x: auto; margin: 0 -16px; padding: 0 16px 4px; scrollbar-width: none; }
.chip { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 500; }
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.is-active { background: var(--gold); border-color: var(--gold); color: var(--red-900); font-weight: 600; }
.chip .i { width: 14px; height: 14px; }
.toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.toolbar__count { color: var(--ink-2); font-size: 14px; }
.toolbar__sort { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.toolbar__sort select { border: 1px solid var(--line); border-radius: 999px; padding: 8px 32px 8px 14px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c2040e' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 12px center; appearance: none; -webkit-appearance: none; font-weight: 600; color: var(--ink); }
.pager { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 30px; }
.pager a, .pager span { min-width: 42px; height: 42px; padding: 0 12px; display: grid; place-items: center; border-radius: 12px; background: #fff; border: 1px solid var(--line); font-weight: 600; }
.pager a:hover { border-color: var(--red); color: var(--red); }
.pager span[aria-current] { background: var(--red); color: #fff; border-color: var(--red); }
.empty { text-align: center; padding: 50px 20px; background: #fff; border-radius: var(--radius); }
.empty > .i { width: 60px; height: 60px; margin: 0 auto 14px; color: var(--gold); }
.empty h1, .empty h2 { font-size: 22px; margin-bottom: 8px; }
.empty p { color: var(--muted); margin-bottom: 18px; }
.empty .visit__cta { justify-content: center; margin-top: 18px; }
.empty--page { margin-top: 20px; }
@media (min-width: 900px) {
  .listing { grid-template-columns: 250px 1fr; gap: 32px; align-items: start; }
  .filters { position: sticky; top: 150px; background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
  .filters__list { flex-direction: column; margin: 0; padding: 0; gap: 2px; overflow: visible; }
  .filters__list a { border: 0; background: none; padding: 8px 10px; border-radius: 10px; justify-content: space-between; }
  .filters__list a:hover { background: var(--tint); }
  .chips { flex-wrap: wrap; margin: 0; padding: 0; overflow: visible; }
}

/* ---------- página de produto ---------- */
.pdp { display: grid; gap: 22px; padding-top: 8px; padding-bottom: 32px; }
.pdp__main { border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); aspect-ratio: 1; }
.pdp__main img { width: 100%; height: 100%; object-fit: contain; }
.pdp__thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.pdp__thumbs button { width: 72px; height: 72px; flex: none; border-radius: 14px; overflow: hidden; border: 2px solid var(--line); background: #fff; }
.pdp__thumbs button.is-active { border-color: var(--red); }
.pdp__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 10px; }
.pill { padding: 4px 12px; border-radius: 999px; background: var(--gold-50); color: var(--red-800); font-size: 12.5px; font-weight: 600; }
.stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.stock::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.stock--ok { color: #13743a; background: #e6f6ec; }
.stock--low { color: #a35d00; background: #fff3dc; }
.stock--out { color: var(--muted); background: var(--tint); }
.pdp__title { font-size: clamp(22px, 3.2vw, 32px); font-weight: 800; line-height: 1.2; }
.pdp__sub { color: var(--muted); font-size: 13.5px; margin: 8px 0 14px; }
.pdp__short { color: var(--ink-2); margin-top: 14px; }
.pdp__specs { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pdp__specs li { padding: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-size: 13px; }
.pdp__specs span { color: var(--muted); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.pdp__buy { display: flex; gap: 10px; margin: 20px 0 10px; }
.pdp__buy .btn { min-height: 56px; font-size: 16px; }
.pdp__trust { list-style: none; padding: 16px; margin: 18px 0 0; display: grid; gap: 10px; background: #fff; border-radius: var(--radius-sm); border: 1px dashed var(--line); font-size: 13.5px; }
.pdp__trust li { display: flex; gap: 10px; align-items: center; }
.pdp__trust .i { color: var(--wa); width: 20px; height: 20px; }
.pdp__trust li:nth-child(2) .i, .pdp__trust li:nth-child(3) .i { color: var(--red); }
.pdp__details { display: grid; gap: 20px; padding-bottom: 20px; }
.pdp__details > div { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.pdp__details h2 { font-size: 18px; margin-bottom: 12px; }
.prose p { margin: 0 0 12px; color: var(--ink-2); }
.prose h2 { font-size: 20px; margin: 26px 0 10px; }
.spec-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { color: var(--muted); font-weight: 500; width: 45%; }
.spec-table a { color: var(--red); }
@media (min-width: 900px) {
  .pdp { grid-template-columns: 1fr 1fr; gap: 48px; padding-top: 12px; }
  .pdp__gallery { position: sticky; top: 150px; align-self: start; }
  .pdp__details { grid-template-columns: 1.6fr 1fr; }
}

.buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 36; display: flex; align-items: center; gap: 10px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: #fff; box-shadow: 0 -8px 24px rgba(0, 0, 0, .1); transform: translateY(110%); transition: transform .25s; }
.buybar.is-visible { transform: none; }
.buybar__price { display: flex; flex-direction: column; line-height: 1.1; min-width: 86px; }
.buybar__price strong { color: var(--red); font-size: 18px; }
.buybar__price small { color: var(--muted); font-size: 11px; }
.buybar__ask { color: var(--ink-2) !important; font-size: 15px !important; }
@media (min-width: 900px) { .buybar { display: none; } }

/* contato */
.contact { display: grid; gap: 24px; }
.contact__map { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); min-height: 340px; background: var(--tint); }
.contact__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
@media (min-width: 900px) { .contact { grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: stretch; } }

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

/* evita que itens de grid/flex estourem a largura no celular */
.filters > *, .pdp > *, .listing > *, .visit__in > *, .contact > *, .footer__grid > *, .pdp__details > *, .slide__in--split > * { min-width: 0; }
.pdp__buy .btn { white-space: normal; min-width: 0; padding-left: 14px; padding-right: 14px; line-height: 1.2; }
@media (max-width: 420px) { .pdp__buy .qty { height: 56px; } .pdp__buy .qty button { width: 36px; } .pdp__buy .qty input { width: 40px; } .pdp__buy .btn { font-size: 15px; } }

/* carrinho: pedido enviado */
.cart-empty .btn { margin-top: 12px; }
.cart-sent .i { color: var(--wa); }
.cart-sent strong { display: block; color: var(--ink); font-size: 17px; margin-bottom: 4px; }
