/* ==========================================================================
   MÚLTIPLAS FERRAMENTAS — THEME: INSTANT GAMING TECH (V5)
   Design System: Dark Gaming, Laranja Neon (#ff5400), Layout 100% Estruturado
   ========================================================================== */

[hidden] {
  display: none !important;
}

:root {
  /* Tipografia */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Paleta Instant Gaming */
  --ig-bg: #111217;
  --ig-bg-header: #171922;
  --ig-card: #1c1e28;
  --ig-card-hover: #232634;
  --ig-surface: #181a24;
  --ig-input: #13151e;

  /* Laranja Marcante Instant Gaming */
  --ig-orange: #ff5400;
  --ig-orange-bright: #ff6a00;
  --ig-orange-glow: rgba(255, 84, 0, 0.35);
  --ig-orange-dark: #e04800;

  /* Acentos de Suporte */
  --ig-green: #22c55e;
  --ig-cyan: #00d2ff;
  --ig-blue: #2563eb;
  --ig-gold: #f59e0b;

  /* Linhas e Bordas */
  --ig-border: #282b3a;
  --ig-border-subtle: rgba(255, 255, 255, 0.08);
  --ig-border-hover: rgba(255, 84, 0, 0.45);

  /* Textos */
  --text-pure: #ffffff;
  --text-primary: #f3f5f9;
  --text-secondary: #9aa2b1;
  --text-muted: #697386;

  /* Curvas e Raios */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transições e Sombras */
  --ease-ig: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow-card: 0 14px 35px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 8px 25px rgba(255, 84, 0, 0.35);
}

/* ==========================================================================
   RESET & FUNDAMENTOS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--ig-bg);
}

body {
  background: var(--ig-bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
}

button, a {
  transition: all 0.2s var(--ease-ig);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

/* ==========================================================================
   BARRA DE ANÚNCIOS / TOP BAR
   ========================================================================== */
.announcement-bar {
  background: #0b0c10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #8c95a5;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.announcement-inner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.announcement-inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ig-orange);
  box-shadow: 0 0 8px var(--ig-orange);
}

/* ==========================================================================
   HEADER / NAVEGAÇÃO PRINCIPAL
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 25, 34, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ig-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
}

/* Logotipo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ig-orange-bright), var(--ig-orange-dark));
  box-shadow: var(--shadow-orange);
  font-size: 17px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffffff;
  overflow: hidden;
}

.brand-icon.has-logo, .showcase-logo.has-logo {
  background: #ffffff;
}

.brand-icon img, .showcase-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.brand-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-copy small {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ig-orange-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Barra de Busca */
.search-wrap {
  height: 46px;
  border: 1px solid var(--ig-border);
  background: var(--ig-input);
  border-radius: var(--radius-full);
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.search-wrap:focus-within {
  border-color: var(--ig-orange);
  background: #181b26;
  box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.15);
}

.search-wrap svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #737c8e;
  stroke-width: 2.2;
}

.search-wrap:focus-within svg {
  stroke: var(--ig-orange);
}

.search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
}

.search-wrap input::placeholder {
  color: #697386;
}

/* Botão Receber Compra */
.receive-purchase {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 84, 0, 0.3);
  background: rgba(255, 84, 0, 0.08);
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.receive-purchase:hover {
  background: var(--ig-orange);
  border-color: var(--ig-orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

.receive-purchase-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 900;
  font-size: 12px;
}

.receive-purchase small {
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ig-orange-bright);
}

.receive-purchase:hover small {
  color: #fff;
}

.receive-purchase strong {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
}

/* Botão Carrinho */
.cart-trigger {
  justify-self: end;
  height: 46px;
  border: 1px solid var(--ig-border);
  background: var(--ig-input);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

.cart-trigger:hover {
  border-color: var(--ig-orange);
  background: #1d1f2b;
  transform: translateY(-1px);
}

.cart-trigger svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.cart-trigger b {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--ig-orange);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  background: radial-gradient(circle at 80% 30%, rgba(255, 84, 0, 0.12) 0%, transparent 60%), #151720;
  border-bottom: 1px solid var(--ig-border);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-badge-wrap {
  margin-bottom: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ig-orange-bright);
  font-size: 11px;
  font-weight: 900;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 84, 0, 0.1);
  border: 1px solid rgba(255, 84, 0, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.eyebrow > span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ig-orange);
}

