/* ==========================================================================
   SOARFLY — Identidade Visual
   Paleta oficial: #F5C924 (amarelo) · #0F0F0F (preto) · #FFFFFF (branco)
   Auxiliares: #F5F5F5 · #666666 · #D9AD0F
   Distribuição alvo: 60% claro · 25% preto · 10% amarelo · 5% cinzas
   ========================================================================== */

:root {
  /* Marca */
  --yellow: #F5C924;
  --yellow-dark: #D9AD0F;
  --yellow-soft: rgba(245, 201, 36, 0.14);
  --black: #0F0F0F;
  --black-soft: #1A1A1A;
  --white: #FFFFFF;

  /* Neutros (eixo de cinzas da paleta) */
  --surface: #F5F5F5;
  --surface-raised: #FAFAFA;
  --line: #E5E5E5;
  --line-strong: #D6D6D6;
  --text-secondary: #666666;
  --text-on-dark-secondary: #A3A3A3;
  --line-on-dark: #262626;

  /* Funcional (somente estados de erro) */
  --error: #C62828;

  /* Tipografia */
  --font: 'Archivo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;

  /* Efeitos */
  --shadow-card: 0 1px 2px rgba(15, 15, 15, 0.05), 0 6px 18px rgba(15, 15, 15, 0.06);
  --shadow-overlay: 0 18px 50px rgba(0, 0, 0, 0.28);
  --shadow-yellow: 0 6px 18px rgba(245, 201, 36, 0.38);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  color: var(--black);
  background: var(--black);
  font-family: var(--font);
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

.modal-open { overflow: hidden; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Estrutura da página
   ========================================================================== */

.gallery-stage {
  width: min(100%, 900px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
}

/* ==========================================================================
   Header — preto estrutural, ícones brancos, acentos amarelos
   ========================================================================== */

.navigation {
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: var(--white);
  background: var(--black);
}

.navigation-side { display: flex; align-items: center; gap: 24px; }

.icon-button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}
.icon-button:hover, .icon-button:focus-visible { color: var(--yellow); transform: scale(1.06); }

.menu-icon { display: flex; width: 23px; height: 18px; flex-direction: column; justify-content: space-between; }
.menu-icon i { display: block; width: 23px; height: 2px; border-radius: 2px; background: currentColor; }

.logo-reserved {
  position: absolute;
  left: 50%;
  width: 118px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 8px;
  object-fit: contain;
}

.cart-icon { display: block; width: 23px; height: 23px; color: inherit; }

/* Faixa de marca sob o header */
.divider { height: 3px; background: var(--yellow); }

/* ==========================================================================
   Galeria — palco claro para o produto
   ========================================================================== */

.main-image {
  position: relative;
  aspect-ratio: 1;
  height: auto;
  min-height: 0;
  overflow: hidden;
  touch-action: pan-y;
  display: grid;
  place-items: center;
  background: var(--surface);
  background-image: linear-gradient(150deg, #FCFCFC 0%, #F2F2F2 55%, #ECECEC 100%);
}

.main-product-image {
  position: absolute;
  inset: 8px;
  z-index: 1;
  display: block;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
  pointer-events: none;
}
.main-product-image-next { visibility: hidden; z-index: 2; }
.main-product-image.slide-exit-left { animation: main-image-exit-left 320ms var(--ease) both; }
.main-product-image.slide-exit-right { animation: main-image-exit-right 320ms var(--ease) both; }
.main-product-image-next.slide-enter-left { visibility: visible; animation: main-image-enter-left 320ms var(--ease) both; }
.main-product-image-next.slide-enter-right { visibility: visible; animation: main-image-enter-right 320ms var(--ease) both; }

@keyframes main-image-exit-left { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@keyframes main-image-exit-right { from { transform: translateX(0); } to { transform: translateX(100%); } }
@keyframes main-image-enter-left { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes main-image-enter-right { from { transform: translateX(-100%); } to { transform: translateX(0); } }

/* Linhas dinâmicas sutis — textura esportiva clara */
.main-image::before, .main-image::after {
  content: '';
  position: absolute;
  width: 160%;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  transform: rotate(-24deg);
}
.main-image::before { top: 27%; }
.main-image::after { top: 70%; transform: rotate(19deg); }

/* Arte de placeholder (preservada) */
.placeholder-art { position: absolute; inset: 0; opacity: 0.55; }
.main-image[data-slide="1"] .placeholder-art { filter: hue-rotate(22deg); }
.main-image[data-slide="2"] .placeholder-art { filter: hue-rotate(48deg); }
.main-image[data-slide="3"] .placeholder-art { filter: hue-rotate(82deg); }
.main-image[data-slide="4"] .placeholder-art { filter: hue-rotate(140deg); }
.main-image[data-slide="5"] .placeholder-art { filter: hue-rotate(200deg); }
.art-surface { position: absolute; width: 60%; height: 53%; left: 20%; bottom: 5%; border-radius: 50% 50% 0 0; background: #D8D8D8; box-shadow: inset 0 0 50px #C4C4C4; }
.art-shape { position: absolute; display: block; background: #C0C0C0; box-shadow: 5px 8px 10px rgba(15, 15, 15, 0.18); }
.shape-a { width: 24%; height: 12%; left: 7%; top: 37%; transform: rotate(-20deg); border-radius: 9px; }
.shape-b { width: 24%; height: 13%; right: 7%; top: 33%; transform: rotate(23deg); border-radius: 50% 10px 10px 50%; }
.shape-c { width: 19%; height: 9%; right: 6%; bottom: 13%; transform: rotate(-31deg); border-radius: 8px; }

.placeholder-note { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 31px 55px; color: var(--text-secondary); border: 2px dashed #B5B5B5; border-radius: 10px; background: rgba(255, 255, 255, 0.75); text-align: center; }
.placeholder-note strong { font-size: clamp(18px, 3vw, 28px); font-weight: 800; color: var(--black); }
.placeholder-note small { font-size: 13px; color: var(--text-secondary); }
.placeholder-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 2px solid #9A9A9A; border-radius: 50%; font-size: 30px; font-weight: 300; line-height: 1; }

.gallery-arrow {
  position: absolute;
  z-index: 5;
  top: 52%;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 3px 12px rgba(15, 15, 15, 0.22);
  font-size: 32px;
  line-height: 29px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.gallery-arrow:hover, .gallery-arrow:focus-visible { background: var(--yellow); transform: translateY(-50%) scale(1.07); }
.previous { left: 17px; }
.next { right: 17px; }

/* Contador — pill preto com número amarelo */
.counter {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  padding: 5px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(15, 15, 15, 0.88);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.counter span { color: var(--yellow); font-size: 15px; font-weight: 800; }

/* ==========================================================================
   Miniaturas
   ========================================================================== */

.thumbnails {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 17px;
  overflow-x: auto;
  background: var(--white);
  scrollbar-width: none;
}
.thumbnails::-webkit-scrollbar { display: none; }

.thumbnail {
  flex: 0 0 78px;
  height: 65px;
  padding: 3px;
  border: 2px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.thumbnail:hover { border-color: #B8B8B8; transform: translateY(-1px); }
.thumbnail img { display: block; width: 100%; height: 100%; border-radius: 5px; object-fit: cover; }
.thumbnail.active { border-color: var(--yellow); border-width: 3px; box-shadow: 0 0 0 3px var(--yellow-soft); }
.thumbnail:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* ==========================================================================
   Barra de oferta — momento amarelo da marca
   ========================================================================== */

.offer-bar {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  color: var(--black);
  background: var(--yellow);
}

.offer-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: clamp(15px, 2.5vw, 21px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
}

.offer-end { flex: 0 0 auto; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; }

.timer { display: flex; flex: 0 0 auto; align-items: center; gap: 4px; }
.timer b {
  min-width: 36px;
  padding: 6px 4px;
  border-radius: 6px;
  color: var(--yellow);
  background: var(--black);
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.timer i { font-size: 20px; font-style: normal; font-weight: 900; }

/* ==========================================================================
   Preço e informações do produto
   ========================================================================== */

.price-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px 24px;
  color: var(--black);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.price-group { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; min-width: 0; }
.price-line { display: flex; align-items: flex-end; gap: 14px; }

.current-price { display: flex; align-items: flex-start; gap: 5px; white-space: nowrap; }
.current-price .currency { margin-top: 7px; font-size: 17px; font-weight: 700; }
.current-price strong {
  font-size: clamp(35px, 5vw, 48px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.old-price { display: flex; align-items: center; gap: 10px; padding-bottom: 4px; white-space: nowrap; transform: translateY(-8px); }
.old-price span { color: var(--text-secondary); font-size: 15px; text-decoration: line-through; }
.old-price b {
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--black);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.installment { color: var(--text-secondary); font-size: 14px; white-space: nowrap; }
.installment b { margin-left: 5px; font-size: 20px; line-height: 0; font-weight: 400; vertical-align: -2px; }

.sales-group { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; color: var(--text-secondary); white-space: nowrap; }
.sales-group strong { font-size: 14px; font-weight: 700; color: var(--black); }

.product-info { padding: 17px 28px 18px; color: var(--black); background: var(--white); }

.best-seller {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 5px;
  color: var(--black);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-info h1 { max-width: 760px; margin: 0; font-size: 19px; line-height: 1.3; font-weight: 800; letter-spacing: -0.01em; }
.product-info p { max-width: 760px; margin: 6px 0 0; color: var(--text-secondary); font-size: 14px; line-height: 1.35; }

/* ==========================================================================
   Cartão Pix
   ========================================================================== */

.pix-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 28px 22px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--black);
  background: var(--white);
  white-space: nowrap;
}
.pix-card img { display: block; width: 27px; height: 27px; object-fit: contain; flex: 0 0 27px; }
.pix-off { font-size: 14px; }
.pix-off strong { margin-right: 4px; font-weight: 800; }
.priority-badge {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--yellow);
  background: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Área de compra — CTA primário amarelo
   ========================================================================== */

.purchase-area { padding: 0 28px 28px; background: var(--white); }

.buy-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  color: var(--black);
  background: var(--yellow);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: var(--shadow-yellow);
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.buy-button:hover, .buy-button:focus-visible { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(217, 173, 15, 0.42); }
.buy-button:active { transform: translateY(0); box-shadow: var(--shadow-yellow); }

.service-card {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 78px;
  margin-top: 12px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-card); }

.service-icon-circle {
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
}
.service-icon { display: block; width: 25px; height: 25px; }

.service-copy { display: flex; flex-direction: column; gap: 5px; }
.service-copy strong { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.service-copy span { color: var(--text-secondary); font-size: 13px; }

/* ==========================================================================
   Proteção do cliente
   ========================================================================== */

.protection-divider { height: 1px; margin: -16px 28px 0; background: var(--line); }

.protection-trigger {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(100% - 56px);
  margin: 20px 28px 28px;
  padding: 16px 18px 17px;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--black);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.protection-trigger:hover, .protection-trigger:focus-visible { border-color: var(--line-strong); background: #F0F0F0; transform: translateY(-1px); }

.protection-heading { display: flex; align-items: center; gap: 13px; }

.protection-icon-circle {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(245, 201, 36, 0.4);
  border-radius: 50%;
  background: var(--black);
}
.protection-icon-circle img { width: 21px; height: 21px; }

.protection-trigger-title { flex: 1; font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.protection-trigger-mark { color: var(--text-secondary); font-size: 25px; font-weight: 300; }

.protection-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}
.protection-benefits span { display: flex; align-items: center; gap: 7px; min-width: 0; color: var(--text-secondary); font-size: 12px; font-weight: 500; white-space: nowrap; }
.protection-benefits img { flex: 0 0 15px; width: 15px; height: 15px; padding: 3px; border-radius: 50%; background: var(--black); }

/* ==========================================================================
   Modais — base
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(3px);
}
.modal-backdrop[hidden] { display: none; }

.protection-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(65vw, 700px);
  max-height: 80vh;
  overflow: hidden;
  padding: 30px 34px 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow-overlay);
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--text-secondary);
  background: var(--surface);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease;
}
.modal-close:hover, .modal-close:focus-visible { color: var(--black); background: var(--yellow); }
.protection-modal > .modal-close { z-index: 3; }

.modal-heading { position: sticky; top: 0; z-index: 2; display: flex; flex: 0 0 auto; align-items: center; gap: 12px; padding: 0 35px 16px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.modal-heading img { width: 26px; height: 26px; padding: 4px; border-radius: 50%; background: var(--black); }
.modal-heading h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }

.protection-content { display: flex; min-height: 0; flex-direction: column; overflow-y: auto; }
.protection-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.protection-item:last-child { border-bottom: 0; padding-bottom: 0; }
.protection-item h3 { margin: 0 0 9px; font-size: 15px; font-weight: 800; }
.protection-item p { margin: 0 0 9px; color: var(--text-secondary); font-size: 13px; line-height: 1.55; }
.protection-item p:last-child { margin-bottom: 0; }
.protection-item a { color: var(--black); font-size: 13px; font-weight: 700; text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.protection-item a:hover, .protection-item a:focus-visible { color: var(--yellow-dark); }

.security-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: -1px 0 10px; }
.security-badges span { padding: 5px 8px; border: 1px solid var(--line-strong); border-radius: 5px; color: var(--text-secondary); background: var(--surface); font-size: 11px; font-weight: 700; }

/* ==========================================================================
   Vídeos de criadores — seção cinza clara
   ========================================================================== */

.creator-videos { padding: 0 0 34px; background: var(--surface); }
.creator-videos-divider { height: 1px; margin: 3px 28px 25px; background: var(--line); }

.creator-videos h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 28px 16px;
  padding-top: 22px;
  color: var(--black);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.creator-videos h2::before { content: ''; flex: 0 0 18px; width: 18px; height: 5px; border-radius: 3px; background: var(--yellow); }

.video-track {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 0 28px 5px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x;
}
.video-track::-webkit-scrollbar { display: none; }

.creator-video-card {
  position: relative;
  flex: 0 0 190px;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--black-soft);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.creator-video-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(15, 15, 15, 0.16); }

.creator-thumbnail, .creator-video-player { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.creator-thumbnail { z-index: 1; }
.creator-thumbnail[hidden], .creator-play[hidden], .creator-video-player[hidden] { display: none; }
.creator-video-player { z-index: 3; }

.creator-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.85);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.creator-video-card:hover .creator-play { transform: translate(-50%, -50%) scale(1.08); background: var(--black); }
.creator-play img { width: 20px; height: 20px; margin-left: 2px; }

.video-modal-backdrop {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
}
.video-modal-backdrop[hidden] { display: none; }
.video-modal { position: relative; width: min(75vw, 420px); max-height: 80vh; padding: 10px; border-radius: 14px; background: var(--black); box-shadow: var(--shadow-overlay); }
.video-modal-player { display: block; width: 100%; max-height: calc(80vh - 40px); border-radius: 8px; object-fit: contain; cursor: pointer; }
.video-modal-close {
  position: absolute;
  z-index: 2;
  top: -15px;
  right: -15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 2px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.video-modal-close:hover, .video-modal-close:focus-visible { background: var(--yellow-dark); transform: scale(1.06); }

/* ==========================================================================
   Avaliações — estrelas amarelas, fundo branco
   ========================================================================== */

.customer-reviews { padding: 0 0 34px; background: var(--white); }
.customer-reviews-divider { height: 1px; margin: 3px 28px 25px; background: var(--line); }

.customer-reviews h2 { display: flex; align-items: center; gap: 7px; margin: 0 28px 16px; padding-top: 22px; color: var(--black); font-size: 19px; font-weight: 600; }
.customer-reviews h2 strong { font-weight: 800; font-variant-numeric: tabular-nums; }
.review-star { color: var(--yellow); font-size: 21px; }
.review-separator { margin: 0 5px; color: var(--line-strong); }
.review-count { color: var(--text-secondary); font-size: 16px; font-weight: 500; }

.reviews-track {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 0 28px 11px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-thumbnail {
  flex: 0 0 105px;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.review-thumbnail:hover { border-color: var(--yellow); transform: translateY(-2px); }
.review-thumbnail img { display: block; width: 100%; height: 100%; object-fit: cover; }
.review-thumbnail:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

.review-modal-backdrop {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
}
.review-modal-backdrop[hidden] { display: none; }
.review-modal { position: relative; max-width: min(88vw, 720px); max-height: 86vh; padding: 10px; border-radius: 14px; background: var(--black); box-shadow: var(--shadow-overlay); }
.review-modal-image { display: block; max-width: 100%; max-height: calc(86vh - 20px); border-radius: 8px; object-fit: contain; }
.review-modal-close {
  position: absolute;
  z-index: 2;
  top: -15px;
  right: -15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 2px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.review-modal-close:hover, .review-modal-close:focus-visible { background: var(--yellow-dark); transform: scale(1.06); }

.reviews-list { margin: 0 28px; }
.customer-review { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--black); }
.customer-review:first-child { padding-top: 5px; }
.customer-review:last-child { border-bottom: 0; }

.review-author { display: flex; align-items: center; gap: 10px; }
.review-author img { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; object-fit: cover; }
.review-author strong { font-size: 15px; font-weight: 700; }

.review-meta { display: flex; align-items: center; gap: 8px; margin: 7px 0 8px 46px; color: var(--text-secondary); font-size: 13px; }
.review-stars { color: var(--yellow); letter-spacing: 1px; font-size: 16px; }
.customer-review p { margin: 0 0 10px 46px; color: #3D3D3D; font-size: 14px; line-height: 1.5; white-space: normal; }

.review-photos { display: flex; gap: 8px; margin-left: 46px; overflow-x: auto; scrollbar-width: none; }
.review-photos::-webkit-scrollbar { display: none; }
.review-photo { flex: 0 0 112px; width: 112px; height: 112px; padding: 0; border: 0; border-radius: 8px; overflow: hidden; background: var(--surface); cursor: pointer; transition: transform 0.18s ease; }
.review-photo:hover { transform: translateY(-2px); }
.review-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.review-photo:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* Botão secundário — preto, hover amarelo */
.more-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 56px);
  min-height: 48px;
  margin: 18px 28px 0;
  padding: 10px 22px;
  gap: 10px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.more-reviews-arrow { display: inline-block; font-size: 16px; font-weight: 400; line-height: 1; transform: scaleX(0.78); transform-origin: left center; }
.more-reviews:hover, .more-reviews:focus-visible { color: var(--black); background: var(--yellow); border-color: var(--yellow); transform: translateY(-1px); }

.review-list-modal-backdrop {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
}
.review-list-modal-backdrop[hidden] { display: none; }

/* Cabeçalho fixo; apenas a lista de continuação rola */
.review-list-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(88vw, 650px);
  max-height: 80vh;
  overflow: hidden;
  padding: 26px 28px 30px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-overlay);
}
.review-list-modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-secondary);
  background: var(--surface);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease;
}
.review-list-modal-close:hover, .review-list-modal-close:focus-visible { color: var(--black); background: var(--yellow); border-color: var(--yellow); }

.review-list-heading {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-right: 48px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
}
.review-list-heading .review-star { font-size: 20px; }
.review-list-heading .review-count { font-size: 14px; font-weight: 500; }

.remaining-reviews { min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.review-list-modal .reviews-list, .remaining-reviews { margin: 0; }

/* ==========================================================================
   Sobre o produto — seção cinza clara
   ========================================================================== */

.about-product { padding: 0 28px 46px; color: var(--black); background: var(--surface); }
.about-product-divider { height: 1px; margin: 3px 0 25px; background: var(--line); }

.about-product h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding-top: 22px;
  color: var(--black);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.about-product h2::before { content: ''; flex: 0 0 18px; width: 18px; height: 5px; border-radius: 3px; background: var(--yellow); }

.about-product h3 { margin: 0 0 15px; color: var(--black); font-size: 17px; font-weight: 800; }
.about-product h4 { margin: 28px 0 13px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--black); font-size: 16px; font-weight: 800; }
.about-product p { margin: 0 0 14px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.about-product p strong { color: var(--black); }
.about-product .description-welcome { color: var(--black); font-size: 16px; }
.about-product .subheading { margin-top: 24px; }

.about-product ul { margin: 0 0 14px; padding-left: 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.65; }
.about-product li { padding-left: 3px; }
.about-product li::marker { color: var(--yellow-dark); }

.about-product .feature-list { padding-left: 0; list-style: none; }
.about-product .feature-list > li { display: flex; flex-direction: column; margin-bottom: 15px; padding-left: 0; }
.about-product .feature-list strong { margin-bottom: 3px; color: var(--black); }

.about-product dl { display: flex; gap: 5px; margin: 0; color: var(--text-secondary); font-size: 14px; }
.about-product dt, .about-product dd { margin: 0; }
.about-product dd { font-weight: 700; }

/* ==========================================================================
   Newsletter — faixa preta de marca
   ========================================================================== */

.newsletter {
  padding: 34px 28px 36px;
  color: var(--white);
  background: var(--black);
  border-top: 3px solid var(--yellow);
}

.newsletter h2 { margin: 0 0 8px; color: var(--white); font-size: 20px; font-weight: 900; font-style: italic; letter-spacing: 0.05em; }
.newsletter p { margin: 0 0 18px; color: var(--text-on-dark-secondary); font-size: 14px; line-height: 1.45; }

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 620px;
  min-height: 48px;
  border: 1px solid #333333;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.newsletter-form:focus-within { border-color: var(--yellow); box-shadow: 0 0 0 3px var(--yellow-soft); }

.newsletter-form input { min-width: 0; flex: 1; padding: 0 14px; border: 0; color: var(--black); background: transparent; font: inherit; font-size: 13px; outline: 0; }
.newsletter-form input::placeholder { color: #8C8C8C; }

.newsletter-form button {
  display: grid;
  width: 54px;
  place-items: center;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--black);
  background: var(--yellow);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease;
}
.newsletter-form button:hover, .newsletter-form button:focus-visible { background: var(--yellow-dark); }

/* ==========================================================================
   Footer — preto estrutural
   ========================================================================== */

.site-footer {
  padding: 30px 28px calc(22px + 78px + env(safe-area-inset-bottom));
  color: var(--text-on-dark-secondary);
  background: var(--black);
  border-top: 1px solid var(--line-on-dark);
}

.footer-group { padding: 0 0 24px; }
.footer-group + .footer-group { padding-top: 22px; border-top: 1px solid var(--line-on-dark); }

.footer-group h2 { margin: 0 0 14px; color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; }

.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; row-gap: 8px; }
.footer-links a { min-width: 0; padding: 3px 0; color: var(--text-on-dark-secondary); font-size: 12px; line-height: 1.35; text-decoration: none; transition: color 0.15s ease; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--yellow); }

.footer-copyright { margin: 0; padding-top: 20px; border-top: 1px solid var(--line-on-dark); color: var(--text-secondary); font-size: 11px; text-align: center; }

/* ==========================================================================
   Barra de ações fixa
   ========================================================================== */

.action-bar {
  position: fixed;
  z-index: 10;
  right: 12px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 12px;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.5fr;
  width: auto;
  min-height: 64px;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(15, 15, 15, 0.22);
}

.action-bar-button {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  color: var(--black);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.action-bar-button + .action-bar-button { border-left: 1px solid var(--line); border-radius: 0; }
.action-bar-button:hover, .action-bar-button:focus-visible { background: var(--surface); }
.action-bar-button svg { flex: 0 0 23px; width: 23px; height: 23px; }
.action-bar .secondary-action[data-action="chat"] svg, .action-bar .secondary-action[data-action="cart"] svg { transform: translateX(7px); }

/* Secundário da barra: preto */
.action-bar .secondary-action[data-action="cart"] {
  margin-left: 5px;
  border-left: 0;
  border-radius: 11px;
  color: var(--white);
  background: var(--black);
}
.action-bar .secondary-action[data-action="cart"]:hover,
.action-bar .secondary-action[data-action="cart"]:focus-visible { color: var(--black); background: var(--yellow); }

/* Primário da barra: amarelo */
.primary-action {
  margin-left: 5px;
  border-left: 0;
  border-radius: 11px !important;
  color: var(--black);
  background: var(--yellow);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.primary-action:hover, .primary-action:focus-visible { background: var(--yellow-dark) !important; color: var(--black); }

/* ==========================================================================
   Modal de atendimento — sheet inferior preto/amarelo
   ========================================================================== */

.support-modal-backdrop {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 0 20px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(3px);
}
.support-modal-backdrop[hidden] { display: none; }

.support-modal {
  display: flex;
  flex-direction: column;
  justify-self: center;
  width: min(88vw, 520px);
  height: min(60vh, 620px);
  max-height: 80vh;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.22);
  animation: support-sheet-in 220ms ease-out both;
}
.support-modal.is-closing { animation: support-sheet-out 220ms ease-in both; }
@keyframes support-sheet-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes support-sheet-out { from { transform: translateY(0); } to { transform: translateY(100%); } }

.support-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 12px 17px;
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--white);
  background: var(--black);
}
.support-title-group { display: flex; align-items: center; gap: 11px; }
.support-logo-placeholder, .support-avatar { display: block; width: 30px; height: 30px; border: 0; border-radius: 50%; background: transparent; object-fit: cover; padding: 0; }
.support-header h2 { margin: 0; color: var(--white); font-size: 15px; font-weight: 800; letter-spacing: 0.12em; }

.support-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.support-close:hover, .support-close:focus-visible { color: var(--black); background: var(--yellow); border-color: var(--yellow); }

.support-conversation { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 20px 20px 14px; overscroll-behavior: contain; }

.support-message { display: flex; align-items: flex-start; gap: 9px; max-width: 88%; margin-bottom: 14px; }
.support-message p { margin: 0; padding: 10px 12px; border-radius: 10px; font-size: 13px; line-height: 1.45; white-space: pre-wrap; }
.support-message-auto p { color: var(--black); background: var(--surface); border-top-left-radius: 3px; }
.support-message-user { justify-content: flex-end; max-width: 88%; margin-left: auto; }
.support-message-user p { color: var(--white); background: var(--black); border-top-right-radius: 3px; }
.support-avatar { flex: 0 0 30px; border: 0; background: transparent; object-fit: cover; }

.support-options { display: flex; flex-direction: column; gap: 8px; margin: 3px 0 20px 39px; }
.support-option {
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--black);
  background: var(--white);
  font-size: 12px;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.support-option:hover, .support-option:focus-visible { border-color: var(--yellow-dark); background: var(--yellow-soft); }

.support-footer { display: flex; flex: 0 0 auto; padding: 8px 14px 0; border-top: 1px solid var(--line); background: var(--white); }
.support-footer .support-human-option {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.support-footer .support-human-option svg { width: 18px; height: 18px; }
.support-footer .support-human-option:hover, .support-footer .support-human-option:focus-visible { color: var(--white); background: var(--black); }

.support-composer { display: flex; flex: 0 0 auto; gap: 8px; padding: 11px 14px calc(11px + env(safe-area-inset-bottom)); border-top: 0; background: var(--white); }
.support-composer input {
  min-width: 0;
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--black);
  background: var(--surface);
  font-size: 13px;
  outline: 0;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.support-composer input:focus { border-color: var(--yellow); background: var(--white); box-shadow: 0 0 0 3px var(--yellow-soft); }
.support-composer button {
  flex: 0 0 auto;
  padding: 0 16px;
  border: 0;
  border-radius: 9px;
  color: var(--black);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.18s ease;
}
.support-composer button:hover, .support-composer button:focus-visible { background: var(--yellow-dark); }

/* ==========================================================================
   Modal do carrinho
   ========================================================================== */

.cart-modal-backdrop {
  position: fixed;
  z-index: 35;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(3px);
}
.cart-modal-backdrop[hidden] { display: none; }

.cart-modal {
  position: relative;
  width: min(88vw, 520px);
  padding: 24px 25px 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow-overlay);
  animation: cart-modal-in 180ms ease-out both;
}
@keyframes cart-modal-in { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.cart-modal-close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-secondary);
  background: var(--surface);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease;
}
.cart-modal-close:hover, .cart-modal-close:focus-visible { color: var(--black); background: var(--yellow); border-color: var(--yellow); }

.cart-product-summary { display: flex; align-items: center; gap: 17px; padding-right: 38px; }
.cart-product-pricing { align-self: auto; }
.cart-product-image { width: 120px; height: 120px; flex: 0 0 120px; border: 1px solid var(--line); border-radius: 10px; object-fit: cover; }
.cart-product-pricing h2 { margin: 0 0 14px; color: var(--black); font-size: 15px; font-weight: 800; }
.cart-current-price { display: block; color: var(--black); font-size: 28px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

.cart-old-price { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.cart-old-price span { color: var(--text-secondary); font-size: 13px; text-decoration: line-through; }
.cart-old-price b { padding: 4px 7px; border-radius: 5px; color: var(--black); background: var(--yellow); font-size: 11px; font-weight: 800; }

.cart-variation { margin-top: 24px; }
.cart-variation h3 { margin: 0 0 11px; color: var(--black); font-size: 14px; font-weight: 800; }

.voltage-options { display: flex; gap: 9px; }
.voltage-options button {
  flex: 1;
  min-height: 42px;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--black);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.voltage-options button:hover, .voltage-options button:focus-visible { border-color: var(--yellow-dark); background: var(--yellow-soft); }
.voltage-options button.selected {
  border-color: var(--yellow);
  border-width: 2px;
  color: var(--black);
  background: var(--yellow-soft);
  font-weight: 800;
  box-shadow: 0 0 0 3px var(--yellow-soft);
}

.voltage-error { margin: 8px 0 0; color: var(--error); font-size: 11px; font-weight: 600; }

.cart-buy-button {
  width: 100%;
  min-height: 48px;
  margin-top: 24px;
  border: 0;
  border-radius: 11px;
  color: var(--black);
  background: var(--yellow);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--shadow-yellow);
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.cart-buy-button:hover, .cart-buy-button:focus-visible { background: var(--yellow-dark); transform: translateY(-1px); }
.cart-buy-button:active { transform: translateY(0); }

/* ==========================================================================
   Responsivo — até 520px
   ========================================================================== */

@media (max-width: 520px) {
  .navigation { height: 64px; padding-inline: 14px; }
  .navigation-side { gap: 14px; }
  .logo-reserved { width: 100px; height: 36px; font-size: 11px; letter-spacing: 3px; }

  .main-image { height: auto; min-height: 0; max-height: none; }
  .placeholder-note { padding: 24px 30px; }
  .gallery-arrow { width: 32px; height: 32px; font-size: 29px; line-height: 26px; }
  .counter { right: 12px; bottom: 12px; padding: 4px 10px; font-size: 12px; }
  .counter span { font-size: 13px; }

  .thumbnails { gap: 7px; padding-inline: 10px; }
  .thumbnail { flex-basis: 68px; height: 59px; }

  .offer-bar { gap: 6px; padding-inline: 10px; }
  .offer-label { font-size: clamp(10px, 3.2vw, 13px); letter-spacing: 0.02em; }
  .offer-end { font-size: 8px; letter-spacing: 0.06em; }
  .timer { gap: 2px; }
  .timer b { min-width: 26px; padding: 5px 3px; font-size: 13px; }
  .timer i { font-size: 15px; }

  .price-info { align-items: flex-start; gap: 8px; padding: 18px 14px 20px; }
  .price-group { gap: 7px; }
  .price-line { gap: 6px; }
  .current-price .currency { margin-top: 5px; font-size: 14px; }
  .current-price strong { font-size: 34px; }
  .old-price { gap: 6px; padding-bottom: 0; }
  .old-price span { font-size: 12px; }
  .old-price b { padding: 3px 5px; font-size: 10px; }
  .installment { font-size: 11px; }
  .installment b { font-size: 17px; }
  .sales-group { gap: 6px; }
  .sales-group strong { font-size: 11px; }

  .product-info { padding: 14px 14px 16px; }
  .best-seller { margin-bottom: 7px; font-size: 10px; }
  .product-info h1 { font-size: 16px; line-height: 1.32; }
  .product-info p { margin-top: 5px; font-size: 12px; line-height: 1.4; }

  .pix-card { gap: 7px; margin: 0 14px 18px; padding: 8px; }
  .pix-card img { width: 24px; height: 24px; flex-basis: 24px; }
  .pix-off { font-size: 11px; }
  .pix-off strong { margin-right: 2px; }
  .priority-badge { padding: 5px 7px; font-size: 10px; }

  .purchase-area { padding: 0 14px 22px; }
  .buy-button { min-height: 48px; font-size: 16px; }
  .service-card { gap: 13px; min-height: 73px; padding: 11px 13px; }
  .service-icon-circle { flex-basis: 38px; width: 38px; height: 38px; }
  .service-icon { width: 22px; height: 22px; }
  .service-copy { gap: 4px; }
  .service-copy strong { font-size: 14px; }
  .service-copy span { font-size: 11px; }

  .protection-divider { margin: -10px 14px 0; }
  .protection-trigger { width: calc(100% - 28px); margin: 9px 14px 22px; padding: 13px 14px 14px; gap: 12px; }
  .protection-trigger-title { font-size: 14px; }
  .protection-icon-circle { flex-basis: 38px; width: 38px; height: 38px; }
  .protection-icon-circle img { width: 20px; height: 20px; }
  .protection-benefits { gap: 9px 12px; padding-top: 11px; }
  .protection-benefits span { gap: 6px; font-size: 11px; }
  .protection-benefits img { flex-basis: 13px; width: 13px; height: 13px; }

  .modal-backdrop { padding: 16px; }
  .protection-modal { width: 100%; max-height: 80vh; padding: 25px 20px 24px; }
  .modal-heading h2 { font-size: 19px; }
  .protection-item { padding: 15px 0; }
  .protection-item h3 { font-size: 14px; }
  .protection-item p { font-size: 12px; }

  .creator-videos { padding-bottom: 26px; }
  .creator-videos-divider { margin: 2px 14px 20px; }
  .creator-videos h2 { margin: 0 14px 14px; padding-top: 18px; font-size: 18px; }
  .video-track { gap: 8px; padding-inline: 14px; }
  .creator-video-card { flex-basis: calc((100vw - 56px) / 3); border-radius: 9px; }
  .creator-play { width: 36px; height: 36px; }
  .creator-play img { width: 17px; height: 17px; }

  .customer-reviews { padding-bottom: 26px; }
  .customer-reviews-divider { margin: 2px 14px 20px; }
  .customer-reviews h2 { gap: 5px; margin: 0 14px 14px; padding-top: 18px; font-size: 16px; }
  .review-star { font-size: 18px; }
  .review-separator { margin: 0 2px; }
  .review-count { font-size: 14px; }
  .reviews-track { gap: 8px; padding-inline: 14px; }
  .review-thumbnail { flex-basis: calc((100vw - 56px) / 3); border-radius: 8px; }
  .review-modal-backdrop { padding: 16px; }
  .review-modal { max-width: 88vw; max-height: 82vh; padding: 8px; }
  .review-modal-image { max-height: calc(82vh - 16px); }
  .review-modal-close { top: -13px; right: -13px; width: 32px; height: 32px; }

  .reviews-list { margin: 0 14px; }
  .customer-review { padding: 16px 0; }
  .customer-review:first-child { padding-top: 4px; }
  .review-author img { width: 34px; height: 34px; }
  .review-author strong { font-size: 14px; }
  .review-meta { margin-left: 44px; font-size: 12px; }
  .review-stars { font-size: 15px; }
  .customer-review p { margin-left: 44px; font-size: 13px; }
  .review-photos { margin-left: 44px; }
  .review-photo { flex-basis: 100px; width: 100px; height: 100px; }
  .more-reviews { width: calc(100% - 28px); margin: 16px 14px 0; font-size: 13px; }
  .review-list-modal-backdrop { padding: 16px; }
  .review-list-modal { width: 100%; max-height: 80vh; padding: 24px 18px 22px; }
  .review-list-modal-close { top: 12px; right: 12px; width: 34px; height: 34px; }
  .review-list-heading { gap: 5px; font-size: 15px; }
  .review-list-heading .review-star { font-size: 18px; }

  .about-product { padding: 0 14px 32px; }
  .about-product-divider { margin: 2px 0 20px; }
  .about-product h2 { margin-bottom: 20px; padding-top: 18px; font-size: 19px; }
  .about-product h3 { margin-bottom: 12px; font-size: 16px; }
  .about-product h4 { margin-top: 24px; padding-top: 17px; font-size: 15px; }
  .about-product p { margin-bottom: 12px; font-size: 13px; line-height: 1.55; }
  .about-product .description-welcome { font-size: 15px; }
  .about-product ul { padding-left: 18px; font-size: 13px; line-height: 1.6; }
  .about-product .feature-list { padding-left: 0; }
  .about-product .feature-list > li { margin-bottom: 13px; }
  .about-product dl { font-size: 13px; }

  .newsletter { padding: 26px 14px 28px; }
  .newsletter h2 { font-size: 17px; }
  .newsletter p { margin-bottom: 15px; font-size: 12px; }
  .newsletter-form { min-height: 44px; }
  .newsletter-form input { padding-inline: 12px; font-size: 12px; }
  .newsletter-form button { width: 48px; font-size: 22px; }

  .site-footer { padding: 25px 14px calc(18px + 78px + env(safe-area-inset-bottom)); }
  .footer-group { padding-bottom: 21px; }
  .footer-group + .footer-group { padding-top: 19px; }
  .footer-group h2 { margin-bottom: 12px; font-size: 12px; }
  .footer-links { column-gap: 15px; row-gap: 6px; }
  .footer-links a { font-size: 11px; line-height: 1.35; }
  .footer-copyright { padding-top: 17px; font-size: 10px; }

  .action-bar { right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); left: 8px; min-height: 58px; padding: 4px; border-radius: 14px; }
  .action-bar-button { gap: 5px; padding: 7px 4px; font-size: 10px; }
  .action-bar-button svg { flex-basis: 21px; width: 21px; height: 21px; }
  .primary-action { margin-left: 4px; font-size: 13px; }

  .support-modal-backdrop { padding: 0 14px; }
  .support-modal { width: 100%; height: 60vh; max-height: 78vh; border-radius: 14px 14px 0 0; }
  .support-header { min-height: 58px; padding: 10px 13px; }
  .support-conversation { padding: 16px 12px 12px; }
  .support-message p { font-size: 12px; }
  .support-options { margin-left: 38px; }
  .support-option { padding: 10px; font-size: 11px; }
  .support-composer { padding: 9px 10px calc(9px + env(safe-area-inset-bottom)); }
  .support-composer input { font-size: 12px; }
  .support-composer button { padding-inline: 11px; font-size: 11px; }

  .cart-modal-backdrop { padding: 14px; align-items: end; }
  .cart-modal { width: 100%; padding: 20px 16px calc(18px + env(safe-area-inset-bottom)); border-radius: 16px 16px 0 0; }
  .cart-product-summary { gap: 12px; padding-right: 35px; }
  .cart-product-image { width: 94px; height: 94px; flex-basis: 94px; }
  .cart-product-pricing h2 { margin-bottom: 10px; font-size: 14px; }
  .cart-current-price { font-size: 24px; }
  .cart-old-price { gap: 6px; margin-top: 8px; }
  .cart-old-price span { font-size: 12px; }
  .cart-old-price b { padding: 3px 5px; font-size: 10px; }
  .cart-variation { margin-top: 19px; }
  .voltage-options { gap: 6px; }
  .voltage-options button { min-height: 38px; padding: 7px 6px; font-size: 12px; }
  .cart-buy-button { min-height: 44px; margin-top: 20px; font-size: 14px; }
}

/* Modal do carrinho — copy do produto */
.cart-product-info { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.cart-product-info h3 { margin: 0 0 6px; color: var(--black); font-size: 15px; font-weight: 800; line-height: 1.35; }
.cart-product-info p { margin: 0; color: var(--text-secondary); font-size: 13px; font-weight: 400; line-height: 1.4; }
@media (max-width: 620px) {
  .cart-product-info { margin-top: 15px; padding-top: 13px; }
  .cart-product-info h3 { font-size: 14px; }
  .cart-product-info p { font-size: 12px; }
}

/* Bloqueio de zoom (Android e iOS) */
html, body { touch-action: manipulation; -ms-touch-action: manipulation; }

/* Menu do header (hamburger) */
.menu-modal-backdrop {
  position: fixed;
  z-index: 36;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(3px);
}
.menu-modal-backdrop[hidden] { display: none; }
.menu-modal {
  position: relative;
  width: min(88vw, 340px);
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow-overlay);
  animation: cart-modal-in 180ms ease-out both;
}
.menu-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--black);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.menu-modal-list { display: grid; gap: 10px; }
.menu-action {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--black);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.menu-action:last-child { border: 0; color: var(--white); background: var(--black); }
.menu-action:active { opacity: 0.85; }
