/* ═══════════════════════════════════════════════════════
   RESET WordPress / Hello Elementor conflicts
   ═══════════════════════════════════════════════════════ */
body.starkx-page-template,
body.starkx-page-template.custom-background {
  margin: 0 !important;
  padding: 0 !important;
  background: radial-gradient(circle at 78% 8%, rgba(226,35,26,0.18), transparent 31rem),
              linear-gradient(180deg,#050505 0%,#0a0a0a 48%,#050505 100%) !important;
}

/* Reset elementor/WP injected wrappers */
body.starkx-page-template .elementor-section-wrap,
body.starkx-page-template .wp-site-blocks,
body.starkx-page-template .entry-content,
body.starkx-page-template .elementor { all: unset !important; }

/* Fix nav-toggle hidden on desktop */
body.starkx-page-template .nav-toggle { display: none !important; }

/* Fix button resets from WP themes */
body.starkx-page-template button,
body.starkx-page-template .btn {
  font-family: Arial, Helvetica, sans-serif !important;
  cursor: pointer !important;
}

/* Fix Hello Elementor header override */
body.starkx-page-template .site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 50 !important;
  background: rgba(5,5,5,0.68) !important;
  backdrop-filter: blur(18px) !important;
}

body.starkx-page-template .header-shell {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  min-height: 82px !important;
  align-items: center !important;
  gap: 1.4rem !important;
}

body.starkx-page-template .main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.65rem !important;
  transform: none !important;
  position: static !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

body.starkx-page-template .main-nav a {
  padding: 0 !important;
  border: none !important;
}

/* Fix WP adding padding-top to body */
body.starkx-page-template { padding-top: 0 !important; }

/* Remove WP adminbar offset if logged out */
body.starkx-page-template:not(.admin-bar) { margin-top: 0 !important; }

/* Fix images being set to max-width by WP */
body.starkx-page-template img { max-width: 100%; height: auto; }
body.starkx-page-template .hero-slide img,
body.starkx-page-template .product-media img,
body.starkx-page-template .about-media img { height: 100% !important; }

:root {
  --bg: #050505;
  --surface: #151515;
  --surface-2: #0d0d0d;
  --red: #e2231a;
  --red-dark: #8f130f;
  --text: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(226, 35, 26, 0.42);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(226, 35, 26, 0.18), transparent 31rem),
    linear-gradient(180deg, #050505 0%, #0a0a0a 48%, #050505 100%);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: var(--text);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 72px 0;
  scroll-margin-top: 82px;
}

#topo {
  scroll-margin-top: 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 28px;
}

.section-code,
.brand-line {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.0;
  font-weight: 900;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.82rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn::after {
  content: "";
  width: 1.8rem;
  height: 0.55rem;
  background: currentColor;
  clip-path: polygon(0 42%, 74% 42%, 74% 0, 100% 50%, 74% 100%, 74% 58%, 0 58%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--text);
  box-shadow: 0 16px 44px rgba(226, 35, 26, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f02a20;
  box-shadow: 0 18px 52px rgba(226, 35, 26, 0.42);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--line-strong);
  background: rgba(226, 35, 26, 0.08);
}

.btn-small {
  min-height: 42px;
  padding: 0.72rem 0.82rem;
  background: var(--red);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.9);
}

.header-shell {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 146px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.65rem;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, rgba(0,0,0,.82) 62%, transparent);
}

.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 8%;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(226, 35, 26, 0.28), rgba(226, 35, 26, 0.08) 32%, transparent 68%);
  filter: blur(10px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 4.5rem;
}

.hero-content {
  padding-top: 2rem;
}

.brand-line {
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  width: min(620px, 100%);
  margin-bottom: 2.1rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 1.4rem;
  background: rgba(255,255,255,0.03);
}

.hero-stat:not(:last-child) {
  border-right: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.18rem;
}

.hero-stat span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.hero-stat-divider { display: none; }

.hero-visual {
  position: relative;
}

/* ── Hero slider ───────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 680px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(226,35,26,0.25);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65);
  background: #080808;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.04);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* ── Gradiente preto no topo — cobre título da lâmina ── */
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 32%;
  background: linear-gradient(
    180deg,
    #000000 0%,
    #000000 38%,
    rgba(0,0,0,0.6) 68%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
  border-radius: 12px 12px 0 0;
}


.hero-slide img {
  width: 100%;
  height: 155%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-top: -26%;
}

.hero-slide-label {
  position: absolute;
  left: 16px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(5,5,5,0.78);
  backdrop-filter: blur(8px);
  border-left: 2px solid var(--red);
  padding: 0.6rem 1rem;
  border-radius: 0 4px 4px 0;
}

.hero-slide-cat {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-slide-name {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.hero-slider-badge {
  position: absolute;
  right: 16px;
  bottom: 64px;
  display: grid;
  gap: 0.12rem;
  min-width: 148px;
  border-left: 2px solid var(--red);
  padding: 0.65rem 0.9rem;
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(6px);
  border-radius: 0 4px 4px 0;
}

.hero-slider-badge span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-slider-badge strong {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.hero-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.hero-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}

.hero-slider-dot.is-active {
  background: var(--red);
  width: 20px;
  border-radius: 4px;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(5,5,5,0.65);
  backdrop-filter: blur(4px);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}

.hero-slider:hover .hero-slider-btn { opacity: 1; }

.hero-slider-btn:hover {
  background: rgba(226,35,26,0.55);
  border-color: var(--red);
}

.hero-slider-prev { left: 12px; }
.hero-slider-next { right: 12px; }

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 36%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(226, 35, 26, 0.96), transparent);
  box-shadow: 0 0 22px rgba(226, 35, 26, 0.75);
  animation: scan 4.8s ease-in-out infinite;
}