.hero h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0 0 18px;
  color: #ffffff;
}

.hero h1 em {
  font-style: normal;
  color: var(--ig-orange-bright);
}

.hero-copy > p {
  max-width: 600px;
  color: #9aa2b1;
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Botões Gerais */
.btn {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13.5px;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--ig-orange-bright), var(--ig-orange-dark));
  color: #ffffff;
  box-shadow: var(--shadow-orange);
  font-weight: 900;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #ff7a1a, var(--ig-orange-bright));
  box-shadow: 0 10px 30px rgba(255, 84, 0, 0.5);
  transform: translateY(-2px);
}

.btn.ghost {
  background: #1b1d28;
  border-color: var(--ig-border);
  color: #ffffff;
}

.btn.ghost:hover {
  background: #252838;
  border-color: var(--ig-orange);
}

.video-cta {
  background: #1b1d28;
  border-color: var(--ig-border);
  color: #ffffff;
  padding: 6px 16px;
}

.video-cta:hover {
  border-color: var(--ig-orange);
}

.play-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ig-orange);
  color: #ffffff;
  font-size: 11px;
}

.video-cta small {
  display: block;
  font-size: 8.5px;
  color: var(--ig-orange-bright);
  letter-spacing: 0.1em;
}

.video-cta strong {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #1b1d28;
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-top: 26px;
  width: fit-content;
}

.metric-item strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--ig-orange-bright);
}

.metric-item span {
  display: block;
  font-size: 10.5px;
  color: #8c95a5;
}

.metric-divider {
  width: 1px;
  height: 24px;
  background: var(--ig-border);
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #8c95a5;
  font-size: 12px;
  font-weight: 700;
}

/* Card Showcase Lateral */
.hero-showcase {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ig-border);
  background: #191b24;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.showcase-terminal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ig-border);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2c2f3f;
}

.terminal-status {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--ig-green);
}

.pulse-emerald {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ig-green);
  box-shadow: 0 0 8px var(--ig-green);
}

.showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px;
  flex: 1;
}

.showcase-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ig-orange-bright), var(--ig-orange-dark));
  font-size: 24px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.showcase-badge-pulse {
  margin-top: 14px;
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--ig-orange-bright);
  background: rgba(255, 84, 0, 0.1);
  border: 1px solid rgba(255, 84, 0, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.hero-showcase h2 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  margin: 14px 0 20px;
  color: #ffffff;
}

.hero-showcase h2 span {
  color: var(--ig-orange-bright);
}

.showcase-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 18px;
  border-top: 1px solid var(--ig-border);
  gap: 8px;
}

.showcase-stats b {
  display: block;
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffffff;
}

.showcase-stats small {
  display: block;
  color: #8c95a5;
  font-size: 9.5px;
  margin-top: 2px;
}

