:root {
  --red: #e40613;
  --deep-red: #aa0610;
  --yellow: #ffd31a;
  --gold: #f5b900;
  --ink: #20222a;
  --muted: #6f7480;
  --line: rgba(32, 34, 42, .11);
  --paper: #fffdf7;
  --white: #ffffff;
  --soft: #fff5c2;
  --shadow: 0 24px 70px rgba(108, 33, 0, .16);
  --radius: 28px;
  --max: 1200px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 26, .22), transparent 32rem),
    linear-gradient(180deg, #fffaf1 0%, #ffffff 42%, #fffaf2 100%);
  min-height: 100vh;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.top-ribbon {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 46px);
  background: linear-gradient(90deg, var(--deep-red), var(--red));
  color: white;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: calc(var(--max) + 56px);
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 211, 26, .35);
}
.brand img { width: 216px; height: auto; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #2f323a;
  font-weight: 800;
  font-size: .88rem;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.ghost-button, .cart-button, .primary-button, .filter-group button, .hero-chips button {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ghost-button {
  padding: 12px 16px;
  color: var(--red);
  background: #fff1d3;
}
.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--deep-red));
  box-shadow: 0 12px 28px rgba(228, 6, 19, .2);
}
.cart-button strong {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--yellow);
  border-radius: 99px;
  font-size: .78rem;
}
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; }
.nav-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--ink); border-radius: 4px; }

