/* =================================================================
   Slide Door — Custom CSS
   Estilos que vão além do Tailwind (gradientes, fundo de hero, etc.)
   ================================================================= */

/* -------- Smoothing -------- */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* -------- Layout-base trava 1440 ----------
   O design é desktop fixo (1440px). Em viewports menores, mostramos
   scroll horizontal em vez de quebrar o layout. */
body {
  min-width: 1440px;
  margin: 0 auto;
  overflow-x: auto;
}

/* -------- Navbar link genérico (DM Mono 14/20 uppercase) -------- */
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f1f5f9;            /* slate-100 */
  transition: background-color 150ms ease, color 150ms ease;
}
.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* -------- Hero background ----------
   Container do <video>. Se o vídeo não carregar (404, mobile sem auto-play),
   um gradiente navy é mostrado como fallback. */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 35%, #15355c 0%, #0b2845 55%, #061a30 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* overlay azul translúcido por cima do vídeo, garante leitura do texto */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 40, 69, 0.62) 0%,
    rgba(11, 40, 69, 0.78) 100%
  );
  pointer-events: none;
}

/* -------- Badge gradient (hero) -------- */
.hero-badge {
  background: linear-gradient(
    90deg,
    rgba(203, 213, 225, 0.10) 0%,
    rgba(232, 242, 255, 0.24) 100%
  );
  backdrop-filter: blur(2px);
}

/* -------- Selo "Exija sempre o Original" — texto em gradiente dourado -------- */
.selo-text {
  background: linear-gradient(90deg, #a56614 0%, #c2882b 49.557%, #e9b549 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* =================================================================
   LOGO TICKER
   ================================================================= */

.ticker-logo {
  max-height: 72px;          /* aumentado (era 56) — logo um pouco maior */
  max-width: 200px;          /* impede logos largos de estourar a faixa */
  width: auto;
  object-fit: contain;       /* logo sempre inteiro, nunca corta/perde info */
  flex-shrink: 0;
  /* filter: brightness(0) invert(1);  -- desligado a pedido p/ ver com cliente: logos coloridos por enquanto */
  opacity: 1;
}

.ticker-track {
  animation: ticker-scroll 22s linear infinite;
}
.ticker-viewport:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  /* metade do track (= 1 bloco completo de 6 logos + gaps) */
  to   { transform: translateX(calc(-50% - 14px)); }
}

/* fade gradient à esquerda (cobre o início dos logos atrás do label) */
.ticker-fade-left {
  position: absolute;
  inset: 0 auto 0 0;
  width: 272px;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #0d2f53 0%,
    #0d2f53 33%,
    rgba(13, 47, 83, 0) 100%
  );
}

/* respeita preferência de reduzir movimento */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* =================================================================
   PROMO BANNERS
   ================================================================= */

/* Overlay Nova Cor — degradê marrom/champanhe da esquerda p/ direita */
.banner-nova-cor-overlay {
  background: linear-gradient(
    89.85deg,
    rgb(61, 51, 33) 21.256%,
    rgba(77, 65, 42, 0.917) 49.562%,
    rgba(163, 137, 89, 0.3) 102.13%
  );
}

/* Overlay Kit Pia — degradê azul */
.banner-kit-pia-overlay {
  background: linear-gradient(
    90deg,
    #1a2d6d 20.785%,
    rgba(31, 54, 131, 0.84) 54.341%,
    rgba(50, 87, 211, 0.24) 95.659%
  );
}

/* CTA do App banner — efeito vidro fosco sobre o iPhone */
.banner-app-cta {
  background: rgba(26, 45, 109, 0.48);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #dee3e9;
  transition: background-color 200ms ease, transform 200ms ease;
}
.banner-app-cta:hover {
  background: rgba(26, 45, 109, 0.66);
  transform: translateY(-2px);
}

/* Hover sutil nos banners (Nova Cor / Kit Pia) */
.banner { transition: transform 300ms ease; }
.banner:hover { transform: translateY(-4px); }

/* =================================================================
   PRODUCT LINES (carrossel)
   ================================================================= */

.lines-scroller {
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/Edge */
}
.lines-scroller::-webkit-scrollbar { display: none; }  /* Chrome/Safari */

.product-card {
  position: relative;
  width: 311px;
  height: 540px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-bottom: 32px;
  transition: transform 250ms ease;
}
.product-card:hover { transform: translateY(-6px); }

.product-card-img {
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
  /* fade suave da imagem na cor do card — replica o mask-alpha do Figma */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
  mix-blend-mode: multiply;
  opacity: 0.92;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card-content {
  position: relative;
  z-index: 2;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.product-card-logo {
  width: 240px;
  height: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);  /* logos em branco sobre o card */
}

.product-card-divider {
  width: 32px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.product-card-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  width: 100%;
}

/* =================================================================
   FEATURES
   ================================================================= */

.features-overlay {
  background: linear-gradient(
    141.98deg,
    rgba(26, 45, 109, 0.64) 12.957%,
    rgba(26, 45, 109, 0.906) 40.716%,
    rgb(26, 45, 109) 60.732%
  );
}

.feature-item {
  flex: 1 0 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
  width: 100%;
}
.feature-item-last { border-bottom: none; }

.feature-item-title {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.feature-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.8px;
  color: #f8fafc;
  white-space: nowrap;
  flex-shrink: 0;
  width: 48px;
}

.feature-h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #f8fafc;
  max-width: 320px;
}

.feature-desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #cbd5e1;
  width: 280px;
  flex-shrink: 0;
}

/* =================================================================
   HOW-TO (vídeos)
   ================================================================= */

.video-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: #ffffff;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10, 35, 62, 0.12);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background: #1a2d6d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 45, 109, 0.45);
}

.video-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease, filter 200ms ease;
}
.video-card:hover .video-play-btn {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 12px rgba(255, 0, 0, 0.45));
}

.video-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: #ffffff;
}

.video-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #94a3b8;
}

.video-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #0a233e;
}

/* =================================================================
   PROJECTS (Cases)
   ================================================================= */

.project-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease;
}

a.project-row:hover {
  transform: translateY(-2px);
}

a.project-row:hover .project-image img {
  transform: scale(1.03);
}

a.project-row:hover .project-details-link {
  color: #1e69b8;
  gap: 12px;
}

.project-image {
  position: relative;
  width: 600px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
/* Modificador "foto em pe" (vertical) — ligado pelo admin (extra foto_vertical).
   Mostra a foto inteira (contain) com fundo slate suave preenchendo as bordas.
   Sem o modificador, o padrao continua sendo a foto deitada cobrindo o card. */
.project-image--vertical {
  background-color: #64748b30;
}
.project-image--vertical img {
  object-fit: contain;
}

.project-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-badge img {
  width: 80px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.project-info {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
}

.project-info-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-line {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}

.project-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.32px;
  color: #0a233e;
}

.project-location {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
}

.project-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #cbd5e1;
  margin-top: 40px;
}

.project-stat {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 44px;
}

.project-stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #64748b;
}

.project-stat-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0a233e;
}

.project-details-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #0a233e;
  text-decoration: none;
  transition: color 200ms ease, gap 200ms ease;
}
.project-details-link:hover {
  color: #1e69b8;
  gap: 12px;
}

/* =================================================================
   APP CTA
   ================================================================= */

.app-cta-btn {
  background: #e2e8f0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  color: #1a2d6d;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, transform 200ms ease;
}
.app-cta-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

/* =================================================================
   TESTIMONIALS
   ================================================================= */

.testimonial-card {
  flex: 1 0 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.testimonial-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
  width: 100%;
  margin: 12px 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.testimonial-divider {
  border: 0;
  border-top: 1px solid #cbd5e1;
  width: 100%;
}

.testimonial-author-body {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.testimonial-logo {
  max-height: 44px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.75);
  transition: filter 300ms ease, opacity 300ms ease, transform 300ms ease;
}

.testimonial-card:hover .testimonial-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.03);
}

/* Card de VÍDEO no carrossel — mesmo tamanho do card de texto, abre no GLightbox */
.testimonial-card--video {
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  position: relative;
}
.testimonial-video-thumb {
  position: relative;
  flex: 1 0 0;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
}
.testimonial-video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 37, 84, 0.38);
  transition: background-color 300ms ease;
}
.testimonial-card--video:hover .testimonial-video-thumb::after {
  background: rgba(23, 37, 84, 0.28);
}
.testimonial-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a233e;
  transition: transform 300ms ease, background-color 300ms ease;
}
.testimonial-card--video:hover .testimonial-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.testimonial-card--video .testimonial-author {
  padding: 20px 28px 24px;
}

.testimonial-author-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
}

/* =================================================================
   CTA FINAL
   ================================================================= */