.showcase-chip {
  position: absolute;
  background: #1f222e;
  color: #ffffff;
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 10.5px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.showcase-chip.one {
  right: -16px;
  top: 60px;
  border-color: var(--ig-orange);
}

.showcase-chip.two {
  left: -18px;
  bottom: 70px;
  border-color: var(--ig-green);
}

/* ==========================================================================
   TECH MARQUEE TICKER
   ========================================================================== */
.tech-marquee {
  width: 100%;
  overflow: hidden;
  background: #0f1016;
  border-bottom: 1px solid var(--ig-border);
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 36px;
  animation: scroll-marquee 30s linear infinite;
}

.marquee-track span {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 800;
  color: #7b8596;
  letter-spacing: 0.12em;
}

.marquee-track span:hover {
  color: var(--ig-orange-bright);
}

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

/* ==========================================================================
   BARRA DE BENEFÍCIOS
   ========================================================================== */
.benefits {
  padding: 40px 0;
  background: #161822;
  border-bottom: 1px solid var(--ig-border);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: #1c1e29;
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.benefit-card:hover {
  border-color: var(--ig-orange);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: rgba(255, 84, 0, 0.1);
  border: 1px solid rgba(255, 84, 0, 0.25);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.benefit-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.benefit-card p {
  margin: 3px 0 0;
  color: #8c95a5;
  font-size: 12px;
  line-height: 1.45;
}

/* ==========================================================================
   CATÁLOGO DE PRODUTOS
   ========================================================================== */
.catalog, .steps, .reviews, .faq, .guarantee-section, .video-intro-section, .trust-section {
  padding: 80px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 28px;
}

.section-head h2, .faq h2, .guarantee-card h2, .video-intro-copy h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: #ffffff;
  margin: 10px 0 6px;
}

.section-head p, .faq p, .guarantee-card p, .video-intro-copy p {
  color: #8c95a5;
  margin: 0;
  font-size: 14.5px;
  max-width: 650px;
}

.section-head.centered {
  display: block;
  text-align: center;
}

.section-head.centered p {
  margin: auto;
}

.result-count {
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--ig-orange-bright);
  background: rgba(255, 84, 0, 0.1);
  border: 1px solid rgba(255, 84, 0, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* Filtros */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  border: 1px solid var(--ig-border);
  background: #181a24;
  color: #8c95a5;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 84, 0, 0.4);
  background: #202330;
}

.filter-btn.active {
  background: var(--ig-orange);
  border-color: var(--ig-orange);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

/* ==========================================================================
   CARDS DE PRODUTOS — ALINHAMENTO PERFEITO (ESQUADRO)
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  background: var(--ig-card);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all 0.25s var(--ease-ig);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--ig-orange);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 84, 0, 0.2);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #14161f;
  padding: 14px;
}

.product-media.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.35s ease;
}

.product-card:hover .product-media.has-image img {
  transform: scale(1.06);
}

.product-media.no-image {
  background: linear-gradient(135deg, #1b1d28, #2a2e40);
}

.product-initials {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--ig-orange);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  font-family: var(--font-mono);
}

.ig-platform-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: rgba(18, 20, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 8.5px;
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.ig-discount-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 3;
  background: var(--ig-orange);
  color: #ffffff;
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(255, 84, 0, 0.5);
  letter-spacing: -0.02em;
}

.ig-badge-extra {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: var(--ig-green);
  color: #03140c;
  font-size: 8.5px;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 4px;
}

/* Corpo do Card */
.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.product-category {
  color: var(--ig-orange-bright);
  font-size: 9px;
  font-weight: 800;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-body h3 {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
}

.product-body > p {
  color: #8c95a5;
  font-size: 11.5px;
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.delivery-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
}

.delivery-info span {
  background: #14161f;
  border: 1px solid var(--ig-border);
  border-radius: 6px;
  padding: 6px 8px;
  color: #8c95a5;
  font-size: 9px;
}

.delivery-info b {
  display: block;
  color: #ffffff;
  font-size: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  margin-bottom: 1px;
}

/* Rodapé do Card com Preço e Ações */
.product-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--ig-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.price-stack {
  display: flex;
  flex-direction: column;
}

.original-price {
  font-size: 10.5px;
  color: #697386;
  text-decoration: line-through;
  font-family: var(--font-mono);
  line-height: 1.1;
}

.current-price {
  font-size: 20px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffffff;
  line-height: 1.1;
  margin-top: 2px;
}

.available-badge {
  font-size: 9.5px;
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--ig-green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Ações do Produto (Grid 2 Botões em Esquadro) */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8px;
  width: 100%;
}

.details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ig-border);
  background: #14161f;
  color: #cbd5e1;
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}

.details-btn:hover {
  border-color: var(--ig-orange);
  background: #202330;
  color: #ffffff;
}

.add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 0;
  background: linear-gradient(135deg, var(--ig-orange-bright), var(--ig-orange-dark));
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 84, 0, 0.35);
}

.add-btn:hover {
  background: linear-gradient(135deg, #ff7a1a, var(--ig-orange-bright));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 84, 0, 0.5);
}

/* ==========================================================================
   SEÇÃO DE VÍDEO & APRESENTAÇÃO
   ========================================================================== */
.video-intro-section {
  padding-top: 40px;
}

.video-intro-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-lg);
  background: var(--ig-card);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.video-intro-copy h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  font-weight: 900;
  color: #ffffff;
  margin: 10px 0 8px;
}

.video-intro-copy p {
  color: #8c95a5;
  font-size: 14.5px;
  line-height: 1.6;
}

.video-points {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #8c95a5;
  font-size: 12px;
  font-weight: 800;
}