.section-grid, .section, .trust-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 116px);
  padding-top: 52px;
  padding-bottom: 52px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.35rem, 5.4vw, 4.8rem);
  line-height: .9;
  letter-spacing: -.08em;
}
.hero-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.hero-search {
  display: flex;
  max-width: 620px;
  padding: 8px;
  margin: 30px 0 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.hero-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 18px;
  min-width: 0;
  color: var(--ink);
}
.hero-search button, .primary-button {
  padding: 14px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--deep-red));
  box-shadow: 0 16px 35px rgba(228, 6, 19, .24);
}
.primary-button:hover, .cart-button:hover, .ghost-button:hover, .hero-chips button:hover { transform: translateY(-2px); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chips button {
  padding: 10px 14px;
  color: #5b4700;
  background: #fff5c2;
  border: 1px solid rgba(245, 185, 0, .35);
}
.hero-card {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
  background: #fff;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 44%, rgba(228,6,19,.06));
  pointer-events: none;
}
.hero-card img { width: 100%; height: min(620px, 70vh); object-fit: cover; }
.floating-card {
  position: absolute;
  right: 24px;
  z-index: 2;
  padding: 16px 18px;
  min-width: 190px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.floating-card span { display: block; color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.floating-card strong { display: block; margin-top: 4px; color: var(--deep-red); }
.floating-card-top { top: 26px; }
.floating-card-bottom { bottom: 26px; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 30px;
}
.trust-strip article {
  padding: 24px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(32,34,42,.06);
}
.trust-strip strong { display: block; color: var(--gold); font-size: .86rem; }
.trust-strip span { display: block; margin: 10px 0 8px; font-weight: 900; }
.trust-strip p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.55; }

.section { padding-top: 80px; padding-bottom: 80px; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
h2 { font-size: clamp(1.85rem, 3.6vw, 3.1rem); line-height: 1; letter-spacing: -.055em; margin: 12px 0 16px; }
.section-heading p, .services-copy p, .cta-band p { color: var(--muted); line-height: 1.7; font-size: 1.02rem; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-group button {
  padding: 11px 14px;
  color: #4d4f57;
  background: #fff;
  border: 1px solid var(--line);
}
.filter-group button.active, .filter-group button:hover { color: #fff; background: var(--red); }
.search-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.search-mini span { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.search-mini input { border: 0; outline: 0; min-width: 0; width: 100%; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px;
  min-height: 342px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(32,34,42,.07);
  overflow: hidden;
  position: relative;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: -120px -90px auto auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 211, 26, .23);
}
.product-visual {
  display: grid;
  place-items: center;
  height: 118px;
  margin-bottom: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff6cd, #fff, #ffe8eb);
  position: relative;
}
.product-visual span { font-size: 3.1rem; filter: drop-shadow(0 10px 18px rgba(0,0,0,.12)); }
.product-card h3 { margin: 0 0 8px; font-size: 1.04rem; line-height: 1.25; }
.product-meta { color: var(--muted); font-size: .87rem; line-height: 1.45; }
.product-price { margin: 18px 0; font-size: 1.45rem; font-weight: 950; color: var(--deep-red); letter-spacing: -.02em; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.badge {
  display: inline-flex;
  padding: 6px 9px;
  color: #7b5c00;
  background: #fff3b7;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}
.add-button {
  border: 0;
  border-radius: 999px;
  padding: 11px 13px;
  color: white;
  background: var(--red);
  font-weight: 900;
}

.services-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
}
.services-visual img {
  border-radius: 36px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.services-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 24px; }
.service-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(32,34,42,.05);
}
.service-pill span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--red);
  background: #fff2b8;
  border-radius: 50%;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article {
  padding: 30px;
  background: linear-gradient(180deg, #fff, #fff8db);
  border: 1px solid rgba(245,185,0,.28);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(32,34,42,.06);
}
.steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 950;
}
.steps h3 { margin-bottom: 8px; font-size: 1.2rem; }
.steps p { color: var(--muted); margin: 0; line-height: 1.6; }
.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 44px;
  margin-bottom: 80px;
  background: linear-gradient(135deg, #fff, #fff3af 55%, #ffe8e8);
  border: 1px solid rgba(245,185,0,.35);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.cta-band div { max-width: 750px; }

.cart-drawer { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.cart-drawer.active { pointer-events: auto; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(20,16,12,.4); opacity: 0; transition: opacity .22s ease; }
.cart-drawer.active .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fffdf8;
  box-shadow: -24px 0 70px rgba(0,0,0,.18);
  transform: translateX(104%);
  transition: transform .28s ease;
}
.cart-drawer.active .drawer-panel { transform: translateX(0); }
.drawer-panel header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.drawer-panel h2 { font-size: 2rem; margin: 4px 0 0; }
.icon-button, .modal-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #fff0c7;
  font-size: 1.5rem;
}
.cart-items { overflow: auto; padding: 18px 0; }
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line h3 { margin: 0 0 4px; font-size: 1rem; }
.cart-line p { margin: 0; color: var(--muted); font-size: .85rem; }
.qty-control { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.qty-control button { width: 30px; height: 30px; border: 0; border-radius: 50%; background: #ffe7b0; font-weight: 950; }
.line-total { font-weight: 950; color: var(--deep-red); white-space: nowrap; }
.totals { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.totals.strong { border-top: 1px solid var(--line); margin-top: 12px; font-size: 1.08rem; }
.drawer-panel footer { border-top: 1px solid var(--line); padding-top: 16px; }
.drawer-panel small, .order-summary small { color: var(--muted); line-height: 1.5; display: block; margin-bottom: 12px; }
.full { width: 100%; }
.empty-state { padding: 34px 18px; text-align: center; color: var(--muted); background: #fff8dd; border-radius: 22px; }

.modal {
  width: min(760px, calc(100% - 28px));
  border: 0;
  padding: 0;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: transparent;
}
.modal::backdrop { background: rgba(25,20,14,.48); backdrop-filter: blur(8px); }
.modal-card {
  position: relative;
  padding: 34px;
  background: #fffdf8;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 30px;
}
.modal-close { position: absolute; top: 18px; right: 18px; }
.modal h2 { font-size: 2.35rem; }
.modal-card > p { color: var(--muted); line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid.compact { gap: 12px; }
.form-grid label { display: grid; gap: 7px; color: var(--muted); font-size: .86rem; font-weight: 800; }
.form-grid .wide { grid-column: 1 / -1; }
.form-grid input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}
.form-grid input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255,211,26,.22); }
.checkout-modal-card { width: min(920px, 100%); }
.checkout-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }
.checkout-layout h3 { margin: 22px 0 12px; }
.option-grid { display: grid; gap: 10px; }
.option-grid label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  font-weight: 800;
}
.order-summary { padding: 18px; background: #fff6d0; border-radius: 22px; }
.order-summary h3 { margin-top: 0; }
.summary-line { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(32,34,42,.12); color: var(--muted); }
.summary-line strong { color: var(--ink); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 120px);
  z-index: 200;
  max-width: min(560px, calc(100% - 28px));
  padding: 14px 18px;
  color: white;
  background: linear-gradient(135deg, var(--ink), #000);
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  font-weight: 800;
}
.toast.active { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }

@media (max-width: 980px) {
  .top-ribbon { display: none; }
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .brand img { width: 178px; }
  .nav-toggle { display: block; }
  .main-nav, .header-actions {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .main-nav.active, .header-actions.active { display: flex; }
  .main-nav { padding-top: 8px; }
  .main-nav a { padding: 12px 0; }
  .hero, .services-section, .checkout-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 38px; }
  .hero-card img { height: auto; }
  .trust-strip, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-toolbar, .cta-band { align-items: stretch; flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .section-grid, .section, .trust-strip { padding-left: 16px; padding-right: 16px; }
  .site-header { padding: 14px 16px; }
  h1 { font-size: 3.25rem; }
  .hero-search { border-radius: 24px; flex-direction: column; }
  .hero-search input { padding: 14px; }
  .hero-search button { width: 100%; }
  .trust-strip, .product-grid, .services-list, .form-grid { grid-template-columns: 1fr; }
  .floating-card { position: static; margin: 12px; }
  .hero-card { border-radius: 28px; }
  .section { padding-top: 58px; padding-bottom: 58px; }
  .modal-card { padding: 28px 18px 22px; }
  .modal h2 { font-size: 1.9rem; }
  .cta-band { padding: 28px; border-radius: 28px; }
}

/* Ajustes v2: imagens inteiras e acesso do dono */
.owner-nav-link { color: var(--deep-red); }
.hero-card {
  padding: clamp(8px, 1.5vw, 16px);
  background: linear-gradient(135deg, #fffef8, #fff4bf);
}
.hero-card picture { display: block; }
.hero-card img {
  width: 100%;
  height: auto;
  max-height: min(520px, 58vh);
  object-fit: contain;
  border-radius: 30px;
  background: #fff8df;
}
.services-visual {
  border-radius: 36px;
  background: linear-gradient(135deg, #fff, #fff1b4);
  padding: clamp(8px, 1.3vw, 14px);
  box-shadow: var(--shadow);
}
.services-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: none;
}
.data-note {
  display: grid;
  gap: 8px;
  padding: 18px;
  margin-top: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(245,185,0,.32);
  border-radius: 22px;
}
.data-note strong { color: var(--deep-red); }


/* v4 visual premium */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.2) 48%, rgba(255,255,255,.05) 52%, transparent 100%);
  opacity: .12;
  mix-blend-mode: screen;
}
.neon-marquee {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: .18;
}
.neon-track {
  width: max-content;
  white-space: nowrap;
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: .35em;
  color: rgba(255, 211, 26, .7);
  text-shadow: 0 0 10px rgba(255, 211, 26, .45), 0 0 20px rgba(228, 6, 19, .18);
  animation: neonMove 24s linear infinite;
}
@keyframes neonMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.site-header { box-shadow: 0 16px 42px rgba(32,34,42,.08); }
.main-nav .owner-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,211,26,.18), rgba(228,6,19,.08));
  border: 1px solid rgba(245,185,0,.35);
}
.hero-copy, .services-copy { position: relative; z-index: 2; }.hero-card picture, .services-visual picture { position: relative; z-index: 1; }
.hero-card img, .services-visual img { position: relative; z-index: 1; }
.floating-card { display: none !important; }
.trust-strip article, .product-card, .steps article, .cta-band, .review-card, .rating-summary, .footer-card {
  backdrop-filter: blur(12px);
}
.reviews-section { padding-top: 20px; }
.reviews-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: stretch;
}
.rating-summary {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(160deg, #fffefc, #fff6cb 60%, #ffe8ef);
  border: 1px solid rgba(245,185,0,.32);
  box-shadow: var(--shadow);
}
.rating-score {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: .9;
  font-weight: 950;
  color: var(--deep-red);
}
.stars { color: var(--gold); font-size: 1.35rem; letter-spacing: .18em; text-shadow: 0 0 14px rgba(255,211,26,.35); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(245,185,0,.22);
  box-shadow: 0 18px 46px rgba(32,34,42,.06);
}
.review-card p { color: var(--muted); line-height: 1.7; min-height: 120px; }
.review-card strong { font-size: .95rem; }
.site-footer {
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}
.footer-brand {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff, #fff8d9 55%, #ffeef0);
  border: 1px solid rgba(245,185,0,.3);
  box-shadow: var(--shadow);
}
.footer-brand img { width: 220px; }
.footer-brand p { margin: 0; max-width: 760px; color: var(--muted); line-height: 1.7; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.footer-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(245,185,0,.24);
  box-shadow: 0 16px 40px rgba(32,34,42,.05);
}
.footer-card span { display: block; margin-bottom: 10px; color: var(--red); font-size: .82rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.footer-card a { font-weight: 800; word-break: break-word; }
.footer-card p { margin: 0; color: var(--muted); line-height: 1.65; }
@media (max-width: 980px) {
  .neon-marquee { top: 68px; }
  .reviews-wrap, .footer-grid, .review-cards { grid-template-columns: 1fr; }
  .hero-card, .services-visual { transform: none; }
}
@media (max-width: 620px) {
  .site-footer { padding: 0 16px; margin-bottom: 52px; }
  .footer-brand, .footer-card, .review-card, .rating-summary { padding: 22px; }
  .review-card p { min-height: auto; }
  .neon-track { letter-spacing: .18em; }
}


.hero-lead { max-width: 560px; color: #373a42 !important; font-weight: 500; }
.section-mini { color: #484c56 !important; }
.hero-actions-row { display:flex; align-items:center; gap:12px; margin: 0 0 16px; }
.contact-button {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 48px; padding: 12px 20px; border-radius: 999px;
  color:#fff; font-weight:900;
  background: linear-gradient(135deg, #13a845, #0b8235);
  box-shadow: 0 16px 32px rgba(19,168,69,.22);
}
.contact-button:hover { transform: translateY(-2px); }
.section-heading p:empty { display:none; }
.trust-strip article p { display:none; }
.trust-strip article { padding-bottom: 20px; }
.steps p { color: #4a4e58; }
.cta-band p { color: #444954; }
.neon-frame {
  position: relative;
  overflow: hidden;
}
.neon-frame::before {
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 40px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,211,26,.95), rgba(255,255,255,.92), rgba(228,6,19,.95));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  z-index:2;
}
.neon-frame::after {
  content:"";
  position:absolute;
  inset:-4px;
  border-radius: 44px;
  box-shadow: 0 0 14px rgba(255,211,26,.55), 0 0 30px rgba(228,6,19,.25);
  pointer-events:none;
  z-index:1;
}
.laser-scan {
  position:absolute;
  left:-34%; top:16px;
  width:34%; height:3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), rgba(255,211,26,1), rgba(228,6,19,.95), transparent);
  box-shadow: 0 0 12px rgba(255,211,26,.9), 0 0 24px rgba(228,6,19,.45);
  z-index: 3; border-radius: 999px; animation: laserPass 4.2s ease-in-out infinite;
}
@keyframes laserPass {
  0% { transform: translateX(0); opacity:0; }
  12% { opacity:1; }
  50% { transform: translateX(420%); opacity:1; }
  70% { opacity:.2; }
  100% { transform: translateX(420%); opacity:0; }
}
/* overwrite older rotating neon */
.hero-card, .services-visual { transform: perspective(1400px) rotateY(-2deg) rotateX(.8deg); }
.hero-card:hover, .services-visual:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg) translateY(-4px); }

/* cursor laser */
@media (pointer:fine) {
  body { cursor: none; }
  a, button, input, textarea, select, label { cursor:none; }
  .cursor-laser, .cursor-laser-core {
    position: fixed; top:0; left:0; pointer-events:none; z-index:9999;
    border-radius:50%; transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
  }
  .cursor-laser {
    width: 28px; height: 28px; border: 1.6px solid rgba(255,211,26,.85);
    box-shadow: 0 0 14px rgba(255,211,26,.5), 0 0 26px rgba(228,6,19,.22);
    background: radial-gradient(circle, rgba(255,255,255,.16), rgba(255,211,26,.05) 58%, transparent 72%);
  }
  .cursor-laser-core {
    width: 8px; height: 8px; background: radial-gradient(circle, #fff 0%, #ffd31a 55%, rgba(228,6,19,.9) 100%);
    box-shadow: 0 0 10px rgba(255,211,26,.9), 0 0 20px rgba(228,6,19,.55);
  }
  body.cursor-hover .cursor-laser { width: 42px; height: 42px; border-color: rgba(228,6,19,.95); }
}
@media (max-width:620px) {
  .hero-actions-row { flex-direction: column; align-items: stretch; }
}

.product-visual.with-image img{width:100%;height:100%;object-fit:contain;padding:8px;}
.add-button[disabled]{opacity:.55;cursor:not-allowed;}


/* v6 refinamento premium */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0%;
  z-index: 9998;
  background: linear-gradient(90deg, #ffd31a, #fff7b2, #e40613);
  box-shadow: 0 0 12px rgba(255,211,26,.8), 0 0 22px rgba(228,6,19,.35);
  pointer-events: none;
}
.trust-strip { display: none !important; }
.hero { min-height: auto; padding-top: 64px; padding-bottom: 42px; }
h1 { font-size: clamp(2.15rem, 4.6vw, 4.15rem) !important; letter-spacing: -.055em; line-height: .96; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem) !important; letter-spacing: -.045em; }
.hero-copy p { max-width: 520px; font-size: .98rem !important; }
.top-ribbon { height: 32px; font-size: .7rem; opacity: .96; }
.site-header { padding-top: 14px; padding-bottom: 14px; }
.brand img { width: 194px; }
.hero-card img { max-height: min(460px, 52vh); }
.hero-chips button { padding: 9px 12px; font-size: .82rem; }
.hero-search { max-width: 540px; box-shadow: 0 18px 56px rgba(108,33,0,.12); }
.section { padding-top: 58px; padding-bottom: 58px; }
.product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.product-card {
  min-height: 0;
  padding: 12px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,253,245,.88));
  box-shadow: 0 14px 30px rgba(32,34,42,.055);
  border: 1px solid rgba(245,185,0,.18);
}
.product-card::before {
  width: 110px;
  height: 110px;
  inset: -68px -56px auto auto;
  background: rgba(255, 211, 26, .16);
}
.product-visual {
  height: 74px;
  margin-bottom: 10px;
  border-radius: 16px;
}
.product-visual span { font-size: 2rem; }
.product-card h3 {
  font-size: .88rem;
  line-height: 1.18;
  margin-bottom: 5px;
}
.product-meta {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .74rem;
  line-height: 1.35;
}
.product-price {
  margin: 10px 0;
  font-size: 1rem;
}
.badge {
  padding: 4px 7px;
  font-size: .62rem;
}
.product-actions {
  align-items: flex-end;
}
.product-actions small {
  font-size: .66rem;
  line-height: 1.25;
  color: #777b84;
}
.add-button {
  padding: 8px 10px;
  font-size: .72rem;
  box-shadow: 0 10px 20px rgba(228,6,19,.15);
}
.shop-toolbar { margin-bottom: 18px; }
.section-heading { margin-bottom: 22px; }