.tech-readout {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 0.2rem;
  min-width: 180px;
  border-left: 2px solid var(--red);
  padding: 0.9rem 1rem;
  background: rgba(5, 5, 5, 0.74);
}

.tech-readout span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.tech-readout strong {
  font-size: 2rem;
  line-height: 1;
}

/* ── Marquee strip ────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: var(--red);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.marquee-dot {
  font-size: 0.75rem !important;
  opacity: 0.55;
  flex-shrink: 0;
}

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

.products-section {
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.55), rgba(5, 5, 5, 0));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card,
.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card::before,
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(226, 35, 26, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover,
.benefit-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.36), 0 0 34px rgba(226, 35, 26, 0.1);
}

.product-card:hover::before,
.benefit-card:hover::before {
  opacity: 1;
}

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #080808;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.94));
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.05);
}

.product-body {
  position: relative;
  min-height: 184px;
  padding: 1.35rem 1.25rem 0.6rem;
}

.product-body span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-bottom: 0.7rem;
  font-size: 1.48rem;
  font-weight: 900;
}

.product-body p {
  margin-bottom: 0;
}

.product-actions {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 0.7rem;
  padding: 0 1.25rem 1.25rem;
}

.product-actions .btn {
  width: 100%;
  font-size: 0.68rem;
}

.benefits-section {
  padding-top: 56px;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 3rem;
  align-items: start;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  display: grid;
  min-height: 178px;
  grid-template-columns: auto 1fr;
  column-gap: 1.2rem;
  padding: 1.45rem;
}

.benefit-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(226, 35, 26, 0.36);
  border-radius: 4px;
  background: rgba(226, 35, 26, 0.09);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit-card h3 {
  margin-bottom: 0.55rem;
  font-weight: 900;
}

.benefit-card p {
  grid-column: 2;
  margin-bottom: 0;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(226, 35, 26, 0.08), transparent 32%),
    #080808;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 4rem;
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  height: 560px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.75));
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.1) brightness(0.82);
}

.about-content p {
  max-width: 660px;
  font-size: 1.1rem;
}

.about-lines {
  display: grid;
  max-width: 620px;
  margin-top: 2.1rem;
  border-top: 1px solid var(--line);
}

.about-lines span {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.authority-section {
  padding: 0;
  background: var(--red);
  color: var(--text);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,.22);
}

.authority-item {
  min-height: 126px;
  border-right: 1px solid rgba(255,255,255,.22);
  padding: 1.25rem;
}

.authority-item span {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 1.25rem;
  background: var(--text);
}

.authority-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Onde Comprar ─────────────────────────────────── */
.onde-comprar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.onde-comprar-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.046), rgba(255,255,255,0.016));
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.onde-comprar-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.onde-comprar-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,35,26,0.36);
  border-radius: 4px;
  background: rgba(226,35,26,0.09);
  color: var(--red);
}

.onde-comprar-icon svg {
  width: 26px;
  height: 26px;
}

.onde-comprar-card h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.onde-comprar-card p {
  margin-bottom: 0;
  flex: 1;
}

.onde-comprar-card .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── Social links ─────────────────────────────────── */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(226,35,26,0.4);
  border-radius: 4px;
  background: rgba(226,35,26,0.08);
  color: var(--red);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(226,35,26,0.22);
  border-color: var(--red);
  transform: translateY(-2px);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3.4rem;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  padding: 1.15rem 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 3rem 1.35rem 0;
}

.faq-answer p {
  margin-bottom: 0;
}

/* ── Contact section ──────────────────────────────── */
.contact-section {
  background: linear-gradient(180deg, rgba(226,35,26,0.06), transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.contact-details {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-details li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.contact-details a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--text);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.016));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8b8b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: #151515;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(226,35,26,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184,184,184,0.45);
}

.contact-btn {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.84rem;
  justify-content: center;
  gap: 0.6rem;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(184,184,184,0.55);
  margin: 0;
}

@media (max-width: 1040px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .onde-comprar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero-cards-stack { height: 380px; }
  .hero-card-badge { right: 10px; bottom: 10px; min-width: 130px; }
  .hero-card-badge strong { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
}

.final-cta {
  padding-top: 0;
}

.final-cta-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(226, 35, 26, 0.32);
  border-radius: 6px;
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    linear-gradient(135deg, rgba(226, 35, 26, 0.26), transparent 42%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    #0a0a0a;
  background-size: auto, 42px 42px, 42px 42px, auto;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.final-cta-box h2 {
  max-width: 760px;
}

.final-cta-box p {
  max-width: 620px;
  margin-bottom: 0;
}

/* ── Floating WhatsApp ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem 0.75rem 0.9rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.3s ease;
  animation: wa-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) 1.5s both;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.3);
}

.wa-float-label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes wa-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* pulse ring */
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25d366;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 700px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 0.85rem;
    border-radius: 50%;
  }
  .wa-float-label { display: none; }
}

/* ── Hover Footer ─────────────────────────────────────── */
.hover-footer {
  position: relative;
  margin: 0 24px 24px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.hf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(125% 125% at 50% 10%, rgba(15,15,17,0.9) 50%, rgba(226,35,26,0.18) 100%);
  pointer-events: none;
}

.hf-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-inline: auto;
  padding: 3.5rem 2.5rem 2rem;
}

.hf-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem 3rem;
  padding-bottom: 2.5rem;
}

.hf-logo {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}

.hf-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 260px;
  margin: 0;
}