.video-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.video-big-button {
  min-height: 170px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ig-border);
  background: #151722;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
  padding: 26px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.video-big-button:hover {
  border-color: var(--ig-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card), 0 0 25px rgba(255, 84, 0, 0.2);
}

.video-big-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex: 0 0 60px;
  background: var(--ig-orange);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.video-big-button small {
  display: block;
  font-size: 9px;
  color: var(--ig-orange-bright);
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
}

.video-big-button strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
  margin: 4px 0;
  color: #ffffff;
}

.video-big-button em {
  font-style: normal;
  color: #8c95a5;
  font-size: 11px;
}

/* ==========================================================================
   SEÇÃO COMO FUNCIONA (4 PASSOS EM GRID)
   ========================================================================== */
.steps {
  background: #14161f;
  border-top: 1px solid var(--ig-border);
  border-bottom: 1px solid var(--ig-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.steps-grid article {
  position: relative;
  border: 1px solid var(--ig-border);
  background: var(--ig-card);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}

.steps-grid article:hover {
  border-color: var(--ig-orange);
  transform: translateY(-3px);
}

.steps-grid article b {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 34px;
  font-family: var(--font-mono);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 84, 0, 0.1);
  border: 1px solid rgba(255, 84, 0, 0.25);
  display: grid;
  place-items: center;
  font-size: 19px;
}

.steps-grid h3 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 16px 0 6px;
}

.steps-grid p {
  margin: 0;
  color: #8c95a5;
  font-size: 12px;
  line-height: 1.55;
}

/* ==========================================================================
   PAINEL DE CONFIANÇA
   ========================================================================== */
.trust-section {
  padding-top: 0;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-md);
  background: var(--ig-card);
  padding: 10px;
}

.trust-panel > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-right: 1px solid var(--ig-border);
}

.trust-panel > div:last-child {
  border-right: 0;
}

.trust-icon {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: grid;
  place-items: center;
  font-size: 16px;
}

.trust-panel strong {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
}

.trust-panel small {
  font-size: 10px;
  color: #8c95a5;
  margin-top: 2px;
}

/* ==========================================================================
   SEÇÃO DE AVALIAÇÕES / PROVA SOCIAL
   ========================================================================== */
.reviews {
  background: #111218;
}

.reviews-head {
  align-items: center;
}

.review-controls {
  display: flex;
  gap: 8px;
}

.review-controls button {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ig-border);
  background: #181a24;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.review-controls button:hover:not(:disabled) {
  border-color: var(--ig-orange);
  background: #202330;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-grid.is-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 14px;
}

.review-grid.is-carousel::-webkit-scrollbar {
  display: none;
}

.review-grid.is-carousel .review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
}

.review-card {
  border: 1px solid var(--ig-border);
  background: var(--ig-card);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
}

.review-card:hover {
  border-color: var(--ig-orange);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--ig-gold);
  letter-spacing: 2px;
  font-size: 13px;
}

.review-card > p {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.65;
  min-height: 60px;
  margin: 14px 0 18px;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ig-orange);
  font-size: 13px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffffff;
}

.review-card footer strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
}

.review-card footer small {
  display: block;
  color: #8c95a5;
  font-size: 9.5px;
  margin-top: 2px;
}

.verified-pill {
  font-size: 9px;
  font-family: var(--font-mono);
  font-weight: 800;
  color: var(--ig-green);
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.08);
  padding: 3px 7px;
  border-radius: 4px;
}

/* ==========================================================================
   SEÇÃO DE GARANTIA E FAQ
   ========================================================================== */
.guarantee-section {
  padding-top: 20px;
}

.guarantee-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  background: var(--ig-card);
  box-shadow: var(--shadow-card);
}

.guarantee-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: grid;
  place-items: center;
  font-size: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.faq .btn {
  margin-top: 22px;
}

