/* ==========================================================================
   JIAQIANG - SISTEMA DE DESIGN & ESTILOS PRINCIPAIS
   ========================================================================== */

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

:root {
  /* Cores Principais */
  --jq-bg-dark: #09090b;
  --jq-bg-dark-secondary: #121215;
  --jq-bg-card: #18181b;
  --jq-bg-card-hover: #222226;
  --jq-bg-light: #ffffff;
  
  /* Acentos */
  --jq-accent: #2563eb;
  --jq-accent-hover: #1d4ed8;
  --jq-accent-light: #60a5fa;
  --jq-accent-glow: rgba(37, 99, 235, 0.25);

  /* Texto */
  --jq-text-white: #ffffff;
  --jq-text-muted: #a1a1aa;
  --jq-text-dark: #0f172a;
  --jq-text-dark-muted: #475569;

  /* Bordas e Divisores */
  --jq-border: rgba(255, 255, 255, 0.1);
  --jq-border-light: rgba(0, 0, 0, 0.08);

  /* Fontes */
  --jq-font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --jq-font-display: 'Outfit', 'Inter', sans-serif;

  /* Transições & Raios */
  --jq-radius-sm: 8px;
  --jq-radius-md: 12px;
  --jq-radius-lg: 20px;
  --jq-radius-pill: 9999px;
  --jq-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --jq-max-width: 1320px;
}

/* Reset Global */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--jq-font-main);
  background-color: #f8fafc;
  color: var(--jq-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container padrão */
.container {
  width: 100%;
  max-width: var(--jq-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   1. CABEÇALHO (HEADER)
   ========================================================================== */

/* ==========================================================================
   1. CABEÇALHO (HEADER EXCLUSIVO JIAQIANG)
   ========================================================================== */

.jq-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}

.jq-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}

.jq-header .container {
  max-width: 100%;
  padding: 0 clamp(24px, 3.5vw, 48px);
}

.jq-header.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.1);
}

.jq-header.scrolled .jq-logo-img {
  height: 42px;
  width: 42px;
}

.jq-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand / Logo corporativo Hebei Jiaqiang */
.jq-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.jq-logo-link:hover {
  transform: translateY(-1px);
}

.jq-logo-img {
  height: 48px;
  width: 48px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.14));
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-logo-text {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid #e2e8f0;
  padding-left: 12px;
  flex-shrink: 0;
}

.jq-logo-title {
  font-family: var(--jq-font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #0f172a;
  line-height: 1.2;
  white-space: nowrap;
}

.jq-logo-sub {
  font-family: var(--jq-font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #2563eb;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
}

/* Navegação Desktop Destacada (Pill Container High-Tech) */
.jq-nav-desktop {
  display: flex;
  align-items: center;
}

.jq-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 8px;
  border-radius: 100px;
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.02);
}

.jq-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.jq-nav-link svg {
  color: #64748b;
  transition: transform 0.25s ease, color 0.25s ease;
}

.jq-nav-link:hover {
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.12);
}

.jq-nav-link:hover svg {
  color: #2563eb;
  transform: translateY(1px);
}

.jq-nav-list li.jq-has-dropdown:hover > .jq-nav-link svg {
  transform: rotate(180deg);
}

.jq-nav-link.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.jq-nav-link.active svg {
  color: #ffffff !important;
}

/* Submenu Dropdown com Design Elevado */
.jq-nav-list li.jq-has-dropdown {
  position: relative;
}

.jq-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.96);
  min-width: 240px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #e2e8f0;
  border-top: 3px solid #2563eb;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.05);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.jq-nav-list li.jq-has-dropdown:hover .jq-dropdown-menu,
.jq-nav-list li.jq-has-dropdown:focus-within .jq-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.jq-dropdown-menu li {
  width: 100%;
  margin: 0;
}

.jq-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-dropdown-menu a:hover,
.jq-dropdown-menu a.active {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.02) 100%);
  color: #2563eb;
  padding-left: 20px;
}

/* Botões de Ação do Header */
.jq-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Seletor de Idiomas Corporativo (Bandeiras) */
.jq-language-selector {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 3px 4px;
  border-radius: var(--jq-radius-pill);
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.04);
}

.jq-language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  position: relative;
}

.jq-language-button img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, filter 0.2s ease;
  pointer-events: none;
}

.jq-language-button:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.jq-language-button:hover img {
  transform: scale(1.08);
}

.jq-language-button[aria-pressed="true"],
.jq-language-button.active {
  background: #eff6ff;
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.jq-language-button[aria-pressed="true"] img,
.jq-language-button.active img {
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(37, 99, 235, 0.3);
}

.jq-language-button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Seletor no Menu Mobile */
.jq-mobile-header .jq-language-selector,
.jq-mobile-footer .jq-language-selector {
  margin: 10px 0;
}

@media (prefers-reduced-motion: reduce) {
  .jq-language-button,
  .jq-language-button img {
    transition: none !important;
    transform: none !important;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--jq-radius-pill);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border: none;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* Hamburguer Mobile */
.jq-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  z-index: 1100;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.jq-mobile-toggle:hover {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.jq-toggle-bar {
  width: 22px;
  height: 2px;
  background-color: #0f172a;
  border-radius: 2px;
  transition: var(--jq-transition);
}

.jq-mobile-toggle:hover .jq-toggle-bar {
  background-color: #2563eb;
}

/* Menu Mobile Overlay */
/* Menu Mobile Drawer Premium (Design Elevado Hebei Jiaqiang) */
.jq-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100dvh;
  background: rgba(15, 23, 42, 0.96) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.jq-mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}

.jq-mobile-menu.open,
.jq-mobile-menu.active {
  right: 0 !important;
}

.jq-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin-bottom: auto;
}

.jq-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f1f5f9;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-mobile-nav-link:hover,
.jq-mobile-nav-link:focus {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(96, 165, 250, 0.3);
  color: #60a5fa;
  transform: translateX(4px);
}

.jq-mobile-nav-link.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: transparent;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.jq-mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.jq-mobile-footer .btn-primary {
  width: 100%;
  justify-content: center;
  height: 48px;
  font-size: 14px;
}

/* Overlay Escuro para Mobile */
.jq-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.jq-menu-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */

.jq-hero {
  position: relative;
  width: 100%;
  height: clamp(500px, 68vh, 640px);
  min-height: 500px;
  max-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--jq-bg-dark);
  overflow: hidden;
  color: var(--jq-text-white);
  padding-top: 70px;
}

/* Imagem de Fundo da Empresa */
.jq-hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.jq-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
}

/* Overlay de Gradiente */
.jq-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.7) 0%,
    rgba(9, 9, 11, 0.55) 50%,
    rgba(9, 9, 11, 0.9) 100%
  );
}

/* Conteúdo Hero */
.jq-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge de Destaque */
.jq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--jq-accent-light);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.jq-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--jq-accent-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--jq-accent-light);
}

/* Título Principal */
.jq-hero-title {
  font-family: var(--jq-font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 12px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeUp 0.8s ease-out 0.4s both;
}

/* Subtítulo */
.jq-hero-subtitle {
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: fadeUp 0.8s ease-out 0.6s both;
}

/* Nome em Chinês */
.jq-hero-chinese {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease-out 0.8s both;
}

/* Botões da Hero */
.jq-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 1s both;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--jq-text-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--jq-radius-pill);
  transition: var(--jq-transition);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Indicador de Mouse Scroll */
.jq-hero-scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  transition: var(--jq-transition);
  animation: fadeUp 0.8s ease-out 1.2s both;
}

.jq-hero-scroll:hover {
  opacity: 1;
}

.jq-mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}

.jq-mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--jq-text-white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes mouseScroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Keyframes Animação de Entrada */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   2. SEÇÃO SOBRE A EMPRESA (ABOUT SECTION - REDESIGNED 50/50)
   ========================================================================== */

.jq-about-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

.jq-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Container Centralizado Elegante em Mesma Proporção (1440px) */
.jq-about-container {
  width: min(90%, 1440px);
  margin-inline: auto;
}

/* Conteúdo Institucional Centralizado Expandido Lateralmente */
.jq-about-content-full {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 64px auto;
}

/* Coluna Esquerda */
.jq-about-left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.jq-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1d4ed8;
  width: fit-content;
}

.jq-kicker-dot {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 8px #2563eb;
}

/* Título na Coluna Esquerda Protagonista / Expandido Lateralmente */
.jq-about-title {
  font-family: var(--jq-font-display);
  font-size: clamp(34px, 4.3vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.025em;
  max-width: 100%;
}

.jq-title-gradient {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grupo de Texto com Largura Mantida para Leitura Ideal */
.jq-about-text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
}

.jq-about-paragraph {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
}

.jq-paragraph-lead {
  font-size: 17px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.7;
}

/* Card Especial Olímpico */
.jq-about-olympic-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  border-radius: var(--jq-radius-md);
  margin-top: 8px;
  transition: var(--jq-transition);
  width: 100%;
  max-width: 960px;
}

.jq-about-olympic-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
  border-color: #cbd5e1;
  border-left-color: #1d4ed8;
}

.jq-olympic-icon {
  width: 44px;
  height: 44px;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: var(--jq-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jq-olympic-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.jq-olympic-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* Coluna Direita (Composição Visual Premium 50%) */
.jq-about-right-col {
  height: 100%;
  display: flex;
  align-items: center;
}

.jq-about-visual-composition {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--jq-radius-lg);
  overflow: hidden;
  background: #09090b;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jq-visual-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.jq-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--jq-transition);
}

.jq-about-visual-composition:hover .jq-visual-img {
  transform: scale(1.04);
}

.jq-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.2) 0%,
    rgba(9, 9, 11, 0.6) 70%,
    rgba(9, 9, 11, 0.85) 100%
  );
}

/* Card Inovação Premium Glass */
.jq-innovation-glass-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 18px 22px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--jq-radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.jq-innovation-icon {
  width: 42px;
  height: 42px;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: var(--jq-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}

.jq-innovation-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.jq-innovation-sub {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
}

/* Cards de Números (4 colunas na largura total do container) */
.jq-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.jq-stat-card {
  padding: 28px 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  transition: var(--jq-transition);
  display: flex;
  flex-direction: column;
}

.jq-stat-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  border-color: #93c5fd;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.08);
}

.jq-stat-header {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.jq-stat-number {
  font-family: var(--jq-font-display);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -1px;
}

.jq-stat-unit {
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
}

.jq-stat-label {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.jq-stat-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* ==========================================================================
   3. SEÇÃO MOSTRUÁRIO INTERATIVO DE PRODUTOS (PRODUCT SHOWCASE)
   ========================================================================== */

.jq-showcase-section {
  padding: 100px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

.jq-showcase-container {
  width: min(90%, 1440px);
  margin-inline: auto;
}

/* Cabeçalho da Seção */
.jq-showcase-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.jq-showcase-title {
  font-family: var(--jq-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.jq-showcase-subtitle {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* Main Grid: Info Esquerda (300px) | Produto Central (Flex/Grid) | Info Direita (300px) */
.jq-showcase-main-grid {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr) minmax(260px, 300px);
  gap: 36px;
  align-items: center;
  margin-bottom: 56px;
}

/* Painéis de Informações Técnicas Laterais */
.jq-info-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-info-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.08);
}

.jq-info-icon-box {
  width: 42px;
  height: 42px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--jq-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  flex-shrink: 0;
}

.jq-info-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.jq-info-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}

/* Container do Produto Central - Retangular Horizontal */
.jq-product-center-box {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #09090b;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
  border: 1px solid #e2e8f0;
}

.jq-product-image-frame {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #18181b 0%, #09090b 100%);
}

.jq-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.jq-main-img.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

/* Overlay Badge do Nome do Produto */
.jq-product-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 16px;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--jq-radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jq-tag-dot {
  width: 6px;
  height: 6px;
  background-color: #60a5fa;
  border-radius: 50%;
  box-shadow: 0 0 8px #60a5fa;
}

/* Grid de Miniaturas (6 Thumbnails Retangulares Modernas) */
.jq-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
}

.jq-thumb-card {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--jq-radius-md);
  cursor: pointer;
  transition: var(--jq-transition);
  text-align: left;
}

.jq-thumb-card:hover {
  border-color: #93c5fd;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
}

.jq-thumb-card.active {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 12px 28px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.jq-thumb-img-wrapper {
  width: 100%;
  height: 80px;
  border-radius: var(--jq-radius-sm);
  overflow: hidden;
  background: #0f172a;
  margin-bottom: 8px;
}

.jq-thumb-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--jq-transition);
}

.jq-thumb-card:hover .jq-thumb-img-wrapper img {
  transform: scale(1.05);
}

.jq-thumb-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.jq-thumb-num {
  font-size: 10px;
  font-weight: 800;
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 6px;
  border-radius: 4px;
}

.jq-thumb-name {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jq-thumb-card.active .jq-thumb-name {
  color: #2563eb;
}

/* ==========================================================================
   4. BLOCO EDITORIAL DE DESTAQUE INSTITUCIONAL (STATEMENT SECTION)
   ========================================================================== */

.jq-statement-section {
  padding: 80px 0 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

.jq-statement-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.jq-statement-container {
  width: min(90%, 1100px);
  margin-inline: auto;
}

.jq-statement-card {
  padding: 56px 64px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.jq-statement-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1d4ed8;
  width: fit-content;
}

.jq-statement-lead {
  font-family: var(--jq-font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
  letter-spacing: -0.015em;
}

.jq-highlight-blue {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jq-statement-body {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #475569;
  line-height: 1.8;
}

.jq-tech-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 2px 10px;
  border-radius: var(--jq-radius-sm);
  letter-spacing: 0.2px;
  vertical-align: middle;
}

/* Box de Reconhecimento Olímpico */
.jq-statement-olympic-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  border-radius: var(--jq-radius-md);
  margin-top: 8px;
  transition: var(--jq-transition);
}

.jq-statement-olympic-box:hover {
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
  border-color: #cbd5e1;
  border-left-color: #1d4ed8;
}

.jq-statement-olympic-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: var(--jq-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jq-statement-olympic-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
}

.jq-olympic-highlight {
  color: #0f172a;
  font-weight: 700;
  border-bottom: 2px solid #60a5fa;
}

/* ==========================================================================
   5. SEÇÃO DE PROJETOS / CASOS DE SUCESSO (PROJECTS SHOWCASE)
   ========================================================================== */

/* ==========================================================================
   5. SEÇÃO DE PROJETOS / CASOS DE SUCESSO (PROJECTS SHOWCASE - ENHANCED)
   ========================================================================== */

.jq-projects-section {
  padding: 110px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

.jq-projects-container {
  width: min(90%, 1440px);
  margin-inline: auto;
}

/* Cabeçalho da Seção */
.jq-projects-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.jq-projects-title {
  font-family: var(--jq-font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.jq-projects-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.65;
}

/* Frame Principal Escuro (Sidebar + Stage Ampĺiados) */
.jq-projects-frame {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: #09090b;
  border-radius: clamp(20px, 2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 90px -25px rgba(9, 9, 11, 0.4);
  min-height: clamp(580px, 65vh, 660px);
}

/* Sidebar Esquerda */
.jq-projects-sidebar {
  padding: 36px 28px;
  background: rgba(18, 18, 22, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.jq-sidebar-header-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #71717a;
}

.jq-sidebar-count {
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.18);
  padding: 3px 10px;
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
  font-weight: 800;
}

/* Lista de Navegação dos Projetos */
.jq-projects-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jq-project-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--jq-radius-md);
  cursor: pointer;
  transition: var(--jq-transition);
  text-align: left;
  color: #a1a1aa;
  width: 100%;
}

.jq-project-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transform: translateX(4px);
}

.jq-project-nav-item.active {
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.45);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.18);
}

.jq-nav-num {
  font-size: 13px;
  font-weight: 800;
  font-family: var(--jq-font-display);
  color: #52525b;
  transition: var(--jq-transition);
}

.jq-project-nav-item.active .jq-nav-num {
  color: #60a5fa;
}

.jq-nav-text {
  font-size: 14.5px;
  font-weight: 600;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jq-nav-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--jq-transition);
  color: #60a5fa;
}

.jq-project-nav-item:hover .jq-nav-arrow,
.jq-project-nav-item.active .jq-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Palco Visual Direita (Stage Ampliado) */
.jq-projects-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(580px, 65vh, 660px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.jq-stage-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.jq-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.jq-stage-img.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

.jq-stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.15) 0%,
    rgba(9, 9, 11, 0.55) 45%,
    rgba(9, 9, 11, 0.94) 100%
  );
}

/* Conteúdo Sobreposto do Projeto */
.jq-project-content-overlay {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 4.5vw, 56px);
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-project-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: var(--jq-radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #60a5fa;
  width: fit-content;
}