.hf-heading {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.hf-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hf-links li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hf-links li svg {
  flex-shrink: 0;
  color: var(--red);
}

.hf-links a,
.hf-links span {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hf-links a:hover,
.hf-links a:focus-visible {
  color: var(--red);
}

.hf-contact {
  font-style: normal;
}

.hf-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 1.5rem;
}

.hf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hf-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: right;
}

.hf-copy {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.hf-dev {
  font-size: 0.75rem;
  color: rgba(184,184,184,0.5);
  margin: 0;
}

.hf-dev a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hf-dev a:hover { opacity: 0.75; }

/* ── Text hover SVG ───────────────────────────────────── */
.hf-text-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(120px, 18vw, 220px);
  margin-top: -5rem;
  margin-bottom: -2.5rem;
  overflow: hidden;
  user-select: none;
  cursor: default;
}

.hf-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* stroke draw animation */
.hf-text-draw {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: hf-draw 4s ease-in-out forwards;
}

@keyframes hf-draw {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1040px) {
  .hf-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .hover-footer {
    margin: 0 12px 12px;
    border-radius: 14px;
  }

  .hf-inner {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .hf-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hf-text-wrap {
    display: none;
  }

  .hf-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-120px);
    opacity: 0.38;
  }
  50% {
    transform: translateY(150px);
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 20px 1rem;
    background: rgba(5, 5, 5, 0.98);
    transform: translateY(-130%);
    transition: transform 0.28s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .benefits-layout,
  .about-grid,
  .faq-layout,
  .footer-grid,
  .onde-comprar-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-grid {
    gap: 2.4rem;
  }

  .scan-frame {
    min-height: 560px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 52px 0;
  }

  .brand img {
    width: 132px;
  }

  .header-shell {
    min-height: 74px;
  }

  .main-nav {
    inset: 74px 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

  h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.75rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .product-actions .btn {
    width: 100%;
  }

  .scan-frame {
    min-height: 470px;
  }

  .hero-product-main {
    width: 96%;
    right: -20%;
  }

  .hero-product-secondary {
    width: 82%;
    left: -36%;
  }

  .tech-readout {
    right: 16px;
    bottom: 16px;
  }

  .products-grid,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .product-body {
    min-height: auto;
  }

  .benefit-card {
    grid-template-columns: 1fr;
  }

  .benefit-card p {
    grid-column: auto;
  }

  .about-media {
    height: 420px;
  }

  .authority-item {
    min-height: 104px;
  }

  .faq-answer {
    padding-right: 0;
  }
}

/* ── Visual effects ───────────────────────────────────── */

/* Benefit cards — glow on hover */
.benefit-card:hover {
  box-shadow: 0 0 0 1px rgba(226,35,26,0.4),
              0 8px 40px rgba(226,35,26,0.15),
              0 24px 68px rgba(0,0,0,0.36);
}

/* FAQ items — highlight on open */
.faq-item:has(.faq-question[aria-expanded="true"]) {
  background: rgba(226,35,26,0.04);
  border-bottom-color: rgba(226,35,26,0.3);
}

/* authority section items — shimmer on hover */
.authority-item {
  transition: background 0.25s ease;
}
.authority-item:hover {
  background: rgba(255,255,255,0.07);
}

/* Onde-comprar cards — left border glow on hover */
.onde-comprar-card:hover {
  border-color: var(--red);
  box-shadow: -3px 0 0 0 var(--red),
              0 8px 32px rgba(226,35,26,0.18),
              0 24px 60px rgba(0,0,0,0.3);
}

/* section-head — red underline animate in */
.section-head.is-visible .section-code::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  margin-top: 6px;
  animation: line-in 0.5s ease 0.3s both;
}

@keyframes line-in {
  from { width: 0; opacity: 0; }
  to   { width: 32px; opacity: 1; }
}