.cta-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,211,26,.33), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,247,209,.86), rgba(255,234,237,.74));
  box-shadow: 0 24px 70px rgba(108,33,0,.12);
}
.neon-marquee { opacity: .11; }
.neon-track { font-size: clamp(.9rem, 1.7vw, 1.25rem); }

/* Laser do cursor mais tecnológico */
.cursor-beam {
  position: fixed;
  top: 0; left: 0;
  width: 120px;
  height: 2px;
  pointer-events: none;
  z-index: 9997;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,211,26,.9), rgba(228,6,19,.3), transparent);
  box-shadow: 0 0 10px rgba(255,211,26,.75), 0 0 24px rgba(228,6,19,.35);
  opacity: 0;
}
@media (pointer:fine) {
  .cursor-beam { opacity: .82; }
}
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 130;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--deep-red));
  box-shadow: 0 16px 38px rgba(228,6,19,.26), 0 0 0 1px rgba(255,255,255,.35) inset;
  font-size: 1.35rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(22px) scale(.92);
  pointer-events: none;
  transition: .25s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top::after {
  content:"";
  position:absolute;
  inset:-5px;
  border-radius:inherit;
  border:1px solid rgba(255,211,26,.55);
  box-shadow:0 0 20px rgba(255,211,26,.28);
}
.service-pill {
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(32,34,42,.045);
}
.reviews-wrap { gap: 18px; }
.review-card p { min-height: 96px; }
.footer-brand, .footer-card, .review-card, .rating-summary {
  box-shadow: 0 18px 48px rgba(32,34,42,.06);
}

@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card { padding: 10px; border-radius: 18px; }
  .product-visual { height: 64px; }
  .product-card h3 { font-size: .8rem; }
  .product-meta { display:none; }
  .add-button { width: 100%; margin-top: 6px; }
  .product-actions { flex-direction: column; align-items: stretch; }
  .back-to-top { right: 16px; bottom: 18px; }
}