.cta-final-bg {
  background:
    radial-gradient(ellipse 78% 35% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
    linear-gradient(169.31deg, #0d1f4e 0%, #1e5fa8 100%);
}

.tag-gold { color: #e8c460; }


/* =================================================================
   FOOTER
   ================================================================= */

.site-footer {
  background: #0a233e;
  color: #bedbff;
}

.footer-col-title {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 15px;
  line-height: 18px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #bedbff;
}

.footer-col-list a {
  color: #bedbff;
  text-decoration: none;
  transition: color 180ms ease;
}
.footer-col-list a:hover { color: #ffffff; }

.footer-divider {
  flex: 1 1 auto;
  border: 0;
  border-top: 1px solid rgba(190, 219, 255, 0.20);
  margin: 0;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(203, 213, 225, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bedbff;
  transition: background-color 200ms ease, transform 200ms ease;
}
.social-btn:hover {
  background: rgba(203, 213, 225, 0.28);
  transform: translateY(-2px);
}

.back-to-top {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #475569;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
}
.back-to-top:hover {
  background: #1e69b8;
  transform: translateY(-2px);
}

.ldna-credit {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.ldna-credit:hover { opacity: 1; }
.ldna-credit img { display: block; }


/* =================================================================
   PRODUTOS — listing (Figma 143:717) + detalhe (Figma 157:748)
   ================================================================= */

/* ----- Hero (compartilhado entre listing e detalhe) ----- */
.produtos-hero {
  background: linear-gradient(174.77deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.produtos-hero-bg {
  background: none;
}
.produtos-hero-blob {
  position: absolute;
  top: 0;
  left: 725px;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,140,223,1) 0%, rgba(44,105,167,0.75) 17.5%,
              rgba(30,70,112,0.5) 35%, rgba(15,35,56,0.25) 52.5%, rgba(0,0,0,0) 70%);
  opacity: 0.10;
  pointer-events: none;
}
.produtos-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}

.produtos-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #bedbff;
}
.produtos-breadcrumb a {
  color: #bedbff;
  text-decoration: none;
  transition: color 180ms ease;
}
.produtos-breadcrumb a:hover { color: #ffffff; }
.produtos-breadcrumb-sep { color: #64748b; }
.produtos-breadcrumb-current { color: #ffffff; }

/* ----- Card de produto na grade do listing ----- */
/* Reaproveita a estética de .product-card mas como link com width fluida */
.product-card-grid {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-bottom: 32px;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.product-card-grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(10, 35, 62, 0.18);
}
.product-card-grid .product-card-img {
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
  mix-blend-mode: multiply;
  opacity: 0.92;
}
.product-card-grid .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----- CTA "Dúvida na escolha?" (Produtos listing) — Figma 143:976 ----- */
.produtos-cta-section {
  background: linear-gradient(178.15deg, #0d1f4e 6.55%, #1e5fa8 93.44%);
  padding: 64px 0 64px;
}
.produtos-cta-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 108px;
}
.produtos-cta-text {
  flex: 0 0 596px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.produtos-cta-eyebrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.produtos-cta-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 38.4px;
  color: #ffffff;
  margin: 0;
}
.produtos-cta-actions {
  flex: 0 0 478px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 55px;
}
.produtos-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 55px;
  border-radius: 32px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, transform 200ms ease;
}
.produtos-cta-btn-phone {
  flex: 0 0 183.6px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
}
.produtos-cta-btn-phone:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  color: #ffffff;
}
.produtos-cta-btn-primary {
  flex: 1 1 0;
  background: #1e69b8;
  color: #dee3e9;
  padding: 0 32px;
}
.produtos-cta-btn-primary:hover {
  background: #1857a0;
  transform: translateY(-1px);
  color: #ffffff;
}
.produtos-cta-btn-primary svg { flex-shrink: 0; }

/* =================================================================
   PRODUTO — DETALHE
   ================================================================= */

/* ----- Hero ----- */
.detalhe-hero-grid {
  display: grid;
  grid-template-columns: 590px 1fr;
  gap: 80px;
  align-items: start;
}
.detalhe-hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 640px;
  border-radius: 16px;
  overflow: hidden;
  background: #0a233e;
}
.detalhe-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detalhe-color-current {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.3px;
  color: #94a3b8;
  margin-top: 32px;
  margin-bottom: 12px;
}
.detalhe-color-current span {
  color: #ffffff;
  font-weight: 500;
}
.detalhe-color-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detalhe-color-note {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin-top: 12px;
  font-style: italic;
}
.detalhe-color-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #94a3b8;
}
.detalhe-color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease;
  position: relative;
}
.detalhe-color-swatch:hover { transform: scale(1.08); }
.detalhe-color-swatch.is-active {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

/* ----- Pre-title (eyebrow) reusável em todas as seções do detalhe ----- */
.section-eyebrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #1e69b8;
  margin-bottom: 8px;
}
/* Variante para uso em sections com fundo escuro (CTA final, video carousel) */
.section-eyebrow--light {
  color: #e8c460;
}

/* Linha decorativa dourada que aparece automaticamente abaixo de cada .ficha-h2.
   48×4 dourado seguindo o padrão das outras páginas (Sobre / Distribuidores). */
.ficha-h2 {
  position: relative;
}
.ficha-h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #e8c460;
  border-radius: 2px;
  margin-top: 12px;
}
/* Mesma decoração para o h2 do video carousel e do related (sections claras/escuras) */
.video-carousel-h2::after,
.related-h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #e8c460;
  border-radius: 2px;
  margin-top: 12px;
}

/* ----- Ficha técnica ----- */
.ficha-section {
  background: #ffffff;
  padding: 80px 0;
}
.ficha-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.32px;
  color: #0a233e;
  margin-bottom: 32px;
}
.ficha-table {
  border-top: 1px solid #e2e8f0;
}
.ficha-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
}
.ficha-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #64748b;
}
.ficha-value {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #0a233e;
}

/* ----- Diferenciais — cards horizontais com imagem 180px + texto com icon ---- */
.diferenciais-section {
  background: #f8fafc;
  padding: 80px 0;
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}
.diferencial-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}
.diferencial-card-img {
  width: 180px;
  flex-shrink: 0;
  overflow: hidden;
  background: #0a233e;
}
.diferencial-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.diferencial-card-body {
  flex: 1;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.diferencial-card-icon {
  flex-shrink: 0;
  color: #3b8cdf;
  margin-top: 2px;
}
.diferencial-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.diferencial-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #0a233e;
}
.diferencial-card-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #64748b;
}

/* ----- Vídeo carousel (dark) ----- */
.video-carousel-section {
  background: #0a233e;
  padding: 80px 0;
}
.video-carousel-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.32px;
  color: #ffffff;
  margin-bottom: 8px;
}
.video-carousel-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #bedbff;
  margin-bottom: 48px;
  max-width: 720px;
}
.video-carousel-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
}
.video-carousel-slide {
  flex: 1 0 0;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1a2d6d;
  cursor: pointer;
  transition: transform 250ms ease, opacity 250ms ease;
  opacity: 0.5;
}
.video-carousel-slide.is-active { opacity: 1; transform: translateY(-4px); }
.video-carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.video-carousel-slide .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a233e;
  z-index: 2;
}
.video-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

/* Rodapé do carrossel — link pra galeria completa /como-instalar */
.video-carousel-foot {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.video-carousel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.video-carousel-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.video-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
  border: 0;
}
.video-carousel-dot.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

/* ----- Vídeos (2 colunas — Figma 157:453) ----- */
.video-twin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.video-twin-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-twin-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 19.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #bedbff;
  margin: 0;
}
.video-twin-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #1a2d6d;
  cursor: pointer;
  text-decoration: none;
}
.video-twin-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 400ms ease, opacity 200ms ease;
}
.video-twin-card:hover img { transform: scale(1.03); opacity: 1; }
.video-twin-card .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a233e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}
.video-twin-card:hover .play-icon { transform: translate(-50%, -50%) scale(1.08); }
.video-twin-foot { text-align: center; margin-top: 48px; }
.video-twin-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #bedbff;
  text-decoration: none;
  transition: color 200ms ease;
}
.video-twin-all:hover { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }
.video-twin-all svg { color: currentColor; }

/* ----- Trilhos adicionais ----- */
.trilhos-section {
  background: #ffffff;
  padding: 80px 0;
}
.trilhos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.trilho-card {
  display: flex;
  align-items: stretch;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.trilho-card-icon {
  width: 180px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e69b8;
  flex-shrink: 0;
  border-right: 1px solid #e2e8f0;
}
.trilho-card-icon svg { width: 48px; height: 48px; }
.trilho-card-icon img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}
.trilho-card-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trilho-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #0a233e;
}
.trilho-card-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #64748b;
  margin-top: 6px;
}

/* ----- Downloads ----- */
.downloads-section {
  background: #ffffff;
  padding: 80px 0;
}
.downloads-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  min-width: 320px;
}
.download-btn:hover {
  border-color: #1e69b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 35, 62, 0.08);
}
.download-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e69b8;
  flex-shrink: 0;
}
.download-btn-text {
  display: flex;
  flex-direction: column;
}
.download-btn-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #0a233e;
}
.download-btn-meta {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 2px;
}

/* ----- CTA "Quer usar..." (gradient azul, centralizado) ----- */
.detalhe-cta-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(ellipse 78% 35% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
    linear-gradient(169.31deg, #0d1f4e 0%, #1e5fa8 100%);
}
.detalhe-cta-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 52px;
  letter-spacing: -0.4px;
  color: #ffffff;
  margin-bottom: 16px;
}
.detalhe-cta-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.detalhe-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.detalhe-cta-foot {
  margin-top: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.detalhe-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 9999px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 200ms ease, background-color 200ms ease;
  white-space: nowrap;
}
.detalhe-cta-btn-primary {
  background: #ffffff;
  color: #0a233e;
}
.detalhe-cta-btn-primary:hover { transform: translateY(-2px); background: #f1f5f9; }
.detalhe-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.detalhe-cta-btn-secondary:hover { background: rgba(255, 255, 255, 0.20); transform: translateY(-2px); }

/* ----- Related products ----- */
.related-section {
  background: #f8fafc;
  padding: 80px 0 120px;
}
.related-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}
.related-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.32px;
  color: #0a233e;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.related-card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-bottom: 40px;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 35, 62, 0.16);
}
.related-card .product-card-img {
  width: 100%;
  flex: 1 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 100%);
  mix-blend-mode: overlay;
  opacity: 0.75;
}
.related-card .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-card .product-card-content {
  position: relative;
  z-index: 2;
  width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.related-card .product-card-logo {
  width: 110px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* =================================================================
   PAGE HERO compartilhado (Sobre, Como Instalar, Cases, Onde Comprar,
   Distribuidores, Downloads, Contato)
   ================================================================= */

.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 35%, #15355c 0%, #0b2845 55%, #061a30 100%);
}
.page-hero-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 164px 158px 88px;
}
.page-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
}
.page-hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -1.12px;
  color: #ffffff;
}
.page-hero-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  max-width: 560px;
  margin-top: 16px;
}