.accordion details {
  border: 1px solid var(--ig-border);
  background: var(--ig-card);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.accordion details:hover {
  border-color: rgba(255, 84, 0, 0.4);
}

.accordion details[open] {
  border-color: var(--ig-orange);
  background: #202330;
}

.accordion summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  float: right;
  color: var(--ig-orange);
  font-size: 18px;
  font-weight: 700;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion p {
  font-size: 12.5px;
  line-height: 1.65;
  margin: 12px 0 0;
  color: #8c95a5;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer {
  border-top: 1px solid var(--ig-border);
  background: #0d0e13;
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.85fr;
  gap: 50px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid strong {
  font-size: 11.5px;
  font-family: var(--font-mono);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ig-orange-bright);
}

.footer p {
  color: #8c95a5;
  font-size: 12.5px;
  line-height: 1.6;
  margin: 3px 0;
}

.footer a {
  color: #8c95a5;
  font-size: 12.5px;
}

.footer a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-socials a {
  border: 1px solid var(--ig-border);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  background: #14161f;
  font-size: 11.5px;
  font-weight: 700;
}

.footer-socials a:hover {
  border-color: var(--ig-orange);
  color: #ffffff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #5d6778;
  font-size: 10.5px;
}

/* ==========================================================================
   BOTÕES FLUTUANTES
   ========================================================================== */
.floating-socials {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.floating-socials a:hover {
  transform: scale(1.1);
}

.floating-socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}

.floating-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.floating-whatsapp {
  background: #22c55e;
}

/* ==========================================================================
   BOTÃO DE CHECKOUT DO CARRINHO (FULL WIDTH & ALTO IMPACTO)
   ========================================================================== */
.checkout-btn,
button#startCheckout,
#generatePix,
#copyPix,
#productDetailsAdd {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 52px !important;
  height: 52px !important;
  background: linear-gradient(135deg, #ff5400, #e04800) !important;
  color: #ffffff !important;
  font-size: 14.5px !important;
  font-weight: 900 !important;
  font-family: var(--font-sans) !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 25px rgba(255, 84, 0, 0.4) !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  margin-top: 14px !important;
  text-decoration: none !important;
  transition: all 0.22s var(--ease-ig) !important;
}

.checkout-btn:hover,
button#startCheckout:hover,
#generatePix:hover,
#copyPix:hover,
#productDetailsAdd:hover {
  background: linear-gradient(135deg, #ff6f1f, #ff5400) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(255, 84, 0, 0.6) !important;
}

.checkout-btn span {
  font-size: 16px !important;
}

/* ==========================================================================
   CARRINHO LATERAL (DRAWER)
   ========================================================================== */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.overlay.visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 80;
  width: min(440px, 100%);
  background: #14161f;
  border-left: 1px solid var(--ig-border);
  transform: translateX(105%);
  transition: transform 0.28s var(--ease-ig);
  display: flex;
  flex-direction: column;
  box-shadow: -25px 0 80px rgba(0, 0, 0, 0.7);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--ig-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #181a24;
}

.drawer-head small {
  font-size: 9px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--ig-orange-bright);
  font-weight: 800;
  text-transform: uppercase;
}

.drawer-head h2 {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin: 1px 0 0;
}

.drawer-head button, .modal-close, .video-modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ig-border);
  background: #1f222e;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.drawer-body {
  padding: 18px 24px;
  overflow-y: auto;
  flex: 1;
}

.cart-empty {
  text-align: center;
  padding: 60px 15px;
}

.cart-empty > span {
  font-size: 42px;
}

.cart-empty h3 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 4px;
}

.cart-empty p {
  color: #8c95a5;
  font-size: 12px;
}

.cart-empty button {
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--ig-orange);
  color: #ffffff;
  padding: 10px 18px;
  font-weight: 800;
  margin-top: 16px;
  cursor: pointer;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ig-border);
}

.cart-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: #1b1d28;
  border: 1px solid var(--ig-border);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  font-family: var(--font-mono);
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.cart-info strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
}

.cart-info small {
  display: block;
  color: #8c95a5;
  font-size: 10px;
  margin-top: 2px;
}

.cart-item-discount {
  color: var(--ig-green) !important;
  font-family: var(--font-mono);
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--ig-border);
  background: #1f222e;
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.qty span {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 800;
}

.remove {
  border: 0;
  background: transparent;
  color: #5d6778;
  font-size: 18px;
  cursor: pointer;
}

.remove:hover {
  color: #ff4d6d;
}

.drawer-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--ig-border);
  background: #111218;
}

.coupon-box {
  border: 1px solid var(--ig-border);
  background: #161822;
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 14px;
}

.coupon-box-head span {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
}