/* Hero stat numbers — scale in */
.hero-stat.is-visible strong {
  animation: stat-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes stat-pop {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* Stagger hero stats */
.hero-stat:nth-child(1) strong { animation-delay: 0.1s; }
.hero-stat:nth-child(3) strong { animation-delay: 0.22s; }
.hero-stat:nth-child(5) strong { animation-delay: 0.34s; }

/* product-card — shimmer gradient on hover */
.product-card:hover .product-media::after {
  background: linear-gradient(180deg, transparent 50%, rgba(226,35,26,0.15) 100%);
}

/* final-cta-box — pulse border */
.final-cta-box {
  animation: border-pulse 3.5s ease-in-out infinite;
}

@keyframes border-pulse {
  0%, 100% { border-color: rgba(226,35,26,0.32); }
  50%       { border-color: rgba(226,35,26,0.65); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* WordPress/Elementor theme isolation.
   Keeps global theme colors from overriding the STARKX landing template. */
body.starkx-page-template,
body.starkx-page-template.custom-background {
  margin: 0 !important;
  color: var(--text) !important;
  background:
    radial-gradient(circle at 78% 8%, rgba(226, 35, 26, 0.18), transparent 31rem),
    linear-gradient(180deg, #050505 0%, #0a0a0a 48%, #050505 100%) !important;
  font-family: var(--font) !important;
  overflow-x: hidden !important;
}

body.starkx-page-template *,
body.starkx-page-template *::before,
body.starkx-page-template *::after {
  box-sizing: border-box !important;
}

body.starkx-page-template a {
  color: inherit !important;
  text-decoration: none !important;
}

body.starkx-page-template .container {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.starkx-page-template h1,
body.starkx-page-template h2,
body.starkx-page-template h3 {
  color: var(--text) !important;
  font-family: var(--font) !important;
  letter-spacing: 0 !important;
}

body.starkx-page-template p,
body.starkx-page-template address,
body.starkx-page-template .faq-answer p {
  color: var(--muted) !important;
  font-family: var(--font) !important;
}

body.starkx-page-template .site-header {
  background: rgba(5, 5, 5, 0.9) !important;
  border-bottom-color: var(--line) !important;
  box-shadow: none !important;
}

body.starkx-page-template .main-nav a {
  color: rgba(255, 255, 255, 0.76) !important;
  background: transparent !important;
}

body.starkx-page-template .main-nav a:hover,
body.starkx-page-template .main-nav a:focus-visible {
  color: var(--text) !important;
}

body.starkx-page-template .btn,
body.starkx-page-template button.btn,
body.starkx-page-template a.btn {
  min-height: 48px !important;
  border-radius: 4px !important;
  color: var(--text) !important;
  font-family: var(--font) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: none;
}

body.starkx-page-template .btn-primary,
body.starkx-page-template .btn-small {
  border-color: transparent !important;
  background: var(--red) !important;
  color: var(--text) !important;
  box-shadow: 0 16px 44px rgba(226, 35, 26, 0.32) !important;
}

body.starkx-page-template .btn-secondary,
body.starkx-page-template .btn-ghost {
  border-color: var(--line) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--text) !important;
}

body.starkx-page-template .faq-question,
body.starkx-page-template .faq-question:hover,
body.starkx-page-template .faq-question:focus {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--text) !important;
  box-shadow: none !important;
  outline-color: var(--red) !important;
}

body.starkx-page-template .faq-question span {
  color: var(--text) !important;
}

body.starkx-page-template .faq-question svg {
  stroke: var(--red) !important;
}

body.starkx-page-template .product-card,
body.starkx-page-template .benefit-card,
body.starkx-page-template .scan-frame,
body.starkx-page-template .final-cta-box {
  border-color: var(--line) !important;
  background-color: transparent !important;
}

body.starkx-page-template .authority-section {
  background: var(--red) !important;
}

body.starkx-page-template .authority-item p {
  color: var(--text) !important;
}

@media (max-width: 700px) {
  body.starkx-page-template .container {
    width: min(100% - 28px, 1180px) !important;
  }
}


/* Premium moving marquee refinement */
.marquee-strip {
  position: relative;
  padding: 1.65rem 0;
  background: linear-gradient(90deg, #c81812 0%, var(--red) 36%, #f02a20 50%, var(--red) 64%, #c81812 100%);
  box-shadow: 0 22px 70px rgba(226, 35, 26, 0.18), inset 0 1px 0 rgba(255,255,255,0.16), inset 0 -1px 0 rgba(0,0,0,0.28);
}

.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(9vw, 140px);
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5,5,5,0.34), transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5,5,5,0.34), transparent);
}

.marquee-track {
  gap: 2.8rem;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1;
  letter-spacing: 0.16em;
  text-shadow: 0 10px 26px rgba(0,0,0,0.2);
}

.marquee-dot {
  font-size: 0.9rem !important;
  opacity: 0.62;
}

body.starkx-page-template .marquee-strip {
  padding: 1.65rem 0 !important;
  background: linear-gradient(90deg, #c81812 0%, var(--red) 36%, #f02a20 50%, var(--red) 64%, #c81812 100%) !important;
}

body.starkx-page-template .marquee-track {
  gap: 2.8rem !important;
  animation: marquee-scroll 30s linear infinite !important;
  will-change: transform !important;
}

body.starkx-page-template .marquee-track span {
  font-size: clamp(1rem, 1.2vw, 1.18rem) !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;
}

@media (max-width: 700px) {
  .marquee-strip,
  body.starkx-page-template .marquee-strip {
    padding: 1.2rem 0 !important;
  }

  .marquee-track,
  body.starkx-page-template .marquee-track {
    gap: 2rem !important;
    animation-duration: 24s !important;
  }

  .marquee-track span,
  body.starkx-page-template .marquee-track span {
    font-size: 0.9rem !important;
  }
}

/* Final CTA spacing refinement */
.final-cta {
  padding-top: 24px;
}

.final-cta-box {
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.42fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  min-height: 360px;
  padding: clamp(2.4rem, 4.5vw, 4rem);
}

.final-cta-box h2 {
  max-width: 580px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.45rem, 4.3vw, 4.4rem);
  line-height: 0.98;
}

.final-cta-box p {
  max-width: 560px;
  font-size: 1.02rem;
}

.final-cta-box > .btn,
.final-cta-box > a.btn {
  justify-self: end;
  align-self: center;
  min-width: 282px;
}

body.starkx-page-template .final-cta-box {
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.42fr) !important;
  gap: clamp(1.5rem, 4vw, 3.25rem) !important;
  min-height: 360px !important;
  padding: clamp(2.4rem, 4.5vw, 4rem) !important;
}

body.starkx-page-template .final-cta-box h2 {
  max-width: 580px !important;
  margin-bottom: 1.2rem !important;
  font-size: clamp(2.45rem, 4.3vw, 4.4rem) !important;
  line-height: 0.98 !important;
}

body.starkx-page-template .final-cta-box p {
  max-width: 560px !important;
  font-size: 1.02rem !important;
}

body.starkx-page-template .final-cta-box > .btn,
body.starkx-page-template .final-cta-box > a.btn {
  justify-self: end !important;
  align-self: center !important;
  min-width: 282px !important;
}