/* Mini cards estatísticos no canto direito do hero (Onde Comprar, Como Instalar) */
.hero-stat-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}
.hero-stat-card-num {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
}
.hero-stat-card-label { color: #bedbff; font-size: 13px; }

/* =================================================================
   SOBRE — pixel-perfect com Figma (Dk3yLstPvC1cErsPtnlIa1)
   Todas as classes desta seção são prefixadas com `.sobre-*` e
   NÃO devem ser usadas por outras páginas. Não altera `.page-hero-*`,
   `.cta-final*`, `.btn-pill*` nem `.tag-gold` compartilhados.
   ================================================================= */

/* ----- 1. HERO ----- */
.page-hero.sobre-hero {
  background: linear-gradient(174.77deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.sobre-hero-bg {
  background: none;
}
.sobre-hero-blob {
  position: absolute;
  top: 0;
  left: 725px;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,140,223,1) 0%, rgba(44,105,167,0.75) 17.5%,
              rgba(30,70,112,0.5) 35%, rgba(15,35,56,0.25) 52.5%, rgba(0,0,0,0) 70%);
  opacity: 0.10;
  pointer-events: none;
}
.sobre-hero-inner {
  padding: 120px 96px 80px !important;
}
.sobre-hero-breadcrumb {
  margin-bottom: 40px;
}
.sobre-hero-breadcrumb a { color: #94a3b8; text-decoration: none; }
.sobre-hero-breadcrumb .produtos-breadcrumb-current { color: #bedbff; }

.sobre-hero-grid {
  display: grid;
  grid-template-columns: 608px 560px;
  gap: 65px;
  align-items: end;
}
.sobre-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sobre-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.sobre-hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 61.6px;
  letter-spacing: -1.12px;
  color: #f8fafc;
  margin: 0;
}
.sobre-hero-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 30.8px;
  color: #bedbff;
  max-width: 480px;
  margin: 0;
}
.sobre-hero-chips {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}
.sobre-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 17px;
  background: rgba(203, 213, 225, 0.08);
  border: 1px solid #64748b;
  border-radius: 10px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #cbd5e1;
  white-space: nowrap;
}
.sobre-hero-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #3b8cdf;
  flex-shrink: 0;
}
.sobre-hero-image {
  position: relative;
  width: 560px;
  height: 352px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.sobre-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sobre-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 35, 62, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* ----- Utilitários da página Sobre (não afetam Home) ----- */
.sobre-tag-gold {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0 0 12px;
}
.sobre-tag-blue {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #1e69b8;
  margin: 0 0 12px;
}

/* ----- 2. TIMELINE ----- */
.sobre-timeline-section {
  position: relative;
  background:
    linear-gradient(153.72deg, rgba(26,45,109,0.7) 16.5%, rgba(26,45,109,0.93) 41.9%, #0a233e 63.6%),
    #1a2d6d;
}
.sobre-timeline-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.sobre-timeline-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 900px;
}
.sobre-timeline-left {
  padding: 88px 48px 0 72px;
}
.sobre-timeline-left .sobre-tag-gold { margin-bottom: 16px; }
.sobre-timeline-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 47.6px;
  letter-spacing: -0.8px;
  color: #f8fafc;
  margin: 0 0 20px;
  max-width: 300px;
}
.sobre-timeline-intro {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  margin: 0;
  max-width: 300px;
}
.sobre-timeline-list {
  border-left: 1px solid rgba(226, 232, 240, 0.12);
  padding: 64px 24px 64px 49px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sobre-timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 10px;
}
.sobre-timeline-item:last-child { border-bottom: 0; }
.sobre-timeline-item-head {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
  width: 308px;
}
.sobre-timeline-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: #f8fafc;
  flex-shrink: 0;
  width: auto;
}
.sobre-timeline-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 27.5px;
  color: #f8fafc;
  margin: 0;
  max-width: 260px;
}
.sobre-timeline-desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #bedbff;
  margin: 0;
  width: 300px;
  text-align: right;
  flex-shrink: 0;
}

/* ----- 3. FÁBRICA ----- */
.sobre-fabrica-section {
  background: #f1f5f9;
  padding: 0;
}
.sobre-fabrica-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 684px;
  padding: 112px 72px;
  display: grid;
  grid-template-columns: 600px 600px;
  justify-content: space-between;
  align-items: start;
  gap: 80px;
}
.sobre-fabrica-img {
  position: relative;
  width: 600px;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}
.sobre-fabrica-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sobre-fabrica-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 192px;
  height: 62px;
  padding: 0 21px;
  background: linear-gradient(162.16deg, rgba(10, 35, 62, 0.95) 0%, rgba(17, 59, 103, 0.95) 100%);
  border: 1px solid rgba(59, 140, 223, 0.30);
  border-radius: 14px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.10), 0 4px 6px 0 rgba(0, 0, 0, 0.10);
}
.sobre-fabrica-badge-icon {
  color: #3b8cdf;
  flex-shrink: 0;
  display: inline-flex;
}
.sobre-fabrica-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.sobre-fabrica-badge-eyebrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  line-height: 15px;
  text-transform: uppercase;
  color: #94a3b8;
}
.sobre-fabrica-badge-main {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
}
.sobre-fabrica-content {
  padding-top: 40px;
  max-width: 600px;
}
.sobre-fabrica-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.8px;
  color: #0a233e;
  margin: 0 0 24px;
}
.sobre-fabrica-lead {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: #475569;
  margin: 0 0 28px;
  max-width: 601px;
}
.sobre-fabrica-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 12px;
  row-gap: 12px;
}
.sobre-fabrica-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.5px;
  color: #334155;
}
.sobre-fabrica-feature svg { color: #1e69b8; flex-shrink: 0; }

/* ----- 4. NÚMEROS ----- */
.sobre-numeros-section {
  position: relative;
  background:
    linear-gradient(165.91deg, rgba(26,45,109,0.64) 16.5%, rgba(26,45,109,0.91) 41.9%, #1a2d6d 60%),
    #1a2d6d;
  padding: 0;
}
.sobre-numeros-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  max-width: 1425px;
  margin: 0 auto;
  min-height: 458px;
  gap: 0;
}
.sobre-numeros-left {
  padding: 88px 48px 0 72px;
}
.sobre-numeros-left .sobre-tag-gold { margin-bottom: 12px; }
.sobre-numeros-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 52.8px;
  letter-spacing: -0.96px;
  color: #f8fafc;
  margin: 0 0 20px;
  max-width: 260px;
}
.sobre-numeros-intro {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #bedbff;
  margin: 0;
  max-width: 260px;
}
.sobre-numeros-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  border-left: 1px solid rgba(226, 232, 240, 0.12);
}
.sobre-num-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 40px 0;
  border-right: 1px solid rgba(226, 232, 240, 0.08);
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}
.sobre-num-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  color: #bedbff;
  overflow: hidden;
  flex-shrink: 0;
}
.sobre-num-icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 40px;
  max-height: 40px;
}
.sobre-num-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sobre-num-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.72px;
  color: #f8fafc;
}
.sobre-num-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
  color: #bedbff;
}

/* ----- 5. EXIJA O ORIGINAL ----- */
.sobre-selo-section {
  background: linear-gradient(175.44deg, #0d1f4e 6.55%, #1e5fa8 93.44%);
  padding: 0;
}
.sobre-selo-inner {
  position: relative;
  max-width: 1425px;
  margin: 0 auto;
  padding: 80px 72px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.sobre-selo-visual {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-selo-img {
  width: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35));
}
.sobre-selo-content {
  flex: 1 1 0;
  max-width: 724px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sobre-selo-trilhos {
  flex: 0 0 151px;
  width: 151px;
  height: 410px;
  object-fit: contain;
  object-position: top center;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.40));
}
.sobre-selo-content .sobre-tag-gold { margin: 0; }
.sobre-selo-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.8px;
  color: #ffffff;
  margin: 0;
  max-width: 600px;
}
.sobre-selo-para {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: #bedbff;
  margin: 0;
  max-width: 580px;
}
.sobre-selo-para strong { color: #ffffff; font-weight: 700; }
.sobre-selo-checklist {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  flex-wrap: wrap;
}
.sobre-selo-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sobre-selo-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  display: block;
}
.sobre-selo-check-text {
  display: flex;
  flex-direction: column;
}
.sobre-selo-check-t1 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
}
.sobre-selo-check-t2 {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  color: #bedbff;
}

