/* =========================================================
   style.css — ORGANIZADO / COMENTADO (FULL)
   - Ordem: Imports > Theme > Reset/Base > Layout > Componentes
            > Páginas (Catálogo/Produto/Checkout/Admin) > Helpers
            > Responsivo (geral > mobile) > Efeitos finais
========================================================= */

/* ===============================
   1) IMPORTS
================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap");

/* ===============================
   2) THEME / TOKENS
   - Variáveis globais do design
   - Mantive aliases para compatibilidade (bg2/shadow)
================================ */
:root {
  --bg: #070707;
  --bg-2: #0b0b0b;
  --bg2: var(--bg-2); /* alias (você usou --bg2 em outro trecho) */

  --card: rgba(255, 255, 255, 0.04);
  --card-2: rgba(255, 255, 255, 0.06);

  --text: #fff;
  --muted: rgba(255, 255, 255, 0.7);

  --primary: #ff1a1a;
  --primary-dark: #cc0000;

  --border: rgba(255, 255, 255, 0.1);

  --radius: 18px;
  --radius-lg: 26px;

  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.55);
  --shadow-red: 0 0 70px rgba(255, 0, 0, 0.18);

  --shadow: var(
    --shadow-soft
  ); /* alias (você usou --shadow em admin/checkout) */

  --container: 1180px;
}

/* ===============================
   3) RESET / BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}
html,
body {
  height: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}

/* ===============================
   4) LAYOUT HELPERS / UTILITÁRIOS
================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.section {
  padding: 84px 0;
}

.muted {
  color: var(--muted);
}
.small {
  font-size: 13px;
  line-height: 1.4;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* visibilidade */
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

/* menu mobile (inicialmente escondido no desktop) */
.menu-btn,
.mobile-menu {
  display: none;
}

/* segurança anti-corte / overflow */
html,
body {
  width: 100%;
  max-width: 100%;
}
* {
  max-width: 100%;
}
.container {
  width: 100%;
}

/* evita “estouro” dentro de grids/flex */
.topbar-inner > *,
.hero-grid > *,
.section-head--split > *,
.grid > *,
.trust-strip-grid > *,
.objectives-grid > *,
.kits-grid > *,
.blog-grid > *,
.reviews-grid > *,
.footer-grid > *,
.contact-grid > * {
  min-width: 0;
}

/* ===============================
   5) TOPBAR / HEADER / NAV (DESKTOP)
================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo h1 {
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 900;
  line-height: 1;
}
.logo h1 span {
  color: var(--primary);
}
.logo small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 14px;
}
.nav a {
  opacity: 0.92;
  transition: 0.18s;
}
.nav a:hover {
  color: var(--primary);
}

/* dropdown nav */
.nav-dd {
  position: relative;
}
.nav-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  cursor: pointer;
  padding: 10px 10px;
  border-radius: 999px;
  transition: 0.18s;
}
.nav-dd-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.chev {
  opacity: 0.85;
}

.nav-dd-menu {
  position: absolute;
  top: 44px;
  left: 0;
  width: 240px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 10px;
  display: none;
  min-width: 260px; /* fix “Ver catálogo completo” */
}
.nav-dd.open .nav-dd-menu {
  display: block;
}
.nav-dd-menu a {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-dd-menu a:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #fff;
}
.nav-dd-menu .sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 2px;
}
.nav-dd-menu a:last-child {
  font-size: 13px;
  letter-spacing: 0.1px;
}
@media (max-width: 1100px) {
  .nav-dd-menu {
    min-width: 280px;
  }
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* botão carrinho topo */
.cart-ico-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: 0.18s;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}
.cart-ico-btn:hover {
  border-color: rgba(255, 0, 0, 0.35);
  background: rgba(255, 0, 0, 0.08);
}
.cart-count-pill {
  opacity: 0.95;
}

/* ===============================
   6) BUTTONS (globais)
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.18s;
  border: 1px solid transparent;
  user-select: none;
}
.btn-sm {
  padding: 10px 14px;
  font-size: 14px;
}
.btn-primary {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.3);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(255, 0, 0, 0.3);
  background: rgba(255, 0, 0, 0.1);
}
.full {
  width: 100%;
}

/* ===============================
   7) HERO
================================ */
.hero {
  position: relative;
  padding: 86px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 420px at 20% 10%,
      rgba(255, 0, 0, 0.3),
      transparent 55%
    ),
    radial-gradient(
      900px 460px at 75% 20%,
      rgba(255, 0, 0, 0.18),
      transparent 58%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.88));
  z-index: -2;
}
.hero-glow {
  position: absolute;
  inset: -2px;
  background: url("../assets/banner-principal.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: -3;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 46px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 0, 0.26);
  background: rgba(255, 0, 0, 0.12);
  font-weight: 800;
  font-size: 13px;
}
.hero-title {
  margin-top: 14px;
  font-size: 56px;
  line-height: 1.03;
  font-weight: 950;
}
.hero-title span {
  color: var(--primary);
  text-shadow: 0 0 28px rgba(255, 0, 0, 0.55);
}
.hero-sub {
  margin-top: 16px;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  max-width: 520px;
}
.metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}
.metric strong {
  display: block;
  font-size: 18px;
  color: var(--primary);
  font-weight: 950;
}
.metric span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.65)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-card-media {
  aspect-ratio: 16/11;
  overflow: hidden;
}
.hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08);
}
.hero-card-body {
  padding: 18px 18px 20px;
}
.hero-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.25);
  font-size: 12px;
  font-weight: 900;
}
.hero-card-body h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 950;
}
.hero-card-body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.hero-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
}
.hero-link:hover {
  color: var(--primary);
}