.coupon-box-head small {
  display: block;
  color: #8c95a5;
  font-size: 9.5px;
  margin-top: 1px;
}

.coupon-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  margin-top: 8px;
}

.coupon-form input {
  min-width: 0;
  border: 1px solid var(--ig-border);
  background: #0f1016;
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  font-family: var(--font-mono);
  outline: 0;
  text-transform: uppercase;
}

.coupon-form button {
  border: 0;
  border-radius: 6px;
  background: #252838;
  color: #ffffff;
  padding: 0 14px;
  font-size: 10.5px;
  font-weight: 800;
  cursor: pointer;
}

.coupon-message {
  margin-top: 8px;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 10px;
}

.coupon-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: var(--ig-green);
}

.coupon-message.error {
  background: rgba(255, 77, 109, 0.1);
  color: #ff4d6d;
}

.remove-coupon {
  margin-top: 6px;
  border: 0;
  background: none;
  color: #8c95a5;
  font-size: 9.5px;
  text-decoration: underline;
  cursor: pointer;
}

.cart-price-lines {
  margin-bottom: 14px;
}

.cart-price-line, .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 11.5px;
  color: #8c95a5;
}

.cart-price-line strong {
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: #ffffff;
}

.cart-price-line.discount {
  color: var(--ig-green);
}

.cart-price-line.discount strong {
  color: var(--ig-green);
}

.cart-total {
  border-top: 1px solid var(--ig-border);
  margin-top: 6px;
  padding-top: 12px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
}

.cart-total strong {
  font-size: 22px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffffff;
}

.drawer-footer > small {
  display: block;
  text-align: center;
  color: #5d6778;
  font-size: 9.5px;
  margin-top: 10px;
}

/* ==========================================================================
   MODAIS (CHECKOUT, PIX, DETALHES, VÍDEO)
   ========================================================================== */
.modal, .video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-card, .video-modal-card {
  position: relative;
  width: min(560px, 100%);
  margin: auto;
  border: 1px solid var(--ig-border);
  background: #181a24;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
}

.modal-close, .video-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
}

.modal-card h2, .video-modal-card h2 {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  margin: 8px 0 6px;
}

.modal-card > p, .video-modal-card p {
  color: #8c95a5;
  font-size: 12.5px;
  line-height: 1.55;
}

/* Modal Detalhes */
.product-details-card {
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 0;
  overflow: hidden;
}

.product-details-media {
  min-height: 440px;
  background: #14161f;
  display: grid;
  place-items: center;
  padding: 28px;
}

.product-details-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.product-details-content {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}

.product-details-content > p {
  color: #8c95a5;
  font-size: 13px;
  line-height: 1.65;
}

.product-details-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0;
}

.product-details-info div {
  border: 1px solid var(--ig-border);
  background: #14161f;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.product-details-info small {
  display: block;
  font-size: 8.5px;
  font-family: var(--font-mono);
  color: var(--ig-orange-bright);
  text-transform: uppercase;
}

.product-details-info strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 2px;
}

.product-details-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--ig-border);
  padding-top: 18px;
  margin-top: auto;
}

.product-details-buy small {
  display: block;
  font-size: 9.5px;
  color: #697386;
  text-transform: uppercase;
  font-weight: 700;
}

.product-details-buy strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffffff;
}

.product-details-buy .checkout-btn {
  width: auto !important;
  padding: 0 24px !important;
}

/* Modal Checkout */
.checkout-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: #cbd5e1;
  font-size: 10.5px;
  font-weight: 800;
}

.checkout-form input, .pix-code-label textarea {
  border: 1px solid var(--ig-border);
  background: #12141c;
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  outline: 0;
  font-size: 12.5px;
}

.checkout-form input:focus, .pix-code-label textarea:focus {
  border-color: var(--ig-orange);
  box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.15);
}

.privacy-check, .checkout-summary, .checkout-form .checkout-btn, .form-error, .checkout-trust {
  grid-column: 1 / -1;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  color: #8c95a5 !important;
  font-weight: 500 !important;
  font-size: 11px !important;
}

.checkout-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.checkout-trust span {
  border: 1px solid var(--ig-border);
  background: #14161f;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: #8c95a5;
}

.checkout-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius-sm);
  background: #14161f;
  border: 1px solid var(--ig-border);
  padding: 14px 16px;
}