/* ----- 6. CTA FINAL ----- */
.sobre-cta-section {
  background: linear-gradient(176.96deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.sobre-cta-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 96px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.sobre-cta-text {
  flex: 0 0 629px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sobre-cta-text .sobre-tag-gold { margin: 0; }
.sobre-cta-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.8px;
  color: #ffffff;
  margin: 0;
  max-width: 630px;
}
.sobre-cta-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  margin: 0;
  max-width: 630px;
}
.sobre-cta-actions {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex: 0 0 auto;
  width: 611px;
  height: 68px;
}
.sobre-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 68px;
  padding: 0 40px;
  border-radius: 16px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #dee3e9;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms ease, background-color 200ms ease;
}
.sobre-cta-btn-primary {
  background: #1e69b8;
  flex: 1 0 0;
}
.sobre-cta-btn-primary:hover {
  background: #1857a0;
  transform: translateY(-1px);
  color: #ffffff;
}
.sobre-cta-btn-secondary {
  background: rgba(222, 227, 233, 0.16);
  flex: 0 0 214px;
}
.sobre-cta-btn-secondary:hover {
  background: rgba(222, 227, 233, 0.26);
  transform: translateY(-1px);
  color: #ffffff;
}

/* =================================================================
   COMO INSTALAR — Figma 143:1154 (pixel-perfect)
   Classes prefixadas com .howto-* — não afetam outras páginas.
   ================================================================= */

/* ----- Hero ----- */
.page-hero.howto-hero {
  background: linear-gradient(174.77deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.howto-hero-bg {
  background: none;
}
.howto-hero-blob {
  position: absolute;
  top: 0;
  left: 725px;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,140,223,1) 0%, rgba(44,105,167,0.75) 17.5%,
              rgba(30,70,112,0.5) 35%, rgba(15,35,56,0.25) 52.5%, rgba(0,0,0,0) 70%);
  opacity: 0.10;
  pointer-events: none;
}
.howto-hero-inner {
  padding: 120px 72px 80px !important;
}
.howto-hero-breadcrumb { margin-bottom: 40px; }
.howto-hero-breadcrumb a { color: #94a3b8; text-decoration: none; }
.howto-hero-breadcrumb .produtos-breadcrumb-current { color: #bedbff; }

.howto-hero-grid {
  display: grid;
  grid-template-columns: 640px 254px;
  gap: 132px;
  align-items: end;
}
.howto-hero-content { display: flex; flex-direction: column; gap: 20px; }
.howto-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.howto-hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 61.6px;
  letter-spacing: -1.12px;
  color: #f8fafc;
  margin: 0;
}
.howto-hero-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 30.8px;
  color: #bedbff;
  margin: 0;
}
.howto-hero-chips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.howto-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 41.5px;
  padding: 0 17px;
  background: rgba(203, 213, 225, 0.08);
  border: 1px solid #64748b;
  border-radius: 10px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #cbd5e1;
  white-space: nowrap;
}
.howto-hero-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #3b8cdf;
  flex-shrink: 0;
}

/* ----- Filter bar ----- */
.howto-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
}
.howto-filter-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  color: #64748b;
  text-transform: uppercase;
  margin-right: 8px;
}
.howto-filter-chip {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 17px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  color: #475569;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.howto-filter-chip:hover {
  background: #f1f5f9;
  color: #0a233e;
}
.howto-filter-chip.is-active {
  background: #0a233e;
  border-color: #0a233e;
  color: #ffffff;
}

/* ----- Listing section ----- */
.howto-section {
  background: #f8fafc;
  padding: 64px 0;
}
.howto-section-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}

/* ----- Video card ----- */
.howto-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.howto-card-thumb {
  position: relative;
  width: 420px;
  height: 315px;
  background: #1a2d6d;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.howto-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 200ms ease, transform 400ms ease;
}
.howto-card-thumb:hover img { opacity: 1; transform: scale(1.03); }
.howto-card-thumb .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a233e;
  transition: transform 200ms ease;
}
.howto-card-thumb:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.howto-card-content {
  display: flex;
  flex-direction: column;
  padding: 40px;
  min-height: 315px;
}
.howto-card-accent {
  display: block;
  width: 32px;
  height: 4px;
  background: #1e69b8;
  border-radius: 2px;
  margin-bottom: 16px;
}
.howto-card-h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28.8px;
  color: #0a233e;
  margin: 0 0 16px;
}
.howto-card-desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #475569;
  margin: 0;
  max-width: 779px;
}
.howto-card-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.howto-card-duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 18px;
  color: #64748b;
}
.howto-card-duration svg { color: #64748b; }
.howto-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.howto-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: #ffffff;
  font-family: "DM Mono", ui-monospace, monospace;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #334155;
  text-decoration: none;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
  white-space: nowrap;
}
.howto-card-link:hover {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.20);
  color: #0a233e;
}
.howto-card-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: 14px;
  background: linear-gradient(161.85deg, #113b67 0%, #1e69b8 100%);
  color: #ffffff;
  font-family: "DM Mono", ui-monospace, monospace;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 200ms ease, transform 200ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.howto-card-watch:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #ffffff;
}
.howto-card-watch svg { color: #ffffff; flex-shrink: 0; }
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 9999px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 200ms ease, background-color 200ms ease;
  white-space: nowrap;
}
.btn-pill-blue {
  background: #1e69b8;
  color: #ffffff;
}
.btn-pill-blue:hover { background: #1857a0; transform: translateY(-1px); }
.btn-pill-green {
  background: #22c55e;
  color: #ffffff;
}
.btn-pill-green:hover { background: #16a34a; transform: translateY(-1px); }
.btn-pill-orange {
  background: #f08b43;
  color: #ffffff;
}
.btn-pill-orange:hover { background: #d9722e; transform: translateY(-1px); }
.btn-pill-purple {
  background: #7c4ea8;
  color: #ffffff;
}
.btn-pill-purple:hover { background: #6b3e96; transform: translateY(-1px); }
.btn-pill-dark {
  background: #0a233e;
  color: #ffffff;
}
.btn-pill-dark:hover { background: #1e69b8; transform: translateY(-1px); }
.btn-pill-light {
  background: #ffffff;
  color: #0a233e;
  border: 1px solid #cbd5e1;
}
.btn-pill-light:hover { background: #f1f5f9; transform: translateY(-1px); }

/* ----- YouTube CTA — Figma 143:1335 (card claro + botão vermelho) ----- */
.howto-yt-card {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(170.6deg, rgba(10, 35, 62, 0.03) 0%, rgba(30, 105, 184, 0.05) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 49px;
}
.howto-yt-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 0, 0, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff0000;
}
.howto-yt-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.howto-yt-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #1e69b8;
  margin: 0;
}
.howto-yt-h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28.8px;
  letter-spacing: -0.24px;
  color: #0a233e;
  margin: 0;
}
.howto-yt-desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #475569;
  margin: 0;
  max-width: 512px;
}
.howto-yt-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 0 32px;
  background: #ff0000;
  color: #ffffff;
  border-radius: 16px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.325px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
}
.howto-yt-btn:hover { background: #cc0000; transform: translateY(-1px); color: #ffffff; }
.howto-yt-btn svg { color: #ffffff; flex-shrink: 0; }

/* ----- Final CTA — Figma 143:1384 ----- */
.howto-final-cta {
  background: linear-gradient(176deg, #0a233e 0%, #113b67 55%, #1e69b8 100%);
  padding: 80px 0;
}
.howto-final-cta-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 1fr 252px;
  align-items: center;
  gap: 48px;
}
.howto-final-cta-left {
  display: flex;
  align-items: center;
  gap: 48px;
}
.howto-final-cta-img {
  width: 120px;
  height: 132px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.30));
}
.howto-final-cta-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
}
.howto-final-cta-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.howto-final-cta-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 41px;
  color: #ffffff;
  margin: 0;
}
.howto-final-cta-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  color: #bedbff;
  margin: 0;
}
.howto-final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.howto-final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 252px;
  height: 60px;
  padding: 0 32px;
  border-radius: 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 200ms ease, transform 200ms ease;
}
.howto-final-cta-btn svg { flex-shrink: 0; color: #ffffff; }
.howto-final-cta-btn-primary { background: #1e69b8; }
.howto-final-cta-btn-primary:hover { background: #1857a0; transform: translateY(-1px); color: #ffffff; }
.howto-final-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
}
.howto-final-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  color: #ffffff;
}

/* =================================================================
   CASES — Figma 143:1605 (pixel-perfect)
   Classes prefixadas com .cases-* / .case-card-* — não afetam outras páginas.
   ================================================================= */

/* ----- Hero ----- */
.page-hero.cases-hero {
  background: linear-gradient(174.77deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.cases-hero-bg { background: none; }
.cases-hero-blob {
  position: absolute;
  top: 0;
  left: 725px;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,140,223,1) 0%, rgba(44,105,167,0.75) 17.5%,
              rgba(30,70,112,0.5) 35%, rgba(15,35,56,0.25) 52.5%, rgba(0,0,0,0) 70%);
  opacity: 0.10;
  pointer-events: none;
}
.cases-hero-inner { padding: 120px 72px 80px !important; }
.cases-hero-breadcrumb { margin-bottom: 40px; }
.cases-hero-breadcrumb a { color: #94a3b8; text-decoration: none; }
.cases-hero-breadcrumb .produtos-breadcrumb-current { color: #bedbff; }
.cases-hero-grid {
  display: grid;
  grid-template-columns: 620px 254px;
  gap: 152px;
  align-items: end;
}
.cases-hero-content { display: flex; flex-direction: column; gap: 20px; }
.cases-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.cases-hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 61.6px;
  letter-spacing: -1.12px;
  color: #f8fafc;
  margin: 0;
}
.cases-hero-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  max-width: 620px;
  margin: 0;
}
.cases-hero-chips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.cases-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 41.5px;
  padding: 0 17px;
  background: rgba(203, 213, 225, 0.08);
  border: 1px solid #64748b;
  border-radius: 10px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #cbd5e1;
  white-space: nowrap;
}
.cases-hero-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #3b8cdf;
  flex-shrink: 0;
}