/* ===============================
   8) TRUST STRIP
================================ */
.trust-strip {
  padding: 22px 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.trust-strip-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-ico {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.16);
  border: 1px solid rgba(255, 0, 0, 0.3);
  font-weight: 950;
}
.trust-strip-item strong {
  display: block;
  font-weight: 950;
}
.trust-strip-item p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

/* ===============================
   9) SECTION HEAD
================================ */
.section-head {
  text-align: center;
  margin-bottom: 26px;
}
.section-head h2 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 950;
}
.section-head p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.section-head--split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}
.section-head--split p {
  max-width: 640px;
}
.section-head--split a {
  margin-top: 6px;
  white-space: nowrap;
}

/* ===============================
   10) PRODUCTS GRID (home + padrão products.js)
================================ */
.grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 14px;
  transition: 0.18s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}
.card > img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.product-link {
  display: block;
}
.product-media {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
}
.product-media img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}
.product-title {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
  min-height: 38px;
}
.rating {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
}
.rating .stars {
  letter-spacing: 1px;
  opacity: 0.95;
}
.rating .count {
  opacity: 0.7;
  font-weight: 800;
}

.price {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.price .from {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  font-weight: 800;
  font-size: 12px;
}
.price .pix {
  color: var(--primary);
  font-weight: 950;
  font-size: 22px;
}
.price .installments {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.35;
}
.product-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.btn-buy {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 14px;
  font-weight: 950;
  cursor: pointer;
  color: #fff;
  background: var(--primary);
  transition: 0.18s;
}
.btn-buy:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
}

/* ===============================
   11) OBJECTIVES (DESKTOP)
================================ */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.objective-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: 0.25s;
}
.objective-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: 0.35s;
}
.objective-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.1)
  );
}
.objective-content {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.objective-content h3 {
  font-size: 30px;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: 10px;
}
.objective-content p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.objective-cta {
  display: inline-flex;
  margin-top: 12px;
  padding-top: 2px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}
.objective-content::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 22px;
  width: 4px;
  height: 44px;
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
}
.objective-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.35);
  box-shadow: var(--shadow-soft);
}
.objective-card:hover .objective-img {
  transform: scale(1.08);
}

/* ===============================
   12) KITS (DESKTOP)
================================ */
.kits {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.kits::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto 0;
  height: 420px;
  background: radial-gradient(
    900px 420px at 50% 0%,
    rgba(255, 0, 0, 0.1),
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.kits .container {
  position: relative;
  z-index: 1;
}

.kits-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kit-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      900px 420px at 20% 0%,
      rgba(255, 0, 0, 0.1),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.03);
  transition: 0.25s;
}
.kit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.35);
  box-shadow: var(--shadow-soft);
}
.kit-card--featured {
  border-color: rgba(255, 0, 0, 0.22);
  transform: translateY(-6px);
}
.kit-card--featured:hover {
  transform: translateY(-12px);
}

.kit-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.kit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: 0.38s;
  filter: contrast(1.02) saturate(1.05);
}
.kit-card:hover .kit-media img {
  transform: scale(1.12);
}
.kit-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.15)),
    radial-gradient(
      700px 260px at 18% 12%,
      rgba(255, 0, 0, 0.18),
      transparent 60%
    );
}

.kit-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  background: rgba(255, 0, 0, 0.18);
  border: 1px solid rgba(255, 0, 0, 0.35);
}
.kit-badge--hot {
  background: rgba(255, 0, 0, 0.26);
  border-color: rgba(255, 0, 0, 0.55);
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.18);
}
.kit-body {
  padding: 18px 18px 16px;
}
.kit-top h3 {
  font-size: 18px;
  font-weight: 950;
}
.kit-desc {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.kit-list {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}
.kit-list li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}
.kit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.85);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
}
.kit-price-row {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
}
.kit-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.kit-old {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-weight: 800;
  font-size: 12px;
}
.kit-new {
  color: var(--primary);
  font-weight: 950;
  font-size: 20px;
}
.kit-off {
  font-weight: 950;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.14);
  border: 1px solid rgba(255, 0, 0, 0.28);
}
.kit-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ===============================
   13) BLOG / REVIEWS
================================ */
.blog-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: 0.18s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.14);
}
.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.blog-body {
  padding: 16px;
}
.blog-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.25);
  font-size: 12px;
  font-weight: 950;
}
.blog-body h3 {
  margin-top: 10px;
  font-weight: 950;
  font-size: 16px;
  line-height: 1.25;
}
.blog-body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.blog-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 950;
}
.blog-link:hover {
  color: var(--primary);
}

.reviews-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: 0.18s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.14);
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review-top strong {
  font-weight: 950;
}
.stars {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
}
.review-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.review-meta {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* ===============================
   14) INSTAGRAM (DESKTOP)