/* v7 premium neon */
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.95), rgba(255,241,190,.64) 18%, transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(255,208,221,.5), transparent 26%),
    radial-gradient(circle at 75% 75%, rgba(255,232,176,.22), transparent 22%),
    linear-gradient(160deg, #fffdf7 0%, #fff8de 30%, #fffef8 56%, #fff0f4 100%) !important;
}
body::after {
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255,211,26,.05) 22%, transparent 27%, transparent 68%, rgba(228,6,19,.06) 72%, transparent 78%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent 64%);
  opacity:.8;
  animation: bgSweep 13s linear infinite;
  mix-blend-mode: screen;
}
@keyframes bgSweep {
  0% { transform: translateX(-6%); }
  50% { transform: translateX(6%); }
  100% { transform: translateX(-6%); }
}
main { position: relative; z-index: 1; }
.section::before {
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  opacity:.55;
}
.site-header, .cta-band, .footer-brand, .footer-card, .rating-summary, .review-card, .ai-eval-card {
  backdrop-filter: blur(18px);
}
.owner-nav-link { font-weight:900 !important; }
/* Shimmer buttons */
.primary-button, .add-button, .ghost-button, .cart-button, .service-pill, .back-to-top, .contact-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.primary-button::before, .add-button::before, .ghost-button::before, .cart-button::before, .service-pill::before, .back-to-top::before, .contact-button::before, .shimmer-button::before {
  content:"";
  position:absolute;
  top:-120%; bottom:-120%; left:-38%;
  width:28%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
  animation: shimmerMove 4.6s linear infinite;
  pointer-events:none;
  z-index:0;
}
.primary-button > *, .add-button > *, .ghost-button > *, .cart-button > *, .service-pill > * { position: relative; z-index: 1; }
@keyframes shimmerMove {
  from { left: -40%; }
  to { left: 128%; }
}
.primary-button, .ghost-button, .cart-button, .add-button, .service-pill { box-shadow: 0 14px 28px rgba(32,34,42,.08), 0 0 0 1px rgba(255,255,255,.18) inset; }
.site-header {
  background: rgba(255,255,255,.74) !important;
  border: 1px solid rgba(255,255,255,.42);
}
.hero-card, .services-visual, .cta-band, .rating-summary, .review-card, .footer-card, .footer-brand, .footer-highlight, .ai-eval-card {
  box-shadow: 0 24px 80px rgba(108,33,0,.10), 0 0 0 1px rgba(255,255,255,.3) inset;
}
.reviews-wrap { grid-template-columns: 280px 1fr; }
.premium-summary { position:relative; overflow:hidden; }
.pulse-line {
  height: 2px; width: 100%; border-radius: 999px; margin-top: 10px;
  background: linear-gradient(90deg, rgba(255,211,26,.2), rgba(228,6,19,.95), rgba(255,211,26,.2));
  box-shadow: 0 0 16px rgba(228,6,19,.3);
  animation: pulseFlow 3s ease-in-out infinite;
}
@keyframes pulseFlow { 0%,100%{transform:scaleX(.82);opacity:.6} 50%{transform:scaleX(1);opacity:1} }
.ai-eval-card {
  margin-top: 20px;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255,211,26,.18), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,249,225,.84), rgba(255,241,245,.86));
  border: 1px solid rgba(245,185,0,.2);
}
.ai-head {
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items:start;
  margin-bottom: 18px;
}
.ai-head h3 { margin: 10px 0 8px; font-size: 1.6rem; }
.ai-head p { margin: 0; color: var(--muted); max-width: 760px; }
.ai-chip {
  align-self:start;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(228,6,19,.12), rgba(255,211,26,.28));
  color: var(--deep-red);
  border: 1px solid rgba(245,185,0,.28);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.star-selector {
  display:flex; gap:10px; flex-wrap:wrap; margin: 6px 0 16px;
}
.star-selector button {
  border: 0;
  width: 54px; height: 54px; border-radius: 18px;
  font-size: 1.6rem; font-weight: 900; color: #b3a878;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 24px rgba(32,34,42,.06);
  transition: .22s ease;
}
.star-selector button.active, .star-selector button:hover {
  color: #f5b900;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(245,185,0,.35), 0 12px 26px rgba(32,34,42,.08);
}
.ai-form-grid textarea {
  width: 100%; min-height: 110px; resize: vertical;
  border: 1px solid rgba(245,185,0,.24);
  border-radius: 22px; background: rgba(255,255,255,.84); padding: 16px 18px;
  font: inherit; color: var(--ink); outline: none;
}
.ai-response {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(245,185,0,.18);
  color: #493f2a;
  line-height: 1.6;
}
.premium-footer {
  position: relative;
  margin-top: 8px;
  padding-bottom: 12px;
}
.footer-hero {
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-bottom: 18px;
}
.footer-highlight {
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255,211,26,.2), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,244,204,.78), rgba(255,238,243,.84));
  border: 1px solid rgba(245,185,0,.2);
}
.footer-highlight h3 { margin: 10px 0 8px; font-size: 1.7rem; }
.footer-highlight p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.footer-actions { display:flex; gap:12px; flex-wrap:wrap; }
.footer-card a { line-height: 1.6; }
@media (max-width: 980px) {
  .footer-hero, .reviews-wrap, .ai-head { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .ai-eval-card, .footer-highlight { padding: 22px; }
  .star-selector button { width: 48px; height: 48px; border-radius: 16px; }
}


/* v8 premium depth */
.site-intro {
  position: fixed; inset: 0; z-index: 12000; display:grid; place-items:center;
  background: radial-gradient(circle at center, rgba(255,255,255,.88), rgba(255,248,214,.96) 36%, rgba(255,241,245,.98) 76%);
  transition: opacity .75s ease, visibility .75s ease;
}
.site-intro.hidden { opacity:0; visibility:hidden; }
.intro-core {
  text-align:center; padding:34px 38px; border-radius:36px;
  background: rgba(255,255,255,.62); backdrop-filter: blur(24px);
  border:1px solid rgba(255,255,255,.65);
  box-shadow:0 30px 90px rgba(108,33,0,.14), 0 0 60px rgba(255,211,26,.2);
}
.intro-core img { width: 230px; margin: 0 auto 12px; }
.intro-line { display:block; color:#af0814; font-size:.82rem; letter-spacing:.32em; text-transform:uppercase; font-weight:900; }
.intro-core h2 { margin: 12px 0 8px; font-size: clamp(1.7rem, 4vw, 2.5rem) !important; }
.intro-core p { margin:0; color: var(--muted); }
.product-card {
  transform-style: preserve-3d;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.product-card:hover {
  transform: perspective(1200px) rotateX(6deg) rotateY(-7deg) translateY(-6px);
  box-shadow: 0 30px 70px rgba(32,34,42,.12), 0 0 0 1px rgba(255,255,255,.36) inset;
  border-color: rgba(245,185,0,.3);
}
.product-card > * { transform: translateZ(14px); }
.support-section { padding-top: 26px; }
.support-shell {
  display:grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items:start;
}
.support-intro, .support-links-card {
  padding: 30px; border-radius: 34px;
  background: rgba(255,255,255,.84);
  border:1px solid rgba(245,185,0,.18);
  box-shadow:0 24px 70px rgba(32,34,42,.07), 0 0 0 1px rgba(255,255,255,.32) inset;
  backdrop-filter: blur(18px);
}
.support-intro p { margin: 10px 0 0; color: var(--muted); line-height: 1.7; }
.support-links-card { display:grid; gap: 6px; }
.support-links-card a {
  display:block; padding: 14px 0; color:#6f7480; font-size: clamp(1rem, 2vw, 1.08rem); font-weight:500;
  border-bottom:1px solid rgba(32,34,42,.09); transition:.2s ease;
}
.support-links-card a:last-child { border-bottom:0; }
.support-links-card a:hover { color:#0b5aa0; transform: translateX(6px); }
/* Chat widget */
.chat-fab {
  position: fixed; left: 22px; bottom: 24px; z-index: 180;
  width: 58px; height: 58px; border-radius: 50%; border:0; color:#fff;
  background: linear-gradient(135deg, #e40613, #aa0610);
  font-weight: 900; letter-spacing:.08em; box-shadow: 0 18px 40px rgba(228,6,19,.28), 0 0 0 1px rgba(255,255,255,.4) inset;
}
.chat-widget {
  position: fixed; left: 22px; bottom: 96px; width: min(360px, calc(100vw - 24px));
  z-index: 181; border-radius: 28px; overflow:hidden;
  background: rgba(255,255,255,.9); border:1px solid rgba(245,185,0,.18);
  box-shadow:0 28px 80px rgba(32,34,42,.15),0 0 0 1px rgba(255,255,255,.35) inset;
  backdrop-filter: blur(22px); opacity:0; transform: translateY(12px) scale(.98); pointer-events:none; transition:.24s ease;
}
.chat-widget.active { opacity:1; transform: translateY(0) scale(1); pointer-events:auto; }
.chat-widget-head { display:flex; justify-content:space-between; gap:14px; align-items:start; padding:18px 18px 14px; background:linear-gradient(135deg, rgba(255,249,225,.92), rgba(255,237,241,.86)); }
.chat-widget-head h3 { margin:10px 0 0; font-size:1.2rem; }
.chat-body { max-height: 300px; overflow:auto; display:grid; gap:10px; padding: 16px 16px 10px; }
.chat-msg { padding: 12px 14px; border-radius: 18px; line-height:1.55; font-size:.93rem; }
.chat-msg.ai { background:#fff8d8; color:#504934; }
.chat-msg.user { background:#f3f5f9; color:#353842; justify-self:end; }
.chat-suggestions { display:flex; gap:8px; flex-wrap:wrap; padding: 0 16px 10px; }
.chat-suggestions button { border:0; border-radius:999px; padding:9px 12px; background:#fff4c3; color:#6e5200; font-size:.76rem; font-weight:900; }
.chat-input { display:grid; grid-template-columns: 1fr auto; gap:10px; padding: 0 16px 16px; }
.chat-input input { border:1px solid rgba(245,185,0,.2); border-radius: 16px; padding: 14px 14px; font:inherit; outline:none; background:rgba(255,255,255,.92); }
/* Footer refined */
.footer-brand p { font-size:1rem; }
.footer-highlight { position:relative; overflow:hidden; }
.footer-highlight::before {
  content:""; position:absolute; inset:-20% auto -20% -10%; width:40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent); transform:rotate(18deg); animation: footerShine 6s linear infinite;
}
@keyframes footerShine { from{left:-22%} to{left:118%} }
@media(max-width:980px){ .support-shell{grid-template-columns:1fr;} }
@media(max-width:640px){ .chat-fab{left:16px; bottom:16px; width:54px; height:54px;} .chat-widget{left:12px; bottom:82px; width:calc(100vw - 24px);} .support-intro, .support-links-card{padding:24px;} }


/* v9 refinement */
.section-heading h2 { margin-bottom: 8px; }
.section-heading p { max-width: 760px; font-size: .95rem; }
.product-carousel-block { display:grid; grid-template-columns: 42px 1fr 42px; gap: 10px; align-items:center; }
.product-carousel-block.subtle { margin-top: 4px; }
.product-carousel { display:grid; grid-auto-flow:column; grid-auto-columns:minmax(178px, 178px); gap: 12px; overflow-x:auto; scroll-behavior:smooth; padding: 4px 2px 10px; scrollbar-width:none; }
.product-carousel::-webkit-scrollbar { display:none; }
.carousel-arrow { width: 42px; height: 42px; border:0; border-radius:50%; background: linear-gradient(135deg, rgba(228,6,19,.95), rgba(170,6,16,.98)); color:#fff; font-size: 1.6rem; line-height:1; box-shadow:0 14px 28px rgba(228,6,19,.18),0 0 0 1px rgba(255,255,255,.25) inset; }
.carousel-arrow:disabled { opacity: .35; }
.mini-heading { margin: 18px 0 10px; display:flex; align-items:center; }
.mini-heading span { display:inline-flex; align-items:center; gap:8px; padding:6px 12px; border-radius:999px; background: rgba(255,255,255,.7); color:#8d1221; font-size:.72rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; border:1px solid rgba(245,185,0,.18); }
.product-card { min-height: 0; padding: 10px; border-radius: 18px; width: 178px; max-width: 178px; }
.product-card:hover { transform: perspective(1200px) rotateX(4deg) rotateY(-5deg) translateY(-4px); }
.product-visual { height: 62px; border-radius: 14px; margin-bottom: 8px; }
.product-card h3 { font-size: .8rem; }
.product-meta { font-size: .7rem; -webkit-line-clamp: 2; }
.product-price { font-size: .94rem; margin: 8px 0; }
.product-actions small { font-size: .61rem; }
.add-button { padding: 7px 9px; font-size: .7rem; }
.shop-toolbar { margin-bottom: 12px; }
.reviews-section .section-heading { margin-bottom: 16px; }
.reviews-top-grid { display:grid; grid-template-columns: .92fr 1.08fr; gap: 14px; align-items:start; }
.reviews-wrap { display:grid; grid-template-columns: 145px 1fr; gap: 12px; }
.rating-summary { padding: 18px; border-radius: 24px; }
.rating-score { font-size: clamp(2rem, 4vw, 3rem) !important; }
.stars { font-size: 1rem; }
.review-cards { display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.review-card { padding: 16px; border-radius: 20px; }
.review-card p { min-height: auto; font-size: .82rem; line-height: 1.5; }
.review-card strong { font-size: .82rem; }
.ai-eval-card { margin-top: 0 !important; padding: 18px; border-radius: 24px; }
.ai-head { margin-bottom: 12px; }
.ai-head h3 { font-size: 1.15rem !important; margin: 8px 0 5px; }
.ai-head p { font-size: .86rem; }
.ai-chip { padding: 8px 12px; font-size: .68rem; }
.star-selector { gap: 8px; margin-bottom: 10px; }
.star-selector button { width: 42px; height: 42px; border-radius: 14px; font-size: 1.2rem; }
.ai-form-grid textarea { min-height: 80px; padding: 12px 14px; border-radius: 16px; }
.ai-response { margin-top: 12px; padding: 14px 16px; border-radius: 18px; font-size: .86rem; }
.support-section { padding-top: 12px; }
.support-shell { grid-template-columns: .62fr 1.38fr; gap: 12px; }
.support-intro, .support-links-card { padding: 18px 20px; border-radius: 24px; }
.support-intro h2 { font-size: clamp(1.22rem, 2.1vw, 1.7rem) !important; }
.support-intro p { font-size: .86rem; line-height: 1.55; }
.support-links-card a { padding: 10px 0; font-size: .92rem; }
.premium-footer { padding-top: 8px; }
.footer-hero { gap: 12px; margin-bottom: 12px; }
.footer-brand, .footer-highlight { padding: 22px; border-radius: 26px; }
.footer-highlight h3 { font-size: 1.35rem !important; }
.footer-highlight p, .footer-brand p { font-size: .92rem; }
.footer-grid { gap: 12px; }
.footer-card { padding: 18px; border-radius: 20px; }
.legal-note-small { margin-top: 14px; padding: 14px 6px 2px; text-align:left; color:#72757d; font-size: .77rem; line-height: 1.6; }
.legal-note-small p { margin: 0 0 14px; }
.legal-anvisa-line { text-align:center; font-size: .84rem; color:#666a73; padding: 12px 0 2px; border-top: 1px solid rgba(32,34,42,.08); }
.chat-whatsapp-link { display:block; margin: 0 16px 10px; padding: 11px 12px; text-align:center; border-radius: 16px; color:#fff; background: linear-gradient(135deg, #18a04b, #0f833b); font-size: .84rem; font-weight: 900; box-shadow: 0 12px 24px rgba(24,160,75,.18); }
@media (max-width: 1100px) { .reviews-top-grid { grid-template-columns: 1fr; } .review-cards { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 980px) { .support-shell, .footer-hero, .reviews-wrap { grid-template-columns: 1fr; } }
@media (max-width: 780px) { .product-carousel { grid-auto-columns: minmax(160px, 160px); } .product-card { width: 160px; max-width: 160px; } .review-cards { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .product-carousel-block { grid-template-columns: 34px 1fr 34px; gap: 6px; } .carousel-arrow { width: 34px; height: 34px; font-size: 1.2rem; } .support-intro, .support-links-card, .footer-brand, .footer-highlight, .footer-card { padding: 16px; } .legal-note-small { font-size: .72rem; } }


/* v10 premium refinement */
:root {
  --premium-ink: #231a17;
  --premium-heading: #6b0913;
  --premium-heading-2: #2d2620;
}
body { color: var(--premium-ink); }
h1, h2 {
  color: var(--premium-heading-2);
  text-wrap: balance;
}
.hero-copy h1,
.section-heading h2,
.services-copy h2,
.cta-band h2,
.footer-highlight h3 {
  color: var(--premium-heading);
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.eyebrow { letter-spacing: .18em; }
.hero-copy h1 {
  font-size: clamp(1.95rem, 4vw, 3.65rem) !important;
  line-height: .98;
}
.section-heading h2,
.services-copy h2,
.cta-band h2 {
  font-size: clamp(1.3rem, 2.4vw, 2.05rem) !important;
  line-height: 1.02;
}
.section-mini, .section-heading p, .services-copy p, .cta-band p { font-size: .94rem; }
/* smaller refined dual block */
.dual-highlight-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 16px;
  align-items: stretch;
  margin: 8px 0 10px;
}
.compact-block {
  margin: 0 !important;
  min-height: auto;
}
.checkout-preview.compact-block,
.cta-band.compact-block {
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(245,185,0,.18);
  box-shadow: 0 20px 58px rgba(32,34,42,.07), 0 0 0 1px rgba(255,255,255,.28) inset;
}
.compact-steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.compact-steps article {
  padding: 14px 12px;
  border-radius: 18px;
}
.compact-steps article span {
  width: 32px; height: 32px; font-size: .92rem; margin-bottom: 10px;
}
.compact-steps article h3 { font-size: .92rem; margin: 0 0 6px; }
.compact-steps article p { font-size: .78rem; line-height: 1.45; }
.cta-band.compact-block { display: grid; align-content: center; gap: 12px; }
.cta-band.compact-block .primary-button { justify-self: start; }
/* product / support refinement */
.product-card { width: 168px; max-width: 168px; }
.product-carousel { grid-auto-columns: minmax(168px, 168px); }
.review-card, .rating-summary, .ai-eval-card, .support-intro, .support-links-card { box-shadow: 0 18px 48px rgba(32,34,42,.06), 0 0 0 1px rgba(255,255,255,.3) inset; }
/* chat icon */
.chat-fab {
  padding: 0;
  background: linear-gradient(135deg, #fff9da, #ffe9ef);
  border: 1px solid rgba(245,185,0,.24);
  box-shadow: 0 18px 42px rgba(32,34,42,.12), 0 0 0 1px rgba(255,255,255,.52) inset;
}
.chat-fab img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 12px;
}
.chat-widget-head h3 { color: var(--premium-heading); }
.ai-chip { color: #7f0e16; }
/* more premium main headings */
.hero-copy p { font-size: 1rem; color: #5a5f69; }
.service-pill, .primary-button, .ghost-button, .cart-button, .add-button { font-weight: 800; }
/* responsive */
@media (max-width: 980px) {
  .dual-highlight-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .product-card { width: 156px; max-width: 156px; }
  .product-carousel { grid-auto-columns: minmax(156px, 156px); }
  .compact-steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .chat-fab img { width: 38px; height: 38px; }
  .checkout-preview.compact-block,
  .cta-band.compact-block { padding: 18px; }
}


/* v11 final luxury system */
.cinematic-intro {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.95), rgba(255,248,214,.92) 34%, rgba(255,236,241,.96) 74%),
    linear-gradient(135deg, rgba(228,6,19,.12), rgba(255,211,26,.18));
}
.intro-orbit {
  position:absolute;
  width:min(520px, 82vw);
  aspect-ratio:1;
  border-radius:50%;
  border:1px solid rgba(245,185,0,.28);
  box-shadow:0 0 38px rgba(255,211,26,.22), inset 0 0 50px rgba(228,6,19,.08);
  animation:introOrbit 2.2s ease-in-out infinite alternate;
}
.intro-orbit::before, .intro-orbit::after {
  content:""; position:absolute; inset:18px; border-radius:inherit; border:1px dashed rgba(228,6,19,.22);
}
.intro-orbit::after { inset:46px; border-color: rgba(255,211,26,.35); animation:introSpin 5s linear infinite; }
.intro-progress {
  width:min(260px, 72vw); height:3px; margin:18px auto 0; border-radius:999px; overflow:hidden; background:rgba(32,34,42,.08);
}
.intro-progress span {
  display:block; height:100%; width:100%;
  background:linear-gradient(90deg,var(--yellow),#fff,var(--red));
  transform-origin:left; animation:introLoad 1.55s ease-out both;
}
@keyframes introOrbit { from{transform:scale(.96) rotate(-4deg)} to{transform:scale(1.02) rotate(4deg)} }
@keyframes introSpin { to{transform:rotate(1turn)} }
@keyframes introLoad { from{transform:scaleX(0)} to{transform:scaleX(1)} }

.premium-hero { grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); }
.hero-stage {
  position:relative;
  min-height: min(500px, 58vh);
  border-radius:42px;
  overflow:hidden;
  padding:0;
  background:linear-gradient(135deg,#fff,#fff2c6);
  box-shadow:0 28px 88px rgba(108,33,0,.14);
}
.hero-stage .laser-scan { z-index:8; }
.hero-slide {
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.035);
  transition:opacity .75s ease, transform 1.1s ease;
}
.hero-slide.active { opacity:1; transform:scale(1); }
.hero-slide img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-slide-brand {
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.95), rgba(255,244,196,.88)),
    linear-gradient(135deg, rgba(255,211,26,.35), rgba(228,6,19,.12));
}
.hero-slide-brand img {
  width:min(72%, 560px);
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 26px 38px rgba(108,33,0,.14));
}
.hero-slide::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(32,20,10,.42));
  pointer-events:none;
}
.hero-slide-caption {
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:2;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 18px 48px rgba(32,34,42,.12);
}
.hero-slide-caption span {
  display:block;
  color:var(--red);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero-slide-caption strong {
  display:block;
  margin-top:6px;
  color:#2c2220;
  font-size:1.15rem;
  line-height:1.15;
}
.hero-dots {
  position:absolute;
  top:20px;
  right:22px;
  z-index:6;
  display:flex;
  gap:8px;
}
.hero-dots button {
  width:10px;
  height:10px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.58);
  box-shadow:0 0 0 1px rgba(255,255,255,.6);
}
.hero-dots button.active {
  width:28px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--yellow),var(--red));
}

/* compact luxury dashboard on public site */
.dual-highlight-grid {
  max-width:var(--max);
  margin-left:auto;
  margin-right:auto;
  padding-left:24px;
  padding-right:24px;
}

/* final dashboard polish */
.checkout-preview.compact-block,
.cta-band.compact-block {
  min-height:100%;
}
.cta-band.compact-block .primary-button {
  box-shadow:0 16px 34px rgba(228,6,19,.2);
}
.hero-copy h1 {
  background:linear-gradient(135deg,#3a241f,#860a13 48%,#d90012);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent !important;
}

/* customer portal link feeling */
.main-nav a[href="conta-pedidos.html"] {
  color:#7c111a;
}

/* premium restricted area hint in footer/pages */
.chat-widget { border-color:rgba(228,6,19,.08); }

@media(max-width:980px){
  .premium-hero { grid-template-columns:1fr; }
  .hero-stage { min-height:360px; }
  .dual-highlight-grid { padding-left:16px; padding-right:16px; }
}
@media(max-width:640px){
  .hero-stage { min-height:310px; border-radius:28px; }
  .hero-slide-caption { left:14px; right:14px; bottom:14px; padding:14px; border-radius:18px; }
  .hero-slide-caption strong { font-size:.98rem; }
  .intro-core img { width:190px; }
}


/* v12 hero adjustments */
.hero-copy h1 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #8b0612 !important;
  text-shadow: 0 2px 14px rgba(255,255,255,.45), 0 1px 0 rgba(255,255,255,.65);
}
.hero-stage {
  background: linear-gradient(145deg, #fffef7, #fff4c8 56%, #ffeef4);
}
.hero-slide--contain {
  display: grid;
  place-items: center;
  padding: 16px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.86), transparent 22%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,246,208,.9));
}
.hero-slide--contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 26px;
}
.hero-slide--cover img {
  object-fit: cover;
  object-position: center;
}
.hero-slide--contain::after {
  background: linear-gradient(180deg, transparent 52%, rgba(32,20,10,.26));
}
.hero-slide-brand img {
  width: min(62%, 420px);
}
@media(max-width:980px){
  .hero-copy h1 { font-size: clamp(2rem, 6vw, 3rem) !important; }
}
@media(max-width:640px){
  .hero-slide--contain { padding: 10px; }
  .hero-slide--contain img { border-radius: 18px; }
}

/* v13 intro + compact polish */
.intro-progress span { animation-duration: 3.55s !important; }
.modal .form-grid label input[type="date"] {
  color: var(--ink);
}


/* v14 sliders + premium background */
body {
  background:
    radial-gradient(circle at 10% 8%, rgba(255,255,255,.97), rgba(255,247,212,.72) 16%, transparent 36%),
    radial-gradient(circle at 88% 14%, rgba(255,232,238,.72), transparent 26%),
    linear-gradient(180deg, #fffef9 0%, #fff9e8 24%, #fffdf7 56%, #fff2f6 100%) !important;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .7;
  background:
    repeating-linear-gradient(102deg, rgba(245,185,0,.08) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.56) 0 1px, transparent 1px 54px),
    linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.28));
}
body::after {
  content: "";
  position: fixed;
  inset: -10% -8%;
  pointer-events: none;
  z-index: 0;
  opacity: .92;
  background:
    radial-gradient(circle at 8% 30%, rgba(255,211,26,.12), transparent 18%),
    linear-gradient(108deg, transparent 0 10%, rgba(255,211,26,.13) 13%, transparent 16%, transparent 38%, rgba(228,6,19,.11) 41%, transparent 45%, transparent 72%, rgba(255,211,26,.11) 75%, transparent 79%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent 58%, rgba(255,211,26,.14) 66%, transparent 73%);
  filter: blur(.2px);
  animation: bgSweepX 16s linear infinite;
}
@keyframes bgSweepX {
  0% { transform: translateX(-5%) translateY(0); }
  50% { transform: translateX(5%) translateY(1%); }
  100% { transform: translateX(-5%) translateY(0); }
}
main, .site-header, .top-ribbon, .cursor-laser, .cursor-laser-inner { position: relative; z-index: 1; }

.hero-stage {
  min-height: min(520px, 60vh);
}
.hero-slide--contain {
  padding: 14px;
}
.hero-slide--contain img {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,247,210,.96));
}
.hero-slide--soft::after {
  background: linear-gradient(180deg, transparent 46%, rgba(32,20,10,.22));
}

.services-stage {
  position: relative;
  min-height: min(540px, 64vh);
  overflow: hidden;
}
.services-stage .laser-scan { z-index: 6; }
.services-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform .95s ease;
  padding: clamp(10px, 1.3vw, 14px);
}
.services-slide.active {
  opacity: 1;
  transform: scale(1);
}
.services-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,247,210,.96));
}
.services-dots {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 7;
  display: flex;
  gap: 8px;
}
.services-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.58);
  box-shadow: 0 0 0 1px rgba(255,255,255,.62);
}
.services-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
}
.services-visual {
  min-height: min(540px, 64vh);
}
@media(max-width:980px){
  .services-stage, .services-visual { min-height: 420px; }
}
@media(max-width:640px){
  .hero-stage { min-height: 330px; }
  .services-stage, .services-visual { min-height: 300px; }
  .services-slide, .hero-slide--contain { padding: 8px; }
  .services-slide img, .hero-slide--contain img { border-radius: 18px; }
}