/* ----- Filter bar ----- */
.cases-filter-section { background: #ffffff; padding: 16px 0; }
.cases-filter-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}
.cases-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cases-filter-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  color: #64748b;
  text-transform: uppercase;
  margin-right: 8px;
}
.cases-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 17px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  color: #475569;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cases-filter-chip:hover {
  background: #f1f5f9;
  color: #0a233e;
}
.cases-filter-chip.is-active {
  background: #0a233e;
  border-color: #0a233e;
  color: #ffffff;
}
.cases-filter-count {
  color: inherit;
  opacity: 0.6;
  font-size: 13px;
}

/* ----- Grid ----- */
.cases-section { background: #ffffff; padding: 32px 0 96px; }
.cases-section-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ----- Card ----- */
.case-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 35, 62, 0.12);
}
.case-card-img {
  position: relative;
  width: 100%;
  height: 307px;
  background: #1a2d6d;
  overflow: hidden;
}
.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.case-card:hover .case-card-img img { transform: scale(1.04); }

.case-card-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(10, 35, 62, 0.78);
  color: #ffffff;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.case-card-badge-cat { top: 12px; left: 12px; }
.case-card-badge-count { top: 12px; right: 12px; gap: 6px; }
.case-card-badge svg { color: #ffffff; flex-shrink: 0; }

.case-card-location {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.40);
  z-index: 2;
}
.case-card-location svg { color: #ffffff; flex-shrink: 0; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.40)); }

.case-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 92px;
}
.case-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #0a233e;
  margin: 0;
}
.case-card-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 16.5px;
  color: #64748b;
}
.case-card-line svg { color: #1e69b8; flex-shrink: 0; }

/* ----- CTA Final ----- */
.cases-cta-section {
  background: linear-gradient(176.96deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.cases-cta-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 80px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cases-cta-text {
  flex: 0 0 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cases-cta-eyebrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.cases-cta-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.8px;
  color: #ffffff;
  margin: 0;
  max-width: 600px;
}
.cases-cta-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  margin: 0;
  max-width: 600px;
}
.cases-cta-actions {
  display: flex;
  gap: 16px;
  align-items: stretch;
  height: 68px;
  flex: 0 0 auto;
}
.cases-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 68px;
  padding: 0 40px;
  border-radius: 16px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #dee3e9;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, transform 200ms ease;
}
.cases-cta-btn-primary { background: #1e69b8; flex: 0 0 380px; }
.cases-cta-btn-primary:hover { background: #1857a0; transform: translateY(-1px); color: #ffffff; }
.cases-cta-btn-secondary {
  background: rgba(222, 227, 233, 0.16);
  flex: 0 0 214px;
}
.cases-cta-btn-secondary:hover {
  background: rgba(222, 227, 233, 0.26);
  transform: translateY(-1px);
  color: #ffffff;
}

/* =================================================================
   ONDE COMPRAR — Figma 143:2780 (pixel-perfect)
   Classes prefixadas com .oc-* / .dc-* — não afetam outras páginas.
   ================================================================= */

/* ----- Hero ----- */
.page-hero.oc-hero {
  background: linear-gradient(174.77deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.oc-hero-bg { background: none; }
.oc-hero-blob {
  position: absolute;
  top: 0;
  left: 725px;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,140,223,1) 0%, rgba(44,105,167,0.75) 17.5%,
              rgba(30,70,112,0.5) 35%, rgba(15,35,56,0.25) 52.5%, rgba(0,0,0,0) 70%);
  opacity: 0.10;
  pointer-events: none;
}
.oc-hero-inner { padding: 120px 72px 80px !important; }
.oc-hero-breadcrumb { margin-bottom: 40px; }
.oc-hero-breadcrumb a { color: #94a3b8; text-decoration: none; }
.oc-hero-breadcrumb .produtos-breadcrumb-current { color: #bedbff; }
.oc-hero-grid {
  display: grid;
  grid-template-columns: 620px 270px;
  gap: 120px;
  align-items: end;
}
.oc-hero-content { display: flex; flex-direction: column; gap: 20px; }
.oc-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.oc-hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 61.6px;
  letter-spacing: -1.12px;
  color: #f8fafc;
  margin: 0;
}
.oc-hero-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  margin: 0;
  max-width: 620px;
}
.oc-hero-chips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.oc-hero-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 41.5px;
  padding: 9px 17px;
  max-width: 100%;
  background: rgba(203, 213, 225, 0.08);
  border: 1px solid #64748b;
  border-radius: 10px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #cbd5e1;
  white-space: normal;
  overflow-wrap: anywhere;
}
.oc-hero-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #3b8cdf;
  flex-shrink: 0;
}

/* ----- Paginação ----- */
.oc-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.oc-page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #0a233e;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.oc-page-btn:hover:not(:disabled) { background: #f1f5f9; border-color: #cbd5e1; }
.oc-page-btn.is-active { background: #1e5fa8; border-color: #1e5fa8; color: #fff; }
.oc-page-btn:disabled { opacity: .4; cursor: default; }

/* ----- Filtros ----- */
.oc-filter-section { background: #ffffff; padding: 20px 0; border-bottom: 1px solid #e2e8f0; }
.oc-filter-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}
.oc-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr 120px;
  gap: 16px;
  align-items: end;
}
.oc-filter-field { display: flex; flex-direction: column; gap: 6px; }
.oc-filter-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 16.5px;
  text-transform: uppercase;
  color: #64748b;
}
.oc-filter-control {
  position: relative;
  display: flex;
  align-items: center;
  height: 47px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  transition: border-color 200ms ease;
}
.oc-filter-control:hover { border-color: #94a3b8; }
.oc-filter-control:focus-within {
  border-color: #1e69b8;
  box-shadow: 0 0 0 3px rgba(30, 105, 184, 0.15);
}
.oc-filter-control select,
.oc-filter-control input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #0a233e;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 24px;
}
.oc-filter-chevron {
  color: #94a3b8;
  pointer-events: none;
  position: absolute;
  right: 16px;
}
.oc-filter-submit {
  height: 47px;
  padding: 0 24px;
  background: #1e69b8;
  color: #ffffff;
  border: 0;
  border-radius: 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
}
.oc-filter-submit:hover { background: #1857a0; transform: translateY(-1px); }
.oc-filter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  min-height: 18px;
}
.oc-filter-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #475569;
}
.oc-filter-result svg { color: #1e69b8; flex-shrink: 0; }
.oc-filter-clear {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #1e69b8;
  text-decoration: none;
  cursor: pointer;
}
.oc-filter-clear:hover { color: #1857a0; text-decoration: underline; text-underline-offset: 2px; }

/* ----- Lista de distribuidores ----- */
.oc-list-section { background: #ffffff; padding: 48px 0 96px; }
.oc-list-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}
.oc-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ----- Card de distribuidor ----- */
.dc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.dc-card:hover {
  border-color: #1e69b8;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 35, 62, 0.10);
}
.dc-card-accent {
  display: block;
  height: 4px;
  background: #1e69b8;
}
.dc-card-body { padding: 24px 24px 0; flex: 1 1 auto; }
.dc-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.dc-card-head-text { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.dc-card-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #0a233e;
  margin: 0;
}
.dc-card-tier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #e8c460;
}
.dc-card-tier-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #e8c460;
  flex-shrink: 0;
}
.dc-card-mapbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
  flex-shrink: 0;
  transition: background-color 200ms ease, color 200ms ease;
}
.dc-card-mapbtn:hover { background: #1e69b8; color: #ffffff; }
.dc-card-meta { display: flex; flex-direction: column; gap: 12px; }
.dc-card-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 19.5px;
  color: #475569;
}
.dc-card-row svg { color: #94a3b8; flex-shrink: 0; margin-top: 2px; }
.dc-card-phone {
  color: #1e69b8;
  text-decoration: none;
  font-family: "DM Mono", ui-monospace, monospace;
}
.dc-card-phone:hover { text-decoration: underline; text-underline-offset: 2px; }
.dc-card-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  margin: 16px 24px 24px;
  background: #25d366;
  color: #ffffff;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
}
.dc-card-wa:hover { background: #1ebe5b; transform: translateY(-1px); color: #ffffff; }
.dc-card-wa svg { color: #ffffff; }

/* ----- "Não encontrou..." ----- */
.oc-fallback {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 32px;
}
.oc-fallback-text { display: flex; flex-direction: column; gap: 6px; }
.oc-fallback-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #0a233e;
  margin: 0;
}
.oc-fallback-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #475569;
  margin: 0;
}
.oc-fallback-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 24px;
  background: #1e69b8;
  color: #ffffff;
  border-radius: 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, transform 200ms ease;
}
.oc-fallback-btn:hover { background: #1857a0; transform: translateY(-1px); color: #ffffff; }
.oc-fallback-btn svg { color: #ffffff; flex-shrink: 0; }

/* ----- Empty state ----- */
.oc-empty {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 64px 24px;
  text-align: center;
}
.oc-empty-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #0a233e;
  margin: 0 0 12px;
}
.oc-empty-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 24px;
}
.oc-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 24px;
  background: #1e69b8;
  color: #ffffff;
  border-radius: 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 200ms ease;
}
.oc-empty-btn:hover { background: #1857a0; color: #ffffff; }

/* ----- CTA "Quer ser um distribuidor?" ----- */
.oc-cta-section {
  background: linear-gradient(176.96deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.oc-cta-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 80px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.oc-cta-text { flex: 0 0 580px; display: flex; flex-direction: column; gap: 16px; }
.oc-cta-eyebrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.oc-cta-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.72px;
  color: #ffffff;
  margin: 0;
  max-width: 580px;
}
.oc-cta-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #bedbff;
  margin: 0;
  max-width: 580px;
}
.oc-cta-actions {
  display: flex;
  gap: 16px;
  align-items: stretch;
  height: 68px;
  flex: 0 0 auto;
}
.oc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 68px;
  padding: 0 40px;
  border-radius: 16px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #dee3e9;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, transform 200ms ease;
}
.oc-cta-btn-primary { background: #1e69b8; flex: 0 0 212px; }
.oc-cta-btn-primary:hover { background: #1857a0; transform: translateY(-1px); color: #ffffff; }
.oc-cta-btn-secondary {
  background: rgba(222, 227, 233, 0.16);
  flex: 0 0 200px;
}
.oc-cta-btn-secondary:hover {
  background: rgba(222, 227, 233, 0.26);
  transform: translateY(-1px);
  color: #ffffff;
}

/* =================================================================
   SEJA UM DISTRIBUIDOR — Figma 144:3162 (pixel-perfect)
   Classes prefixadas com .sd-* — não afetam outras páginas.
   ================================================================= */

/* ----- Hero ----- */
.page-hero.sd-hero {
  background: linear-gradient(174.77deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.sd-hero-bg { background: none; }
.sd-hero-blob {
  position: absolute;
  top: 0;
  left: 725px;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,140,223,1) 0%, rgba(44,105,167,0.75) 17.5%,
              rgba(30,70,112,0.5) 35%, rgba(15,35,56,0.25) 52.5%, rgba(0,0,0,0) 70%);
  opacity: 0.10;
  pointer-events: none;
}
.sd-hero-inner { padding: 120px 72px 80px !important; }
.sd-hero-breadcrumb { margin-bottom: 40px; }
.sd-hero-breadcrumb a { color: #94a3b8; text-decoration: none; }
.sd-hero-breadcrumb .produtos-breadcrumb-current { color: #bedbff; }
.sd-hero-grid {
  display: grid;
  grid-template-columns: 640px 220px;
  gap: 240px;
  align-items: center;
}
.sd-hero-content { display: flex; flex-direction: column; gap: 20px; }
.sd-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.sd-hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 61.6px;
  letter-spacing: -1.12px;
  color: #f8fafc;
  margin: 0;
}
.sd-hero-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  margin: 0;
  max-width: 640px;
}
.sd-hero-seal { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.sd-hero-seal img {
  width: 180px;
  height: 186px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}
.sd-hero-seal-caption {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
  text-align: center;
}

/* ----- Vantagens ----- */
.sd-vant-section { background: #f8fafc; padding: 96px 0; }
.sd-vant-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}
.sd-vant-header { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
.sd-vant-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #1e69b8;
  margin: 0;
}
.sd-vant-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 41px;
  letter-spacing: -0.64px;
  color: #0a233e;
  margin: 0;
}
.sd-vant-divider {
  display: block;
  width: 48px;
  height: 4px;
  background: #e8c460;
  border-radius: 2px;
  margin-top: 4px;
}
.sd-vant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sd-vant-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 235px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.sd-vant-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(10, 35, 62, 0.08);
  border-color: #cbd5e1;
}
.sd-vant-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30, 105, 184, 0.10);
  color: #1e69b8;
  flex-shrink: 0;
}
.sd-vant-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 18.2px;
  color: #0a233e;
  margin: 0;
}
.sd-vant-card-desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20.8px;
  color: #475569;
  margin: 0;
}