================================ */
.ig-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.ig-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  transition: 0.18s;
}
.ig-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 0, 0.25);
}
.ig-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* ===============================
   15) SOCIAL BAR
================================ */
.social-bar {
  padding: 0 0 30px;
}
.social-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch; /* fix */
}
.social-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 16px;

  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.social-pill strong {
  display: block;
  font-weight: 950;
  min-width: 0;
}
.social-pill span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.social-pill a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* =========================
   NEWSLETTER — premium (texto + form alinhado)
========================= */
.newsletter .newsletter-box {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* texto | form */
  gap: 18px;
  align-items: center;
}

.newsletter .newsletter-left h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 950;
  letter-spacing: 0.2px;
}

.newsletter .newsletter-left p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  line-height: 1.45;
  max-width: 52ch;
}

/* ✅ trava o form pra não esticar */
.newsletter .newsletter-form {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: center;
}

.newsletter .newsletter-form input {
  height: 46px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  padding: 0 14px;
  font-weight: 900;
  outline: none;
}

.newsletter .newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.55);
}

.newsletter .newsletter-form input:focus {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.newsletter .newsletter-btn {
  height: 46px;
  border-radius: 14px;
  padding: 0 16px;
  white-space: nowrap;
}

/* mensagem do JS */
.newsletter .nl-msg {
  grid-column: 1 / -1;
  font-weight: 800;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 2px;
}

/* responsivo */
@media (max-width: 980px) {
  .newsletter .newsletter-box {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .newsletter .newsletter-form {
    max-width: 100%;
    justify-self: start;
    grid-template-columns: 1fr;
  }
  .newsletter .newsletter-btn {
    width: 100%;
  }
}

/* ===============================
   17) CONTACT
================================ */
.contact-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.contact-card h3 {
  font-weight: 950;
  font-size: 18px;
}
.contact-card p {
  margin-top: 10px;
  line-height: 1.6;
}
.contact-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-mini {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact-mini div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
}
.contact-mini strong {
  display: block;
  font-weight: 950;
}
.contact-mini span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.field label {
  display: block;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.field input,
.field textarea {
  width: 100%;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 16px;
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

/* ===============================
   18) FOOTER
================================ */
.footer {
  padding: 50px 0 18px;
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.footer-col h3,
.footer-col h4 {
  font-weight: 950;
}
.footer-col p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-links {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--primary);
}

.pay-row {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.pay-row img {
  height: 22px;
  width: auto;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* ===============================
   19) WHATSAPP FLOAT
================================ */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 950;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border: 1px solid rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 42px rgba(255, 0, 0, 0.22);
}

/* ===============================
   20) MINI CART
================================ */
.mini-cart {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100%;
  background: #0b0b0b;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  transition: 0.3s;
  z-index: 9999;
}
.mini-cart.active {
  right: 0;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.close-cart {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}
.mini-items {
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 6px;
}
.mini-items::-webkit-scrollbar {
  width: 6px;
}
.mini-items::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 0, 0.35);
  border-radius: 999px;
}
.mini-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mini-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}
.mini-item p {
  font-weight: 900;
  font-size: 13px;
}
.mini-item small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}
.mini-item button {
  margin-left: auto;
  background: transparent;
  border: none;
  color: rgba(255, 0, 0, 0.8);
  cursor: pointer;
  font-weight: 900;
}

.cart-footer {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}
.cart-footer p {
  color: rgba(255, 255, 255, 0.7);
}
.cart-footer h2 {
  margin-top: 6px;
  color: var(--primary);
  font-weight: 950;
}

/* ===============================
   21) CATÁLOGO — PREMIUM
================================ */
.catalog-hero {
  padding: 44px 0 22px;
  background:
    radial-gradient(
      900px 420px at 18% 12%,
      rgba(255, 0, 0, 0.18),
      transparent 60%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.catalog-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: end;
}
.catalog-title {
  margin-top: 12px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 950;
}
.catalog-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  max-width: 62ch;
}

.catalog-chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  font-size: 13px;
  transition: 0.18s;
}
.chip:hover {
  border-color: rgba(255, 0, 0, 0.3);
  background: rgba(255, 0, 0, 0.1);
}
.chip--active {
  background: rgba(255, 0, 0, 0.18);
  border-color: rgba(255, 0, 0, 0.35);
  color: #fff;
}