/* v15 mobile anti-flicker + service links */
.service-pill { text-decoration: none; color: inherit; }
.service-pill:hover { transform: translateY(-2px); }
@media (pointer: coarse), (max-width: 780px) {
  .primary-button::before,
  .add-button::before,
  .ghost-button::before,
  .cart-button::before,
  .service-pill::before,
  .back-to-top::before,
  .contact-button::before,
  .shimmer-button::before,
  .laser-scan,
  .cursor-beam,
  .cursor-laser,
  .cursor-laser-core {
    display: none !important;
    animation: none !important;
  }
  .primary-button,
  .add-button,
  .ghost-button,
  .cart-button,
  .service-pill,
  .back-to-top,
  .contact-button,
  .shimmer-button {
    animation: none !important;
    transition: transform .16s ease, box-shadow .16s ease !important;
  }
  body { cursor: auto !important; }
  a, button, input, textarea, select, label { cursor: auto !important; }
}

/* v16 requested refinements */
.intro-progress span { animation-duration: 2.55s !important; }
@media (pointer:fine) {
  body, a, button, label, select { cursor: auto !important; }
  a, button, .service-pill, .cart-button, .ghost-button, .primary-button, .owner-nav-link, .customer-orders-link { cursor: pointer !important; }
  input, textarea { cursor: text !important; }
  .cursor-beam, .cursor-laser, .cursor-laser-core { display: none !important; animation: none !important; }
}
.main-nav { align-items: center; }
.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.main-nav .customer-orders-link,
.main-nav .owner-nav-link {
  padding: 0 14px;
  border: 1px solid rgba(245,185,0,.26);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 22px rgba(32,34,42,.04);
}
.main-nav .owner-nav-link {
  color: #8b0612;
  background: linear-gradient(135deg, rgba(255,247,203,.88), rgba(255,238,242,.72));
}
.header-actions { align-items: center; }
@media(max-width:980px){
  .main-nav a, .main-nav .customer-orders-link, .main-nav .owner-nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 42px;
  }
}
.form-grid label input[name="cpf"],
.form-grid label input[name="customerCpf"] {
  letter-spacing: .04em;
}