/* ----- Requisitos + Nossa Missão — Figma 144:3282 ----- */
.sd-req-section {
  position: relative;
  background:
    linear-gradient(160.88deg, rgba(26,45,109,0.64) 16.5%, rgba(26,45,109,0.91) 41.86%, #1a2d6d 60%),
    #1a2d6d;
  padding: 112px 0;
}
.sd-req-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 112px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sd-req-left { display: flex; flex-direction: column; gap: 32px; }
.sd-req-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.sd-req-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 41.4px;
  letter-spacing: -0.72px;
  color: #f8fafc;
  margin: 0;
}
.sd-req-divider {
  display: block;
  width: 48px;
  height: 4px;
  background: #3b8cdf;
  border-radius: 9999px;
  margin: 0;
}
.sd-req-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sd-req-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 22.5px;
  color: #e2e8f0;
}
.sd-req-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  flex-shrink: 0;
}
.sd-mission-card {
  background: linear-gradient(144.52deg, rgba(10, 35, 62, 0.80) 0%, rgba(17, 59, 103, 0.60) 100%);
  border: 1px solid rgba(59, 140, 223, 0.20);
  border-radius: 16px;
  padding: 41px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 408px;
}
.sd-mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}
.sd-mission-eyebrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.sd-mission-quote {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #f8fafc;
  margin: 12px 0 0;
  flex: 1 1 auto;
}
.sd-mission-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.sd-mission-author-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.5px;
  color: #f8fafc;
  margin: 0;
}
.sd-mission-author-role {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0.275px;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0;
}

