:root {
  --bg: #0b0b0d;
  --bg-soft: #14161a;
  --surface: #ffffff;
  --surface-2: #f6f7f9;
  --text: #17181b;
  --text-soft: #5b616b;
  --line: #e8eaee;
  --line-dark: rgba(255,255,255,0.08);
  --primary: #d32f2f;
  --primary-dark: #a91f1f;
  --primary-soft: rgba(211, 47, 47, 0.12);
  --white: #ffffff;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.16);
  --shadow-md: 0 14px 35px rgba(0, 0, 0, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
  --header-h: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(211, 47, 47, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0px, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.18), rgba(5, 6, 8, 0.62));
  backdrop-filter: blur(4px);
}

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

a {
  color: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

/* =========================
   NAVBAR - BASE LOJA
========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: linear-gradient(90deg, rgba(2, 3, 5, 0.98) 0%, rgba(5, 6, 8, 0.96) 66%, rgba(52, 8, 8, 0.92) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.18), transparent);
}

.navbar .container {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(230px, 280px) 1fr minmax(204px, 224px);
  align-items: center;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo img {
  width: clamp(140px, 15vw, 180px);
  height: auto;
  display: block;
  object-fit: contain;
}

.logo span {
  color: var(--primary);
}

.navbar nav {
  justify-self: center;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  list-style: none;
}

nav ul li {
  display: flex;
  align-items: center;
}

nav ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.79rem;
  line-height: 1;
  padding: 8px 4px;
  border-radius: 999px;
  transition: 0.25s ease;
}

nav ul li a:link,
nav ul li a:visited,
nav ul li a:hover,
nav ul li a:active {
  text-decoration: none;
}

nav ul li a:hover,
nav ul li a.nav-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(211, 47, 47, 0.2);
}

.navbar-cta {
  justify-self: end;
  width: 100%;
  max-width: 196px;
}

.nav-cta-item {
  display: none;
}

.nav-mobile-only {
  display: none;
}

.btn-quote:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  background: linear-gradient(135deg, #e33a3a, #b91f1f);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 24px) 0 28px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 58, 58, 0.2), transparent 14%),
    radial-gradient(circle at 78% 46%, rgba(160, 15, 15, 0.28), transparent 26%),
    linear-gradient(118deg, #040507 0%, #090b0f 48%, #160405 76%, #240606 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  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: 86px 86px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 78%);
  opacity: 0.22;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.94) 0%, rgba(4, 5, 7, 0.56) 34%, rgba(4, 5, 7, 0) 62%),
    radial-gradient(circle at 86% 52%, rgba(255, 60, 60, 0.14), transparent 20%);
}

.hero-premium-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(460px, 520px) minmax(640px, 1fr);
  align-items: center;
  gap: 10px;
  min-height: calc(100vh - var(--header-h) - 44px);
}

.hero-copy {
  max-width: 500px;
  padding: 20px 0 14px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy-shell {
  position: relative;
  height: 460px;
  width: 100%;
  overflow: visible;
}

.hero-text-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.hero-text-layer.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: #ff6e6e;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #ff5247 0%, #ff5247 28%, rgba(255, 82, 71, 0.2) 28%, rgba(255, 82, 71, 0.2) 100%);
}

.hero-title {
  max-width: 520px;
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: initial;
  height: auto;
  white-space: normal;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title span {
  color: #ff3b30;
  text-shadow: 0 0 30px rgba(255, 59, 48, 0.16);
}

.hero-description {
  max-width: 430px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.65;
  height: auto;
}

.hero-description-line {
  display: block;
}

.hero-machine-signature span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-machine-signature strong {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 800;
  color: #ffffff;
  width: 100%;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 28px;
  min-height: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  gap: 12px;
  margin: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-actions .primary {
  width: 168px;
}

.hero-actions .secondary {
  width: 214px;
}

.btn-arrow {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 30px rgba(211, 47, 47, 0.22);
}

.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.secondary {
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  background: rgba(255,255,255,0.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.secondary:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  min-height: 44px;
}

.hero-highlight {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-highlight-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: #ff493d;
  background: transparent;
  box-shadow: none;
  margin-top: 2px;
}

.hero-highlight-icon svg {
  width: 16px;
  height: 16px;
}

.hero-highlight strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 0.7rem;
  line-height: 1.1;
  font-weight: 700;
}

.hero-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  line-height: 1.18;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 124px 8px 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 16% 12% 10% 16%;
  background: radial-gradient(circle at center, rgba(255, 59, 48, 0.24), transparent 62%);
  filter: blur(30px);
  z-index: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 44px;
  top: 38px;
  width: min(88%, 640px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 85, 85, 0.22);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  opacity: 0.68;
}

.hero-media-stack {
  position: relative;
  z-index: 2;
  width: min(100%, 940px);
  height: min(80vh, 760px);
  min-height: 760px;
  display: grid;
  overflow: visible;
}

.hero-media-stack::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 10%;
  bottom: 8%;
  height: 14%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.44), transparent 72%);
  filter: blur(12px);
  z-index: 0;
}

.hero-media-slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translate3d(42px, 10px, 0) scale(0.95);
  filter: blur(4px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease;
}

.hero-media-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hero-media-slide img {
  width: 118%;
  height: 118%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  transform: translate3d(var(--hero-media-x, 0), var(--hero-media-y, 0), 0) scale(var(--hero-media-scale, 1));
  transform-origin: center center;
  filter:
    drop-shadow(0 28px 52px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 36px rgba(255, 59, 48, 0.12));
}

.hero-curve-line {
  position: absolute;
  top: 56px;
  right: 58px;
  width: 270px;
  height: 270px;
  border: 2px solid rgba(255, 61, 50, 0.58);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  z-index: 1;
  opacity: 0.9;
}

.hero-progress {
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.hero-progress-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 54px;
  padding: 8px 0 8px 16px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
  cursor: pointer;
  transition: color 0.25s ease;
}

.hero-progress-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hero-progress-btn::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 22px;
  height: 1px;
  margin-right: 8px;
  background: linear-gradient(90deg, rgba(255, 80, 80, 0.5), transparent);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
}

.hero-progress-btn.is-active {
  color: #ffffff;
}

.hero-progress-btn.is-active::before {
  background: #ff3b30;
  box-shadow: 0 0 0 6px rgba(255, 59, 48, 0.14);
  transform: translateY(-50%) scale(1.05);
}

.hero-progress-btn.is-active::after {
  opacity: 1;
}

.hero-machine-signature {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  width: auto;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* fundo animado */
.maquinas-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.maquina {
  position: absolute;
  top: -120px;
  width: 60px;
  opacity: 0.12;
  animation: cair linear infinite;
  pointer-events: none;
}

@keyframes cair {
  0% {
    transform: translateY(-120px) rotate(0deg);
  }
  100% {
    transform: translateY(120vh) rotate(360deg);
  }
}

/* =========================
   TITULOS
========================= */
.section-title {
  text-align: center;
  margin-bottom: 18px;
}

.section-title span {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title h2,
.section-title h1 {
  color: #16181b;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
}

/* =========================
   FEATURES / SERVIÇOS / CARDS
   BASEADO NOS CARDS DA LOJA
========================= */
.features {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  padding: 24px 22px;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
  border-color: rgba(211, 47, 47, 0.22);
}

.feature-img,
.feature-card .icon {
  margin: 0 auto 16px;
}

.feature-img {
  width: 82px;
}

.feature-card .icon {
  font-size: 3rem;
  color: var(--primary);
}

.feature-card h3,
.feature-card h2 {
  color: #16181b;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  line-height: 1.32;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.68;
  margin-bottom: 18px;
  flex: 1;
}

.img-produto {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: 0.35s;
}

.img-produto-wrap {
  width: 100%;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.feature-card:hover .img-produto {
  transform: scale(1.08);
}

.maquina-card-link {
  text-decoration: none;
  color: inherit;
}

.maquina-card-link .card-btn {
  margin-top: auto;
}

.card-btn,
.btn-whatsapp-card,
.qs-btn,
.cert-btn,
.btn-mapa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 28px rgba(211, 47, 47, 0.24);
  transition: 0.25s ease;
}

.card-btn:hover,
.btn-whatsapp-card:hover,
.qs-btn:hover,
.cert-btn:hover,
.btn-mapa:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-whatsapp-card {
  margin-top: 14px;
}

/* =========================
   PRODUTOS / EQUIPAMENTOS
========================= */
.produtos {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 80px 0 0;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: 0.28s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
}

.card h2 {
  color: var(--primary);
  text-align: center;
  margin-top: 25px;
  font-family: 'Montserrat', sans-serif;
}

.card p {
  margin: 18px 20px 0;
  color: var(--text-soft);
}

.maquinas {
  transition: 0.3s;
  width: 250px;
  display: block;
  margin: 0 auto;
}

.maquinas:hover {
  transform: scale(1.05);
}

/* equipamentos */
#produtos.equipamentos {
  width: 100%;
  padding: 40px 16px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#produtos > div:first-child {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 30px;
}

#produtos h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #16181b;
  font-family: 'Montserrat', sans-serif;
}