@media (max-width: 1040px) {
  .final-cta-box,
  body.starkx-page-template .final-cta-box {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .final-cta-box > .btn,
  .final-cta-box > a.btn,
  body.starkx-page-template .final-cta-box > .btn,
  body.starkx-page-template .final-cta-box > a.btn {
    justify-self: start !important;
  }
}

@media (max-width: 700px) {
  .final-cta-box,
  body.starkx-page-template .final-cta-box {
    padding: 2rem 1.35rem !important;
  }

  .final-cta-box h2,
  body.starkx-page-template .final-cta-box h2 {
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
  }

  .final-cta-box > .btn,
  .final-cta-box > a.btn,
  body.starkx-page-template .final-cta-box > .btn,
  body.starkx-page-template .final-cta-box > a.btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* Footer link clickability fix */
.hf-bottom,
.social-links,
.social-links a,
.hf-copy-wrap,
.hf-dev,
.hf-dev a {
  position: relative;
  z-index: 8;
  pointer-events: auto;
}

.hf-text-wrap,
.hf-svg,
.hf-svg * {
  pointer-events: none !important;
}

body.starkx-page-template .hf-bottom,
body.starkx-page-template .social-links,
body.starkx-page-template .social-links a,
body.starkx-page-template .hf-copy-wrap,
body.starkx-page-template .hf-dev,
body.starkx-page-template .hf-dev a {
  position: relative !important;
  z-index: 8 !important;
  pointer-events: auto !important;
}

body.starkx-page-template .hf-text-wrap,
body.starkx-page-template .hf-svg,
body.starkx-page-template .hf-svg * {
  pointer-events: none !important;
}

/* Responsive menu and mobile layout hardening */
@media (max-width: 1180px) {
  body.starkx-page-template .header-shell {
    grid-template-columns: auto 1fr auto !important;
    gap: 1rem !important;
  }

  body.starkx-page-template .main-nav {
    gap: 1rem !important;
  }

  body.starkx-page-template .header-cta {
    padding-inline: 1rem !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 1040px) {
  html body.starkx-page-template.nav-open {
    overflow: hidden !important;
  }

  body.starkx-page-template .site-header {
    z-index: 9999 !important;
  }

  body.starkx-page-template .header-shell {
    grid-template-columns: auto auto !important;
    justify-content: space-between !important;
    min-height: 76px !important;
  }

  body.starkx-page-template .brand img {
    width: 136px !important;
    max-height: 60px !important;
    object-fit: contain !important;
  }

  body.starkx-page-template .nav-toggle {
    display: grid !important;
    width: 46px !important;
    height: 46px !important;
    place-items: center !important;
    border: 1px solid var(--line) !important;
    border-radius: 4px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--text) !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 10001 !important;
    padding: 0 !important;
  }

  body.starkx-page-template .nav-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    background: currentColor !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }

  body.starkx-page-template .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
  }

  body.starkx-page-template .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
  }

  body.starkx-page-template .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
  }

  body.starkx-page-template .main-nav {
    position: fixed !important;
    inset: 76px 0 auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-content: stretch !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    max-height: calc(100vh - 76px) !important;
    overflow-y: auto !important;
    padding: 0.65rem max(18px, calc((100vw - 1180px) / 2)) 1rem !important;
    background: rgba(5, 5, 5, 0.985) !important;
    border-top: 1px solid var(--line) !important;
    border-bottom: 1px solid rgba(226, 35, 26, 0.35) !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72) !important;
    transform: translateY(-125%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 0.28s ease, opacity 0.28s ease !important;
    z-index: 9998 !important;
  }

  body.starkx-page-template .main-nav.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.starkx-page-template .main-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 54px !important;
    padding: 0.95rem 0 !important;
    border-bottom: 1px solid var(--line) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.86rem !important;
  }

  body.starkx-page-template .main-nav a::after {
    display: none !important;
  }

  body.starkx-page-template .header-cta {
    display: none !important;
  }

  body.starkx-page-template .hero {
    min-height: auto !important;
    padding-top: 124px !important;
    padding-bottom: 72px !important;
  }

  body.starkx-page-template .hero-grid,
  body.starkx-page-template .about-grid,
  body.starkx-page-template .faq-grid,
  body.starkx-page-template .contact-grid,
  body.starkx-page-template .onde-comprar-grid {
    grid-template-columns: 1fr !important;
    gap: clamp(2rem, 6vw, 3.25rem) !important;
  }

  body.starkx-page-template .hero-content {
    max-width: 760px !important;
  }

  body.starkx-page-template .hero-visual,
  body.starkx-page-template .scan-frame,
  body.starkx-page-template .hero-cards-stack {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.starkx-page-template .hero-cards-stack {
    height: clamp(360px, 58vw, 520px) !important;
  }

  body.starkx-page-template .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.starkx-page-template .authority-grid,
  body.starkx-page-template .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.starkx-page-template .section-header,
  body.starkx-page-template .split-heading {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

@media (max-width: 760px) {
  body.starkx-page-template .container {
    width: min(100% - 28px, 1180px) !important;
  }

  body.starkx-page-template .header-shell {
    min-height: 70px !important;
  }

  body.starkx-page-template .brand img {
    width: 118px !important;
  }

  body.starkx-page-template .main-nav {
    inset: 70px 0 auto 0 !important;
    max-height: calc(100vh - 70px) !important;
    padding-inline: 14px !important;
  }

  body.starkx-page-template .hero {
    padding-top: 108px !important;
    padding-bottom: 56px !important;
  }

  body.starkx-page-template h1,
  body.starkx-page-template .hero h1 {
    font-size: clamp(2.45rem, 14vw, 4rem) !important;
    line-height: 0.96 !important;
    letter-spacing: 0 !important;
  }

  body.starkx-page-template .hero-copy,
  body.starkx-page-template .lead,
  body.starkx-page-template .section-intro {
    font-size: 1rem !important;
  }

  body.starkx-page-template .hero-actions,
  body.starkx-page-template .product-actions,
  body.starkx-page-template .contact-actions {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  body.starkx-page-template .btn,
  body.starkx-page-template .hero-actions .btn,
  body.starkx-page-template .product-actions .btn,
  body.starkx-page-template .contact-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    padding-inline: 1rem !important;
  }

  body.starkx-page-template .hero-stats,
  body.starkx-page-template .products-grid,
  body.starkx-page-template .authority-grid,
  body.starkx-page-template .benefits-grid,
  body.starkx-page-template .hf-grid,
  body.starkx-page-template .footer-main {
    grid-template-columns: 1fr !important;
  }

  body.starkx-page-template .product-card,
  body.starkx-page-template .benefit-card,
  body.starkx-page-template .authority-card,
  body.starkx-page-template .faq-item {
    min-width: 0 !important;
  }

  body.starkx-page-template .product-media {
    min-height: 230px !important;
  }

  body.starkx-page-template .product-body {
    padding: 1.15rem !important;
  }

  body.starkx-page-template .faq-question {
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.15rem !important;
    font-size: 1rem !important;
    text-align: left !important;
  }

  body.starkx-page-template .final-cta-box {
    text-align: left !important;
  }

  body.starkx-page-template .hf-bottom {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    text-align: left !important;
  }

  body.starkx-page-template .hf-copy-wrap {
    justify-self: start !important;
    text-align: left !important;
  }

  body.starkx-page-template .social-links {
    justify-content: flex-start !important;
  }

  body.starkx-page-template .wa-float {
    right: 14px !important;
    bottom: 16px !important;
  }
}

@media (max-width: 430px) {
  body.starkx-page-template .container {
    width: min(100% - 22px, 1180px) !important;
  }

  body.starkx-page-template h1,
  body.starkx-page-template .hero h1 {
    font-size: clamp(2.18rem, 13vw, 3.2rem) !important;
  }

  body.starkx-page-template h2,
  body.starkx-page-template .section-title,
  body.starkx-page-template .final-cta-box h2 {
    font-size: clamp(1.9rem, 10vw, 2.65rem) !important;
    line-height: 1.02 !important;
  }

  body.starkx-page-template .hero-cards-stack {
    height: 320px !important;
  }

  body.starkx-page-template .product-media {
    min-height: 205px !important;
  }
}
/* End responsive menu and mobile layout hardening */

/* Narrow mobile viewport anti-cut refinement */
@media (max-width: 520px) {
  html,
  body,
  body.starkx-page-template,
  body.starkx-page-template .starkx-page {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  body.starkx-page-template .container,
  body.starkx-page-template .hero-grid,
  body.starkx-page-template .hero-content,
  body.starkx-page-template .hero-visual,
  body.starkx-page-template .section,
  body.starkx-page-template main {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.starkx-page-template .site-header .container {
    width: calc(100% - 28px) !important;
  }

  body.starkx-page-template .hero {
    padding-top: 104px !important;
    padding-bottom: 46px !important;
  }

  body.starkx-page-template .brand-line {
    max-width: 100% !important;
    font-size: 0.68rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.16em !important;
    white-space: normal !important;
  }

  body.starkx-page-template h1,
  body.starkx-page-template .hero h1,
  body.starkx-page-template #hero-title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(2.25rem, 10.4vw, 2.78rem) !important;
    line-height: 0.98 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  body.starkx-page-template .hero-subtitle {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
  }

  body.starkx-page-template .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    border-radius: 6px !important;
  }

  body.starkx-page-template .hero-stat {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0.78rem 1rem !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  body.starkx-page-template .hero-stat:last-child {
    border-bottom: 0 !important;
  }

  body.starkx-page-template .hero-stat strong {
    font-size: 1.38rem !important;
  }

  body.starkx-page-template .hero-stat span {
    white-space: normal !important;
    font-size: 0.62rem !important;
    line-height: 1.25 !important;
    letter-spacing: 0.08em !important;
  }

  body.starkx-page-template .hero-actions,
  body.starkx-page-template .product-actions,
  body.starkx-page-template .contact-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.starkx-page-template .btn,
  body.starkx-page-template a.btn,
  body.starkx-page-template button.btn,
  body.starkx-page-template .hero-actions .btn,
  body.starkx-page-template .product-actions .btn {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0.9rem 0.95rem !important;
    gap: 0.7rem !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.07em !important;
  }

  body.starkx-page-template .btn::after {
    width: 1.25rem !important;
    min-width: 1.25rem !important;
    flex: 0 0 1.25rem !important;
  }

  body.starkx-page-template .hero-visual {
    margin-top: 0.5rem !important;
  }

  body.starkx-page-template .hero-cards-stack {
    height: 300px !important;
  }

  body.starkx-page-template .hero-card-badge {
    right: 8px !important;
    bottom: 8px !important;
    min-width: 116px !important;
    padding: 0.52rem 0.65rem !important;
  }

  body.starkx-page-template .hero-card-badge span {
    font-size: 0.55rem !important;
  }

  body.starkx-page-template .hero-card-badge strong {
    font-size: 1.2rem !important;
  }

  body.starkx-page-template .product-media,
  body.starkx-page-template .product-card,
  body.starkx-page-template .faq-list,
  body.starkx-page-template .final-cta-box,
  body.starkx-page-template .hf-bottom {
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 380px) {
  body.starkx-page-template .container {
    width: calc(100% - 20px) !important;
  }

  body.starkx-page-template h1,
  body.starkx-page-template .hero h1,
  body.starkx-page-template #hero-title {
    font-size: clamp(2rem, 10.2vw, 2.36rem) !important;
  }

  body.starkx-page-template .brand img {
    width: 106px !important;
  }

  body.starkx-page-template .nav-toggle {
    width: 42px !important;
    height: 42px !important;
  }
}
/* End narrow mobile viewport anti-cut refinement */

/* STARKX requested content refinements */
body.starkx-page-template .product-media {
  background:
    radial-gradient(circle at 50% 45%, rgba(226, 35, 26, 0.18), transparent 38%),
    linear-gradient(135deg, #050505 0%, #121212 48%, #030303 100%) !important;
}

body.starkx-page-template .product-media img {
  filter: contrast(1.08) saturate(1.05) !important;
}

body.starkx-page-template .hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: min(100%, 660px) !important;
}

body.starkx-page-template .hero-stat {
  min-width: 0 !important;
  justify-content: center !important;
}

body.starkx-page-template .hero-stat span {
  white-space: normal !important;
}

body.starkx-page-template .hf-address {
  margin: 0.35rem 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.84rem !important;
  line-height: 1.5 !important;
}

.distributors-hero {
  padding-top: 150px !important;
  background: radial-gradient(circle at 80% 20%, rgba(226,35,26,0.22), transparent 34%), #050505 !important;
}

.distributors-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr) !important;
  align-items: center !important;
  gap: clamp(2rem, 6vw, 5rem) !important;
}

.distributors-panel {
  min-height: 360px !important;
  display: grid !important;
  align-content: end !important;
  gap: 0.4rem !important;
  padding: clamp(1.5rem, 4vw, 2.6rem) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(226,35,26,0.18), transparent 48%),
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.08), transparent 32%),
    #090909 !important;
  box-shadow: 0 28px 80px rgba(0,0,0,0.48) !important;
}