.catalog-controls {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 14px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}
.control label {
  display: block;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.control select,
.control input {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 0 12px;
  font-weight: 800;
  outline: none;
}
.control select:focus,
.control input:focus {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 14px;
}
.catalog-count {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
}
.catalog-count span {
  color: rgba(255, 255, 255, 0.68);
  margin-left: 8px;
  font-weight: 800;
}
.catalog-open-filters {
  display: none;
}

.catalog-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.catalog-grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.catalog-grid .product-actions {
  margin-top: auto;
}

.catalog-pagination {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-btn {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  cursor: pointer;
  transition: 0.18s;
}
.page-btn:hover {
  border-color: rgba(255, 0, 0, 0.3);
  background: rgba(255, 0, 0, 0.1);
}
.page-btn.active {
  background: rgba(255, 0, 0, 0.18);
  border-color: rgba(255, 0, 0, 0.35);
}

.catalog-filters-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
  z-index: 9998;
}
.catalog-filters-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.catalog-filters-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(92vw, 380px);
  background:
    radial-gradient(
      900px 420px at 18% 12%,
      rgba(255, 0, 0, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(7, 7, 7, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    -22px 0 70px rgba(0, 0, 0, 0.75),
    -6px 0 22px rgba(255, 0, 0, 0.1);
  border-radius: 18px 0 0 18px;
  padding: 16px;
  transform: translateX(18px);
  opacity: 0.96;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.catalog-filters-overlay.open .catalog-filters-panel {
  transform: translateX(0);
  opacity: 1;
}
.catalog-filters-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.catalog-filters-top strong {
  font-weight: 950;
  font-size: 14px;
}
.catalog-filters-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
  min-height: 48px;
}
.catalog-filters-close:hover {
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 0, 0, 0.3);
}
.catalog-filters-panel .catalog-controls {
  margin-top: 12px;
  box-shadow: none;
}

.catalog-title,
.catalog-sub,
.catalog-count,
.catalog-grid * {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===============================
   22) PRODUCT PAGE — PREMIUM
================================ */
.product-bc {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.product-bc-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 13px;
  flex-wrap: wrap;
}
.product-bc-inner a:hover {
  color: var(--primary);
}
.bc-current {
  color: rgba(255, 255, 255, 0.92);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-gallery {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  min-width: 0;
}
.product-main-img {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  padding: 12px;
}
.product-main-img img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  transform: translateZ(0);
}
@media (max-width: 1100px) {
  .product-main-img img {
    height: 440px;
  }
}
@media (max-width: 760px) {
  .product-main-img img {
    height: min(360px, 62vh);
  }
}

.product-badges {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}
.badge-hot {
  background: rgba(255, 0, 0, 0.16);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.16);
}

.product-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  min-width: 0;
}
.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 760px) {
  .product-topline {
    flex-wrap: wrap;
  }
}

.product-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.25);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}
.product-name {
  margin-top: 12px;
  font-size: 38px;
  line-height: 1.06;
  font-weight: 950;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 760px) {
  .product-name {
    font-size: 30px;
  }
}

.product-short {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-pricebox {
  margin-top: 16px;
  background:
    radial-gradient(
      900px 420px at 18% 12%,
      rgba(255, 0, 0, 0.12),
      transparent 60%
    ),
    rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 16px;
}
.product-prices .from {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  font-weight: 900;
  font-size: 13px;
}
.product-prices .pix {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 950;
  font-size: 30px;
}
.product-prices .pix small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 900;
}
.product-prices .installments {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.35;
}
@media (max-width: 760px) {
  .product-prices .pix {
    font-size: 26px;
  }
}

.product-ctas {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.product-bullets {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 1100px) {
  .product-bullets {
    grid-template-columns: 1fr;
  }
}

.bullet {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  min-width: 0;
}
.bullet strong {
  display: block;
  font-weight: 950;
}
.bullet small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}
.bullet .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(255, 0, 0, 0.85);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.25);
}

.product-tabs {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 950;
  cursor: pointer;
  transition: 0.18s;
  user-select: none;
}
.tab:hover {
  border-color: rgba(255, 0, 0, 0.3);
  background: rgba(255, 0, 0, 0.1);
}
.tab.active {
  background: rgba(255, 0, 0, 0.18);
  border-color: rgba(255, 0, 0, 0.35);
  color: #fff;
}

.product-tabpanes {
  margin-top: 12px;
}
.pane {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.pane.active {
  display: block;
}

.product-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.product-list li {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.product-list strong {
  color: #fff;
}

.qty-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.qty-label {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 900;
  font-size: 13px;
}
.qty {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 10px;
}
.qty-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 950;
  transition: 0.18s;
}
.qty-btn:hover {
  border-color: rgba(255, 0, 0, 0.3);
  background: rgba(255, 0, 0, 0.1);
}
.qty-input {
  width: 64px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  text-align: center;
  font-weight: 950;
  outline: none;
}
.qty-input:focus {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(110%);
  transition: 0.22s;
}
.sticky-buy.show {
  transform: translateY(0);
}
.sticky-left {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.sticky-name {
  font-weight: 950;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 58vw;
}
.sticky-price {
  color: var(--primary);
  font-weight: 950;
  font-size: 16px;
}
.sticky-price small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.sticky-btn {
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 950;
  color: #fff;
  background: var(--primary);
  transition: 0.18s;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.18);
}
.sticky-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
@media (min-width: 761px) {
  .sticky-buy {
    display: none;
  }
}

/* ===============================
   23) CHECKOUT — PREMIUM
================================ */
.checkout-title {
  font-size: 34px;
  font-weight: 950;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: start;
  margin-top: 14px;
}
.checkout-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.checkout-form h2 {
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 12px;
}
.checkout-form .field label,
.checkout-form label {
  display: block;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.checkout-form .field input,
.checkout-form .field textarea,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 16px;
  outline: none;
  font-weight: 800;
  transition: 0.18s;
}
.checkout-form textarea {
  resize: vertical;
  min-height: 120px;
}
.checkout-form select {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 0 12px;
  font-weight: 800;
  outline: none;
  transition: 0.18s;
}
.checkout-form .field input:focus,
.checkout-form .field textarea:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}
.checkout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checkout-form .btn.full {
  margin-top: 12px;
}