#produtos h1::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 12px auto 0;
  border-radius: 999px;
}

.link-acessorios {
  text-decoration: none;
  color: inherit;
}

.card-equipamentos {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  padding: 22px 18px;
  text-align: center;
}

.card-equipamentos:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
  border-color: rgba(211, 47, 47, 0.22);
}

.card-equipamentos h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.card-equipamentos p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.card-equipamentos a {
  margin-top: 15px;
  width: 100%;
  text-align: center;
}

/* =========================
   DEPOIMENTOS PREMIUM
========================= */
.depoimentos-premium {
  position: relative;
  overflow: hidden;
  padding: 88px 20px;
  background:
    radial-gradient(circle at 9% 18%, rgba(211, 47, 47, 0.08), transparent 25%),
    radial-gradient(circle at 88% 16%, rgba(17, 18, 20, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f6f8f7);
}

.depoimentos-premium::before,
.depoimentos-premium::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 120px);
  pointer-events: none;
}

.depoimentos-premium::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.depoimentos-premium::after {
  right: 0;
  background: linear-gradient(270deg, #f6f8f7, rgba(246, 248, 247, 0));
}

.depoimentos-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.depoimentos-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(211, 47, 47, 0.18);
  border-radius: 999px;
  background: rgba(211, 47, 47, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.depoimentos-header h2 {
  max-width: 760px;
  color: #16181b;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

.depoimentos-header p {
  max-width: 760px;
  color: var(--text-soft);
  line-height: 1.7;
}

.depoimentos-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: #16181b;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 26px rgba(17, 18, 20, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.depoimentos-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(17, 18, 20, 0.2);
}

.depoimentos-resumo {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 18, 20, 0.08);
}

.depoimentos-resumo strong {
  display: inline-grid;
  place-items: center;
  min-width: 72px;
  min-height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #a71f1f);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(211, 47, 47, 0.2);
}

.depoimentos-resumo span {
  color: var(--text-soft);
  line-height: 1.5;
}

.depoimentos-slider {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 8px 0 14px;
}

.depoimentos-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: depoimentos-scroll 82s linear infinite;
}