.distributors-panel span {
  color: rgba(255,255,255,0.08) !important;
  font-size: clamp(4rem, 10vw, 8rem) !important;
  font-weight: 900 !important;
  line-height: 0.8 !important;
}

.distributors-panel strong {
  color: var(--text) !important;
  font-size: clamp(1.8rem, 4vw, 3.2rem) !important;
  line-height: 0.95 !important;
}

.distributors-panel small {
  color: var(--red) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.distributors-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

.dealer-card {
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.016)) !important;
}

.dealer-photo-placeholder {
  aspect-ratio: 1.35 / 1 !important;
  display: grid !important;
  place-items: center !important;
  background:
    linear-gradient(135deg, rgba(226,35,26,0.18), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 34px),
    #0a0a0a !important;
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.dealer-card-body {
  padding: 1.25rem !important;
}

.dealer-card-body h3 {
  margin-bottom: 0.35rem !important;
  font-size: 1.1rem !important;
}

.dealer-card-body p {
  color: var(--muted) !important;
}

.compact-footer {
  padding-top: 3rem !important;
}

@media (max-width: 1040px) {
  .distributors-hero-grid,
  .distributors-grid {
    grid-template-columns: 1fr !important;
  }

  .distributors-panel {
    min-height: 260px !important;
  }
}

@media (max-width: 520px) {
  body.starkx-page-template .hero-stats {
    grid-template-columns: 1fr !important;
  }

  .distributors-hero {
    padding-top: 112px !important;
  }
}
/* End STARKX requested content refinements */

/* Distributor real art gallery refinement */
body.starkx-distributors-page .site-header .header-shell {
  grid-template-columns: auto 1fr auto !important;
}

body.starkx-distributors-page .distributors-nav {
  display: flex !important;
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.distributors-section-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem) !important;
}