.checkout-right {
  display: grid;
  gap: 14px;
}
.checkout-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.order-summary {
  position: sticky;
  top: 92px;
}

.summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.summary-head h3 {
  font-size: 16px;
  font-weight: 950;
}
.summary-badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.25);
  font-weight: 900;
  font-size: 12px;
}
.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.summary-row strong {
  font-weight: 950;
}
.summary-row.total {
  border-bottom: 0;
  padding-top: 14px;
}
.summary-row.total strong {
  color: var(--primary);
  font-size: 18px;
}

.summary-label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0 8px;
}
.summary-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.summary-input {
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 0 12px;
  font-weight: 800;
  outline: none;
  transition: 0.18s;
}
.summary-input:focus {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}
.summary-help {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.summary-help.ok {
  color: rgba(170, 255, 200, 0.95);
}
.summary-help.bad {
  color: rgba(255, 170, 170, 0.95);
}

.checkout-items {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.checkout-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
}
.checkout-item strong {
  display: block;
  font-weight: 950;
  font-size: 13px;
  line-height: 1.2;
}
.checkout-item small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  font-size: 12px;
}
.checkout-sub {
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
}

.checkout-form,
.checkout-box,
.checkout-item,
.summary-inline,
.checkout-layout > * {
  min-width: 0;
}

/* ===============================
   24) ADMIN AUTH (login/admin)
================================ */
.admin-auth,
.admin-auth-wrap,
.auth-page,
.login-page,
main {
  width: 100%;
}

.admin-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
 
}
.admin-auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px;
}
.admin-auth-card {
  width: min(460px, 94vw);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.admin-auth-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      900px 360px at 18% 10%,
      rgba(255, 0, 0, 0.2),
      transparent 60%
    ),
    radial-gradient(
      700px 300px at 80% 20%,
      rgba(255, 0, 0, 0.1),
      transparent 65%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
  pointer-events: none;
  z-index: 0;
}
.admin-auth-card > * {
  position: relative;
  z-index: 1;
}

.admin-auth-brand h1 {
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: 950;
  line-height: 1;
}
.admin-auth-brand h1 span {
  color: var(--primary);
}
.admin-auth-brand p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}
.admin-auth-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.admin-label {
  font-weight: 900;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.admin-input {
  width: 100%;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 0 14px;
  outline: none;
  font-weight: 800;
  transition: 0.18s;
}
.admin-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}
.admin-input:focus {
  border-color: rgba(255, 0, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.14);
}
.admin-btn {
  height: 54px;
  border: none;
  border-radius: 16px;
  font-weight: 950;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  box-shadow: 0 0 44px rgba(255, 0, 0, 0.18);
  transition: 0.18s;
}
.admin-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 70px rgba(255, 0, 0, 0.26);
}
.admin-btn:active {
  transform: translateY(0);
}

.admin-auth-msg {
  min-height: 18px;
  margin-top: 4px;
  font-weight: 800;
  color: rgba(255, 140, 140, 0.95);
}
.admin-auth-msg.ok {
  color: rgba(170, 255, 200, 0.95);
}

.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
.admin-row a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  font-size: 13px;
  opacity: 0.9;
}
.admin-row a:hover {
  color: var(--primary);
}

.admin-auth-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-weight: 800;
  font-size: 13px;
}
@media (max-width: 420px) {
  .admin-auth-card {
    padding: 18px;
  }
  .admin-auth-brand h1 {
    font-size: 24px;
  }
  .admin-input,
  .admin-btn {
    height: 52px;
    border-radius: 14px;
  }
}
@media (max-width: 520px) {
  .admin-auth-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ===============================
   25) INFO GRID (blocos informativos)
================================ */
.info-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}
.info-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 14px 14px;
}
.info-title {
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}
.info-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.info-text .line {
  display: flex;
  gap: 8px;
  align-items: baseline;
  line-height: 1.35;
  margin: 6px 0;
}
.info-text .muted {
  color: rgba(255, 255, 255, 0.6);
}
.info-highlight {
  border-color: rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.12) inset;
}
@media (max-width: 900px) {
  .info-text {
    font-size: 13px;
  }
  .info-item {
    padding: 12px;
  }
}