/* ----- Formulário pré-cadastro + sidebar ----- */
.sd-form-section { background: #ffffff; padding: 112px 0; }
.sd-form-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}
.sd-form-header { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
.sd-form-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #1e69b8;
  margin: 0;
}
.sd-form-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 41px;
  letter-spacing: -0.64px;
  color: #0a233e;
  margin: 0;
}
.sd-form-divider {
  display: block;
  width: 48px;
  height: 4px;
  background: #e8c460;
  border-radius: 2px;
  margin-top: 4px;
}
.sd-form-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* form card */
.sd-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 37px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 12px 24px rgba(10, 35, 62, 0.06);
}
.sd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sd-field { display: flex; flex-direction: column; gap: 6px; }
.sd-field-full { width: 100%; }
.sd-field-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 16.5px;
  letter-spacing: 0.3px;
  color: #475569;
  text-transform: none;
}
.sd-field-control {
  position: relative;
  display: flex;
  align-items: center;
  height: 47px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.sd-field-control:focus-within {
  border-color: #1e69b8;
  box-shadow: 0 0 0 3px rgba(30, 105, 184, 0.15);
}
.sd-field-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  flex-shrink: 0;
  pointer-events: none;
}
.sd-field-input {
  flex: 1;
  height: 47px;
  padding: 0 14px 0 40px;
  border: 0;
  background: transparent;
  outline: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #0a233e;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.sd-field-input::placeholder { color: #94a3b8; }
.sd-field-select { cursor: pointer; padding-right: 40px; }
.sd-field-chevron {
  position: absolute;
  right: 14px;
  color: #94a3b8;
  pointer-events: none;
}
.sd-field-textarea {
  min-height: 110px;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #0a233e;
  outline: 0;
  resize: vertical;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
}
.sd-field-textarea::placeholder { color: #94a3b8; }
.sd-field-textarea:focus {
  border-color: #1e69b8;
  box-shadow: 0 0 0 3px rgba(30, 105, 184, 0.15);
}
.sd-form-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sd-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 51px;
  padding: 0 32px;
  background: #1e69b8;
  color: #ffffff;
  border: 0;
  border-radius: 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 19.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
}
.sd-form-submit:hover { background: #1857a0; transform: translateY(-1px); }
.sd-form-submit svg { color: #ffffff; }
.sd-form-submit-note {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  color: #64748b;
  margin: 0;
  max-width: 320px;
}

/* sidebar */
.sd-form-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sd-side-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sd-side-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  margin-bottom: 8px;
}
.sd-side-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22.5px;
  color: #0a233e;
  margin: 0;
}
.sd-side-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 19.5px;
  color: #64748b;
  margin: 0;
}
.sd-side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  margin-top: 8px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 10px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
}
.sd-side-btn:hover { background: #16a34a; transform: translateY(-1px); color: #ffffff; }
.sd-side-btn svg { color: #ffffff; }
.sd-side-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #1e69b8;
  text-decoration: none;
  align-self: flex-start;
}
.sd-side-link:hover { color: #1857a0; text-decoration: underline; text-underline-offset: 2px; }
.sd-side-link svg { color: currentColor; }
.sd-side-checklist {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sd-side-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 19.5px;
  color: #475569;
}
.sd-side-checklist svg { color: #1e69b8; flex-shrink: 0; margin-top: 2px; }

/* Os campos genéricos `.field*` ainda são usados em Contato/Downloads — manter. */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #64748b;
}
.field-input,
.field-textarea,
.field-select {
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #0a233e;
  outline: 0;
  transition: border-color 200ms ease;
  width: 100%;
}
.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  border-color: #1e69b8;
  box-shadow: 0 0 0 3px rgba(30, 105, 184, 0.15);
}
.field-textarea { min-height: 130px; resize: vertical; }
.field-full { grid-column: span 2; }
.field-error {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #dc2626;
}

/* =================================================================
   DOWNLOADS — Figma 146:3727 (pixel-perfect)
   Classes prefixadas com .dl-* — não afetam outras páginas.
   ================================================================= */

/* ----- Hero ----- */
.page-hero.dl-hero {
  background: linear-gradient(174.77deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.dl-hero-bg { background: none; }
.dl-hero-blob {
  position: absolute;
  top: 0;
  left: 725px;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,140,223,1) 0%, rgba(44,105,167,0.75) 17.5%,
              rgba(30,70,112,0.5) 35%, rgba(15,35,56,0.25) 52.5%, rgba(0,0,0,0) 70%);
  opacity: 0.10;
  pointer-events: none;
}
.dl-hero-inner { padding: 120px 72px 80px !important; }
.dl-hero-breadcrumb { margin-bottom: 40px; }
.dl-hero-breadcrumb a { color: #94a3b8; text-decoration: none; }
.dl-hero-breadcrumb .produtos-breadcrumb-current { color: #bedbff; }
.dl-hero-content { display: flex; flex-direction: column; gap: 20px; max-width: 720px; }
.dl-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.dl-hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 61.6px;
  letter-spacing: -1.12px;
  color: #f8fafc;
  margin: 0;
}
.dl-hero-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  margin: 0;
}

/* ----- Toolbar (search + filters) ----- */
.dl-toolbar-section { background: #f8fafc; padding: 32px 0 0; }
.dl-toolbar-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dl-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dl-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 360px;
  max-width: 360px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  padding: 0 16px 0 40px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.dl-search:focus-within {
  border-color: #1e69b8;
  box-shadow: 0 0 0 3px rgba(30, 105, 184, 0.15);
}
.dl-search-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  pointer-events: none;
}
.dl-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #0a233e;
  width: 100%;
}
.dl-search input::placeholder { color: #94a3b8; }
.dl-search-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  text-transform: uppercase;
  color: #64748b;
}
.dl-search-count svg { color: #94a3b8; flex-shrink: 0; }
.dl-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.dl-filter-bar-linhas { margin-top: 4px; }
.dl-filter-chip {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 17px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #475569;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.dl-filter-chip:hover {
  background: #f1f5f9;
  color: #0a233e;
}
.dl-filter-chip.is-active {
  background: #0a233e;
  border-color: #0a233e;
  color: #ffffff;
}

/* ----- Grid + cards ----- */
.dl-grid-section { background: #f8fafc; padding: 32px 0 96px; }
.dl-grid-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}
.dl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dl-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.dl-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(10, 35, 62, 0.08);
}
.dl-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dl-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f1f5f9;
  flex-shrink: 0;
  overflow: hidden;
}
.dl-card-icon img {
  display: block;
  width: 20px;
  height: 20px;
}
.dl-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #0a233e;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dl-card-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.dl-card-badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 6px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 500;
}
.dl-card-badge-pdf {
  background: rgba(220, 38, 38, 0.10);
  color: #dc2626;
}
.dl-card-badge-linha {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
}
.dl-linha-leaves  { background: rgba(17, 59, 103, 0.12);   color: #113b67; }
.dl-linha-light   { background: rgba(59, 140, 223, 0.14);  color: #1e69b8; }
.dl-linha-windows { background: rgba(240, 139, 67, 0.14);  color: #c46118; }
.dl-linha-spin    { background: rgba(124, 78, 168, 0.14);  color: #7c4ea8; }
.dl-linha-gold    { background: rgba(194, 136, 43, 0.14);  color: #a56614; }
.dl-linha-slim    { background: rgba(30, 78, 42, 0.14);    color: #1e4e2a; }
.dl-linha-kit-pia { background: rgba(93, 91, 89, 0.14);    color: #5d5b59; }
.dl-card-size {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 15px;
  color: #94a3b8;
}
.dl-card-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #64748b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dl-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  margin-top: auto;
  background: #1e69b8;
  color: #ffffff;
  border-radius: 9999px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
}
.dl-card-btn:hover { background: #1857a0; transform: translateY(-1px); color: #ffffff; }
.dl-card-btn svg { color: #ffffff; flex-shrink: 0; }

.dl-empty, .dl-no-results {
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 64px 24px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #64748b;
  margin-top: 16px;
}

/* ----- Legenda + link portal — Figma 146:4714 ----- */
.dl-legend-section {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 41px 0;
}
.dl-legend-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dl-legend-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.dl-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dl-legend-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}
.dl-legend-icon img {
  display: block;
  width: 18px;
  height: 18px;
}
/* Cor de fundo do chip por categoria (do Figma 146:4714) */
.dl-legend-manuais-de-instalacao .dl-legend-icon { background: rgba(10, 35, 62, 0.07); }
.dl-legend-catalogos             .dl-legend-icon { background: rgba(30, 105, 184, 0.08); }
.dl-legend-fichas-tecnicas       .dl-legend-icon { background: rgba(107, 70, 193, 0.08); }
.dl-legend-imagens               .dl-legend-icon { background: rgba(183, 121, 31, 0.10); }

.dl-legend-name {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0.275px;
  text-transform: uppercase;
  color: #64748b;
  white-space: nowrap;
}

.dl-legend-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.dl-legend-portal-label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  color: #64748b;
}
.dl-legend-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0.275px;
  text-transform: uppercase;
  color: #1e69b8;
}
.dl-legend-portal:hover .dl-legend-portal-link {
  color: #1857a0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dl-legend-portal-link svg { color: currentColor; flex-shrink: 0; }

/* =================================================================
   CONTATO — Figma 146:4995 (pixel-perfect)
   Classes prefixadas com .contato-* — não afetam outras páginas.
   ================================================================= */

/* ----- Hero ----- */
.page-hero.contato-hero {
  background: linear-gradient(174.77deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.contato-hero-bg { background: none; }
.contato-hero-blob {
  position: absolute;
  top: 0;
  left: 725px;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,140,223,1) 0%, rgba(44,105,167,0.75) 17.5%,
              rgba(30,70,112,0.5) 35%, rgba(15,35,56,0.25) 52.5%, rgba(0,0,0,0) 70%);
  opacity: 0.10;
  pointer-events: none;
}
.contato-hero-inner { padding: 120px 72px 80px !important; }
.contato-hero-breadcrumb { margin-bottom: 40px; }
.contato-hero-breadcrumb a { color: #94a3b8; text-decoration: none; }
.contato-hero-breadcrumb .produtos-breadcrumb-current { color: #bedbff; }
.contato-hero-content { display: flex; flex-direction: column; gap: 20px; max-width: 640px; }
.contato-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.contato-hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 61.6px;
  letter-spacing: -1.12px;
  color: #f8fafc;
  margin: 0;
}
.contato-hero-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  margin: 0;
}

/* ----- Form + Sidebar ----- */
.contato-section {
  background: #f8fafc;
  padding: 64px 0 96px;
}
.contato-grid {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

/* ----- Sidebar de informações ----- */
.contato-info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contato-info-card {
  background: linear-gradient(170deg, #0a233e 0%, #113b67 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contato-info-header { display: flex; flex-direction: column; gap: 12px; }
.contato-info-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 16.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #bedbff;
  margin: 0;
}
.contato-info-divider {
  display: block;
  width: 32px;
  height: 2px;
  background: #3b8cdf;
  border-radius: 9999px;
}
.contato-info-list { display: flex; flex-direction: column; gap: 20px; }
.contato-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contato-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
  color: #bedbff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-info-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contato-info-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.275px;
  text-transform: uppercase;
  color: #94a3b8;
}
.contato-info-value {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
}
.contato-info-value a { color: inherit; text-decoration: none; }
.contato-info-value a:hover { color: #bedbff; }

/* ----- Card SAC (telefone) ----- */
.contato-sac-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 24px;
  text-decoration: none;
  transition: border-color 200ms ease, transform 200ms ease;
}
.contato-sac-card:hover { border-color: #1e69b8; transform: translateY(-1px); }
.contato-sac-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(30, 105, 184, 0.10);
  color: #1e69b8;
  flex-shrink: 0;
}
.contato-sac-card > div { display: flex; flex-direction: column; gap: 2px; }
.contato-sac-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.275px;
  text-transform: uppercase;
  color: #64748b;
}
.contato-sac-phone {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #0a233e;
}

/* ----- Card WhatsApp (aviso) ----- */
.contato-wa-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  transition: border-color 200ms ease, transform 200ms ease;
}
.contato-wa-card:hover { border-color: #22c55e; transform: translateY(-1px); }
.contato-wa-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  color: #64748b;
  margin: 0;
}
.contato-wa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  background: #25d366;
  color: #ffffff;
  border-radius: 10px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.275px;
  text-transform: uppercase;
}
.contato-wa-cta svg { color: #ffffff; flex-shrink: 0; }
.contato-wa-card:hover .contato-wa-cta { background: #1ebe5b; }

/* ----- Card do formulário ----- */
.contato-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 37px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 12px 24px rgba(10, 35, 62, 0.06);
}
.contato-form-header { display: flex; flex-direction: column; gap: 6px; }
.contato-form-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: -0.22px;
  color: #0a233e;
  margin: 0;
}
.contato-form-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #64748b;
  margin: 0;
}
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contato-form-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  color: #475569;
  cursor: pointer;
}
.contato-form-terms input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #1e69b8;
}
.contato-form-actions { display: flex; }
.contato-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 51px;
  padding: 0 32px;
  background: #1e69b8;
  color: #ffffff;
  border: 0;
  border-radius: 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 19.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
}
.contato-form-submit:hover { background: #1857a0; transform: translateY(-1px); }
.contato-form-submit svg { color: #ffffff; }

/* ----- Mapa ----- */
.contato-mapa-section {
  background: #f8fafc;
  padding: 0 0 96px;
}
.contato-mapa-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contato-mapa-header { display: flex; flex-direction: column; gap: 6px; }
.contato-mapa-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0.275px;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
}
.contato-mapa-addr {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #0a233e;
  margin: 0;
}
.contato-mapa-frame-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #cbd5e1;
}
.contato-mapa-frame {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.contato-success {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.32);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #166534;
}

/* =================================================================
   CASE DETALHE — Sem mockup Figma, segue o padrão das demais páginas
   Classes prefixadas com .cd-* — não afetam outras páginas.
   ================================================================= */