.checkout-summary span {
  font-size: 10.5px;
  font-weight: 700;
  color: #8c95a5;
}

.checkout-summary strong {
  font-size: 20px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffffff;
}

.form-error {
  margin: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 77, 109, 0.12);
  border: 1px solid rgba(255, 77, 109, 0.3);
  color: #ff4d6d;
  padding: 10px;
  font-size: 10.5px;
  font-weight: 700;
}

/* Modal Pix */
.pix-card {
  text-align: center;
}

.qr-wrap {
  width: 220px;
  height: 220px;
  margin: 18px auto 14px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 30px rgba(255, 84, 0, 0.25);
}

.qr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(45deg, #eef2f7, #eef2f7 8px, #dce5ed 8px, #dce5ed 16px);
  color: #8291a3;
  font-size: 30px;
  font-weight: 950;
  font-family: var(--font-mono);
}

.pix-amount {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.pix-amount span {
  font-size: 10.5px;
  color: #8c95a5;
  text-transform: uppercase;
  font-weight: 700;
}

.pix-amount strong {
  font-size: 24px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #ffffff;
}

.pix-code-label {
  display: grid;
  text-align: left;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--ig-orange-bright);
}

.pix-code-label textarea {
  min-height: 70px;
  resize: none;
  font-size: 10.5px;
  font-family: var(--font-mono);
  word-break: break-all;
}

.payment-status {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  border: 1px solid var(--ig-border);
  background: #14161f;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 14px;
}

.payment-status strong {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
}

.payment-status small {
  display: block;
  color: #8c95a5;
  font-size: 9.5px;
  margin-top: 1px;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ig-gold);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.approved-state, .failed-state {
  padding: 24px 6px;
}

.approved-icon, .failed-state > span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--ig-green);
  font-size: 34px;
  font-weight: 900;
}

.failed-state > span {
  background: rgba(255, 77, 109, 0.12);
  color: #ff4d6d;
}

.approved-delivery {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  text-align: left;
}

.approved-delivery:empty {
  display: none;
}

.approved-delivery-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  align-items: center;
  border: 1px solid var(--ig-border);
  background: #14161f;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.approved-delivery-item span {
  font-size: 11.5px;
  color: #ffffff;
  font-weight: 700;
}

.approved-delivery-item strong {
  font-size: 10.5px;
  font-family: var(--font-mono);
}

.approved-delivery-item.success strong { color: var(--ig-green); }
.approved-delivery-item.failed strong { color: #ff4d6d; }
.approved-delivery-item.manual strong { color: var(--ig-gold); }

.approved-access-links {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.approved-access-links:empty {
  display: none;
}

.member-area-button {
  margin-top: 10px;
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

.approved-whatsapp {
  margin-top: 8px;
}

/* Modal Vídeo */
.video-modal-card {
  width: min(920px, 100%);
  padding: 26px;
}

.video-modal-copy {
  padding: 0 40px 14px 0;
}

.video-kicker {
  color: var(--ig-orange-bright);
  font-size: 9px;
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.video-intro-preview {
  min-height: 380px;
  border: 1px solid var(--ig-border);
  background: #14161f;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px;
}

.video-intro-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ig-orange);
  box-shadow: var(--shadow-orange);
  margin-bottom: 18px;
  font-size: 22px;
}

.video-frame-wrap {
  height: min(68vh, 600px);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000000;
}

.video-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 160;
  transform: translate(-50%, 25px);
  opacity: 0;
  background: #ffffff;
  color: #0d0e13;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  font-size: 11.5px;
  font-weight: 800;
  pointer-events: none;
  transition: all 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Spotlight */
.product-spotlight {
  padding: 24px 0 0;
}

.product-spotlight-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-lg);
  background: #181a24;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.spotlight-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ig-orange-bright);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.product-spotlight-media {
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #14161f;
}

.product-spotlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.product-spotlight-copy {
  padding: 34px 30px 30px;
}

.product-spotlight-copy h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #ffffff;
  margin: 10px 0 8px;
}

.product-spotlight-copy > p {
  color: #8c95a5;
  line-height: 1.65;
  font-size: 14px;
  margin: 0 0 16px;
}

.spotlight-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 18px 0 22px;
}