/* =========================================================
   26) RESPONSIVE — GERAL (até 1100px)
========================================================= */
@media (max-width: 1100px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .ig-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .newsletter-box {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .catalog-title {
    font-size: clamp(30px, 8.5vw, 40px);
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: relative;
    top: auto;
  }
}

/* =========================================================
   27) MOBILE — (até 760px)
   - menu mobile (único bloco consolidado)
   - hero/cards/sections
   - produtos (2 colunas)
========================================================= */
@media (max-width: 760px) {
  /* desktop-only / mobile-only */
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }

  .container {
    padding: 0 16px;
  }
  .section {
    padding: 56px 0;
  }
  .section-head h2 {
    font-size: 28px;
    line-height: 1.12;
  }
  .section-head p {
    font-size: 14px;
  }

  /* HEADER */
  .nav {
    display: none !important;
  }
  .topbar-inner {
    gap: 10px;
    padding: 10px 0;
    flex-wrap: nowrap;
    align-items: center;
  }
  .brand,
  .logo {
    min-width: 0;
  }
  .logo h1 {
    max-width: 52vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
  }
  .logo small {
    max-width: 52vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
  }
  .topbar-actions {
    gap: 8px;
  }
  .cart-ico-btn {
    height: 42px;
    padding: 0 12px;
    max-width: 40vw;
    gap: 8px;
    white-space: nowrap;
  }

  /* MENU BTN */
  .menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);
    cursor: pointer;
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0;
    padding: 0;
    flex: 0 0 auto;
  }
  .menu-btn:hover {
    border-color: rgba(255, 0, 0, 0.32);
    background: rgba(255, 0, 0, 0.1);
  }
  .menu-btn::before {
    content: "";
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    box-shadow:
      0 6px 0 currentColor,
      0 -6px 0 currentColor;
    opacity: 0.95;
  }

  /* MOBILE MENU overlay + painel (consolidado + iOS safe) */
  .mobile-menu {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(14px) saturate(1.2);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
    z-index: 99999 !important;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-inner {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(92vw, 380px);

    background:
      radial-gradient(
        900px 420px at 18% 12%,
        rgba(255, 0, 0, 0.12),
        transparent 60%
      ),
      linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(7, 7, 7, 0.98));

    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      -22px 0 70px rgba(0, 0, 0, 0.75),
      -6px 0 22px rgba(255, 0, 0, 0.1);
    border-radius: 18px 0 0 18px;

    padding: 16px;
    transform: translateX(18px);
    opacity: 0.98;
    transition:
      transform 0.22s ease,
      opacity 0.22s ease;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu.open .mobile-menu-inner {
    transform: translateX(0);
    opacity: 1;
  }
  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 900;
    cursor: pointer;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mobile-close:hover {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.3);
  }
  .mobile-search {
    margin-top: 14px;
  }
  .mobile-search input {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    padding: 0 14px;
    outline: none;
    font-weight: 800;
  }
  .mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  .mobile-search input:focus {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
  }
  .mobile-links {
    margin-top: 14px;
    display: grid;
    gap: 8px;
  }
  .mobile-links a {
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 900;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mobile-links a:hover {
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.1);
    color: #fff;
  }

  /* HERO */
  .hero {
    padding: 64px 0 40px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-title {
    font-size: clamp(30px, 8.5vw, 40px);
    line-height: 1.05;
  }
  .hero-sub {
    font-size: 14px;
    line-height: 1.7;
  }
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
  .metric {
    padding: 12px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
  }

  /* TRUST */
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  /* PRODUCTS (mobile 2 colunas) */
  #productsCarousel {
    display: none !important;
  }
  #productsGrid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: stretch;
  }
  #productsGrid .card {
    padding: 12px !important;
    border-radius: 18px !important;
    height: 100%;
  }
  #productsGrid .product-media {
    padding: 10px !important;
    border-radius: 16px !important;
  }
  #productsGrid .product-media img {
    height: 140px !important;
    object-fit: contain !important;
  }
  #productsGrid .product-title {
    font-size: 13px !important;
    min-height: 34px !important;
    margin-top: 10px !important;
    line-height: 1.2;
  }
  #productsGrid .price .pix {
    font-size: 18px !important;
  }
  #productsGrid .price .installments {
    font-size: 11px !important;
  }
  #productsGrid .btn-buy {
    height: 48px !important;
    border-radius: 14px !important;
    font-size: 13px;
  }

  /* OBJECTIVES */
  .objective-card {
    min-height: 320px;
  }
  .objective-content h3 {
    font-size: 26px;
  }

  /* KITS */
  .kit-media {
    height: 200px;
  }
  .kit-actions {
    grid-template-columns: 1fr;
  }

  /* BLOG/REVIEWS/IG */
  .blog-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .blog-card img {
    height: 180px;
  }
  .review-card {
    padding: 16px;
  }
  .ig-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .ig-card img {
    height: 150px;
  }

  /* SOCIAL BAR */
  .social-bar-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .social-pill {
    padding: 14px;
    border-radius: 18px;
  }
  .social-pill strong {
    font-size: 15px;
  }
  .social-pill span {
    font-size: 13px;
    opacity: 0.9;
  }

  /* CONTACT */
  .contact-card,
  .contact-form {
    padding: 16px;
  }
  .field input,
  .field textarea {
    border-radius: 14px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* MINI CART */
  .mini-cart {
    width: 92vw;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .mini-item img {
    width: 52px;
    height: 52px;
  }

  /* CATÁLOGO mobile */
  .catalog-hero {
    padding: 34px 0 18px;
  }
  .catalog-meta {
    position: sticky;
    top: 74px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 10px 12px;
    z-index: 5;
  }
  .catalog-open-filters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 950;
    cursor: pointer;
    transition: 0.18s;
    white-space: nowrap;
  }
  .catalog-open-filters:hover {
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.1);
  }
  .catalog-hero-inner .catalog-controls {
    display: none;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .catalog-grid .product-media img {
    height: 160px;
  }
  .catalog-grid .price .pix {
    font-size: 18px;
  }
  .catalog-grid .btn-buy {
    height: 50px;
  }

  /* CHECKOUT mobile */
  .checkout-title {
    font-size: 28px;
  }
  .checkout-form {
    padding: 16px;
    border-radius: 20px;
  }
  .checkout-box {
    padding: 14px;
    border-radius: 20px;
  }
  .checkout-form .form-row {
    grid-template-columns: 1fr;
  }
  .checkout-item {
    grid-template-columns: 52px 1fr auto;
  }
  .checkout-item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .summary-inline {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links a {
    overflow-wrap: anywhere;
  }
}

/* extra: telas muito pequenas */
@media (max-width: 420px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 360px) {
  #productsGrid {
    grid-template-columns: 1fr !important;
  }
}