/* ----- Hero ----- */
.page-hero.cd-hero {
  background: linear-gradient(174.77deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.cd-hero-bg { background: none; }
.cd-hero-blob {
  position: absolute;
  top: 0;
  left: 725px;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(59,140,223,1) 0%, rgba(44,105,167,0.75) 17.5%,
              rgba(30,70,112,0.5) 35%, rgba(15,35,56,0.25) 52.5%, rgba(0,0,0,0) 70%);
  opacity: 0.10;
  pointer-events: none;
}
.cd-hero-inner { padding: 120px 72px 80px !important; }
.cd-hero-breadcrumb { margin-bottom: 40px; }
.cd-hero-breadcrumb a { color: #94a3b8; text-decoration: none; }
.cd-hero-breadcrumb a:hover { color: #bedbff; }
.cd-hero-breadcrumb .produtos-breadcrumb-current { color: #bedbff; }
.cd-hero-grid { display: grid; grid-template-columns: minmax(0, 800px); }
.cd-hero-content { display: flex; flex-direction: column; gap: 20px; }
.cd-hero-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.cd-hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 61.6px;
  letter-spacing: -1.12px;
  color: #f8fafc;
  margin: 0;
}
.cd-hero-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #bedbff;
  margin: 0;
  max-width: 800px;
}
.cd-hero-chips {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  flex-wrap: wrap;
}
.cd-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 36px;
  padding: 0 17px;
  background: rgba(203, 213, 225, 0.08);
  border: 1px solid #64748b;
  border-radius: 10px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #cbd5e1;
  white-space: nowrap;
}
.cd-hero-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #3b8cdf;
  flex-shrink: 0;
}

/* ----- Imagem principal + ficha técnica ----- */
.cd-main-section { background: #ffffff; padding: 80px 0; }
.cd-main-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}
.cd-main-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  aspect-ratio: 16 / 11;
}
.cd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Foto em pe (vertical) — espelha a config da home (extra foto_vertical do case):
   mostra a foto inteira (contain) com fundo slate suave preenchendo as bordas. */
.cd-main-image--vertical {
  background-color: #64748b30;
}
.cd-main-image--vertical img {
  object-fit: contain;
}
.cd-ficha {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 12px 24px rgba(10, 35, 62, 0.06);
}
.cd-ficha-head { display: flex; align-items: center; gap: 14px; }
.cd-ficha-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}
.cd-ficha-logo img { width: 28px; height: 28px; object-fit: contain; }
.cd-ficha-head-text { display: flex; flex-direction: column; gap: 2px; }
.cd-ficha-eyebrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.275px;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0;
}
.cd-ficha-line-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #0a233e;
  margin: 0;
}
.cd-ficha-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  margin: 0;
}
.cd-ficha-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
}
.cd-ficha-row dt {
  color: #64748b;
  font-weight: 400;
  margin: 0;
}
.cd-ficha-row dd {
  color: #0a233e;
  font-weight: 600;
  text-align: right;
  margin: 0;
}
.cd-ficha-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  background: #1e69b8;
  color: #ffffff;
  border-radius: 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
}
.cd-ficha-cta:hover { background: #1857a0; transform: translateY(-1px); color: #ffffff; }
.cd-ficha-cta svg { color: #ffffff; flex-shrink: 0; }

/* ----- Body / Texto ----- */
.cd-body-section { background: #ffffff; padding: 0 0 80px; }
.cd-body-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.cd-body-prose {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #334155;
}
.cd-body-prose h1,
.cd-body-prose h2,
.cd-body-prose h3,
.cd-body-prose h4 {
  font-weight: 700;
  color: #0a233e;
  margin: 32px 0 16px;
  line-height: 1.3;
}
.cd-body-prose h2 { font-size: 26px; }
.cd-body-prose h3 { font-size: 20px; }
.cd-body-prose p { margin: 0 0 16px; }
.cd-body-prose a { color: #1e69b8; text-decoration: underline; text-underline-offset: 2px; }
.cd-body-prose a:hover { color: #1857a0; }
.cd-body-prose ul, .cd-body-prose ol { padding-left: 24px; margin: 0 0 16px; }
.cd-body-prose li { margin-bottom: 6px; }
.cd-body-prose blockquote {
  border-left: 3px solid #1e69b8;
  padding-left: 16px;
  margin: 24px 0;
  font-style: italic;
  color: #475569;
}
.cd-body-prose img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }

/* ----- Section headers compartilhados (Galeria + Relacionados) ----- */
.cd-section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.cd-section-header-row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 24px;
}
.cd-section-header-row > div { display: flex; flex-direction: column; gap: 8px; }
.cd-section-tag {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #1e69b8;
  margin: 0;
}
.cd-section-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.56px;
  color: #0a233e;
  margin: 0;
}
.cd-section-divider {
  display: block;
  width: 48px;
  height: 4px;
  background: #e8c460;
  border-radius: 2px;
  margin-top: 4px;
}

/* ----- Galeria ----- */
.cd-galeria-section { background: #f8fafc; padding: 80px 0; }
.cd-galeria-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}
.cd-galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cd-galeria-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.cd-galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.cd-galeria-item:hover img { transform: scale(1.03); }

/* ----- Cases relacionados ----- */
.cd-relacionados-section { background: #ffffff; padding: 80px 0; }
.cd-relacionados-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 72px;
}
.cd-relacionados-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #0a233e;
  text-decoration: none;
  transition: color 200ms ease;
}
.cd-relacionados-all:hover { color: #1e69b8; }
.cd-relacionados-all svg { color: currentColor; }

/* ----- CTA Final ----- */
.cd-cta-section {
  background: linear-gradient(176.96deg, #0a233e 6.55%, #113b67 58.69%, #1e69b8 93.44%);
}
.cd-cta-inner {
  max-width: 1425px;
  margin: 0 auto;
  padding: 80px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cd-cta-text { flex: 0 0 600px; display: flex; flex-direction: column; gap: 16px; }
.cd-cta-eyebrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  color: #e8c460;
  margin: 0;
}
.cd-cta-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.72px;
  color: #ffffff;
  margin: 0;
  max-width: 600px;
}
.cd-cta-sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #bedbff;
  margin: 0;
  max-width: 600px;
}
.cd-cta-actions {
  display: flex;
  gap: 16px;
  align-items: stretch;
  height: 68px;
  flex: 0 0 auto;
}
.cd-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 68px;
  padding: 0 40px;
  border-radius: 16px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #dee3e9;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 200ms ease, transform 200ms ease;
}
.cd-cta-btn-primary { background: #1e69b8; flex: 0 0 380px; }
.cd-cta-btn-primary:hover { background: #1857a0; transform: translateY(-1px); color: #ffffff; }
.cd-cta-btn-secondary {
  background: rgba(222, 227, 233, 0.16);
  flex: 0 0 240px;
}
.cd-cta-btn-secondary:hover {
  background: rgba(222, 227, 233, 0.26);
  transform: translateY(-1px);
  color: #ffffff;
}

/* =================================================================
   RESPONSIVO
   ================================================================= */

/* -------- Responsivo desabilitado: design é desktop fixo 1440 ----------
   Em viewports < 1440 a página exibe scroll horizontal (body min-width).
   Os blocos abaixo ficam comentados como referência caso a Slide Door
   queira no futuro fazer adaptação responsiva real:

   @media (max-width: 1023px) { .hero-section { ... } }
   @media (max-width: 767px)  { .hero-section h1 { ... } }
*/

/* =================================================================
   AMARRAÇÃO ANTI-QUEBRA — Página Sobre
   Trava de segurança aplicada sobre conteúdo dinâmico vindo do CMS.
   Cliente pode digitar qualquer texto/subir qualquer imagem: estes
   limites garantem que o layout NÃO QUEBRA por excesso de conteúdo.
   ================================================================= */

/* Trunca textos longos sem quebrar o card (line-clamp = corta com "...") */
.sobre-hero-h1        { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; word-break: break-word; }
.sobre-hero-sub       { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; word-break: break-word; }
.sobre-hero-chip      { max-width: 280px; overflow: hidden; text-overflow: ellipsis; }
.sobre-timeline-h2    { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; word-break: break-word; }
.sobre-timeline-intro { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.sobre-timeline-title { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; word-break: break-word; }
.sobre-timeline-desc  { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden; }
.sobre-fabrica-h2     { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; word-break: break-word; }
.sobre-fabrica-lead   { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden; }
.sobre-fabrica-feature span {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  overflow: hidden; word-break: break-word;
}
.sobre-numeros-h2     { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; word-break: break-word; }
.sobre-numeros-intro  { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.sobre-num-value      { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.sobre-num-label      { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; word-break: break-word; }
.sobre-selo-h2        { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; word-break: break-word; }
.sobre-selo-para      { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden; }
.sobre-selo-check-t1  { word-break: break-word; }
.sobre-selo-check-t2  { word-break: break-word; }
.sobre-cta-h2         { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; word-break: break-word; }
.sobre-cta-sub        { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.sobre-cta-btn span   { overflow: hidden; text-overflow: ellipsis; max-width: 260px; }

/* Imagens: object-fit garante que QUALQUER proporção subida pelo cliente
   seja exibida sem distorcer. As caixas têm tamanho fixo do design. */
.sobre-hero-image img,
.sobre-fabrica-img img {
  object-fit: cover;
  object-position: center;
  width: 100%; height: 100%;
}
.sobre-selo-img,
.sobre-selo-trilhos {
  object-fit: contain;        /* selo/trilhos: imagens transparentes não cortam */
  object-position: center;
  max-width: 100%;
}