.jq-project-display-title {
  font-family: var(--jq-font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.jq-project-display-desc {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 780px;
}

.jq-project-counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
  font-family: var(--jq-font-display);
}

.jq-counter-current {
  font-size: 22px;
  font-weight: 900;
  color: #60a5fa;
}

.jq-counter-divider {
  font-size: 15px;
  color: #52525b;
}

.jq-counter-total {
  font-size: 15px;
  font-weight: 700;
  color: #71717a;
}

/* ==========================================================================
   6. SEÇÃO CASA ASA DUPLA (DOUBLE-WING EXPANDABLE SYSTEM - BLUEPRINT ACCENT)
   ========================================================================== */

.jq-wing-section {
  padding: 110px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

/* Grid de Fundo Arquitetônico Sutil */
.jq-wing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.jq-wing-container {
  width: min(90%, 1440px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Cabeçalho Técnico / Architectural Header */
.jq-wing-header {
  margin-bottom: 40px;
}

.jq-wing-kicker-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.jq-tech-coord-label {
  font-family: var(--jq-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #64748b;
  text-transform: uppercase;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: var(--jq-radius-sm);
  border: 1px solid #e2e8f0;
}

.jq-wing-title {
  font-family: var(--jq-font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* Navegação Técnica das 4 Categorias (Tabs Arquitetônicas) */
.jq-wing-nav-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  background: #ffffff;
  padding: 8px;
  border-radius: var(--jq-radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.jq-wing-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--jq-radius-md);
  cursor: pointer;
  transition: var(--jq-transition);
  text-align: left;
  color: #64748b;
}

.jq-wing-tab:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.jq-wing-tab.active {
  background: #09090b;
  border-color: #1e293b;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.jq-tab-num {
  font-size: 11px;
  font-weight: 800;
  font-family: var(--jq-font-display);
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 7px;
  border-radius: 4px;
  transition: var(--jq-transition);
}

.jq-wing-tab.active .jq-tab-num {
  background: rgba(37, 99, 235, 0.25);
  color: #60a5fa;
}

.jq-tab-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Palco Principal Assimétrico (65% Palco Visual | 35% Painel Editorial) */
.jq-wing-stage-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Área Visual Protagonista (65%) */
.jq-wing-visual-stage {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.08);
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Marcações de Precisão Arquitetônica nas bordas */
.jq-tech-crosshair {
  position: absolute;
  font-family: monospace;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  z-index: 5;
  pointer-events: none;
  line-height: 1;
}

.jq-tech-crosshair.top-left { top: 12px; left: 14px; }
.jq-tech-crosshair.top-right { top: 12px; right: 14px; }
.jq-tech-crosshair.bottom-left { bottom: 12px; left: 14px; }
.jq-tech-crosshair.bottom-right { bottom: 12px; right: 14px; }

/* Painéis de Conteúdo da Área Visual */
.jq-wing-panel {
  display: none;
  width: 100%;
  height: 100%;
}

.jq-wing-panel.active {
  display: block;
}

.jq-wing-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #09090b;
  overflow: hidden;
}

.jq-wing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.jq-wing-img.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

.jq-wing-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.1) 0%,
    rgba(9, 9, 11, 0.3) 60%,
    rgba(9, 9, 11, 0.65) 100%
  );
}

.jq-wing-blueprint-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.jq-bp-dot {
  width: 6px;
  height: 6px;
  background-color: #60a5fa;
  border-radius: 50%;
  box-shadow: 0 0 8px #60a5fa;
}

/* Grid de 4 Tamanhos (Aba 3) */
.jq-sizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.jq-size-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--jq-transition);
}

.jq-size-card:hover {
  background: #ffffff;
  border-color: #93c5fd;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.jq-size-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jq-size-tag {
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.jq-size-code {
  font-size: 10px;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 6px;
  border-radius: 4px;
}

.jq-size-img-box {
  width: 100%;
  height: 170px;
  border-radius: var(--jq-radius-sm);
  overflow: hidden;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.jq-size-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Tabela de Especificações Técnicas (Aba 4) */
.jq-specs-table-wrapper {
  padding: 28px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  max-height: 520px;
}

.jq-specs-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 2px solid #e2e8f0;
  font-family: var(--jq-font-display);
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
}

.jq-specs-life {
  color: #2563eb;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
}

.jq-specs-table-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jq-spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-sm);
  align-items: center;
  transition: var(--jq-transition);
}

.jq-spec-row:hover {
  background: #ffffff;
  border-color: #93c5fd;
}

.jq-spec-key {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
}

.jq-spec-val {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

/* Painel Editorial de Texto & Botão Catálogo (35%) */
.jq-wing-editorial-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  padding: 40px 32px;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.jq-wing-text-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-wing-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1d4ed8;
  width: fit-content;
}

.jq-wing-display-title {
  font-family: var(--jq-font-display);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.jq-wing-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
}

/* Botão Catálogo Redesenhado em Arquitetura Técnica */
.jq-wing-actions {
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.btn-tech-catalog {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #09090b;
  color: #ffffff;
  border-radius: var(--jq-radius-md);
  text-decoration: none;
  border: 1px solid #1e293b;
  transition: var(--jq-transition);
  box-shadow: 0 12px 28px rgba(9, 9, 11, 0.15);
}

.btn-tech-catalog:hover {
  background: #1e293b;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.2);
}

.btn-tech-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: var(--jq-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}

.btn-tech-text-group {
  display: flex;
  flex-direction: column;
}

.btn-tech-title {
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.btn-tech-sub {
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   7. SEÇÃO DIFERENCIAIS / ACCORDION HORIZONTAL (WHY CHOOSE JIAQIANG)
   ========================================================================== */

.jq-accordion-section {
  padding: 110px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

.jq-accordion-container {
  width: min(90%, 1440px);
  margin-inline: auto;
}

/* Cabeçalho da Seção */
.jq-accordion-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.jq-accordion-title {
  font-family: var(--jq-font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.jq-accordion-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.65;
}

/* Accordion Horizontal Wrapper */
.jq-accordion-wrapper {
  display: flex;
  gap: 16px;
  width: 100%;
  height: 560px;
}

.jq-acc-panel {
  position: relative;
  flex: 1;
  border-radius: var(--jq-radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px -10px rgba(9, 9, 11, 0.25);
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: #09090b;
}

.jq-acc-panel:hover,
.jq-acc-panel.active {
  flex: 3.2;
}

/* Imagem de Fundo & Overlay */
.jq-acc-bg-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.jq-acc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.85);
}

.jq-acc-panel:hover .jq-acc-img,
.jq-acc-panel.active .jq-acc-img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.jq-acc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.15) 0%,
    rgba(9, 9, 11, 0.55) 45%,
    rgba(9, 9, 11, 0.94) 100%
  );
}

/* Conteúdo do Painel */
.jq-acc-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}

.jq-acc-top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.jq-acc-num {
  font-family: var(--jq-font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--jq-transition);
}

.jq-acc-panel:hover .jq-acc-num,
.jq-acc-panel.active .jq-acc-num {
  color: #60a5fa;
}

.jq-acc-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--jq-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.jq-acc-item-title {
  font-family: var(--jq-font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.jq-acc-item-desc {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 480px;
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease, margin-top 0.5s ease;
}

.jq-acc-panel:hover .jq-acc-item-desc,
.jq-acc-panel.active .jq-acc-item-desc {
  opacity: 1;
  max-height: 160px;
  margin-top: 14px;
}

/* Linha Indicadora de Estado Ativo */
.jq-acc-active-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--jq-transition);
}

.jq-acc-active-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #2563eb;
  box-shadow: 0 0 10px #2563eb;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-acc-panel:hover .jq-acc-active-bar::after,
.jq-acc-panel.active .jq-acc-active-bar::after {
  width: 100%;
}

/* ==========================================================================
   8. RODAPÉ (FOOTER)
   ========================================================================== */

.jq-footer {
  background-color: var(--jq-bg-dark);
  color: var(--jq-text-white);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 32px;
  border-top: 1px solid var(--jq-border);
  width: 100%;
}

.jq-footer .container {
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(32px, 4vw, 48px);
}

/* Brilho Ambiente */
.jq-footer::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid Principal do Footer - 3 Colunas Espaçadas de Ponta a Ponta */
.jq-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--jq-border);
  width: 100%;
}

/* Coluna 1: Marca (Esquerda) */
.jq-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
  flex: 1 1 340px;
}

.jq-footer-logo-title {
  font-family: var(--jq-font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--jq-text-white);
}

.jq-footer-logo-sub {
  font-size: 12px;
  color: var(--jq-text-muted);
}

.jq-footer-desc {
  font-size: 14px;
  color: var(--jq-text-muted);
  line-height: 1.7;
  max-width: 380px;
}

/* Selos e Certificações */
.jq-footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.jq-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--jq-bg-card);
  border: 1px solid var(--jq-border);
  border-radius: var(--jq-radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--jq-text-muted);
  transition: var(--jq-transition);
}

.jq-badge-item:hover {
  border-color: var(--jq-accent-light);
  color: var(--jq-text-white);
  background: rgba(37, 99, 235, 0.15);
}

/* Colunas de Links/Infos */
.jq-footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jq-footer-grid > .jq-footer-column:nth-of-type(1) {
  flex: 0 1 auto;
}

.jq-footer-grid > .jq-footer-column:nth-of-type(2) {
  flex: 0 0 auto;
  margin-left: auto;
}

.jq-footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--jq-text-white);
}

.jq-footer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.jq-footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--jq-text-muted);
  transition: var(--jq-transition);
}

.jq-footer-item a:hover {
  color: var(--jq-text-white);
}

.jq-footer-icon {
  width: 36px;
  height: 36px;
  background: var(--jq-bg-card);
  border: 1px solid var(--jq-border);
  border-radius: var(--jq-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--jq-accent-light);
  transition: var(--jq-transition);
}

.jq-footer-item:hover .jq-footer-icon {
  background: var(--jq-accent);
  color: var(--jq-text-white);
  border-color: var(--jq-accent);
}

.jq-footer-text-group {
  display: flex;
  flex-direction: column;
}

.jq-footer-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--jq-text-muted);
}

.jq-footer-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--jq-text-white);
}

.jq-footer-subvalue {
  font-size: 12px;
  color: #71717a;
}

/* Barra Inferior */
.jq-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #71717a;
}

.jq-footer-copyright a {
  color: var(--jq-text-muted);
  transition: var(--jq-transition);
}

.jq-footer-copyright a:hover {
  color: var(--jq-text-white);
}

.jq-footer-legal-links {
  display: flex;
  gap: 20px;
}

.jq-legal-link {
  transition: var(--jq-transition);
}

.jq-legal-link:hover {
  color: var(--jq-text-white);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 1024px) {
  .jq-about-grid-5050 {
    grid-template-columns: 55% 45%;
    gap: 36px;
  }
  .jq-about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jq-showcase-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .jq-thumbs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jq-projects-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .jq-projects-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
  }
  .jq-projects-nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .jq-projects-nav::-webkit-scrollbar {
    display: none;
  }
  .jq-project-nav-item {
    white-space: nowrap;
    width: auto;
    flex-shrink: 0;
  }
  .jq-projects-stage {
    min-height: 480px;
  }
  .jq-wing-nav-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .jq-wing-stage-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .jq-wing-visual-stage, .jq-wing-img-frame {
    min-height: 440px;
  }
  .jq-accordion-wrapper {
    flex-direction: column;
    height: auto;
  }
  .jq-acc-panel {
    min-height: 180px;
    flex: none !important;
  }
  .jq-acc-panel.active {
    min-height: 320px;
  }
  .jq-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .jq-footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .jq-footer-grid > .jq-footer-column:nth-of-type(1),
  .jq-footer-grid > .jq-footer-column:nth-of-type(2) {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .jq-nav-desktop,
  .jq-header-actions .btn-primary {
    display: none !important;
  }
  .jq-logo-sub {
    display: none !important;
  }
  .jq-mobile-toggle {
    display: flex !important;
  }
  .jq-hero {
    height: clamp(480px, 70vh, 580px);
    min-height: 480px;
    padding-top: 60px;
  }
  .jq-hero-title {
    font-size: 44px;
  }
  .jq-hero-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
  }
  .jq-hero-chinese {
    font-size: 16px;
  }
  .jq-about-grid-5050 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .jq-about-visual-composition {
    min-height: 380px;
  }
  .jq-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .jq-footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .jq-about-section, .jq-showcase-section, .jq-statement-section, .jq-projects-section, .jq-wing-section, .jq-accordion-section {
    padding: 60px 0;
  }
  .jq-statement-card {
    padding: 32px 24px;
  }
  .jq-statement-olympic-box {
    flex-direction: column;
  }
  .jq-product-image-frame {
    height: 260px;
  }
  .jq-thumbs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .jq-project-content-overlay {
    padding: 24px;
    gap: 12px;
  }
  .jq-projects-stage {
    min-height: 420px;
  }
  .jq-wing-nav-bar {
    grid-template-columns: 1fr;
  }
  .jq-sizes-grid {
    grid-template-columns: 1fr;
  }
  .jq-spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .jq-wing-visual-stage, .jq-wing-img-frame {
    min-height: 340px;
  }
  .jq-wing-editorial-panel {
    padding: 28px 20px;
  }
  .jq-acc-content {
    padding: 24px 20px;
  }
  .jq-about-stats-grid {
    grid-template-columns: 1fr;
  }
  .jq-about-olympic-card {
    flex-direction: column;
  }
}

/* ==========================================================================
   9. ESTILOS DAS PÁGINAS INTERNAS (SOBRE, TRAJETÓRIA, PARCEIROS)
   ========================================================================== */

/* Page Hero Banner */
.jq-page-hero {
  position: relative;
  padding: 160px 0 80px 0;
  background-color: var(--jq-bg-dark);
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border);
}

.jq-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}