/* ===============================
   28) MOBILE CAROUSEL (snap + drag)
================================ */
@media (max-width: 760px) {
  .mobile-carousel {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 6px 2px 14px;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-padding-left: 10px;

    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 10px,
      #000 calc(100% - 10px),
      transparent 100%
    );

    scroll-behavior: smooth;
    cursor: grab;
  }
  .mobile-carousel:active {
    cursor: grabbing;
  }

  .mobile-carousel::-webkit-scrollbar {
    height: 6px;
  }
  .mobile-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
  }

  .mobile-carousel > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
    transition:
      transform 0.18s ease,
      filter 0.18s ease;
    will-change: transform;
  }
  .mobile-carousel > *:active {
    transform: scale(0.985);
    filter: brightness(1.03);
  }

  .mobile-carousel .card,
  .mobile-carousel .objective-card,
  .mobile-carousel .kit-card,
  .mobile-carousel .review-card {
    width: 84%;
    max-width: 360px;
  }
}
@media (max-width: 420px) {
  .mobile-carousel .card,
  .mobile-carousel .objective-card,
  .mobile-carousel .kit-card,
  .mobile-carousel .review-card {
    width: 90%;
  }
}

/* =========================================================
   29) EFEITOS FINAIS — GLOW PREMIUM (sem faixas)
   - coloca no fim para ser “a autoridade” do background
========================================================= */
html,
body {
  background: var(--bg) !important;
}
body::before {
  content: "";
  position: fixed;
  inset: -35vmax;
  pointer-events: none;
  z-index: -2;

  background:
    radial-gradient(
      900px 520px at 18% 12%,
      rgba(255, 0, 0, 0.12),
      transparent 62%
    ),
    radial-gradient(
      820px 520px at 82% 18%,
      rgba(255, 0, 0, 0.08),
      transparent 66%
    ),
    radial-gradient(
      760px 520px at 40% 92%,
      rgba(255, 0, 0, 0.06),
      transparent 70%
    );

  filter: blur(8px);
  opacity: 0.85;
  transform: translateZ(0);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.06;

  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1) 0px,
      rgba(255, 255, 255, 0.1) 1px,
      rgba(0, 0, 0, 0) 2px,
      rgba(0, 0, 0, 0) 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      rgba(0, 0, 0, 0) 2px,
      rgba(0, 0, 0, 0) 6px
    );

  mix-blend-mode: overlay;
}

/* segurança: seções grandes não “vazam” efeitos */
.section,
.hero,
.kits,
.catalog-hero {
  position: relative;
  overflow: hidden;
}

/* =========================
   KIT PAGE (detalhes)
========================= */
.kit-page {
  padding: 24px 0;
}
.kit-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  opacity: 0.9;
}
.kit-hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  align-items: start;
}