.spotlight-info div {
  border: 1px solid var(--ig-border);
  background: #14161f;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.spotlight-info small {
  display: block;
  font-size: 8.5px;
  font-family: var(--font-mono);
  color: var(--ig-orange-bright);
  text-transform: uppercase;
}

.spotlight-info strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 3px;
}

.spotlight-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single-product-grid {
  grid-template-columns: minmax(0, 520px) !important;
  justify-content: flex-start;
}

/* ==========================================================================
   RESPONSIVIDADE (TABLET E CELULAR)
   ========================================================================== */
@media (max-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-grid {
    gap: 35px;
  }
  .showcase-chip {
    display: none;
  }
}

@media (max-width: 820px) {
  .announcement-inner span:nth-of-type(3),
  .announcement-inner i:nth-of-type(2) {
    display: none;
  }
  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: auto;
    padding: 12px 0;
    gap: 10px;
  }
  .search-wrap {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .hero {
    padding: 50px 0 55px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-showcase {
    display: none;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-intro-card {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-panel {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-panel > div:nth-child(2) {
    border-right: 0;
  }
  .trust-panel > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--ig-border);
  }
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid.is-carousel .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
  .guarantee-card {
    grid-template-columns: auto 1fr;
  }
  .guarantee-card .btn {
    grid-column: 1 / -1;
  }
  .faq-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-details-card {
    grid-template-columns: 1fr;
  }
  .product-details-media {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1240px);
  }
  .announcement-inner {
    font-size: 9px;
  }
  .brand-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .receive-purchase {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    justify-content: center;
    min-height: 42px;
  }
  .search-wrap {
    grid-row: 2;
  }
  .hero {
    padding-top: 36px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-metrics {
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
    gap: 6px;
  }
  .metric-item strong {
    font-size: 14px;
  }
  .metric-item span {
    font-size: 8.5px;
  }
  .trust-row {
    display: grid;
    gap: 6px;
  }
  .catalog, .steps, .reviews, .faq, .guarantee-section, .video-intro-section, .trust-section {
    padding: 55px 0;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .section-head h2, .faq h2, .video-intro-copy h2 {
    font-size: 26px;
  }
  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
    margin-right: -12px;
  }
  .filters::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    white-space: nowrap;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-actions {
    grid-template-columns: 1fr 1fr;
  }
  .video-intro-card {
    padding: 26px 18px;
    border-radius: var(--radius-md);
    gap: 20px;
  }
  .video-big-button {
    min-height: 150px;
    padding: 18px;
    gap: 12px;
  }
  .video-big-play {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .video-big-button strong {
    font-size: 14px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .trust-panel {
    grid-template-columns: 1fr;
    padding: 6px;
  }
  .trust-panel > div {
    border-right: 0 !important;
    border-bottom: 1px solid var(--ig-border);
  }
  .trust-panel > div:last-child {
    border-bottom: 0;
  }
  .review-grid, .review-grid.is-carousel {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-right: 18%;
    gap: 12px;
  }
  .review-grid::-webkit-scrollbar {
    display: none;
  }
  .review-grid .review-card, .review-grid.is-carousel .review-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }
  .review-controls {
    display: none !important;
  }
  .guarantee-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .guarantee-icon {
    width: 58px;
    height: 58px;
  }
  .floating-socials {
    right: 12px;
    bottom: 12px;
  }
  .floating-socials a {
    width: 44px;
    height: 44px;
  }
  .modal, .video-modal {
    padding: 8px;
  }
  .modal-card {
    padding: 24px 16px;
  }
  .checkout-form {
    grid-template-columns: 1fr;
  }
  .checkout-form > * {
    grid-column: 1 !important;
  }
  .checkout-trust {
    grid-template-columns: 1fr 1fr;
  }
  .checkout-trust span:last-child {
    grid-column: 1 / -1;
  }
  .product-details-content {
    padding: 20px 16px 18px;
  }
  .product-details-buy {
    position: sticky;
    bottom: 0;
    background: #181a24;
    margin: 16px -16px -18px;
    padding: 12px 16px;
    border-top: 1px solid var(--ig-border);
    z-index: 2;
  }
  .product-details-buy strong {
    font-size: 20px;
  }
  .qr-wrap {
    width: 190px;
    height: 190px;
  }
  .cart-drawer {
    width: 100%;
  }
}