.distributors-art-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 2vw, 1.35rem) !important;
  align-items: start !important;
}

.dealer-art-card {
  position: relative !important;
  padding: 0 !important;
  border-radius: 8px !important;
  background: #070707 !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34) !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.dealer-art-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(226, 35, 26, 0.55) !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46), 0 0 34px rgba(226, 35, 26, 0.13) !important;
}

.dealer-art-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 9 / 16 !important;
  object-fit: cover !important;
  border-radius: inherit !important;
}

.distributors-empty-card {
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  padding: clamp(1.6rem, 4vw, 2.6rem) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.016)) !important;
}

@media (max-width: 1180px) {
  .distributors-art-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  body.starkx-distributors-page .distributors-nav {
    display: none !important;
  }

  body.starkx-distributors-page .site-header .header-shell {
    grid-template-columns: auto auto !important;
  }

  .distributors-art-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 520px) {
  .distributors-art-grid {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
    margin-inline: auto !important;
  }
}
/* End distributor real art gallery refinement */

/* Product raw photo reset */
body.starkx-page-template .product-media {
  background: #050505 !important;
}

body.starkx-page-template .product-media::after,
body.starkx-page-template .product-card:hover .product-media::after {
  display: none !important;
  opacity: 0 !important;
}

body.starkx-page-template .product-media img,
body.starkx-page-template .product-card:hover .product-media img {
  filter: none !important;
  transform: none !important;
  object-fit: cover !important;
  object-position: center center !important;
}

body.starkx-page-template .product-card:hover {
  transform: none !important;
}
/* End product raw photo reset */