.kit-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}
.kit-media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.kit-tags {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.kit-tag {
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}
.kit-tag.danger {
  border-color: rgba(255, 0, 0, 0.35);
  background: rgba(255, 0, 0, 0.18);
}

.kit-title {
  font-size: 34px;
  font-weight: 950;
  line-height: 1.1;
}
.kit-desc {
  margin-top: 8px;
  opacity: 0.9;
}
.kit-prices {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
}
.kit-old {
  opacity: 0.6;
  text-decoration: line-through;
}
.kit-new {
  font-size: 28px;
  font-weight: 950;
  color: var(--primary);
}
.kit-pix {
  opacity: 0.9;
}

.kit-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.kit-meta {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.meta-card {
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.meta-card strong {
  display: block;
  font-weight: 950;
}
.meta-card span {
  display: block;
  margin-top: 6px;
}

.kit-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.kit-panel {
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.kit-panel h3 {
  font-weight: 950;
  margin-bottom: 10px;
}

.kit-list,
.kit-benefits {
  display: grid;
  gap: 8px;
  margin-left: 18px;
}

@media (max-width: 980px) {
  .kit-hero {
    grid-template-columns: 1fr;
  }
  .kit-meta {
    grid-template-columns: 1fr;
  }
  .kit-grid {
    grid-template-columns: 1fr;
  }
  .kit-media img {
    max-height: 360px;
  }
}
/* =========================
   BLOG (listagem + post)
========================= */
.blog-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.blog-hero h1 {
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.4px;
}
.blog-hero p {
  margin-top: 6px;
  max-width: 560px;
}

.blog-controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.blog-search {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}
.blog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
}
.blog-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-filters select {
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 0 12px;
  font-weight: 900;
  outline: none;
}

.blog-featured-card {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.blog-featured-media {
  position: relative;
  display: block;
}
.blog-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.blog-featured-body {
  padding: 16px;
}
.blog-featured-body h2 {
  font-size: 26px;
  font-weight: 950;
}
.blog-featured-body p {
  margin-top: 8px;
}
.blog-featured-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-grid-wrap {
  margin-top: 18px;
}
.blog-grid-head h2 {
  font-weight: 950;
}
.blog-grid-head p {
  margin-top: 6px;
}

.blog-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.blog-card-media {
  position: relative;
  display: block;
}
.blog-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.blog-pill {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.4);
}

.blog-card-body {
  padding: 14px;
}
.blog-card-body h3 {
  font-size: 18px;
  font-weight: 950;
}
.blog-card-body p {
  margin-top: 8px;
}
.blog-card-foot {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.blog-link {
  font-weight: 950;
  color: #fff;
  opacity: 0.95;
}
.blog-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.blog-pagination {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Post */
.blog-back {
  display: inline-flex;
  margin-bottom: 14px;
  opacity: 0.9;
}

.post {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.post-head {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.post-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}
.post-head h1 {
  margin-top: 10px;
  font-size: 34px;
  font-weight: 950;
}
.post-meta {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.post-cover img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.post-body {
  padding: 18px;
  line-height: 1.7;
}
.post-body h2 {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 950;
}
.post-body p {
  margin-top: 10px;
  opacity: 0.95;
}

.post-cta {
  margin: 0 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 0, 0, 0.22);
  background: rgba(255, 0, 0, 0.1);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-related {
  margin-top: 18px;
}
.blog-related h3 {
  font-weight: 950;
}

@media (max-width: 980px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-cover img {
    height: 260px;
  }
}
/* =========================
   HEADER (fallback pro blog)
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.h-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  font-weight: 950;
  letter-spacing: 0.6px;
  font-size: 18px;
}

.h-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.h-nav a {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
  transition: 0.18s;
}

.h-nav a:hover {
  border-color: rgba(255, 0, 0, 0.28);
  background: rgba(255, 0, 0, 0.1);
  transform: translateY(-1px);
}

.h-nav a.active {
  border-color: rgba(255, 0, 0, 0.35);
  background: rgba(255, 0, 0, 0.16);
  color: #fff;
}

@media (max-width: 760px) {
  .h-row {
    align-items: flex-start;
  }
  .h-nav {
    width: 100%;
  }
  .h-nav a {
    flex: 1 1 auto;
    text-align: center;
  }
} /* =========================
   MOBILE MENU (Blog header)
========================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}
.mobile-menu.open {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

.mobile-menu-panel {
  position: absolute;
  right: 14px;
  top: 14px;
  width: min(92vw, 360px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.mobile-menu-links {
  display: grid;
  gap: 8px;
  padding: 14px;
}
.mobile-menu-links a {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
}
.mobile-menu-links a.active {
  border-color: rgba(255, 0, 0, 0.35);
  background: rgba(255, 0, 0, 0.16);
  color: #fff;
}
.mobile-menu-foot {
  padding: 14px;
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* só mostra botão de menu no mobile (se seu CSS já faz isso, pode ignorar) */
@media (min-width: 980px) {
  .mobile-menu {
    display: none !important;
  }
}
.nl-msg {
  display: block;
  margin-top: 8px;
  width: 100%;
  font-weight: 800;
  font-size: 12px;
  opacity: 0.95;
}


.admin-link:hover {
  opacity: 1;
  border-color: rgba(255, 0, 0, 0.28);
  background: rgba(255, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* se usar a opção B (btn) */
.admin-btn {
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  opacity: 0.85;
}
.admin-btn:hover {
  opacity: 1;
}
/* =========================
   BLOG GRID / CARDS
========================= */
.blog-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 14px;
}

.blog-card{
  grid-column: span 4;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  min-width: 0;
}

.blog-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,0,0,.22);
  background: rgba(255,0,0,.06);
}

.blog-media{
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0,0,0,.35);
}

.blog-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .22s ease;
}

.blog-card:hover .blog-media img{ transform: scale(1.08); }

.blog-tag{
  position:absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.blog-tag--hot{
  border-color: rgba(255,0,0,.22);
  background: rgba(255,0,0,.18);
}

.blog-body{ padding: 14px; }

.blog-meta{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 850;
  color: rgba(255,255,255,.72);
}
.blog-meta .dot{ opacity: .6; }

.blog-title{
  margin-top: 8px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .1px;
  line-height: 1.2;
}
.blog-title a{ color:#fff; }

.blog-excerpt{
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
  line-height: 1.45;
  min-height: 48px; /* deixa cards alinhados */
}

.blog-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* Responsivo */
@media (max-width: 1100px){
  .blog-card{ grid-column: span 6; }
}
@media (max-width: 760px){
  .blog-card{ grid-column: span 12; }
}