.depoimentos-slider:hover .depoimentos-track {
  animation-play-state: paused;
}

.depoimento-card {
  width: min(86vw, 390px);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  box-shadow: 0 18px 42px rgba(17, 18, 20, 0.1);
}

.depoimento-topo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.depoimento-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #151515);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(211, 47, 47, 0.18);
}

.depoimento-cliente {
  min-width: 0;
}

.depoimento-cliente strong {
  display: block;
  overflow: hidden;
  color: #16181b;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.depoimento-cliente span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.depoimento-estrelas {
  margin-bottom: 12px;
  color: #f5a623;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.depoimento-texto {
  flex: 1;
  color: #3b3f45;
  line-height: 1.72;
}

.depoimento-selo {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

@keyframes depoimentos-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

/* =========================
   MARCAS / CAROUSEL
========================= */
.principais-marcas {
  padding: 54px 0 64px;
  background:
    radial-gradient(circle at 12% 20%, rgba(211, 47, 47, 0.07), transparent 26%),
    linear-gradient(180deg, #ffffff, #f7f8fa);
}

.principais-marcas h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: #16181b;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  margin-bottom: 28px;
}

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.marca-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(17, 18, 20, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.marca-card:hover {
  transform: translateY(-4px);
  border-color: rgba(211, 47, 47, 0.2);
  box-shadow: 0 20px 44px rgba(17, 18, 20, 0.11);
}

.img-marcas {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 74px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.86;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

.marca-card:hover .img-marcas {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-strong,
.logo-gelasio,
.logo-jack {
  max-width: 150px;
  max-height: 74px;
}

/* Estes arquivos possuem mais respiro/transparencia interna; ampliamos a imagem mantendo proporcao. */
.logo-pin {
  max-width: 178px;
  max-height: 92px;
  transform: scale(1.12);
}

.logo-silvertex {
  max-width: 184px;
  max-height: 94px;
  transform: scale(1.14);
}

.marca-card:hover .logo-pin {
  transform: scale(1.18);
}

.marca-card:hover .logo-silvertex {
  transform: scale(1.2);
}

@media (max-width: 980px) {
  .marcas-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 620px) {
  .principais-marcas {
    padding: 42px 0 52px;
  }

  .marcas-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 12px;
  }

  .marca-card {
    min-height: 104px;
    padding: 14px;
  }

  .img-marcas {
    max-width: 128px;
    max-height: 64px;
  }

  .logo-pin,
  .logo-silvertex {
    max-width: 152px;
    max-height: 78px;
  }
}

/* =========================
   QUEM SOMOS
========================= */
.quem-somos {
  margin-top: 50px;
}

.qs-container {
  width: 100%;
  background:
    linear-gradient(115deg, rgba(10,10,12,0.96), rgba(25,27,31,0.92));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.qs-texto {
  width: 100%;
  padding: 32px 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qs-texto h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
}

.qs-texto p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.qs-texto .sobre {
  color: #ff8b8b;
  font-weight: 700;
}

.img-sobre {
  width: 70%;
  border-radius: 18px;
  margin: 30px auto 50px auto;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

@media (min-width: 768px) {
  .qs-texto {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
  }

  .qs-texto h2 {
    font-size: 2.2rem;
  }

  .qs-texto p {
    font-size: 1rem;
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .qs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .qs-texto {
    padding: 80px 60px;
  }

  .qs-texto h2 {
    font-size: 2.6rem;
  }

  .qs-texto p {
    font-size: 1.05rem;
    max-width: 520px;
  }

  .qs-imagens,
  .qs-imagem {
    width: 100%;
    height: 100%;
  }

  .qs-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* =========================
   CERTIFICAÇÃO
========================= */
.qs-cert {
  background: #111;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.qs-cert h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.cert-item {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.cert-item:hover {
  transform: translateY(-8px);
  background: #222;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.cert-item::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle,rgba(211,47,47,0.2),transparent);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

.cert-item:hover::before {
  opacity: 1;
}

.cert-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.cert-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.cert-item p {
  font-size: 0.9rem;
  color: #ccc;
}

/* =========================
   MAPA
========================= */
.mapa {
  padding: 88px 20px;
  background:
    radial-gradient(circle at 12% 10%, rgba(211, 47, 47, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f8f7, #ffffff);
}

.mapa-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(17, 18, 20, 0.12);
}

.mapa-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(17, 18, 20, 0.96), rgba(31, 32, 36, 0.94)),
    radial-gradient(circle at top right, rgba(211, 47, 47, 0.25), transparent 34%);
  color: #fff;
}

.mapa-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(211, 47, 47, 0.32);
  border-radius: 999px;
  background: rgba(211, 47, 47, 0.12);
  color: #ffd7d7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.titulo-mapa {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  margin-bottom: 14px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.mapa-info p {
  max-width: 520px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.mapa-endereco {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.mapa-endereco strong {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.mapa-endereco span {
  color: rgba(255, 255, 255, 0.78);
}

.mapa-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mapa-acoes .btn-mapa {
  margin: 0;
}

.btn-mapa-whats {
  background: linear-gradient(135deg, #1f9d55, #13733e);
  box-shadow: 0 14px 28px rgba(31, 157, 85, 0.18);
}

.mapa-frame {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 22px;
  background: #eef1f4;
}

.mapa-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

@media (max-width: 900px) {
  .mapa-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .mapa-info {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .mapa {
    padding: 58px 14px;
  }

  .mapa-card {
    padding: 12px;
    border-radius: 20px;
  }

  .mapa-info {
    padding: 20px;
    border-radius: 16px;
  }

  .mapa-acoes .btn-mapa {
    width: 100%;
  }
}

/* =========================
   MANUAIS
========================= */
.manuais {
  padding: 120px 20px 60px;
  background: linear-gradient(180deg, #f4f7f6, #ffffff);
}

.manuais h1 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.filtros {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.filtros button {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: #eaeaea;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

.filtros button.active,
.filtros button:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(211,47,47,0.35);
  transform: translateY(-2px);
}

.busca {
  max-width: 420px;
  margin: 0 auto 35px;
}

.busca input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.25s;
}

.busca input:focus {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(211,47,47,0.25);
}

.grid-manuais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card-manual {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-manual:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-manual h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #222;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.lista-manuais {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lista-manuais a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.lista-manuais a::after {
  content: "📄";
  opacity: 0.6;
}

.lista-manuais a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(211,47,47,0.35);
}

/* =========================
   FOOTER - BASE LOJA
========================= */
footer {
  background:
    radial-gradient(circle at top, rgba(211, 47, 47, 0.18), transparent 26%),
    linear-gradient(180deg, #111214, #0a0a0c);
  color: rgba(255,255,255,0.88);
  margin-top: 20px;
  padding: 70px 20px 38px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer#contato .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.img-rodape {
  width: 74px;
  margin: 0 auto 18px;
}
.selos-seguranca-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 14px;
}

.selo-seguranca-footer {
  display: block;
  width: min(95px, 36vw);
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

footer .container p {
  margin-bottom: 8px;
}

.fim {
  color: var(--primary);
  font-weight: 800;
}

.footer-legal {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #d7d7d7;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

.redes-sociais {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 26px;
}

.social,
.redes-sociais a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.social img,
.redes-sociais img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.social:hover,
.redes-sociais a:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(211, 47, 47, 0.14);
  border-color: rgba(211, 47, 47, 0.28);
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.34);
  z-index: 1100;
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1080px) {
  .navbar .container {
    grid-template-columns: minmax(200px, 232px) 1fr minmax(176px, 196px);
    gap: 18px;
  }

  nav ul {
    gap: 8px;
  }

  nav ul li a {
    font-size: 0.76rem;
    padding: 8px 3px;
  }

  .btn-quote {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.72rem;
  }

  .hero-premium-grid {
    grid-template-columns: minmax(420px, 490px) minmax(520px, 1fr);
  }

  .hero-title {
    font-size: clamp(3.3rem, 5.7vw, 4.9rem);
  }

  .hero-visual {
    min-height: 620px;
    padding-right: 118px;
  }

  .hero-media-stack {
    height: min(70vh, 680px);
  }

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

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .navbar .container {
    grid-template-columns: auto 1fr auto;
  }

  .navbar nav {
    justify-self: stretch;
    pointer-events: none;
  }

  .navbar nav.active,
  .navbar nav.open {
    pointer-events: auto;
  }

  .navbar-cta {
    display: none;
  }

  nav ul {
    position: absolute;
    top: calc(100% + 12px);
    right: 4%;
    width: min(92vw, 360px);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(211, 47, 47, 0.22), transparent 34%),
      linear-gradient(145deg, rgba(10, 11, 14, 0.98), rgba(23, 24, 28, 0.96));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.38);
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .navbar nav.active ul,
  .navbar nav.open ul,
  nav ul.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-cta-item {
    display: flex;
  }

  nav ul li,
  nav ul li a,
  .btn-quote {
    width: 100%;
  }

  nav ul li a {
    border-radius: 15px;
    padding: 14px 16px;
  }

  .hero-premium-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
    padding-top: 10px;
  }

  .hero-copy-shell {
    min-height: 0;
  }

  .hero-title {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 540px;
    padding: 10px 0 96px;
  }

  .hero-curve-line {
    display: none;
  }

  .hero-visual::after {
    right: 50%;
    top: 42px;
    width: min(82%, 520px);
    transform: translateX(50%);
  }

  .hero-media-slide img {
    object-position: center;
    width: 108%;
    height: 108%;
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  .hero-progress {
    top: auto;
    right: auto;
    left: 0;
    bottom: 18px;
    flex-direction: row;
    transform: none;
  }

  .hero-machine-signature {
    right: 0;
    bottom: 18px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .produtos {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .img-sobre {
    width: 90%;
    margin-bottom: 50px;
  }

  #produtos.equipamentos {
    grid-template-columns: 1fr;
  }

  .depoimentos-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .depoimentos-resumo {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 78px;
  }

  .navbar {
    height: var(--header-h);
    padding: 0;
    overflow: visible;
    background:
      linear-gradient(90deg, rgba(2, 3, 5, 0.99) 0%, rgba(10, 10, 12, 0.97) 62%, rgba(40, 5, 5, 0.93) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  }

  .navbar .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100%;
    gap: 12px;
  }

  .navbar-cta {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(50, 12, 12, 0.6), rgba(22, 8, 8, 0.44));
    border: 1px solid rgba(255, 156, 156, 0.26);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 22px rgba(0, 0, 0, 0.26);
  }

  .menu-toggle span {
    width: 24px;
    height: 3px;
    border-radius: 999px;
  }

  .menu-toggle:hover {
    background: linear-gradient(180deg, rgba(62, 15, 15, 0.7), rgba(28, 8, 8, 0.52));
    border-color: rgba(255, 170, 170, 0.32);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .logo {
    position: relative;
    z-index: 1002;
    font-size: 1.58rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .logo span {
    margin-left: 0.1em;
  }

  .navbar nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 3%;
    right: 3%;
    width: auto;
    justify-self: auto;
    z-index: 1001;
    pointer-events: none;
  }

  .navbar nav.active,
  .navbar nav.open {
    pointer-events: auto;
  }

  #nav {
    position: static;
    width: 100%;
    max-width: none;
    max-height: calc(100vh - var(--header-h) - 52px);
    margin: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: stretch;
    gap: 10px;
    box-sizing: border-box;
    background:
      radial-gradient(circle at top right, rgba(211, 47, 47, 0.26), transparent 36%),
      linear-gradient(145deg, rgba(8, 9, 12, 0.99), rgba(24, 24, 28, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 26px;
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.98);
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
  }

  .navbar nav.active #nav,
  .navbar nav.open #nav,
  #nav.active,
  #nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar nav ul {
    justify-content: stretch;
    gap: 10px;
  }

  .navbar nav ul li {
    width: 100%;
    display: flex;
    min-width: 0;
    justify-content: stretch;
  }

  .navbar nav ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.1;
    padding: 14px 16px;
    text-align: left;
    white-space: normal;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .navbar nav ul li a:hover,
  .navbar nav ul li a:focus-visible {
    background: rgba(211, 47, 47, 0.16);
    border-color: rgba(211, 47, 47, 0.28);
    color: #fff;
  }

  .nav-mobile-only {
    display: flex;
  }

  .nav-cta-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    grid-column: 1 / -1;
    margin-top: 6px;
    padding-top: 14px;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta-item::before {
    content: "Atendimento rápido NanoMaq";
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
  }

  .navbar nav .btn-quote {
    width: 100%;
    max-width: none;
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.84rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 16px 34px rgba(211, 47, 47, 0.3);
  }

  .logo img {
    width: min(40vw, 140px);
    height: auto;
  }

  .hero {
    min-height: 100dvh;
    padding: calc(var(--header-h) + 16px) 0 26px;
    overflow: hidden;
  }

  .hero::before {
    opacity: 0.1;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(4, 5, 7, 0.14) 0%, rgba(4, 5, 7, 0.48) 44%, rgba(4, 5, 7, 0.9) 100%),
      radial-gradient(circle at 86% 14%, rgba(211, 47, 47, 0.34), transparent 28%);
  }

  .hero-premium-grid {
    position: relative;
    display: block;
    min-height: calc(100dvh - var(--header-h));
    isolation: isolate;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: auto;
    height: 100%;
    padding: 0;
    opacity: 1;
    pointer-events: none;
  }

  .hero-visual::before {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(4, 5, 7, 0.9) 0%, rgba(4, 5, 7, 0.72) 38%, rgba(4, 5, 7, 0.22) 76%, rgba(4, 5, 7, 0.06) 100%),
      linear-gradient(180deg, rgba(4, 5, 7, 0.08) 0%, rgba(4, 5, 7, 0.08) 58%, rgba(4, 5, 7, 0.74) 100%),
      radial-gradient(circle at 84% 16%, rgba(211, 47, 47, 0.34), transparent 32%);
    filter: none;
    z-index: 2;
    pointer-events: none;
  }

  .hero-visual::after {
    right: -24%;
    top: 6%;
    width: min(112vw, 640px);
    opacity: 0.34;
    pointer-events: none;
  }

  .hero-media-stack {
    position: absolute;
    inset: 104px -120px 6px 24%;
    width: auto;
    height: auto;
    min-height: 0;
    z-index: 1;
    pointer-events: none;
  }

  .hero-media-slide,
  .hero-media-slide img {
    pointer-events: none;
  }

  .hero-media-slide img {
    width: 132%;
    height: 118%;
    object-fit: contain;
    object-position: 76% 46%;
    opacity: 0.7;
    filter:
      brightness(0.6)
      contrast(1.05);
    transform: translate3d(0, 0, 0) scale(1.03);
  }

  .hero-copy {
    position: relative;
    z-index: 7;
    min-height: calc(100dvh - var(--header-h));
    max-width: 100%;
    padding: 22px 0 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    pointer-events: auto;
  }

  .hero-copy-shell {
    position: relative;
    width: min(94vw, 390px);
    height: auto;
    min-height: 0;
    display: grid;
    align-items: start;
    overflow: visible;
    padding: 20px 16px;
    border-radius: 20px;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.55) 54%,
      rgba(0, 0, 0, 0.15) 100%
    );
    border: none;
    box-shadow: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hero-copy-shell::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff4e43, #ff4e43);
    box-shadow: 0 0 18px rgba(255, 78, 67, 0.55);
  }

  .hero-text-layer {
    position: relative;
    inset: auto;
    grid-area: 1 / 1;
  }

  .hero-kicker {
    display: block;
    padding-top: 20px;
    font-size: clamp(0.66rem, 1.9vw, 0.8rem);
    letter-spacing: 0.14em;
    line-height: 1.45;
    margin-bottom: 12px;
    color: #ff7474;
  }

  .hero-kicker::before {
    display: none;
  }

  .hero-title {
    display: block;
    max-width: 100%;
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  }

  .hero-title-line {
    display: block;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    white-space: normal;
  }

  .hero-title .hero-title-line {
    color: #ffffff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.85);
  }

  .hero-title .hero-title-line span {
    color: #ff3b30;
  }

  .hero-description {
    position: relative;
    max-width: 100%;
    margin-top: 14px;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
  }

  .hero-description::before {
    content: none;
    display: none;
  }

  .hero-actions {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(92vw, 360px);
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .hero-actions .btn,
  .hero-actions .primary,
  .hero-actions .secondary {
    position: relative;
    z-index: 9;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 14px;
    width: 100%;
    min-height: 58px;
    margin: 0;
    padding: 0 18px;
    border-radius: 18px;
    justify-content: initial;
    font-size: 0.95rem;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .hero-actions .btn::before {
    content: "";
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .hero-actions .btn span:first-child {
    text-align: left;
  }

  .hero-actions .primary::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 3.75h7l4.25 4.25v12a1.5 1.5 0 0 1-1.5 1.5h-9.5A1.5 1.5 0 0 1 5.75 20V5.25A1.5 1.5 0 0 1 7 3.75Z' stroke='%23fff' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M13.75 3.75V8h4.25' stroke='%23fff' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M8.75 11h6.5M8.75 14.5h6.5M8.75 18h4.5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .hero-actions .primary {
    background: linear-gradient(135deg, #e03636, #a91f1f);
    border: 1px solid rgba(255, 181, 181, 0.26);
    box-shadow: 0 18px 38px rgba(211, 47, 47, 0.34);
  }

  .hero-actions .secondary::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.5 4.5a4.1 4.1 0 0 0 5 5l-9.2 9.2a2.2 2.2 0 0 1-3.1-3.1l9.2-9.2a4.1 4.1 0 0 0-1.9-1.9Z' stroke='%23fff' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m12.3 8.8 2.9 2.9' stroke='%23fff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .hero-actions .secondary {
    background: linear-gradient(145deg, rgba(12, 12, 16, 0.72), rgba(12, 12, 16, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .hero-actions .btn-arrow {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1;
  }

  .hero-highlights {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(92vw, 360px);
    margin-top: 12px;
  }

.hero-highlight {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: default;
  min-height: auto;
  padding: 14px 42px 14px 14px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(12, 12, 16, 0.72), rgba(12, 12, 16, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

  .hero-highlight::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid rgba(255, 255, 255, 0.84);
    border-right: 2px solid rgba(255, 255, 255, 0.84);
    transform: translateY(-50%) rotate(45deg);
  }

  .hero-highlight-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 0;
    color: #ff4740;
    background: transparent;
    border: 0;
  }

  .hero-highlight-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-highlight strong {
    margin-bottom: 3px;
    font-size: 0.92rem;
    color: #ffffff;
  }

  .hero-highlight span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
  }

  .hero-progress,
  .hero-machine-signature,
  .hero-curve-line {
    display: none;
  }

  .depoimentos-premium {
    padding: 58px 14px;
  }

  .depoimentos-link {
    width: 100%;
  }

  .depoimento-card {
    min-height: 280px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .feature-card {
    min-height: auto;
    padding: 16px 12px;
    border-radius: 12px;
  }

  .img-produto {
    max-height: 110px;
    margin-bottom: 10px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .feature-card p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .card-btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.8rem;
    margin-top: 12px;
  }

}

@media (max-width: 480px) {
  :root {
    --header-h: 74px;
  }

  .container {
    width: min(94%, var(--container));
  }

  .logo {
    font-size: 1.38rem;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero-kicker {
    letter-spacing: 0.11em;
  }

  .hero-copy {
    padding: 24px 0 24px;
  }

  .hero-media-stack {
    inset: 102px -106px 4px 28%;
  }

  .hero-copy-shell,
  .hero-actions,
  .hero-highlights {
    width: min(94vw, 330px);
  }

  .hero-copy-shell {
    width: min(96vw, 360px);
  }

  .hero-actions .btn,
  .hero-actions .primary,
  .hero-actions .secondary {
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    column-gap: 12px;
  }

  .hero-highlight {
    padding: 12px 36px 12px 12px;
    border-radius: 16px;
  }

  .hero-highlight strong {
    font-size: 0.86rem;
  }

  .hero-highlight span {
    font-size: 0.74rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .hero-copy-shell {
    min-height: 0;
  }
}

/* POPUP TERMOS CLEAN */
.termos-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.35s ease;
}

.termos-popup.ativo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.termos-box {
  background: rgba(20, 22, 26, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  max-width: 280px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.termos-box p {
  font-size: 0.85rem;
  color: #ddd;
  line-height: 1.5;
  margin: 0;
}

.termos-box a {
  color: #ff4d4d;
  text-decoration: none;
  font-weight: 600;
}

.termos-box a:hover {
  text-decoration: underline;
}

.termos-box button {
  align-self: flex-end;
  border: none;
  background: linear-gradient(135deg, #d32f2f, #a91f1f);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.termos-box button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* MOBILE */
@media (max-width: 480px) {
  .termos-popup {
    left: 50%;
    right: auto;
    transform: translate(-50%, 20px);
  }

  .termos-popup.ativo {
    transform: translate(-50%, 0);
  }
}

/* ===== FIX DEFINITIVO HERO MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    isolation: isolate;
  }

  /* mata QUALQUER coisa que possa bloquear clique */
  .hero-visual,
  .hero-visual::before,
  .hero-visual::after,
  .hero-media-stack,
  .hero-media-stack::before,
  .hero-media-slide,
  .hero-media-slide img {
    pointer-events: none !important;
  }

  /* garante que o botão fique acima de TUDO */
  .hero-actions {
    position: relative;
    z-index: 9999 !important;
  }

  .hero-actions a,
  .hero-actions .btn {
    position: relative;
    z-index: 10000 !important;
    pointer-events: auto !important;
    touch-action: manipulation;
  }

  /* força a área do texto a ficar acima também */
  .hero-copy {
    position: relative;
    z-index: 5000;
  }
}