/* Premium distributors static page */
.static-distributors-page .site-header .header-shell,
.starkx-distributors-page .site-header .header-shell {
  grid-template-columns: auto 1fr auto;
}
.static-distributors-page .distributors-nav,
.starkx-distributors-page .distributors-nav {
  display: flex;
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.premium-dealers-hero,
.distributors-hero {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  background: radial-gradient(circle at 82% 22%, rgba(226, 35, 26, 0.24), transparent 32%), linear-gradient(180deg, rgba(255,255,255,0.03), transparent 42%), #050505;
}
.premium-dealers-hero::before,
.distributors-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.88), transparent 86%);
}
.distributors-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.dealers-hero-card,
.distributors-panel {
  min-height: 380px;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(226, 35, 26, 0.2), transparent 52%), radial-gradient(circle at 35% 20%, rgba(255,255,255,0.08), transparent 34%), #090909;
  box-shadow: 0 30px 90px rgba(0,0,0,0.52);
}
.dealers-hero-logo,
.distributors-panel span {
  color: rgba(255,255,255,0.08);
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.78;
}
.dealers-hero-card strong,
.distributors-panel strong {
  color: var(--text);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 0.95;
}
.dealers-hero-card span,
.distributors-panel small {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dealers-showcase-section { background: linear-gradient(180deg, #050505, #090909 42%, #050505); }
.distributors-section-header { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.dealers-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,0.035);
}
.dealers-toolbar span,
.dealers-toolbar a {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.dealers-toolbar a { color: var(--red); }
.dealers-showcase-grid,
.distributors-art-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}
.dealer-showcase-card,
.dealer-art-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.016));
  box-shadow: 0 18px 52px rgba(0,0,0,0.32);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.dealer-showcase-card:hover,
.dealer-art-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 35, 26, 0.55);
  box-shadow: 0 26px 70px rgba(0,0,0,0.46), 0 0 34px rgba(226,35,26,0.13);
}
.dealer-art-link,
.dealer-art-card img { display: block; }
.dealer-showcase-card img,
.dealer-art-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.dealer-card-footer {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}
.dealer-card-footer span {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dealer-wa-btn {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  font-size: 0.72rem;
}
.dealers-final-section { padding-top: 2rem; }
@media (max-width: 1180px) {
  .dealers-showcase-grid,
  .distributors-art-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1040px) {
  .distributors-hero-grid { grid-template-columns: 1fr; }
  .dealers-hero-card,
  .distributors-panel { min-height: 280px; }
}
@media (max-width: 820px) {
  .static-distributors-page .distributors-nav,
  .starkx-distributors-page .distributors-nav { display: none; }
  .static-distributors-page .site-header .header-shell,
  .starkx-distributors-page .site-header .header-shell { grid-template-columns: auto auto; }
  .dealers-showcase-grid,
  .distributors-art-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dealers-toolbar { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .premium-dealers-hero,
  .distributors-hero { padding-top: 112px; }
  .dealers-showcase-grid,
  .distributors-art-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
}
/* End premium distributors static page */

/* Dealers hero workshop image */
.dealers-hero-image-card {
  position: relative;
  min-height: 380px;
  padding: 0;
  overflow: hidden;
  align-content: stretch;
  background: #050505;
}

.dealers-hero-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.05) saturate(1.04);
}

.dealers-hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.72) 100%),
    radial-gradient(circle at 70% 20%, rgba(226,35,26,0.18), transparent 38%);
}

.dealers-hero-image-caption {
  position: absolute;
  left: clamp(1rem, 3vw, 1.8rem);
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 2;
  display: grid;
  gap: 0.25rem;
}

.dealers-hero-image-caption span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dealers-hero-image-caption strong {
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 0.98;
}

@media (max-width: 1040px) {
  .dealers-hero-image-card,
  .dealers-hero-image-card img {
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .dealers-hero-image-card,
  .dealers-hero-image-card img {
    min-height: 250px;
  }
}
/* End dealers hero workshop image */

/* Supplier cards section */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.supplier-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 18px 52px rgba(0,0,0,0.3);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.supplier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226,35,26,0.5);
  box-shadow: 0 26px 70px rgba(0,0,0,0.46), 0 0 32px rgba(226,35,26,0.12);
}

.supplier-logo-box {
  height: 160px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 6px;
  background: #fff;
}

.supplier-logo {
  display: block;
  width: 100%;
  max-height: 124px;
  object-fit: contain;
}

.supplier-tag {
  width: fit-content;
  padding: 0.48rem 0.7rem;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.supplier-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.12;
}

.supplier-infos {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.15rem;
}

.supplier-infos p {
  margin: 0;
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.supplier-infos strong {
  color: rgba(255,255,255,0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supplier-wa {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@media (max-width: 1180px) {
  .suppliers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .suppliers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .suppliers-grid { grid-template-columns: 1fr; }
  .supplier-card { min-height: auto; }
}
/* End supplier cards section */
/* ── STÄRKX 404 ───────────────────────────────────── */
.not-found-hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  padding-top: 132px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 22%, rgba(226,35,26,0.22), transparent 36%), linear-gradient(180deg, #050505 0%, #090909 50%, #050505 100%);
}
.not-found-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  pointer-events: none;
}
.not-found-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.not-found-copy h1 {
  max-width: 780px;
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}
.not-found-panel {
  min-height: 390px;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(226,35,26,0.22), rgba(255,255,255,0.025) 42%, rgba(0,0,0,0.65)), #0a0a0a;
  box-shadow: 0 34px 90px rgba(0,0,0,0.42), 0 0 55px rgba(226,35,26,0.12);
  overflow: hidden;
}
.not-found-panel span {
  color: rgba(255,255,255,0.08);
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 950;
  line-height: 0.75;
}
.not-found-panel strong {
  color: var(--text);
  font-size: clamp(1.65rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 0.95;
}
.not-found-panel small {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.supplier-wa {
  justify-content: center;
  text-align: center;
  white-space: normal;
}
@media (max-width: 900px) {
  .not-found-grid { grid-template-columns: 1fr; }
  .not-found-panel { min-height: 280px; }
}
@media (max-width: 520px) {
  .not-found-hero { padding-top: 112px; }
  .not-found-copy h1 { font-size: clamp(2.7rem, 17vw, 4.8rem); }
}