/* v17 footer, hours and final credit */
.hours-status {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  margin:2px 0 12px;
  border-radius:999px;
  background:rgba(14,122,53,.10);
  border:1px solid rgba(14,122,53,.20);
  width:max-content;
  max-width:100%;
}
.hours-status strong { font-size:.84rem; color:#0f7b37; }
.hours-dot {
  width:10px; height:10px; border-radius:50%; display:block;
  background:#17b857; box-shadow:0 0 0 4px rgba(23,184,87,.14), 0 0 18px rgba(23,184,87,.48);
}
.hours-status.is-closed { background:rgba(228,6,19,.09); border-color:rgba(228,6,19,.18); }
.hours-status.is-closed strong { color:#bb1020; }
.hours-status.is-closed .hours-dot { background:#ef3143; box-shadow:0 0 0 4px rgba(239,49,67,.14), 0 0 18px rgba(239,49,67,.4); }
.footer-hours-card p strong { color:#7f0c15; }
.legal-note-centered, .legal-note-centered p, .legal-note-centered .legal-anvisa-line { text-align:center; }
.legal-note-centered { display:grid; justify-items:center; gap:12px; }
.pixeleco-credit {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  margin-top:4px; padding:8px 14px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.62);
  box-shadow:0 16px 40px rgba(32,34,42,.05); font-size:.84rem; color:var(--muted);
}
.pixeleco-credit span { font-weight:800; }
.pixeleco-credit img { width:116px; height:auto; display:block; border-radius:10px; }
@media (max-width: 640px) {
  .hours-status { width:100%; justify-content:center; }
  .pixeleco-credit { width:100%; }
  .pixeleco-credit img { width:104px; }
}

/* v17 simplify cursor to avoid flicker */
html, body, body * { cursor: auto; }
a, button, .cart-button, .ghost-button, .primary-button, .owner-nav-link, .customer-orders-link { cursor:pointer !important; }
.cursor-beam, .cursor-laser, .cursor-laser-core { display:none !important; opacity:0 !important; }
.main-nav {
  align-items:center;
  gap:10px;
}
.main-nav .customer-orders-link,
.main-nav .owner-nav-link {
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
@media (max-width:980px) {
  .main-nav .customer-orders-link,
  .main-nav .owner-nav-link { width:100%; justify-content:flex-start; }
}


/* v18 Pixeleco URL refinement */
.pixeleco-credit { gap: 12px; }
.pixeleco-credit small {
  display:block;
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.02em;
  color:#4f5967;
}
@media (max-width: 640px) {
  .pixeleco-credit { flex-wrap:wrap; }
  .pixeleco-credit small { width:100%; text-align:center; }
}

/* v20 cadastro + Pixeleco refinement */
.cart-register-link {
  width: 100%;
  border: 1px solid rgba(245,185,0,.24);
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(255,255,255,.78);
  color: #7f0c15;
  font-weight: 900;
  margin: 4px 0 6px;
  box-shadow: 0 10px 22px rgba(32,34,42,.04);
}
.cart-register-link:hover { transform: translateY(-1px); }
.pixeleco-credit {
  background: rgba(255,255,255,.82);
  border-color: rgba(245,185,0,.16);
}
.pixeleco-credit img {
  width: 132px;
  max-height: 44px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
.pixeleco-credit small { color: #4b5563; }
@media (max-width: 640px) {
  .pixeleco-credit img { width: 118px; }
}

/* v21 Pix QR Code checkout */
.pix-preview {
  margin: 16px 0 8px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,248,214,.86));
  border: 1px solid rgba(245,185,0,.26);
  box-shadow: 0 18px 40px rgba(32,34,42,.07);
}
.pix-preview[hidden], .card-payment-note[hidden] { display: none !important; }
.pix-preview-head { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px; }
.pix-preview-head span { display:block; color: var(--red); font-size:.72rem; font-weight:950; text-transform:uppercase; letter-spacing:.12em; }
.pix-preview-head strong { display:block; color:#7f0c15; margin-top:3px; }
.pix-preview-head small { font-weight:950; color:#0b7f3c; }
.pix-preview img { width: 188px; height: 188px; margin: 0 auto 12px; border-radius: 18px; background:#fff; padding: 8px; box-shadow: 0 12px 30px rgba(32,34,42,.08); }
.pix-preview label { display:grid; gap:6px; color: var(--muted); font-size:.78rem; font-weight:900; }
.pix-preview textarea { min-height: 74px; resize: vertical; border:1px solid rgba(245,185,0,.24); border-radius: 14px; padding: 10px; font: 700 .74rem/1.35 ui-monospace, SFMono-Regular, Menlo, monospace; background: #fff; color: #29313f; }
.pix-actions { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:10px; flex-wrap:wrap; }
.secondary-mini, .tiny-btn.pay { border:0; border-radius:999px; padding:9px 12px; background:#ecfff3; color:#0b7f3c; font-weight:950; }
.card-payment-note { margin: 14px 0 8px; padding: 13px 14px; border-radius: 18px; background: #fff7d6; border:1px solid rgba(245,185,0,.24); }
.card-payment-note strong { display:block; color:#7f0c15; margin-bottom:4px; }
.card-payment-note span { color:var(--muted); font-size:.86rem; line-height:1.5; }
@media(max-width:640px){ .pix-preview img { width:160px; height:160px; } .pix-actions { display:grid; } }

/* v22 checkout refinado */
.header-actions {
  justify-content: flex-end;
}
.checkout-modal-card .form-grid.compact .wide {
  grid-column: 1 / -1;
}
.modal-close {
  cursor: pointer !important;
}

/* v23 cartão online + sem área do cliente */
.card-fee-line {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(245,185,0,.34);
  color: #7f0c15;
}
.header-actions {
  gap: 10px;
}