.jq-page-hero-container {
  width: min(90%, 1440px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.jq-page-hero-title {
  font-family: var(--jq-font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.jq-page-hero-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #94a3b8;
  max-width: 720px;
  line-height: 1.7;
}

/* Timeline Tecnológica (trajetoria.html) */
.jq-timeline-section {
  padding: 100px 0;
  background-color: #f8fafc;
  position: relative;
}

.jq-timeline-container {
  width: min(90%, 1440px);
  margin-inline: auto;
}

.jq-timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.jq-timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(180deg, #2563eb 0%, #60a5fa 50%, #e2e8f0 100%);
  border-radius: 2px;
}

.jq-timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  padding: 0 40px;
  box-sizing: border-box;
}

.jq-timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.jq-timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.jq-timeline-dot {
  position: absolute;
  top: 16px;
  width: 20px;
  height: 20px;
  background: #2563eb;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  z-index: 5;
}

.jq-timeline-item:nth-child(odd) .jq-timeline-dot {
  right: -10px;
}

.jq-timeline-item:nth-child(even) .jq-timeline-dot {
  left: -10px;
}

.jq-timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: var(--jq-transition);
}

.jq-timeline-card:hover {
  border-color: #93c5fd;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.jq-timeline-year {
  font-family: var(--jq-font-display);
  font-size: 28px;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 8px;
}

.jq-timeline-title {
  font-family: var(--jq-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.jq-timeline-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}

/* Grid de Certificados Premium (trajetoria.html) */
.jq-certs-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.jq-certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.jq-cert-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: var(--jq-transition);
  position: relative;
  overflow: hidden;
}

.jq-cert-card:hover {
  background: #ffffff;
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.jq-cert-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  width: fit-content;
}

.jq-cert-icon-box {
  width: 54px;
  height: 54px;
  background: #eff6ff;
  border-radius: var(--jq-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.jq-cert-title {
  font-family: var(--jq-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.jq-cert-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
}

.jq-cert-action {
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Modal Lightbox de Certificado */
.jq-cert-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.jq-cert-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.jq-cert-modal-box {
  background: #ffffff;
  border-radius: var(--jq-radius-lg);
  max-width: 680px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.jq-cert-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
}

/* Grid de Parceiros Premium (parceiros.html) */
.jq-partners-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.jq-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.jq-partner-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--jq-transition);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.jq-partner-card:hover {
  border-color: #93c5fd;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.jq-partner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jq-partner-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 4px;
}

.jq-partner-title {
  font-family: var(--jq-font-display);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.jq-partner-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .jq-certs-grid, .jq-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jq-timeline-wrapper::before {
    left: 20px;
  }
  .jq-timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  .jq-timeline-item:nth-child(even) {
    left: 0;
  }
  .jq-timeline-dot {
    left: 10px !important;
  }
  .jq-certs-grid, .jq-partners-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   10. SEÇÃO NOSSA TRAJETÓRIA (TIMELINE & INDICADORES DE EVOLUÇÃO)
   ========================================================================== */

.jq-trajectory-section {
  padding: 110px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

.jq-trajectory-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.jq-traj-container {
  width: min(90%, 1440px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Cabeçalho da Seção */
.jq-traj-header {
  margin-bottom: 48px;
}

.jq-traj-kicker-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.jq-traj-main-title {
  font-family: var(--jq-font-display);
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 900;
  line-height: 1.12;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.jq-traj-main-title .jq-title-gradient {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-top: 4px;
}

.jq-traj-subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 820px;
  line-height: 1.7;
}

/* Trilha Temporal Arquitetônica (Timeline Horizontal) */
.jq-timeline-swipe-hint {
  display: none;
}

.jq-traj-timeline-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  padding: 24px 36px;
  margin-bottom: 48px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.jq-tstep {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jq-tstep-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  border: 2px solid #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
}

.jq-tnode-dot {
  width: 10px;
  height: 10px;
  background-color: #2563eb;
  border-radius: 50%;
}

.jq-tstep-info {
  display: flex;
  flex-direction: column;
}

.jq-tstep-year {
  font-family: var(--jq-font-display);
  font-size: 15px;
  font-weight: 900;
  color: #0f172a;
}

.jq-tstep-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

.jq-tstep-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #93c5fd 0%, #cbd5e1 100%);
  margin: 0 16px;
}

/* Palco Principal (Visual Imagem + Indicadores 13+ / 28+ / 100+) */
.jq-traj-stage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* Área Visual da Imagem da Equipe */
.jq-traj-visual-box {
  position: relative;
  background: #09090b;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.12);
  min-height: 480px;
}

.jq-traj-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: #09090b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jq-traj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.98);
}

.jq-traj-visual-box:hover .jq-traj-img {
  transform: scale(1.05);
  filter: brightness(1);
}

.jq-traj-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 11, 0.1) 0%,
    rgba(9, 9, 11, 0.35) 50%,
    rgba(9, 9, 11, 0.85) 100%
  );
}

.jq-traj-glass-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px 20px;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--jq-radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.jq-gbadge-title {
  display: block;
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.jq-gbadge-sub {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}

/* Painel de Indicadores Numéricos (13+ / 28+ / 100+) */
.jq-traj-metrics-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.jq-metric-row {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: var(--jq-transition);
  position: relative;
  overflow: hidden;
}

.jq-metric-row:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.jq-metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jq-metric-num {
  font-family: var(--jq-font-display);
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1;
  color: #0f172a;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jq-metric-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #dbeafe;
}

.jq-metric-label {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.jq-metric-progress {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}

.jq-metric-bar {
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 2px;
  transition: width 1s ease-out;
}

@media (max-width: 1024px) {
  .jq-traj-stage-grid {
    grid-template-columns: 1fr;
  }
  .jq-traj-timeline-bar {
    overflow-x: auto;
    padding: 20px;
  }
}

/* ==========================================================================
   11. SEÇÃO INOVAÇÃO E PATENTES (PROPRIEDADE INTELECTUAL & P&D)
   ========================================================================== */

.jq-patents-section {
  padding: 110px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

.jq-patents-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.jq-patents-container {
  width: min(90%, 1440px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.jq-patents-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: center;
}

/* Coluna Esquerda: Hero de Impacto Blueprint */
.jq-patents-hero-col {
  display: flex;
  flex-direction: column;
}

.jq-tech-blueprint-box {
  position: relative;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--jq-radius-xl);
  padding: 48px 40px;
  box-shadow: 
    0 30px 70px -15px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(37, 99, 235, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.jq-tech-blueprint-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.jq-tech-blueprint-box:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 40px 90px -15px rgba(37, 99, 235, 0.25),
    0 0 0 1px rgba(37, 99, 235, 0.4);
}

.jq-coord-mark {
  position: absolute;
  font-family: var(--jq-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.jq-coord-mark.top-left { top: 16px; left: 20px; }
.jq-coord-mark.top-right { top: 16px; right: 20px; }
.jq-coord-mark.bottom-left { bottom: 16px; left: 20px; }
.jq-coord-mark.bottom-right { bottom: 16px; right: 20px; }

.jq-patents-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #60a5fa;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.jq-patents-display-wrap {
  margin: 32px 0;
  position: relative;
  z-index: 2;
}

.jq-patents-big-num {
  display: block;
  font-family: var(--jq-font-display);
  font-size: clamp(80px, 9vw, 130px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #93c5fd 60%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 30px rgba(37, 99, 235, 0.3));
}

.jq-patents-display-sub {
  display: block;
  font-family: var(--jq-font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  text-transform: uppercase;
}

.jq-patents-hero-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.jq-tech-shield-icon {
  width: 42px;
  height: 42px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--jq-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jq-patents-tagline {
  font-size: 13px;
  font-style: italic;
  color: #94a3b8;
  line-height: 1.5;
}

/* Coluna Direita: Informações & Pilares com Linhas Finas */
.jq-patents-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jq-patents-title {
  font-family: var(--jq-font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.jq-patents-description {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
}

.jq-patents-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.jq-patent-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #2563eb;
  border-radius: var(--jq-radius-md);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  transition: var(--jq-transition);
}

.jq-patent-pillar-item:hover {
  border-color: #cbd5e1;
  border-left-color: #1d4ed8;
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

.jq-pillar-num {
  font-family: var(--jq-font-display);
  font-size: 18px;
  font-weight: 900;
  color: #2563eb;
  background: #eff6ff;
  width: 38px;
  height: 38px;
  border-radius: var(--jq-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #dbeafe;
}

.jq-pillar-title {
  font-family: var(--jq-font-display);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.jq-pillar-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .jq-patents-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   12. SEÇÃO CONQUISTAS HISTÓRICAS (MARCOS TEMPORAIS DE IMPACTO)
   ========================================================================== */

.jq-history-section {
  padding: 110px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

.jq-history-container {
  width: min(90%, 1440px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Cabeçalho */
.jq-history-header {
  margin-bottom: 56px;
}

.jq-history-main-title {
  font-family: var(--jq-font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.jq-history-subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 820px;
  line-height: 1.7;
}

/* Trilha Temporal Vertical Editorial */
.jq-history-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.jq-hmilestone-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-lg);
  padding: 36px 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.jq-hmilestone-card:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.1);
}

/* Sidebar com Número e Ano */
.jq-hmilestone-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.jq-hmilestone-num {
  font-family: var(--jq-font-display);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1;
  color: #cbd5e1;
  transition: color 0.4s ease;
}

.jq-hmilestone-card:hover .jq-hmilestone-num {
  color: #2563eb;
}

.jq-hmilestone-year-badge {
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 4px 12px;
  border-radius: var(--jq-radius-pill);
}

.jq-hmilestone-year-badge.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
}

.jq-hmilestone-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, #dbeafe 0%, #e2e8f0 100%);
  margin-top: 8px;
  min-height: 40px;
}

/* Corpo da Conquista Histórica */
.jq-hmilestone-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jq-hmilestone-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.jq-hmilestone-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2563eb;
}

.jq-hmilestone-metric {
  font-family: var(--jq-font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0f172a;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.jq-hmilestone-title {
  font-family: var(--jq-font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.jq-hmilestone-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

.jq-hmilestone-footer-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
}

.jq-tech-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: var(--jq-radius-pill);
}

@media (max-width: 768px) {
  .jq-hmilestone-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
  .jq-hmilestone-sidebar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .jq-hmilestone-line {
    display: none;
  }
}

/* ==========================================================================
   13. SEÇÃO RECONHECIMENTO OFICIAL (CERTIFICAÇÕES & DISTINÇÃO INDUSTRIAL)
   ========================================================================== */

.jq-recognition-section {
  padding: 110px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jq-border-light);
}

.jq-recog-container {
  width: min(90%, 1440px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.jq-recog-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: center;
}

/* Coluna Esquerda: Glass Stage Hero (100 Empresas + Selo AAAAA) */
.jq-recog-hero-col {
  display: flex;
  flex-direction: column;
}

.jq-recog-glass-stage {
  position: relative;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--jq-radius-xl);
  padding: 48px 40px;
  box-shadow: 
    0 30px 70px -15px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(37, 99, 235, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.jq-recog-glass-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.jq-recog-glass-stage:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 40px 90px -15px rgba(37, 99, 235, 0.3),
    0 0 0 1px rgba(37, 99, 235, 0.45);
}

.jq-recog-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--jq-radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #60a5fa;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.jq-recog-hero-title-box {
  margin: 28px 0 20px 0;
  position: relative;
  z-index: 2;
}

.jq-recog-top-num {
  font-family: var(--jq-font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #2563eb;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #dbeafe;
  display: inline-block;
  margin-bottom: 12px;
}

.jq-recog-hero-heading {
  font-family: var(--jq-font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.jq-recog-cert-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--jq-radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.jq-cert-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.jq-cert-info {
  display: flex;
  flex-direction: column;
}

.jq-cert-code {
  font-family: var(--jq-font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #ffffff;
}

.jq-cert-lbl {
  font-size: 12px;
  color: #94a3b8;
}

.jq-recog-tagline-box {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.jq-recog-tagline {
  font-size: 13px;
  font-style: italic;
  color: #94a3b8;
  line-height: 1.5;
}

/* Coluna Direita: Informações & Pilares */
.jq-recog-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jq-recog-main-title {
  font-family: var(--jq-font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.jq-recog-description {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
}

.jq-recog-pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.jq-recog-pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #2563eb;
  border-radius: var(--jq-radius-md);
  padding: 20px 24px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  transition: var(--jq-transition);
}

.jq-recog-pillar-card:hover {
  border-color: #cbd5e1;
  border-left-color: #1d4ed8;
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

.jq-rpillar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.jq-rpillar-icon {
  width: 34px;
  height: 34px;
  background: #eff6ff;
  border-radius: var(--jq-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
}

.jq-rpillar-title {
  font-family: var(--jq-font-display);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.jq-rpillar-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .jq-recog-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   14. HERO TIPOGRÁFICA OFICIAL (TRAJETÓRIA OVERSIZED - MODO PRETO)
   ========================================================================== */
.jq-traj-hero-typo {
  padding: 140px 0 70px 0;
  background: #090d16;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.jq-traj-hero-typo-container {
  width: min(92%, 1400px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* Grid & Crosshairs Arquitetônicos Luminosos */
.jq-typo-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.jq-typo-crosshair {
  position: absolute;
  font-family: monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  opacity: 0.8;
}

.jq-typo-crosshair.top-left { top: 120px; left: 40px; }
.jq-typo-crosshair.top-right { top: 120px; right: 40px; }
.jq-typo-crosshair.bottom-left { bottom: 20px; left: 40px; }
.jq-typo-crosshair.bottom-right { bottom: 20px; right: 40px; }

.jq-typo-axis-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
}

.jq-typo-axis-line.horizontal {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

/* Bar de Metadados (Kicker + Coordenadas) */
.jq-typo-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.jq-typo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.4);
  padding: 6px 18px;
  border-radius: var(--jq-radius-pill);
}

.jq-typo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6, 0 0 0 3px rgba(59, 130, 246, 0.3);
  animation: jqPulseDot 2s infinite ease-in-out;
}

@keyframes jqPulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.jq-typo-kicker-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #60a5fa;
}

.jq-typo-coords {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--jq-font-display);
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1px;
}

.jq-coord-divider {
  color: #475569;
}

/* Título Oversized Protagonista (TRAJETÓRIA - BRANCO LUMINOSO + AZUL) */
.jq-typo-display-wrap {
  position: relative;
  margin: 10px 0 36px 0;
}

.jq-typo-giant-title {
  font-family: var(--jq-font-display);
  font-size: clamp(52px, 12.5vw, 168px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  animation: jqFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.jq-typo-accent-line {
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 100px;
  margin-top: 20px;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.6);
}

/* Rodapé Institucional da Hero (Razão Social em Inglês e Mandarim) */
.jq-typo-bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: flex-end;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jq-typo-legal-en {
  font-family: var(--jq-font-display);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

.jq-typo-legal-zh {
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 2px;
  margin-top: 6px;
}

.jq-typo-subtext {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

@keyframes jqFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .jq-typo-bottom-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   CARROSSEL DA LINHA DO TEMPO OFICIAL (2011 A 2024)
   ========================================================================== */
.jq-official-timeline-section {
  padding: 60px 0 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.jq-timeline-header-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.jq-timeline-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 6px 16px;
  border-radius: var(--jq-radius-pill);
  font-size: 12px;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 1px;
}

.jq-timeline-title {
  font-family: var(--jq-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 16px;
}

.jq-timeline-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.jq-timeline-drag-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 8px 22px;
  border-radius: var(--jq-radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.jq-timeline-drag-hint svg {
  animation: jqDragPulse 2s ease-in-out infinite;
}

@keyframes jqDragPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* Viewport do Carrossel Lateralizado com Scroll & Drag */
.jq-timeline-viewport {
  width: 100%;
  max-width: var(--jq-max-width);
  margin: 0 auto;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 30px 24px 50px 24px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: #2563eb #e2e8f0;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.jq-timeline-viewport:active {
  cursor: grabbing;
}

.jq-timeline-viewport::-webkit-scrollbar {
  height: 8px;
}

.jq-timeline-viewport::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 100px;
}

.jq-timeline-viewport::-webkit-scrollbar-thumb {
  background: #2563eb;
  border-radius: 100px;
}

/* Track em Linha Única Horizontal (Jamais Quebra Linha) */
.jq-timeline-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 36px;
  position: relative;
  width: max-content !important;
  min-width: max-content !important;
  padding: 10px 40px;
}

/* Linha Contínua Horizontal que conecta TODOS os 14 anos da Esquerda para a Direita */
.jq-timeline-global-line {
  position: absolute;
  top: 254px; /* Exatamente no centro vertical das badges dos anos */
  left: 60px;
  right: 60px;
  height: 3px;
  background: #cbd5e1;
  z-index: 1;
  pointer-events: none;
}

/* Card Individual de Coluna (Largura Fixa para Carrossel Lateralizado) */
.jq-timeline-col {
  flex: 0 0 310px !important;
  width: 310px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-timeline-col:hover {
  transform: translateY(-6px);
}

/* Top: Card de Titulo do Marco sem imagem */
.jq-timeline-img-card {
  width: 100%;
  height: 100px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0d1527 0%, #1e293b 100%);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.jq-timeline-col:hover .jq-timeline-img-card {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.jq-timeline-pill-overlay {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  background: rgba(37, 99, 235, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(96, 165, 250, 0.35);
  padding: 8px 18px;
  border-radius: var(--jq-radius-pill);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-align: center;
  white-space: nowrap;
  max-width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Center: Nós e Linha Conectora */
.jq-timeline-node-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px 0;
  height: 44px;
  z-index: 3;
}

.jq-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #94a3b8;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}

.jq-timeline-year-btn {
  position: relative;
  z-index: 4;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--jq-radius-pill);
  padding: 7px 26px;
  font-family: var(--jq-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-timeline-col.active .jq-timeline-year-btn,
.jq-timeline-year-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: scale(1.08);
}

.jq-timeline-col.active .jq-timeline-dot {
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
}

/* Bottom: Card de Texto Descritivo */
.jq-timeline-text-card {
  width: 100%;
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.jq-timeline-col.active .jq-timeline-text-card {
  border-color: #dbeafe;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}

.jq-timeline-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .jq-timeline-col {
    flex: 0 0 260px !important;
    width: 260px !important;
  }
  .jq-timeline-img-card {
    height: 160px;
  }
  .jq-timeline-global-line {
    top: 224px;
  }
}

/* ==========================================================================
   15. SEÇÃO OFICIAL DE CERTIFICADOS & GALERIA 3D DE PROFUNDIDADE
   ========================================================================== */
.jq-certifications-section {
  padding: 100px 0 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.jq-cert-header-box {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px auto;
}

.jq-cert-main-title {
  font-family: var(--jq-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 20px;
}

.jq-cert-official-paragraph {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: #475569;
  text-align: center;
  margin: 0;
}

.jq-cert-official-paragraph strong {
  color: #0f172a;
  font-weight: 700;
}

/* Palco do Carrossel de Profundidade 3D */
.jq-cert-carousel-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.jq-cert-cards-track {
  position: relative;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* Card Individual de Certificado */
.jq-cert-card {
  position: absolute;
  width: 320px;
  height: 420px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  user-select: none;
  touch-action: pan-y;
}

.jq-cert-img-wrapper {
  width: 100%;
  height: 330px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jq-cert-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.jq-cert-label {
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 14px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}

/* Posições de Profundidade 3D (Ativo no Centro, Laterais em Perspectiva) */
.jq-cert-card.active {
  transform: translateX(0) scale(1) translateZ(0);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.18), 0 0 0 2px #2563eb;
  filter: none;
}

.jq-cert-card.prev-1 {
  transform: translateX(-320px) scale(0.82) rotateY(12deg);
  z-index: 5;
  opacity: 0.7;
  filter: grayscale(25%);
}

.jq-cert-card.next-1 {
  transform: translateX(320px) scale(0.82) rotateY(-12deg);
  z-index: 5;
  opacity: 0.7;
  filter: grayscale(25%);
}

.jq-cert-card.prev-2 {
  transform: translateX(-520px) scale(0.68) rotateY(20deg);
  z-index: 2;
  opacity: 0.3;
}

.jq-cert-card.next-2 {
  transform: translateX(520px) scale(0.68) rotateY(-20deg);
  z-index: 2;
  opacity: 0.3;
}

.jq-cert-card.hidden {
  transform: scale(0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* Botões de Navegação Flutuantes */
.jq-cert-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-cert-nav-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.jq-cert-nav-btn.prev { left: 10px; }
.jq-cert-nav-btn.next { right: 10px; }

/* Contadores e Barra de Progresso */
.jq-cert-counter {
  font-family: var(--jq-font-display);
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 30px;
  letter-spacing: 1px;
}

.jq-cert-progress-wrapper {
  width: 260px;
  height: 5px;
  background: #e2e8f0;
  border-radius: 100px;
  overflow: hidden;
  margin-top: 14px;
}

.jq-cert-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 100px;
  transition: width 0.4s ease;
}

@media (max-width: 768px) {
  .jq-cert-card {
    width: 270px;
    height: 360px;
  }
  .jq-cert-img-wrapper {
    height: 280px;
  }
  .jq-cert-card.prev-1 {
    transform: translateX(-180px) scale(0.8);
    opacity: 0.4;
  }
  .jq-cert-card.next-1 {
    transform: translateX(180px) scale(0.8);
    opacity: 0.4;
  }
  .jq-cert-card.prev-2, .jq-cert-card.next-2 {
    opacity: 0;
  }
  .jq-cert-nav-btn.prev { left: 0; }
  .jq-cert-nav-btn.next { right: 0; }
}

/* ==========================================================================
   16. SEÇÃO OFICIAL: PARCERIAS ESTRATÉGICAS GLOBAIS (LAYOUT 50/50 CENTRALIZADO)
   ========================================================================== */
.jq-global-partners-split-section {
  padding: 90px 0 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.jq-partners-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Coluna Esquerda (50%): Informações Editoriais */
.jq-partners-split-left {
  display: flex;
  flex-direction: column;
}

.jq-split-title {
  font-family: var(--jq-font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
  margin-bottom: 16px;
}

.jq-split-desc {
  font-size: clamp(15px, 1.2vw, 16.5px);
  line-height: 1.7;
  color: #475569;
  margin-bottom: 28px;
}

.jq-split-desc strong {
  color: #0f172a;
}

/* Card Destaque 20+ Países */
.jq-split-stat-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  margin-bottom: 24px;
}

.jq-split-stat-num {
  font-family: var(--jq-font-display);
  font-size: 44px;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
  letter-spacing: -0.03em;
}

.jq-split-stat-title {
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1px;
}

.jq-split-stat-sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

/* Destaques Institucionais em Lista */
.jq-split-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jq-split-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
}

/* Coluna Direita (50%): Hub Visual de Conexões Globais & Parceiros */
.jq-partners-split-right {
  display: flex;
  flex-direction: column;
}

.jq-network-hub-card {
  background: linear-gradient(160deg, #090d16 0%, #0f172a 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25), 0 0 35px rgba(37, 99, 235, 0.15);
  position: relative;
  overflow: hidden;
}

.jq-network-hub-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.jq-hub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.jq-hub-tag-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 4px 14px;
  border-radius: var(--jq-radius-pill);
}

.jq-hub-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 8px #60a5fa;
}

.jq-hub-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #93c5fd;
}

.jq-hub-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #34d399;
  letter-spacing: 0.5px;
}

.jq-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

/* Visual de Conexões Globais Radar SVG */
.jq-hub-map-graphic {
  position: relative;
  width: 100%;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.25) 0%, rgba(15, 23, 42, 0.6) 80%);
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.jq-hub-svg-connections {
  width: 100%;
  height: 100%;
}

.jq-hub-center-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.4);
  font-family: var(--jq-font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.jq-badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}

/* Lista de Parceiros Corporativos com Design Dark Glass */
.jq-hub-partners-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jq-hub-partner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.35 cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.jq-hub-partner-row:hover,
.jq-hub-partner-row.active {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
  transform: translateX(4px);
}

.jq-hub-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jq-hub-partner-code {
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 900;
  color: #60a5fa;
}

.jq-hub-partner-name {
  font-family: var(--jq-font-display);
  font-size: 14px;
  font-weight: 800;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jq-hub-badge-mini {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(147, 197, 253, 0.3);
  padding: 2px 8px;
  border-radius: var(--jq-radius-pill);
}

.jq-hub-partner-sub {
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 2px;
}

.jq-hub-row-arrow {
  color: #64748b;
  transition: all 0.3s ease;
}

.jq-hub-partner-row:hover .jq-hub-row-arrow {
  color: #60a5fa;
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .jq-partners-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ==========================================================================
   17. GALERIA OFICIAL DOS 33 PARCEIROS (CARROSSEL INTERATIVO DEDICADO)
   ========================================================================== */
.jq-partners-gallery-section {
  padding: 90px 0 110px 0;
  background: #ffffff;
  position: relative;
  border-top: 1px solid #e2e8f0;
}

.jq-partners-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}

.jq-partners-gallery-title {
  font-family: var(--jq-font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: #0f172a;
  margin-top: 10px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.jq-partners-gallery-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  color: #64748b;
  max-width: 620px;
  line-height: 1.6;
  margin: 0;
}

.jq-partners-controls-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.jq-partners-counter {
  font-family: var(--jq-font-display);
  font-size: 16px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1px;
}

.jq-partners-counter .current {
  color: #2563eb;
  font-size: 24px;
  font-weight: 900;
}

.jq-partners-nav-btns {
  display: flex;
  gap: 10px;
}

.jq-partners-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.jq-partners-nav-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.25);
}

.jq-partners-nav-btn:active {
  transform: scale(0.95);
}

/* Viewport & Track do Carrossel dos 33 Parceiros (Layout 2 Colunas/Linhas Laterais) */
.jq-partners-carousel-viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  width: 100%;
  border-radius: 20px;
  padding: 10px 0;
}

.jq-partners-carousel-viewport:active {
  cursor: grabbing;
}

.jq-partners-carousel-track {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Cards dos 33 Parceiros (Compactados para 2 Linhas) */
.jq-partner-logo-card {
  width: 280px;
  height: 215px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  position: relative;
}

.jq-partner-logo-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.12);
}

.jq-partner-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jq-partner-num {
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 900;
  color: #2563eb;
}

.jq-partner-cat-badge {
  font-size: 10px;
  font-weight: 800;
  color: #475569;
  background: #f1f5f9;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.jq-partner-logo-box {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
  padding: 6px;
}

.jq-partner-logo-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(15%) opacity(0.9);
  transition: all 0.3s ease;
}

.jq-partner-logo-card:hover .jq-partner-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.jq-partner-card-name {
  font-family: var(--jq-font-display);
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.jq-partner-accent-line {
  height: 3px;
  width: 26px;
  background: #e2e8f0;
  border-radius: 100px;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.jq-partner-logo-card:hover .jq-partner-accent-line {
  width: 100%;
  background: #2563eb;
}

/* Barra de Progresso do Carrossel dos 33 Parceiros */
.jq-partners-progress-track {
  height: 5px;
  width: 100%;
  background: #e2e8f0;
  border-radius: 100px;
  margin-top: 36px;
  overflow: hidden;
}

.jq-partners-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 100px;
  transition: width 0.4s ease;
}

@media (max-width: 768px) {
  .jq-partners-gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .jq-partners-carousel-viewport {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 6px 0 !important;
  }
  .jq-partners-carousel-track {
    grid-auto-columns: calc(50vw - 24px) !important;
    gap: 10px !important;
  }
  .jq-partner-logo-card {
    width: calc(50vw - 24px) !important;
    height: 180px !important;
    padding: 10px 10px !important;
    box-sizing: border-box !important;
    border-radius: 14px !important;
  }
  .jq-partner-card-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 4px !important;
    width: 100% !important;
  }
  .jq-partner-cat-badge {
    font-size: 8px !important;
    line-height: 1.15 !important;
    padding: 2px 6px !important;
    max-width: calc(100% - 24px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    border-radius: 100px !important;
  }
  .jq-partner-logo-box {
    height: 75px !important;
    padding: 4px !important;
  }
  .jq-partner-logo-img {
    max-height: 55px !important;
    max-width: 85% !important;
    object-fit: contain !important;
  }
  .jq-partner-card-name {
    font-size: 11px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin-bottom: 2px !important;
  }
}

/* ==========================================================================
   18. HERO TIPOGRÁFICA OFICIAL - PÁGINA PRODUTOS (PRODUTOS OVERSIZED)
   ========================================================================== */
.jq-prod-hero-typo {
  padding: 120px 0 45px 0;
  background: #090d16;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.jq-prod-hero-typo-container {
  width: min(92%, 1400px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.jq-prod-hero-scroll-indicator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.jq-scroll-label {
  font-family: var(--jq-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #60a5fa;
  text-transform: uppercase;
}

.jq-scroll-line-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  animation: jqBounceDown 2s infinite ease-in-out;
}

.jq-scroll-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, transparent);
  border-radius: 100px;
}

@keyframes jqBounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ==========================================================================
   19. SEÇÃO INTRODUTÓRIA: DESCUBRA O PORTFÓLIO (LAYOUT VERTICAL EMPILHADO)
   ========================================================================== */
.jq-discover-portfolio-section {
  padding: 100px 0 110px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.jq-portfolio-tech-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.jq-tech-crosshair {
  position: absolute;
  font-family: monospace;
  font-size: 14px;
  color: #cbd5e1;
}

.jq-tech-crosshair.top-left { top: 40px; left: 40px; }
.jq-tech-crosshair.bottom-right { bottom: 40px; right: 40px; }

.jq-discover-stacked-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 960px;
  position: relative;
  z-index: 2;
}

.jq-discover-header-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.jq-discover-title {
  font-family: var(--jq-font-display);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.12;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-top: 8px;
  margin-bottom: 20px;
}

.jq-discover-highlight {
  color: #2563eb;
  position: relative;
  display: inline-block;
}

.jq-discover-line-accent {
  height: 4px;
  width: 90px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 100px;
  margin-bottom: 28px;
}

.jq-discover-paragraph {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.75;
  color: #475569;
  font-weight: 500;
  max-width: 820px;
  margin-bottom: 32px;
}

.jq-discover-specs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.jq-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.jq-spec-pill:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
  transform: translateY(-2px);
}

.jq-spec-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
}

/* ==========================================================================
   20. SEÇÃO PRINCIPAL DE PRODUTOS (GRADE 2X2 PREMIUM & BOTÃO "VER PRODUTO")
   ========================================================================== */
.jq-products-grid-section {
  padding: 80px 0 120px 0;
  background: #f8fafc;
  position: relative;
}

.jq-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* Card de Produto */
.jq-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.jq-product-card:hover {
  transform: translateY(-8px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

/* Container de Imagem Principal */
.jq-product-img-box {
  position: relative;
  height: 340px;
  width: 100%;
  overflow: hidden;
  background: #0f172a;
}

.jq-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.jq-product-card:hover .jq-product-img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

/* Badge de Categoria (Topo Esquerdo da Imagem) */
.jq-product-tag-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #0f172a;
  font-family: var(--jq-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

/* Botão "Ver Produto" Integrado ao Rodapé (Lado Direito do Texto da Série) */
.jq-product-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #09090b;
  color: #ffffff;
  font-family: var(--jq-font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #18181b;
  box-shadow: 0 6px 18px rgba(9, 9, 11, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  flex: 1;
  min-width: 180px;
}

.jq-product-card:hover .jq-product-view-btn,
.jq-product-view-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.jq-product-view-btn svg {
  transition: transform 0.3s ease;
}

.jq-product-view-btn:hover svg {
  transform: translateX(4px);
}

/* Corpo do Card (Informações & Especificação) */
.jq-product-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.jq-product-title {
  font-family: var(--jq-font-display);
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.25;
}

.jq-product-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Rodapé de Especificação Técnica do Card (Horizontal: Texto Esquerda | Botão Expansivo Direita) */
.jq-product-spec-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.jq-spec-info-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.jq-spec-label {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.jq-spec-val {
  font-family: var(--jq-font-display);
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

@media (max-width: 900px) {
  .jq-products-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .jq-product-img-box {
    height: 280px;
  }
  .jq-product-body {
    padding: 24px;
  }
}

/* ==========================================================================
   21. GALERIA OFICIAL DE PROJETOS (8 CASOS DE SUCESSO INTERNACIONAIS)
   ========================================================================== */
.jq-gallery-projects-section {
  padding: 100px 0 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.jq-gallery-header-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px auto;
}

.jq-gallery-main-title {
  font-family: var(--jq-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 18px;
}

.jq-gallery-main-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: #475569;
  margin: 0;
  transition: opacity 0.35s ease;
}

.jq-gallery-showcase-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.jq-gallery-main-stage {
  position: relative;
  width: 100%;
  height: clamp(340px, 50vh, 560px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
  cursor: grab;
  user-select: none;
  background: #0f172a;
}

.jq-gallery-main-stage:active {
  cursor: grabbing;
}

.jq-gallery-img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.jq-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.jq-gallery-main-img.fade-out {
  opacity: 0.2;
  transform: scale(0.97);
}

.jq-gallery-stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.05) 50%, rgba(15, 23, 42, 0.88) 100%);
  pointer-events: none;
}

.jq-gallery-counter-badge {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 4;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 6px 16px;
  color: #ffffff;
  font-family: var(--jq-font-display);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.jq-gallery-counter-badge .current {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
}

.jq-gallery-counter-badge .slash,
.jq-gallery-counter-badge .total {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.jq-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-gallery-nav-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.jq-gallery-nav-btn.prev { left: 24px; }
.jq-gallery-nav-btn.next { right: 24px; }

.jq-gallery-info-overlay {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 4;
  max-width: 650px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.jq-gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--jq-font-display);
  font-size: 11px;
  font-weight: 800;
  color: #60a5fa;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 4px 12px;
  border-radius: 100px;
}

.jq-gallery-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
}

.jq-gallery-project-title {
  font-family: var(--jq-font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  margin: 0;
}

/* Dots Indicadores */
.jq-gallery-dots-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.jq-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.jq-gallery-dot.active {
  width: 26px;
  border-radius: 100px;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* Track de Thumbnails */
.jq-gallery-thumbs-container {
  width: 100%;
  overflow-x: auto;
  padding: 8px 0;
}

.jq-gallery-thumbs-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-width: min-content;
  margin: 0 auto;
}

.jq-gallery-thumb-item {
  width: 110px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 0;
  background: #0f172a;
}

.jq-gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.jq-gallery-thumb-item .thumb-num {
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-family: var(--jq-font-display);
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.7);
  padding: 2px 6px;
  border-radius: 4px;
}

.jq-gallery-thumb-item:hover {
  opacity: 0.95;
  transform: translateY(-3px);
}

.jq-gallery-thumb-item.active {
  border-color: #2563eb;
  opacity: 1;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}

@media (max-width: 768px) {
  .jq-gallery-main-stage {
    height: 340px;
  }
  .jq-gallery-counter-badge {
    top: 16px;
    right: 16px;
  }
  .jq-gallery-info-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  .jq-gallery-nav-btn {
    width: 40px;
    height: 40px;
  }
  .jq-gallery-nav-btn.prev { left: 12px; }
  .jq-gallery-nav-btn.next { right: 12px; }
  transition: flex 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0.7;
}

.jq-versatile-module-panel:hover,
.jq-versatile-module-panel.active {
  flex: 3.2;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 99, 235, 0.15);
  opacity: 1;
}

.jq-module-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jq-module-index {
  font-family: var(--jq-font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: #3b82f6;
  line-height: 1;
}

.jq-module-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.jq-versatile-module-panel.active .jq-module-tag,
.jq-versatile-module-panel:hover .jq-module-tag {
  color: #60a5fa;
}

.jq-module-title {
  font-family: var(--jq-font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 800;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.jq-module-body-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease 0.1s, max-height 0.4s ease;
}

.jq-versatile-module-panel.active .jq-module-body-content,
.jq-versatile-module-panel:hover .jq-module-body-content {
  opacity: 1;
  max-height: 300px;
  margin-top: 14px;
}

.jq-module-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.jq-module-spec-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-tag {
  font-size: 11px;
  font-weight: 700;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.jq-module-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ==========================================================================
   21. SEÇÃO SOLUÇÕES MODULARES VERSÁTEIS (SISTEMA CONSTRUTIVO MULTIDISCIPLINAR)
   ========================================================================== */
.jq-versatile-solutions-section {
  padding: 110px 0 130px 0;
  background: #f8fafc;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(30, 64, 175, 0.04) 0%, transparent 45%),
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  position: relative;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
  overflow: hidden;
}

.jq-solutions-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 64px auto;
  position: relative;
  z-index: 2;
}

.jq-solutions-header .jq-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #2563eb;
  font-family: var(--jq-font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.jq-solutions-header .jq-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.jq-solutions-main-title {
  font-family: var(--jq-font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.jq-solutions-main-title .jq-title-gradient {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jq-solutions-main-desc {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

/* Matriz Construtiva (Split Panel Arquitetônico 01 a 06) */
.jq-solutions-matrix-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Coluna Esquerda: Lista de Botões 01-06 */
.jq-solutions-selector-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jq-solution-nav-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.jq-solution-nav-btn:hover {
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateX(6px);
}

.jq-solution-nav-btn.active {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateX(8px);
}

.jq-solution-nav-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

.jq-solution-nav-btn .btn-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.jq-solution-nav-btn.active .btn-meta {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.15);
}

.jq-solution-nav-btn .num {
  font-family: var(--jq-font-display);
  font-size: 16px;
  font-weight: 900;
  color: #64748b;
  transition: color 0.3s ease;
}

.jq-solution-nav-btn.active .num,
.jq-solution-nav-btn:hover .num {
  color: #2563eb;
}

.jq-solution-nav-btn .btn-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jq-solution-nav-btn .tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.jq-solution-nav-btn.active .tag {
  color: #2563eb;
}

.jq-solution-nav-btn .title {
  font-family: var(--jq-font-display);
  font-size: 17px;
  font-weight: 800;
  color: #334155;
  margin: 0;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.jq-solution-nav-btn.active .title {
  color: #0f172a;
}

.jq-solution-nav-btn .arrow-icon {
  color: #94a3b8;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.jq-solution-nav-btn.active .arrow-icon,
.jq-solution-nav-btn:hover .arrow-icon {
  color: #2563eb;
  transform: translateX(5px);
}

/* Coluna Direita: Palco de Destaque da Aplicação Selecionada */
.jq-solutions-stage-col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 44px;
  color: #0f172a;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

/* Marcações CAD de Precisão nos 4 Cantos */
.jq-stage-cad-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.jq-tech-crosshair {
  position: absolute;
  font-family: monospace;
  font-size: 14px;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.3);
}

.jq-tech-crosshair.top-left { top: 16px; left: 20px; }
.jq-tech-crosshair.top-right { top: 16px; right: 20px; }
.jq-tech-crosshair.bottom-left { bottom: 16px; left: 20px; }
.jq-tech-crosshair.bottom-right { bottom: 16px; right: 20px; }

.jq-stage-content-card {
  position: relative;
  z-index: 2;
}

.jq-stage-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.jq-stage-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #2563eb;
  font-family: var(--jq-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
}

.jq-stage-num {
  font-family: var(--jq-font-display);
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1.5px;
}

.jq-stage-title {
  font-family: var(--jq-font-display);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.jq-stage-line-accent {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.jq-stage-desc {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: #475569;
  margin-bottom: 24px;
}

/* Estágio de Imagem Contextual com Overlay de Engenharia */
.jq-stage-image-box {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 28px;
  background: #f1f5f9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.jq-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.jq-stage-image-box:hover .jq-stage-img {
  transform: scale(1.05);
}

.jq-stage-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.65) 100%);
  pointer-events: none;
}

.jq-stage-img-badge {
  position: absolute;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(96, 165, 250, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #f8fafc;
  backdrop-filter: blur(8px);
}

.jq-stage-img-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}

/* Especificações Técnicas em 3 Cards */
.jq-stage-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.jq-spec-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.jq-spec-card:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.25);
}

.jq-spec-card .label {
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.jq-spec-card .val {
  font-family: var(--jq-font-display);
  font-size: 13.5px;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1.3;
}

/* CTA Footer na Coluna de Estágio */
.jq-stage-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 18px;
  border-top: 1px dashed #cbd5e1;
}

.jq-stage-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-family: var(--jq-font-display);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.jq-stage-cta-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* Responsividade Medias Queries */
@media (max-width: 1024px) {
  .jq-solutions-matrix-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .jq-solutions-stage-col {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .jq-versatile-solutions-section {
    padding: 70px 0 90px 0;
  }

  .jq-solution-nav-btn {
    padding: 16px 18px;
    gap: 14px;
  }

  .jq-solution-nav-btn .title {
    font-size: 15px;
  }

  .jq-stage-specs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jq-stage-cta-wrap {
    justify-content: center;
  }

  .jq-stage-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   20. SEÇÃO PRINCIPAL DO PRODUTO: MÓDULO JQ-01 (CATÁLOGO INTERATIVO 3 COLUNAS)
   ========================================================================== */
.jq-jq01-product-section {
  padding: 80px 0 100px 0;
  background: #f8fafc;
  color: #0f172a;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.jq-jq01-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 70%),
    radial-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px;
  pointer-events: none;
  z-index: 1;
}

.jq-jq01-container {
  width: min(92%, 1280px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header de Seção / Label */
.jq-jq01-header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #cbd5e1;
  text-align: center;
}

.jq-jq01-label-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 100px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}

.jq-jq01-label-kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.jq-jq01-spec-tag {
  display: none !important;
}

/* Layout 3 Colunas Estilo Catálogo Interativo: Esquerda (Info Escura) | Centro (Imagem) | Direita (Info Escura) */
.jq-jq01-3col-grid {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr) minmax(240px, 280px);
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .jq-jq01-3col-grid {
    grid-template-columns: 1fr;
  }
}

/* Painel de Informação Técnica ESCURO */
.jq-jq01-info-card {
  padding: 24px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-jq01-info-card:hover {
  border-color: #3b82f6;
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.2);
}

.jq-jq01-info-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}

.jq-jq01-info-title {
  font-family: var(--jq-font-display);
  font-size: 15px;
  font-weight: 800;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jq-jq01-info-desc {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Quadro da Imagem Principal Central */
.jq-jq01-image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.jq-jq01-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.jq-jq01-main-img.fade-out {
  opacity: 0.2;
  transform: scale(0.98);
}

.jq-jq01-img-overlay-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid #2563eb;
  border-radius: 10px;
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
  color: #f8fafc;
}

/* Galeria de 7 Miniaturas Limpas */
.jq-jq01-thumbs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.jq-jq01-thumb-btn {
  width: 92px;
  height: 80px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  padding: 6px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jq-jq01-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.jq-jq01-thumb-btn:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.15);
}

.jq-jq01-thumb-btn:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.jq-jq01-thumb-btn.active {
  border: 2.5px solid #2563eb;
  border-radius: 22px;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
  background: #ffffff;
}

.jq-jq01-thumb-btn.active img {
  opacity: 1;
}

.jq-jq01-thumb-num {
  position: absolute;
  top: 4px;
  left: 6px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 100px;
  z-index: 2;
}

/* Bloco Inferior de Descrição Completa ESCURO */
.jq-jq01-full-description {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #2563eb;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.jq-jq01-desc-title {
  font-family: var(--jq-font-display);
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.jq-jq01-desc-text {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 1050px;
}

/* ==========================================================================
   21. SEÇÃO DIAGRAMA TÉCNICO: MÓDULO JQ-01 (ENGINEERING SHOWCASE HIGH-TECH)
   ========================================================================== */
.jq-tech-diagram-section {
  padding: 95px 0 115px 0;
  background: #080b13;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jq-diagram-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.jq-diagram-container {
  width: min(92%, 1280px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header da Seção Diagrama */
.jq-diagram-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 55px auto;
}

.jq-diagram-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 22px;
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.jq-diagram-kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
}

.jq-diagram-main-title {
  font-family: var(--jq-font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.jq-diagram-subtitle {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Layout Principal de Exibição (Palco à Esquerda | Lista de Seleção à Direita) */
.jq-tech-showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 55px;
}

@media (max-width: 1024px) {
  .jq-tech-showcase-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Palco Principal da Imagem */
.jq-tech-main-stage {
  position: relative;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

.jq-tech-stage-badge {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(2, 6, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid #2563eb;
  border-radius: 10px;
  backdrop-filter: blur(12px);
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
}

.jq-tech-img-container {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  background: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.jq-tech-main-img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.jq-tech-main-img.fade-out {
  opacity: 0.15;
  transform: scale(0.97);
}

.jq-tech-stage-actions {
  padding: 16px 24px;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.jq-tech-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #2563eb;
  border: 1px solid #3b82f6;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.jq-tech-zoom-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

/* Coluna Lateral de Seleção dos Cards */
.jq-tech-views-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jq-view-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-view-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(15, 23, 42, 0.85);
  transform: translateX(4px);
}

.jq-view-card.active {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.15);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.jq-view-thumb {
  width: 68px;
  height: 56px;
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.jq-view-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jq-view-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.jq-view-tag,
.jq-view-num {
  display: none !important;
}

.jq-view-title {
  font-family: var(--jq-font-display);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jq-view-sub {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bloco de Fechamento Integrado */
.jq-diagram-closing-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 42px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #2563eb;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.jq-closing-header {
  margin-bottom: 12px;
}

.jq-closing-badge {
  font-family: monospace;
  font-size: 11px;
  font-weight: 800;
  color: #60a5fa;
  letter-spacing: 0.12em;
}

.jq-diagram-closing-text {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.85;
  margin: 0;
}

/* Lightbox Modal CSS */
.jq-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.jq-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.jq-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(12px);
}

.jq-lightbox-content {
  position: relative;
  z-index: 2;
  width: min(94%, 1100px);
  max-height: 90vh;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
}

.jq-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.jq-lightbox-close:hover {
  background: #2563eb;
  border-color: #2563eb;
}

.jq-lightbox-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--jq-font-display);
  font-size: 16px;
  font-weight: 800;
  color: #60a5fa;
}

.jq-lightbox-body {
  padding: 24px;
  background: #ffffff;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(90vh - 70px);
}

.jq-lightbox-body img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

/* ==========================================================================
   22. SEÇÃO FICHA TÉCNICA, REMESSA & MONTAGEM (ENCAIXADA & PREMIUM)
   ========================================================================== */
.jq-specs-accordions-section {
  padding: 90px 0 110px 0;
  background: #f8fafc;
  color: #0f172a;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.jq-specs-container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

/* Cabeçalho da Seção */
.jq-specs-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.jq-specs-header-title {
  margin: 0;
}

.jq-specs-kicker {
  font-family: monospace;
  font-size: 12px;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.jq-specs-heading {
  font-family: var(--jq-font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
}

.jq-specs-top-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jq-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #059669;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

.jq-iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #2563eb;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

/* Master Accordion Cards (Layout Encaixado) */
.jq-accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.jq-accordion-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.jq-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  cursor: pointer;
  user-select: none;
  background: #ffffff;
  transition: background-color 0.25s ease;
}

.jq-accordion-trigger:hover {
  background: #f8fafc;
}

.jq-accordion-trigger.active {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.jq-trigger-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.jq-trigger-num {
  font-family: monospace;
  font-size: 13px;
  font-weight: 800;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 6px 12px;
  border-radius: 8px;
}

.jq-main-title {
  font-family: var(--jq-font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.jq-main-title strong {
  color: #2563eb;
}

.jq-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.jq-card-pill-hint {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
}

.jq-toggle-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.jq-toggle-icon .plus-icon {
  font-size: 22px;
  font-weight: 400;
  color: #0f172a;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.jq-accordion-trigger.active .jq-toggle-icon {
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.3);
}

.jq-accordion-trigger.active .jq-toggle-icon .plus-icon {
  color: #ffffff;
  transform: rotate(180deg);
}

/* Accordion Body */
.jq-accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.jq-accordion-body.open {
  opacity: 1;
}

.jq-accordion-content-inner {
  padding: 30px;
}

/* Sub-navegação por Pills dentro da Ficha Técnica */
.jq-cat-pills-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  scrollbar-width: none;
}

.jq-cat-pills-bar::-webkit-scrollbar {
  display: none;
}

.jq-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.jq-cat-pill:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.jq-cat-pill.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.jq-cat-pill.active .pill-dot {
  background: #ffffff;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  transition: background-color 0.25s ease;
}

/* Estágio 2 Colunas Encaixado do Slide */
.jq-slides-container {
  position: relative;
  min-height: 280px;
}

.jq-slide {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.jq-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.jq-spec-stage-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .jq-spec-stage-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Hero de Métricas da Esquerda */
.jq-hero-metrics-card {
  background: linear-gradient(145deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.jq-hero-metric-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  padding-bottom: 14px;
}

.jq-hero-metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.jq-hero-metric-val {
  font-family: var(--jq-font-display);
  font-size: 34px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.jq-hero-metric-val span {
  font-size: 16px;
  font-weight: 700;
  color: #2563eb;
  margin-left: 4px;
}

.jq-hero-metric-lbl {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-top: 6px;
}

/* Lista Matrix de Especificações da Direita */
.jq-tech-matrix {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.jq-matrix-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.jq-matrix-row:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.jq-matrix-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.jq-matrix-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
}

.jq-matrix-val {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-align: right;
}

.jq-matrix-val.highlight {
  color: #2563eb;
}

/* Controles Inferiores da Ficha Técnica */
.jq-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.jq-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 100px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.jq-nav-btn:hover:not(:disabled) {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
}

.jq-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.jq-page-indicator {
  font-family: monospace;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.jq-page-indicator .current-page {
  color: #2563eb;
}

/* Accordion 2: Soluções de Remessa */
.jq-shipping-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 900px) {
  .jq-shipping-grid {
    grid-template-columns: 1fr;
  }
}

.jq-shipping-img-box {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jq-shipping-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jq-shipping-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 600px) {
  .jq-shipping-specs-grid {
    grid-template-columns: 1fr;
  }
}

.jq-shipping-card-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s ease;
}

.jq-shipping-card-item:hover {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.jq-shipping-card-lbl {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jq-shipping-card-val {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.jq-shipping-card-val.highlight {
  color: #2563eb;
}

/* Accordion 3: Processo de Montagem Flow */
.jq-assembly-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .jq-assembly-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .jq-assembly-flow {
    grid-template-columns: 1fr;
  }
}

.jq-assembly-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.jq-assembly-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

.jq-assembly-photo-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: #ffffff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jq-assembly-step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: monospace;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.jq-assembly-photo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
  margin: 0 auto;
}

.jq-assembly-card:hover .jq-assembly-photo {
  transform: scale(1.06);
}

.jq-assembly-info {
  padding: 14px 16px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  font-family: var(--jq-font-display);
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-top: auto;
}

/* Zoom & Lightbox para Imagens de Montagem e Remessa */
.jq-assembly-card,
.jq-shipping-img-box {
  cursor: pointer;
}

.jq-shipping-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.jq-photo-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-family: var(--jq-font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 3;
}

.jq-assembly-card:hover .jq-photo-zoom-hint,
.jq-shipping-img-box:hover .jq-photo-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.jq-lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 11, 19, 0.94);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jq-lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.jq-lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.jq-lightbox-modal.active .jq-lightbox-content {
  transform: scale(1);
}

.jq-lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.jq-lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.jq-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  background: #ffffff;
}

.jq-lightbox-caption {
  color: #cbd5e1;
  font-family: var(--jq-font-display);
  font-size: 16px;
  margin-top: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   23. SEÇÃO GALERIA DE PROJETOS: MÓDULO JQ-01
   ========================================================================== */
.jq-projects-gallery-section {
  padding: 100px 0 110px 0;
  background: #ffffff;
  color: #0f172a;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.jq-gallery-container {
  width: min(92%, 1160px);
  margin: 0 auto;
}

/* Cabeçalho da Galeria */
.jq-gallery-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px auto;
}

.jq-gallery-kicker-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.jq-gallery-kicker-wrap .line {
  width: 24px;
  height: 1px;
  background: #2563eb;
  opacity: 0.5;
}

.jq-gallery-kicker {
  font-family: monospace;
  font-size: 12px;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.12em;
}

.jq-gallery-heading {
  font-family: var(--jq-font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px 0;
}

.jq-gallery-heading .highlight {
  font-style: italic;
  color: #2563eb;
}

.jq-gallery-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
  color: #475569;
  margin: 0;
  min-height: 76px;
  transition: opacity 0.3s ease;
}

/* Palco Principal da Imagem */
.jq-gallery-stage-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 600px;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  margin-bottom: 24px;
  user-select: none;
  cursor: grab;
}

.jq-gallery-stage-card:active {
  cursor: grabbing;
}

.jq-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.jq-gallery-main-img.fade-out {
  opacity: 0.2;
}

.jq-gallery-stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.75) 100%);
  pointer-events: none;
}

.jq-gallery-counter-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: monospace;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  z-index: 5;
}

.jq-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
}

.jq-gallery-nav-btn.prev {
  left: 20px;
}

.jq-gallery-nav-btn.next {
  right: 20px;
}

.jq-gallery-nav-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.jq-gallery-stage-caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  z-index: 5;
  pointer-events: none;
}

.jq-gallery-cat-pill {
  font-family: monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.jq-gallery-proj-title {
  font-family: var(--jq-font-display);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Indicador de Pontos (Dots) */
.jq-gallery-dots-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.jq-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jq-gallery-dot.active {
  width: 28px;
  border-radius: 100px;
  background: #2563eb;
}

/* Faixa de Miniaturas */
.jq-gallery-thumbs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 4px 14px 4px;
  scrollbar-width: none;
}

.jq-gallery-thumbs-row::-webkit-scrollbar {
  display: none;
}

.jq-gallery-thumb {
  width: 96px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #f1f5f9;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.25s ease;
}

.jq-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jq-gallery-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.jq-gallery-thumb.active {
  opacity: 1;
  border-color: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .jq-gallery-stage-card {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .jq-gallery-nav-btn {
    width: 38px;
    height: 38px;
  }

  .jq-gallery-nav-btn.prev { left: 12px; }
  .jq-gallery-nav-btn.next { right: 12px; }

  .jq-gallery-stage-caption {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .jq-gallery-thumb {
    width: 72px;
    height: 48px;
  }
}

/* ==========================================================================
   24. BARRA DE NAVEGAÇÃO FIXA DO PRODUTO (STICKY PRODUCT NAV)
   ========================================================================== */
.jq-sticky-product-bar {
  position: sticky;
  top: 76px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.jq-sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jq-sticky-prod-name {
  font-family: var(--jq-font-display);
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jq-sticky-prod-name .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
}

.jq-sticky-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 800px) {
  .jq-sticky-links {
    display: none;
  }
}

.jq-sticky-link {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jq-sticky-link:hover,
.jq-sticky-link.active {
  color: #2563eb;
}

.jq-sticky-btn {
  padding: 8px 18px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.jq-sticky-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   25. SEÇÃO VANTAGENS: MÓDULO JQ-01
   ========================================================================== */
.jq-advantages-section {
  padding: 100px 0 110px 0;
  background: #f8fafc;
  color: #0f172a;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.jq-advantages-container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

/* Cabeçalho da Seção */
.jq-advantages-header {
  text-align: center;
  margin-bottom: 50px;
}

.jq-adv-kicker {
  font-family: monospace;
  font-size: 12px;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.jq-adv-heading {
  font-family: var(--jq-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
}

.jq-adv-heading strong {
  color: #2563eb;
}

/* Grid 3x2 */
.jq-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .jq-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .jq-advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards de Vantagens */
.jq-adv-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.jq-adv-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
}

.jq-adv-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.jq-adv-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jq-adv-tech-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 14px;
  margin-right: auto;
}

.jq-adv-metric {
  font-family: var(--jq-font-display);
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.jq-adv-label {
  font-family: monospace;
  font-size: 10px;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.jq-adv-num {
  font-family: monospace;
  font-size: 14px;
  font-weight: 800;
  color: #cbd5e1;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.jq-adv-card:hover .jq-adv-num {
  color: #2563eb;
  border-color: #dbeafe;
  background: #eff6ff;
}

.jq-adv-title {
  font-family: var(--jq-font-display);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.jq-adv-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* ==========================================================================
   ESTILOS ADICIONAIS DE ENGENHARIA — DIAGRAMA E COMPOSIÇÃO MÓDULO JQ-02
   ========================================================================== */
.jq-tech-diagram-section {
  position: relative;
  padding: 100px 0;
  background: #090d16;
  color: #ffffff;
  overflow: hidden;
}

.jq-diagram-container {
  width: min(92%, 1280px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.jq-diagram-stage {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .jq-diagram-stage {
    grid-template-columns: 1fr;
  }
}

.jq-diagram-viewer {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.jq-diagram-photo-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  padding: 10px;
}

.jq-diagram-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.jq-diagram-overlay-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jq-tag-status {
  font-family: monospace;
  font-size: 10px;
  color: #38bdf8;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.jq-tag-title {
  font-family: var(--jq-font-display);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.jq-diagram-zoom-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--jq-font-display);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  transition: all 0.25s ease;
}

.jq-diagram-zoom-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.jq-diagram-views-panel {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.jq-views-panel-title {
  font-family: monospace;
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 20px;
}

.jq-views-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jq-view-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s ease;
}

.jq-view-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(56, 189, 248, 0.3);
}

.jq-view-card.active {
  background: rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

.jq-view-num {
  display: none !important;
}

.jq-view-name {
  font-family: var(--jq-font-display);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.jq-view-sub {
  font-size: 12px;
  color: #94a3b8;
}

.jq-diagram-closing-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 32px;
}

.jq-diagram-closing-title {
  font-family: var(--jq-font-display);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.jq-diagram-closing-text {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
}

.jq-tech-img-card:hover img {
  transform: scale(1.05);
}

.jq-tech-img-card:hover {
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.12);
}

/* ==========================================================================
   ESTILOS CINEMATOGRÁFICOS E ARQUITETÔNICOS PARA AS 3 PÁGINAS INTERNAS
   ========================================================================== */

/* 1. HERO EXPANSIVO COM MÁSCARA & ZOOM (LINHA EXPANSIVA 700mm) */
.jq-hero-fullscreen {
  position: relative;
  min-h: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #05070a;
  color: #ffffff;
}

.jq-hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.jq-hero-bg-img-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  will-change: transform;
}

.jq-hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.65) 0%, rgba(5, 7, 10, 0.4) 40%, rgba(5, 7, 10, 0.95) 100%),
              radial-gradient(circle at center, transparent 30%, rgba(5, 7, 10, 0.7) 100%);
  z-index: 2;
}

.jq-hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  text-align: center;
  padding: 120px 24px 80px;
}

/* Máscara de texto para revelação cinematográfica */
.jq-mask-reveal {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}

.jq-mask-reveal-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: jqMaskUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes jqMaskUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.jq-hero-tag-architectural {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #60a5fa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

.jq-hero-tag-architectural .jq-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
}

.jq-hero-title-large {
  font-family: var(--jq-font-display);
  font-size: clamp(42px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.jq-hero-subtitle-large {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.35;
  max-width: 860px;
  margin: 0 auto 28px;
  letter-spacing: -0.01em;
}

.jq-hero-tech-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* 2. CÂMERA LATERAL & VISÃO ASA DUPLA */
.jq-hero-bg-pan {
  width: 105%;
  height: 105%;
  object-fit: cover;
  animation: jqPanLateral 25s ease-in-out infinite alternate;
}

@keyframes jqPanLateral {
  0% { transform: scale(1.08) translateX(-2%); }
  100% { transform: scale(1.12) translateX(2%); }
}

/* 3. MASKS E ENQUADRAMENTO CLOSE-UP PARA TELHADO PLANO */
.jq-hero-bg-closeup {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.3);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}

.jq-hero-bg-closeup.revealed {
  filter: blur(0px);
  transform: scale(1.05);
}

/* SEÇÕES INTERNAS ARQUITETÔNICAS */
.jq-arch-section {
  padding: 100px 0;
  background-color: #0b0f17;
  color: #f1f5f9;
  position: relative;
}

.jq-arch-section-light {
  padding: 100px 0;
  background-color: #f8fafc;
  color: #0f172a;
  position: relative;
}

.jq-arch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 16px;
}

.jq-arch-kicker-dark {
  color: #2563eb;
}

.jq-arch-heading {
  font-family: var(--jq-font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.jq-arch-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 780px;
}

.jq-arch-lead-dark {
  color: #475569;
}

/* HOTSPOTS E GRID TÉCNICO DE DETALHES */
.jq-tech-spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .jq-tech-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.jq-tech-visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.jq-tech-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.jq-tech-visual-card:hover img {
  transform: scale(1.04);
}

.jq-tech-spec-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jq-tech-spec-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.jq-tech-spec-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateX(6px);
}

.jq-tech-spec-title {
  font-family: var(--jq-font-display);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.jq-tech-spec-title svg {
  color: #38bdf8;
}

.jq-tech-spec-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* TABELAS DE DADOS TÉCNICOS ARQUITETÔNICOS */
.jq-arch-table-wrapper {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

.jq-arch-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}

.jq-arch-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #38bdf8;
  font-family: var(--jq-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jq-arch-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.jq-arch-table tr:last-child td {
  border-bottom: none;
}

.jq-arch-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.jq-spec-val-highlight {
  font-weight: 700;
  color: #ffffff;
}

/* BOTOES E CTAS ARQUITETÔNICOS DE ALTO NIVEL */
.jq-arch-cta-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.jq-arch-cta-title {
  font-family: var(--jq-font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.jq-arch-cta-desc {
  font-size: 17px;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO DE FICHA TÉCNICA EM ABAS E CARDS (ESTILO LINHA EXPANSIVA 700MM)
   ========================================================================== */
.jq-tech-specs-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #ffffff;
  border-top: 1px solid var(--jq-border-light, #e2e8f0);
  border-bottom: 1px solid var(--jq-border-light, #e2e8f0);
}

.jq-tech-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.jq-tech-tab-btn {
  padding: 12px 24px;
  border-radius: 100px;
  background: #f1f5f9;
  border: 1px solid var(--jq-border-light, #e2e8f0);
  font-family: var(--jq-font-mono, monospace);
  font-size: 13px;
  font-weight: 600;
  color: var(--jq-text-muted, #64748b);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jq-tech-tab-btn:hover, .jq-tech-tab-btn.active {
  background: var(--jq-blue-accent, #2563eb);
  border-color: var(--jq-blue-accent, #2563eb);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.jq-tech-panel {
  display: none;
  animation: jqFadeUp 0.5s ease forwards;
}

.jq-tech-panel.active {
  display: block;
}

.jq-tech-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .jq-tech-grid-2col { grid-template-columns: 1fr; }
}

.jq-tech-spec-card {
  background: #f8fafc;
  border: 1px solid var(--jq-border-light, #e2e8f0);
  border-radius: 24px;
  padding: 32px;
}

.jq-tech-spec-tag {
  font-family: var(--jq-font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  color: var(--jq-blue-accent, #2563eb);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.jq-tech-spec-h3 {
  font-family: var(--jq-font-display, sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--jq-text-dark, #0f172a);
  margin-bottom: 20px;
}

.jq-tech-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.jq-tech-data-table tr {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.jq-tech-data-table tr:last-child { border-bottom: none; }

.jq-tech-data-table td {
  padding: 14px 0;
}

.jq-tech-data-table td:first-child {
  color: var(--jq-text-muted, #64748b);
  font-weight: 500;
}

.jq-tech-data-table td:last-child {
  color: var(--jq-text-dark, #0f172a);
  font-weight: 700;
  text-align: right;
}

.jq-tech-data-table td.highlight {
  color: var(--jq-blue-accent, #2563eb);
}

/* ==========================================================================
   25. HERO CARD MONUMENTAL (PÁGINA INICIAL - CARD COM RESPIRO)
   ========================================================================== */
.jq-hero-home-wrapper {
  position: relative;
  background: #090d16;
  padding: 105px 16px 36px 16px;
  min-height: auto;
  overflow: hidden;
  box-sizing: border-box;
}

/* Variante Fundo Claro da Seção Hero */
.jq-hero-home-wrapper.is-light-hero {
  background: #ffffff;
  padding: 105px 20px 48px 20px;
}

/* Imagem de Fundo de toda a Seção Hero Wrapper */
.jq-hero-section-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.jq-hero-section-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.jq-hero-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.70) 0%, rgba(13, 21, 39, 0.82) 50%, rgba(7, 8, 12, 0.92) 100%);
}

.jq-hero-card {
  position: relative;
  z-index: 3;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-sizing: border-box;
}

/* Card Elegante com Fundo Interno (Padrão Clássico) */
.jq-hero-card.is-card-box {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 25px 70px -15px rgba(15, 23, 42, 0.4), 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  background: #0d1322;
}

/* Card 3D do Vídeo Hero com Cantos Arredondados, Moldura e Sombra 3D */
.jq-hero-card.is-video-card-3d {
  border-radius: 32px;
  overflow: hidden;
  background: #0d1322;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 30px 70px -15px rgba(15, 23, 42, 0.35),
    0 15px 35px -10px rgba(0, 0, 0, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(226, 232, 240, 0.4);
  transform: perspective(1200px) translateZ(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.jq-hero-card.is-video-card-3d:hover {
  transform: perspective(1200px) translateY(-5px) scale(1.002);
  box-shadow: 
    0 40px 85px -15px rgba(15, 23, 42, 0.42),
    0 20px 45px -10px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.45),
    0 0 0 1px rgba(37, 99, 235, 0.35);
}

/* Imagem de Fundo dentro do Card */
.jq-hero-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.jq-hero-card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 10s ease-out;
}

.jq-hero-card-bg-img.is-contain {
  object-fit: contain;
  object-position: center;
  transform: none;
}

/* Overlays do Card */
.jq-hero-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.50) 0%, rgba(13, 21, 39, 0.70) 55%, rgba(7, 8, 12, 0.94) 100%);
}

.jq-hero-card-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 3;
}

/* Cruzes Decorativas nos Cantos do Card */
.jq-hero-card-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.jq-hero-card-cross {
  position: absolute;
  color: rgba(96, 165, 250, 0.4);
  font-family: var(--jq-font-mono);
  font-size: 14px;
}
.jq-hero-card-cross.top-left { top: 24px; left: 24px; }
.jq-hero-card-cross.top-right { top: 24px; right: 24px; }
.jq-hero-card-cross.bottom-left { bottom: 24px; left: 24px; }
.jq-hero-card-cross.bottom-right { bottom: 24px; right: 24px; }

/* Corpo Interno do Card */
.jq-hero-card-body {
  position: relative;
  z-index: 5;
  padding: 70px 40px 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

/* Badge Kicker */
.jq-hero-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #60a5fa;
  font-family: var(--jq-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.jq-hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #60a5fa;
  box-shadow: 0 0 10px #60a5fa;
}

/* Título Monumental */
.jq-hero-card-title {
  font-family: var(--jq-font-display);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  line-height: 0.93;
  width: 100%;
}

.jq-hero-title-top {
  font-size: clamp(52px, 8.5vw, 114px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.jq-hero-title-bottom {
  font-size: clamp(58px, 9.5vw, 128px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Divisor */
.jq-hero-accent-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 100px;
  margin-bottom: 18px;
}

/* Caixa Institucional */
.jq-hero-institutional-glass {
  background: rgba(13, 21, 39, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
  box-sizing: border-box;
}

.jq-hero-legal-en {
  font-family: var(--jq-font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.jq-hero-legal-zh {
  font-size: 13.5px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.2em;
  margin: 0;
}

/* Ações CTAs */
.jq-hero-card-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.jq-hero-card-actions .btn-primary {
  padding: 15px 34px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.jq-hero-card-actions .btn-secondary {
  padding: 15px 30px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.jq-hero-card-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Métricas Institucionais */
.jq-hero-metrics-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1080px;
}

.jq-hero-metric-tile {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  background: rgba(13, 21, 39, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.jq-hero-metric-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.3);
}

.jq-hero-metric-val {
  font-family: var(--jq-font-display);
  font-size: 22px;
  font-weight: 900;
  color: #60a5fa;
  display: block;
}

.jq-hero-metric-lbl {
  font-size: 10.5px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   OVERIDES RESPONSIVOS EXCLUSIVOS PARA DISPOSITIVOS MÓVEIS
   (DESKTOP ATIMA DE 1024PX PERMANECE 100% INTOCADO PIXEL A PIXEL)
   ========================================================================== */

/* Menu Mobile & Submenus Accordion */
.jq-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.jq-mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.jq-mobile-logo img {
  height: 38px !important;
  width: 38px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

.jq-mobile-close {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.jq-mobile-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.jq-mobile-dropdown {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0 6px 16px;
  border-left: 2px solid rgba(96, 165, 250, 0.35);
  margin-top: 8px;
  list-style: none;
}

.jq-mobile-dropdown.open {
  display: flex !important;
}

.jq-mobile-dropdown a {
  font-size: 14.5px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jq-mobile-dropdown a:hover {
  color: #60a5fa;
}

.jq-mobile-has-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.jq-mobile-arrow {
  transition: transform 0.3s ease;
}

.jq-mobile-has-dropdown.open .jq-mobile-arrow {
  transform: rotate(180deg);
}

/* Breakpoint Tablet / Smartphone Médio e Pequeno (< 1024px) */
@media (max-width: 1023px) {
  .jq-header {
    padding: 8px 0 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05) !important;
  }
  .jq-header.scrolled {
    padding: 6px 0 !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08) !important;
  }
  .jq-header .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .jq-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Brand / Logo ultraclean no mobile */
  .jq-logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }
  .jq-logo-img {
    height: 34px !important;
    width: 34px !important;
    flex-shrink: 0 !important;
  }
  .jq-logo-text {
    border-left: 1.5px solid #cbd5e1 !important;
    padding-left: 8px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .jq-logo-title {
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em !important;
    color: #0f172a !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  /* Exibe o texto secundário (HEBEI JIAQIANG ENERGY SAVING) abaixo da marca no celular */
  .jq-logo-sub {
    display: block !important;
    font-size: 8.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    color: #2563eb !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
  }

  /* Oculta navegação horizontal desktop e botão azul de texto */
  .jq-nav-desktop,
  .jq-header-actions .btn-primary {
    display: none !important;
  }

  .jq-header-actions {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* SELETOR DE BANDEIRAS: CENTRALIZADO LOGO ABAIXO DO CABEÇALHO (NO MEIO DA TELA NO MOBILE) */
  .jq-header-actions .jq-language-selector {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 100px !important;
    padding: 4px 10px !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08) !important;
    z-index: 999 !important;
  }
  .jq-header-actions .jq-language-button {
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1.5px solid transparent !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }
  .jq-header-actions .jq-language-button[aria-pressed="true"] {
    border-color: #2563eb !important;
    background: #eff6ff !important;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2) !important;
  }
  .jq-header-actions .jq-language-button img {
    width: 20px !important;
    height: 15px !important;
    object-fit: cover !important;
    border-radius: 2px !important;
  }

  /* BOTÃO DO MENU HAMBÚRGUER (AZUL DE ALTO CONSTRASTE, CANTO DIREITO FIXO COM RESPIRO) */
  .jq-mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    background: #2563eb !important; /* Azul destacado */
    border: 1px solid #1d4ed8 !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    z-index: 1001 !important;
  }
  .jq-mobile-toggle .jq-toggle-bar {
    background-color: #ffffff !important;
    width: 20px !important;
    height: 2.5px !important;
    border-radius: 2px !important;
  }

  /* Respiro superior do Hero para a pílula de idiomas flutuante */
  .jq-hero-home-wrapper,
  .jq-prod-hero-typo,
  .jq-hero-700-wrap,
  .jq-page-hero,
  .jq-hero {
    padding-top: 115px !important;
  }
}




@media (max-width: 768px) {
  .jq-header {
    padding: 6px 0 !important;
  }
  .jq-logo-img {
    height: 34px !important;
    width: 34px !important;
  }
  .jq-logo-title {
    font-size: 14px !important;
  }


  /* Hero Section e Titles */
  .jq-hero-home-wrapper {
    padding: 85px 12px 24px 12px !important;
  }
  .jq-hero-card {
    border-radius: 20px !important;
  }
  .jq-hero-card-body {
    padding: 36px 16px 28px 16px !important;
  }
  .jq-hero-title-top {
    font-size: clamp(28px, 7.5vw, 52px) !important;
  }
  .jq-hero-title-bottom {
    font-size: clamp(30px, 8.5vw, 60px) !important;
  }
  .jq-hero-card-title {
    gap: 0px !important;
    margin-bottom: 14px !important;
  }
  .jq-hero-main-title,
  .jq-typo-title,
  .jq-page-hero-title {
    font-size: clamp(24px, 7.5vw, 42px) !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .jq-hero-kicker-badge {
    font-size: 10px !important;
    padding: 5px 14px !important;
    letter-spacing: 0.1em !important;
  }
  .jq-hero-institutional-glass {
    padding: 12px 14px !important;
    border-radius: 12px !important;
    margin-bottom: 18px !important;
  }
  .jq-hero-legal-en {
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
    word-break: break-word !important;
  }
  .jq-hero-legal-zh {
    font-size: 12px !important;
  }
  .jq-hero-card-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .jq-hero-card-actions .btn-primary,
  .jq-hero-card-actions .btn-secondary {
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
  }
  .jq-hero-metrics-grid {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .jq-hero-metric-tile {
    min-width: 100% !important;
    padding: 12px 16px !important;
  }

  /* Catálogo Interativo (Showcase) Mobile: Cards em Sobreposição + Miniaturas em 2 Colunas sem Texto */
  .jq-showcase-main-grid {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-bottom: 16px !important;
    gap: 0 !important;
  }

  .jq-product-center-box {
    order: 1 !important;
    position: relative !important;
    width: 100% !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    min-height: 420px !important;
    max-height: 480px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3) !important;
  }

  .jq-product-image-frame {
    width: 100% !important;
    height: 100% !important;
    min-height: 420px !important;
    position: relative !important;
  }

  .jq-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Card Paredes (Superior Esquerdo dentro do Card Principal) */
  .jq-info-left {
    order: 2 !important;
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 10 !important;
    max-width: clamp(200px, 68vw, 260px) !important;
    background: rgba(15, 23, 42, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* Card Estrutura (Inferior Direito dentro do Card Principal) */
  .jq-info-right {
    order: 3 !important;
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    top: auto !important;
    left: auto !important;
    z-index: 10 !important;
    max-width: clamp(200px, 68vw, 260px) !important;
    background: rgba(15, 23, 42, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .jq-info-icon-box {
    width: 32px !important;
    height: 32px !important;
    background: rgba(37, 99, 235, 0.25) !important;
    border: 1px solid rgba(96, 165, 250, 0.4) !important;
    color: #60a5fa !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }

  .jq-info-title {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 2px !important;
  }

  .jq-info-desc {
    font-size: 10.5px !important;
    color: #cbd5e1 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }

  /* Badge do Nome do Produto (Inferior Esquerdo) */
  .jq-product-badge-overlay {
    position: absolute !important;
    bottom: 12px !important;
    left: 12px !important;
    top: auto !important;
    right: auto !important;
    z-index: 10 !important;
    padding: 6px 12px !important;
    font-size: 10.5px !important;
    max-width: calc(50% - 10px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Miniaturas de Imagem (Thumbnails Grid): 2 Colunas Laterais de Apenas Imagens */
  .jq-thumbs-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 12px 0 14px 0 !important;
    margin-top: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  /* Botões de Miniatura: Somente Imagem Limpa sem Texto */
  .jq-thumb-card {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 110px !important;
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #09090b !important;
    border: 2px solid #e2e8f0 !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08) !important;
    transition: all 0.25s ease !important;
  }

  .jq-thumb-card.active {
    border-color: #2563eb !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
    transform: scale(0.98) !important;
  }

  .jq-thumb-img-wrapper {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
  }

  .jq-thumb-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Ocultar textos das miniaturas no celular */
  .jq-thumb-meta {
    display: none !important;
  }

  /* Badges Flutuantes Reorganizadas como Cards no Mobile */
  .jq-badge-float {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: flex !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 10px !important;
  }

  /* Projetos Showcase (Sidebar -> Bar Horizontal Touch + Stage) */
  .jq-projects-frame {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 20px !important;
    min-height: auto !important;
    overflow: hidden !important;
  }
  .jq-projects-sidebar {
    width: 100% !important;
    order: 1 !important;
    padding: 16px 16px 14px 16px !important;
    gap: 12px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(18, 18, 22, 0.98) !important;
  }
  .jq-sidebar-header-label {
    padding-bottom: 10px !important;
    margin-bottom: 2px !important;
    font-size: 10.5px !important;
  }
  /* Grid 2 Colunas Laterais para os Títulos de Projetos Selecionáveis no Mobile */
  .jq-projects-nav,
  .jq-projects-sidebar nav {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 4px 0 10px 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  .jq-projects-nav::-webkit-scrollbar,
  .jq-projects-sidebar nav::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  .jq-project-nav-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 10px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #cbd5e1 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    text-align: left !important;
    min-height: 48px !important;
    transition: all 0.25s ease !important;
    overflow: hidden !important;
  }
  .jq-project-nav-item:last-child:nth-child(odd) {
    grid-column: span 2 !important;
  }
  .jq-project-nav-item:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
  }
  .jq-project-nav-item.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
  }
  .jq-project-nav-item .jq-nav-num {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #60a5fa !important;
    flex-shrink: 0 !important;
  }
  .jq-project-nav-item.active .jq-nav-num {
    color: #ffffff !important;
  }
  .jq-project-nav-item .jq-nav-text {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .jq-project-nav-item .jq-nav-arrow {
    display: none !important;
  }
  .jq-projects-stage {
    width: 100% !important;
    order: 2 !important;
    min-height: 420px !important;
    max-height: 480px !important;
    border-radius: 0 0 20px 20px !important;
    position: relative !important;
  }
  .jq-project-content-overlay {
    padding: 24px 20px 20px 20px !important;
    gap: 12px !important;
    max-width: 100% !important;
  }
  .jq-project-display-title {
    font-size: clamp(20px, 5.5vw, 26px) !important;
    line-height: 1.25 !important;
    margin-bottom: 2px !important;
  }
  .jq-project-display-desc {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #cbd5e1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .jq-project-badge {
    padding: 5px 12px !important;
    font-size: 10.5px !important;
  }

  /* Abas Técnicas e Seletor de Soluções (Barra Horizontal Sticky Flutuante em 1 Linha) */
  .jq-tech-tabs-bar,
  .jq-solutions-selector-col {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding: 8px 12px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    position: sticky !important;
    top: 64px !important;
    z-index: 50 !important;
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 100px !important;
    border: 1px solid rgba(59, 130, 246, 0.35) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  }

  .jq-tech-tab-btn,
  .jq-solution-nav-btn {
    flex: 0 0 auto !important;
    scroll-snap-align: start !important;
    white-space: nowrap !important;
    min-height: 40px !important;
    padding: 8px 18px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #cbd5e1 !important;
  }

  .jq-tech-tab-btn.active,
  .jq-solution-nav-btn.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45) !important;
  }

  /* Painéis de Conteúdo das Fichas Técnicas Posicionados Visivelmente Abaixo da Barra */
  .jq-tech-panel {
    width: 100% !important;
  }

  .jq-tech-panel.active {
    display: block !important;
    margin-top: 8px !important;
  }

  .jq-tech-spec-card {
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }

  /* Galerias e Palcos de Imagens no Mobile (Cards de Conteúdo Dedicados e Imagens Limpas) */
  .jq-gallery-showcase-wrapper,
  .jq-gallery-main-stage,
  .jq-gallery-img-container {
    border-radius: 16px !important;
    overflow: hidden !important;
    min-height: auto !important;
  }

  .jq-gallery-main-img,
  .jq-main-img,
  .jq-stage-img {
    max-height: 280px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 14px !important;
  }

  .jq-gallery-info-overlay,
  .jq-gallery-stage-overlay,
  .jq-stage-content-card {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    margin-top: 14px !important;
    background: rgba(15, 23, 42, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 16px !important;
    padding: 20px 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  }

  .jq-gallery-project-title,
  .jq-stage-title {
    font-size: 20px !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
  }

  .jq-gallery-main-desc,
  .jq-stage-desc {
    font-size: 14px !important;
    color: #cbd5e1 !important;
    line-height: 1.6 !important;
  }

  /* Galerias e Miniaturas de Produtos (Trilha Touch Scroll) */
  .jq-thumbs-container,
  .jq-gallery-thumbs-track {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding-bottom: 10px !important;
    padding-top: 4px !important;
    width: 100% !important;
  }
  .jq-thumb-box,
  .jq-gallery-thumb-item {
    flex: 0 0 110px !important;
    scroll-snap-align: start !important;
    min-width: 110px !important;
    box-sizing: border-box !important;
  }

  /* Reorganização de Grids de 2 e 3 Colunas para 1 Coluna */
  .jq-about-grid-5050,
  .jq-wing-stage-grid,
  .jq-partners-split-grid,
  .jq-contact-grid-form,
  .jq-form-row-dual,
  .jq-interior-grid,
  .jq-arch-grid,
  .jq-asa-cards-grid-wide,
  .jq-size-comparison-grid-4,
  .jq-size-comparison-grid,
  .jq-adv-grid-3x2,
  .jq-interior-grid-5,
  .jq-products-grid,
  .jq-arch-grid-3,
  .jq-partners-grid-4,
  .jq-tech-grid-2col,
  .jq-freight-grid,
  .jq-layouts-grid {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .jq-product-card {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Form de Contato Responsivo */
  .jq-form-card-container {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }
  .jq-form-row-dual {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .jq-form-group {
    width: 100% !important;
  }
  .jq-form-input,
  .jq-form-textarea {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .jq-pdf-dropzone {
    padding: 24px 16px !important;
  }
  .jq-form-submit-btn {
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
  }

  /* Tabelas de Dados Técnicos */
  .jq-tech-data-table,
  .jq-tech-data-table-dark {
    width: 100% !important;
    font-size: 13px !important;
  }
  .jq-tech-data-table td,
  .jq-tech-data-table-dark td {
    padding: 10px 6px !important;
    word-break: break-word !important;
  }
}

/* ==========================================================================
   26. FICHA TÉCNICA UNIFICADA (SEÇÃO ÚNICA EM GRID, SEM CARROSSEL / SEM ABAS)
   ========================================================================== */
.jq-tech-specs-section {
  padding: 85px 0;
  background: #f8fafc;
  position: relative;
}

/* Ocultar barra de abas e botões clicáveis */
.jq-tech-tabs-bar,
.jq-tech-nav-track,
.jq-metal-tech-nav-track,
.jq-tab-buttons-wrap,
[role="tablist"] {
  display: none !important;
}

/* Exibir todos os painéis e conteúdos sem ocultar nenhum */
.jq-tech-panel,
.jq-tech-pane,
.jq-metal-tech-pane,
.jq-tech-content-wrap {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  margin-bottom: 24px !important;
}

/* Grid Unificado de 2 ou 3 Colunas com Cards */
.jq-tech-unified-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  width: 100%;
  margin-top: 24px;
}

.jq-tech-unified-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.jq-tech-unified-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.jq-tech-unified-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  width: fit-content;
}

.jq-tech-unified-h3 {
  font-family: var(--jq-font-display, 'Outfit', sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

/* Telas Pequenas (320px a 480px) */
@media (max-width: 480px) {
  .jq-hero-title-top {
    font-size: clamp(22px, 7.5vw, 34px) !important;
  }
  .jq-hero-title-bottom {
    font-size: clamp(24px, 8.5vw, 38px) !important;
  }
  .jq-page-hero-desc {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
  }
  .jq-tech-unified-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   27. AJUSTES GLOBAIS DE RESPONSIVIDADE E ZERO TRANSBORDAMENTO (MOBILE < 768PX)
   Garantia de 100% Responsivo em todas as páginas e subpáginas de produtos
   sem alterar o layout Desktop.
   ========================================================================== */

@media (max-width: 768px) {
  /* Trava de Segurança Global Anti-Vazamento Horizontal */
  html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }

  img, video, canvas, svg, picture, iframe {
    max-width: 100% !important;
    height: auto;
  }

  /* Ajuste Fino dos Containers Principais */
  .container,
  .jq-hero-card-body,
  .jq-card-container,
  .jq-page-main,
  .jq-produtos-page-main,
  .jq-capsula-container-expansible,
  .jq-advantages-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Correção Específica para Cards de Produtos (produtos.html e subpáginas) */
  .jq-products-grid-section {
    padding: 40px 0 60px 0 !important;
  }

  .jq-products-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .jq-product-card {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .jq-product-img-box {
    height: 220px !important;
    width: 100% !important;
  }

  .jq-product-body {
    padding: 20px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .jq-product-title {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .jq-product-desc {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  /* Rodapé dos Cards de Produtos (Empilhar Verticalmente no Mobile) */
  .jq-product-spec-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .jq-spec-info-box {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .jq-product-view-btn {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    font-size: 13px !important;
  }

  /* Ficha Técnica Unificada em Grade */
  .jq-tech-unified-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .jq-tech-unified-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px 16px !important;
  }

  .jq-tech-unified-table,
  .jq-tech-data-table,
  .jq-tech-data-table-dark {
    width: 100% !important;
    table-layout: fixed !important;
    word-break: break-word !important;
  }

  .jq-tech-unified-table td,
  .jq-tech-data-table td,
  .jq-tech-data-table-dark td {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    padding: 10px 8px !important;
    font-size: 13px !important;
  }

  /* Badges e Textos Institucionais das Seções Hero */
  .jq-hero-kicker-badge {
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
    word-break: break-word !important;
  }

  .jq-hero-institutional-glass {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 12px !important;
    overflow: hidden !important;
  }

  .jq-hero-legal-en,
  .jq-hero-legal-zh {
    word-break: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
  }

  .jq-hero-metrics-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .jq-hero-metric-tile {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .jq-hero-metric-tile:last-child:nth-child(odd) {
    grid-column: span 2 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  /* Seções com Tags de Catálogo */
  .jq-discover-specs-bar {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .jq-spec-pill {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
    font-size: 12px !important;
    padding: 6px 14px !important;
  }

  .jq-discover-index-tag {
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* ==========================================================================
     CATÁLOGO INTERATIVO (SHOWCASE) - AJUSTES RESPONSIVOS MOBILE (< 768PX)
     - 2 Imagens por Fila (2 Colunas x 3 Linhas), Sem Rolagem Lateral
     - Paredes (Canto Superior Esquerdo) & Estrutura (Canto Inferior Direito)
     ========================================================================== */
  .jq-showcase-main-grid {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-bottom: 16px !important;
    gap: 0 !important;
  }

  .jq-product-center-box {
    order: 1 !important;
    position: relative !important;
    width: 100% !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    min-height: 420px !important;
    max-height: 480px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3) !important;
  }

  .jq-product-image-frame {
    width: 100% !important;
    height: 100% !important;
    min-height: 420px !important;
    position: relative !important;
  }

  .jq-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Card Paredes (Superior Esquerdo dentro do Card Principal) */
  .jq-info-left {
    order: 2 !important;
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 10 !important;
    max-width: clamp(200px, 68vw, 260px) !important;
    background: rgba(15, 23, 42, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* Card Estrutura (Inferior Direito dentro do Card Principal) */
  .jq-info-right {
    order: 3 !important;
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    top: auto !important;
    left: auto !important;
    z-index: 10 !important;
    max-width: clamp(200px, 68vw, 260px) !important;
    background: rgba(15, 23, 42, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .jq-info-icon-box {
    width: 32px !important;
    height: 32px !important;
    background: rgba(37, 99, 235, 0.25) !important;
    border: 1px solid rgba(96, 165, 250, 0.4) !important;
    color: #60a5fa !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }

  .jq-info-title {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 2px !important;
  }

  .jq-info-desc {
    font-size: 10.5px !important;
    color: #cbd5e1 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }

  /* Badge do Nome do Produto (Inferior Esquerdo) */
  .jq-product-badge-overlay {
    position: absolute !important;
    bottom: 12px !important;
    left: 12px !important;
    top: auto !important;
    right: auto !important;
    z-index: 10 !important;
    padding: 6px 12px !important;
    font-size: 10.5px !important;
    max-width: calc(50% - 10px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Grade de Miniaturas de Seleção: EXATAMENTE 2 Imagens por Fila (2 Colunas x 3 Linhas), Sem Rolagem Lateral */
  .jq-thumbs-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 14px 0 !important;
    margin-top: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .jq-thumbs-grid::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* Miniaturas Limpas: Apenas a Imagem (Sem Texto) */
  .jq-thumb-card {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 110px !important;
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #09090b !important;
    border: 2px solid #e2e8f0 !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08) !important;
    transition: all 0.25s ease !important;
    flex: none !important;
    min-width: 0 !important;
  }

  .jq-thumb-card.active {
    border-color: #2563eb !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
    transform: scale(0.98) !important;
  }

  .jq-thumb-img-wrapper {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
  }

  .jq-thumb-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .jq-thumb-meta {
    display: none !important;
  }

  /* ==========================================================================
     SEÇÃO CASA ASA DUPLA (SYS // JQ-DOUBLE-WING) - MOBILE 2 COLUNAS
     - Barra de Abas (2 Colunas Laterais): 01 & 03 (cima) | 02 & 04 (baixo)
     - Grade de Tamanhos (2 Colunas Laterais): 10 & 20 Pés (cima) | 30 & 40 Pés (baixo)
     ========================================================================== */
  .jq-wing-nav-bar {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
  }

  .jq-wing-tab {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 10px 10px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    text-align: left !important;
    margin: 0 !important;
  }

  .jq-wing-tab .jq-tab-num {
    font-size: 11px !important;
    font-weight: 800 !important;
    flex-shrink: 0 !important;
  }

  .jq-wing-tab .jq-tab-label {
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
  }

  /* Opção "03 Tamanhos & Dimensões": 2 Modelos por Coluna (10 Pés & 20 Pés | 30 Pés & 40 Pés) */
  .jq-sizes-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 14px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border-radius: 16px !important;
  }

  .jq-size-card {
    padding: 10px !important;
    gap: 8px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .jq-size-header {
    margin-bottom: 2px !important;
  }

  .jq-size-tag {
    font-size: 11px !important;
  }

  .jq-size-code {
    font-size: 9.5px !important;
  }

  .jq-size-img-box {
    height: 100px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }

  .jq-size-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* Ocultação de Barra de Rolagem Nativa & Indicador Sutil da Linha do Tempo sobre.html */
  .jq-traj-timeline-wrapper {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  .jq-traj-timeline-bar,
  .jq-timeline-viewport {
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .jq-traj-timeline-bar::-webkit-scrollbar,
  .jq-timeline-viewport::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .jq-tstep {
    flex: 0 0 auto !important;
  }

  .jq-timeline-swipe-hint {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
    margin-top: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* ==========================================================================
     PÁGINA PRODUTOS & CATÁLOGOS - ENQUADRAMENTO PERFEITO DE CARDS NO MOBILE (< 768PX)
     ========================================================================== */
  .jq-products-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .jq-product-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .jq-product-img-box {
    height: 220px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .jq-product-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .jq-product-tag-badge {
    top: 14px !important;
    left: 14px !important;
    font-size: 9.5px !important;
    padding: 5px 12px !important;
    max-width: calc(100% - 28px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .jq-product-body {
    padding: 20px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .jq-product-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  .jq-product-desc {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  /* Padronização dos cards do Catálogo JQ-01 ao JQ-05 */
  div[style*="minmax(500px"],
  div[style*="minmax(360px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #modulo-jq-01,
  #modulo-jq-02,
  #modulo-jq-03,
  #modulo-jq-04 {
    border-radius: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  #modulo-jq-05 {
    padding: 24px 16px !important;
    border-radius: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ==========================================================================
     PÁGINA CÁPSULA ESPACIAL - AJUSTES RESPONSIVOS MOBILE (< 768PX)
     - Títulos das Cápsulas: Grade em 2 Colunas (Sem Barra de Rolagem)
     - Miniaturas da Galeria: Grade 2x2 (2 no topo | 2 em baixo)
     - Card Especificações Oficiais & Botão CTA: Enquadramento 100% sem vazamento
     ========================================================================== */
  .jq-models-tabs-wrapper {
    width: 100% !important;
    margin-bottom: 24px !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  .jq-models-tabs-pill {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 16px !important;
    padding: 6px !important;
  }

  .jq-model-tab-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 8px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .jq-model-tab-item:last-child:nth-child(odd) {
    grid-column: span 2 !important;
  }

  /* Palco da Imagem Principal & Cards Flutuantes Identicos ao Catálogo Interativo da Home */
  .jq-main-image-stage {
    position: relative !important;
    width: 100% !important;
    height: 420px !important;
    min-height: 420px !important;
    border-radius: 20px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #09090b !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3) !important;
  }

  .jq-stage-main-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }

  .jq-mobile-badges-container {
    display: contents !important;
  }

  /* Card Superior Esquerdo (Visão 270°) */
  .jq-tech-badge-card.top-left {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 10 !important;
    max-width: clamp(200px, 68vw, 260px) !important;
    background: rgba(15, 23, 42, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* Card Inferior Direito (Smart Home) */
  .jq-tech-badge-card.bottom-right {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    top: auto !important;
    left: auto !important;
    z-index: 10 !important;
    max-width: clamp(200px, 68vw, 260px) !important;
    background: rgba(15, 23, 42, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .jq-tech-badge-icon {
    width: 32px !important;
    height: 32px !important;
    background: rgba(37, 99, 235, 0.25) !important;
    border: 1px solid rgba(96, 165, 250, 0.4) !important;
    color: #60a5fa !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }

  .jq-tech-badge-title {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 2px !important;
  }

  .jq-tech-badge-desc {
    font-size: 10.5px !important;
    color: #cbd5e1 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }

  /* Grid 2x2 das Miniaturas */
  .jq-thumbs-row-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    padding: 6px 0 !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .jq-thumbs-row-track::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .jq-thumb-box-card {
    width: 100% !important;
    height: 95px !important;
    border-radius: 14px !important;
    padding: 4px !important;
    box-sizing: border-box !important;
  }

  .jq-thumb-box-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
  }

  /* Card "Especificações Oficiais" e Botão CTA */
  .jq-showcase-right-col {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 24px 16px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .jq-panel-model-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  .jq-panel-model-desc {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
    word-break: break-word !important;
  }

  .jq-panel-specs-list {
    width: 100% !important;
    box-sizing: border-box !important;
    padding-top: 16px !important;
    margin-bottom: 24px !important;
  }

  .jq-panel-spec-item {
    font-size: 13px !important;
    word-break: break-word !important;
  }

  .jq-btn-panel-cta {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 12px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 100px !important;
    line-height: 1.3 !important;
  }

  .jq-swipe-hint-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #2563eb !important;
    background: #eff6ff !important;
    border: 1px solid #dbeafe !important;
    padding: 6px 14px !important;
    border-radius: 100px !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08) !important;
    animation: jqSwipePulse 2s infinite ease-in-out !important;
  }

  .jq-swipe-arrow-icon {
    animation: jqArrowSlide 1.5s infinite ease-in-out !important;
  }
}

@keyframes jqSwipePulse {
  0%, 100% { opacity: 0.85; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(2px); }
}

@keyframes jqArrowSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (max-width: 480px) {
  .jq-hero-metric-tile {
    padding: 10px 12px !important;
  }

  .jq-tech-unified-card {
    padding: 16px 14px !important;
  }

  .jq-tech-unified-h3 {
    font-size: 18px !important;
  }
}

/* ==========================================================================
   CENTRALIZAÇÃO GLOBAL DE TEXTOS NO MOBILE (TODAS AS PÁGINAS DO SITE)
   Aplicado apenas em dispositivos móveis (< 768px) sem alterar o desktop.
   ========================================================================== */
@media (max-width: 768px) {
  /* Títulos, Subtítulos, parágrafos e elementos de texto gerais */
  h1, h2, h3, h4, h5, h6,
  p,
  .jq-section-kicker,
  .jq-section-title,
  .jq-section-subtitle,
  .jq-section-desc,
  .jq-page-hero-desc,
  .jq-hero-card-title,
  .jq-hero-title-top,
  .jq-hero-title-bottom,
  .jq-hero-card-body,
  .jq-hero-kicker-badge,
  .jq-hero-institutional-glass,
  .jq-hero-legal-en,
  .jq-hero-legal-zh,
  .jq-discover-title,
  .jq-discover-paragraph,
  .jq-discover-header-meta,
  .jq-discover-stacked-content,
  .jq-projects-header,
  .jq-projects-title,
  .jq-projects-subtitle,
  .jq-gallery-header-box,
  .jq-gallery-main-title,
  .jq-gallery-main-desc,
  .jq-product-title,
  .jq-product-desc,
  .jq-product-body,
  .jq-partners-header-text,
  .jq-partners-gallery-title,
  .jq-partners-gallery-desc,
  .jq-partner-card-name,
  .jq-about-hero-title,
  .jq-about-hero-desc,
  .jq-traj-hero-title,
  .jq-traj-hero-desc,
  .jq-adv-hero-title,
  .jq-adv-hero-desc,
  .jq-contact-hero-title,
  .jq-contact-hero-desc,
  .jq-panel-model-title,
  .jq-panel-model-desc,
  .jq-tech-badge-text,
  .jq-tech-badge-title,
  .jq-tech-badge-desc,
  .jq-statement-olympic-text,
  .jq-spec-pill,
  .jq-timeline-swipe-hint {
    text-align: center !important;
  }

  /* Centralização Flexbox para Cabeçalhos, Kickers e Elementos de Seção */
  .jq-section-kicker,
  .jq-hero-kicker-badge,
  .jq-discover-header-meta,
  .jq-hero-institutional-glass,
  .jq-panel-kicker,
  .jq-gallery-badge {
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Centralização de containers de cabeçalho de página */
  .jq-projects-header,
  .jq-gallery-header-box,
  .jq-partners-header-text,
  .jq-discover-stacked-content,
  .jq-hero-card-body,
  .jq-showcase-right-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Divisores e Linhas Decorativas Centralizadas */
  .jq-hero-accent-divider,
  .jq-discover-line-accent,
  .jq-panel-accent-line,
  .jq-partner-accent-line {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Lista de Especificações do Painel Centralizada */
  .jq-panel-specs-list {
    align-items: center !important;
    text-align: center !important;
  }

  .jq-panel-spec-item {
    justify-content: center !important;
    text-align: center !important;
  }

  /* ==========================================================================
     SEÇÃO LINHA MODULAR JQ - FORMATO CATÁLOGO INTERATIVO NO MOBILE (< 768PX)
     - Imagem Principal em Card Escuro de 420px com Bordas Arredondadas (20px)
     - Cards Informativos (Paredes & Estrutura) Flutuantes DENTRO do Card da Imagem
       (Card 1: Canto Superior Esquerdo | Card 2: Canto Inferior Direito)
     - Miniaturas em Grade 2x2 sem textos e sem barra de rolagem lateral
     ========================================================================== */
  .jq-jq01-3col-grid {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  .jq-jq01-image-stage {
    position: relative !important;
    width: 100% !important;
    height: 420px !important;
    min-height: 420px !important;
    aspect-ratio: auto !important;
    border-radius: 20px !important;
    background: #09090b !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3) !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin-bottom: 16px !important;
  }

  .jq-jq01-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
  }

  .jq-jq01-img-overlay-tag {
    display: none !important;
  }

  /* Card 1 (Paredes) — Flutuante no Canto Superior Esquerdo DENTRO do Card da Imagem */
  .jq-jq01-info-card:first-of-type,
  .jq-jq01-info-card:nth-of-type(1) {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 10 !important;
    max-width: clamp(190px, 64vw, 250px) !important;
    background: rgba(15, 23, 42, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  /* Card 2 (Estrutura) — Flutuante no Canto Inferior Direito DENTRO do Card da Imagem */
  .jq-jq01-info-card:last-of-type,
  .jq-jq01-info-card:nth-of-type(2) {
    position: absolute !important;
    bottom: 28px !important;
    right: 12px !important;
    top: auto !important;
    left: auto !important;
    z-index: 10 !important;
    max-width: clamp(190px, 64vw, 250px) !important;
    background: rgba(15, 23, 42, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  .jq-jq01-info-icon-box {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    background: rgba(37, 99, 235, 0.25) !important;
    border: 1px solid rgba(59, 130, 246, 0.4) !important;
    color: #60a5fa !important;
    flex-shrink: 0 !important;
  }

  .jq-jq01-info-title {
    font-size: 11.5px !important;
    font-weight: 800 !important;
    color: #60a5fa !important;
    margin: 0 !important;
  }

  .jq-jq01-info-desc {
    font-size: 10.5px !important;
    color: #cbd5e1 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }

  /* Bar de Miniaturas das 4 Imagens em Grade 2x2 */
  .jq-jq01-thumbs-bar {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    margin-bottom: 24px !important;
    overflow: visible !important;
    padding: 6px 0 !important;
  }

  .jq-jq01-thumb-btn {
    width: 100% !important;
    height: 95px !important;
    border-radius: 14px !important;
    padding: 4px !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
  }

  .jq-jq01-thumb-btn img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
  }

  .jq-jq01-thumb-num {
    display: none !important;
  }

  /* ==========================================================================
     SEÇÃO DIAGRAMA TÉCNICO - MÓDULOS JQ 01, JQ 02, JQ 03 E JQ 04 (MOBILE < 768PX)
     - Miniaturas posicionadas ACIMA do card da imagem principal (abaixo do texto)
     - Miniaturas organizadas em Grade de 2 Colunas (Vista 01 e 02 / Vista 03 e 04)
     ========================================================================== */
  .jq-tech-showcase-wrapper,
  .jq-diagram-stage {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .jq-tech-views-list,
  .jq-diagram-views-panel {
    order: -1 !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  .jq-tech-main-stage,
  .jq-diagram-viewer {
    order: 1 !important;
    width: 100% !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }

  .jq-diagram-photo-wrap,
  .jq-tech-img-container {
    aspect-ratio: auto !important;
    height: 380px !important;
    min-height: 380px !important;
    padding: 6px !important;
    box-sizing: border-box !important;
  }

  .jq-diagram-img,
  .jq-tech-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .jq-tech-views-list,
  .jq-views-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .jq-views-panel-title {
    display: none !important;
  }

  .jq-view-card {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 8px !important;
    border-radius: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 4px !important;
    margin: 0 !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
  }

  .jq-view-thumb {
    width: 100% !important;
    height: 85px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: #0f172a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 3px !important;
    box-sizing: border-box !important;
  }

  .jq-view-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 8px !important;
  }

  .jq-view-info,
  .jq-view-tag,
  .jq-view-num {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .jq-view-title,
  .jq-view-name {
    font-size: 11.5px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    font-weight: 700 !important;
  }

  .jq-view-sub {
    font-size: 10px !important;
    text-align: center !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}

