/* ============================================
   BEATBOT BRASIL — MINI CURSO DE INTEGRAÇÃO
   Design System & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,600&display=swap');

/* --- Design Tokens --- */
:root {
  /* Cores da Marca */
  --color-blue:       #0423F6;
  --color-blue-light: #4d6fda;
  --color-blue-deep:  #1e3280;
  --color-dark:       #0a0d14;
  --color-dark-2:     #111827;
  --color-dark-3:     #1a2235;
  --color-dark-4:     #242833;
  --color-dark-5:     #2e3347;
  --color-white:      #ffffff;
  --color-gray-1:     #f3f3f3;
  --color-gray-2:     #e5e7eb;
  --color-gray-3:     #9ca3af;
  --color-gray-4:     #6b7280;
  --color-gray-5:     #374151;
  --color-accent:     #00d4ff;
  --color-gold:       #f5c542;
  --color-green:      #22c55e;
  --color-red:        #ef4444;

  /* Tipografia */
  --font-family:  'Montserrat', sans-serif;
  --font-size-xs:  0.75rem;
  --font-size-sm:  0.875rem;
  --font-size-md:  1rem;
  --font-size-lg:  1.125rem;
  --font-size-xl:  1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Espaçamentos */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.5);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.6);
  --shadow-blue: 0 0 30px rgba(4,35,246,.4);

  /* Transições */
  --transition-fast:   0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow:   0.5s ease;
  --transition-slide:  0.7s cubic-bezier(0.77, 0, 0.18, 1);

  /* Layout */
  --nav-width:    60px;
  --header-height: 0px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-weight: 600;
  background: var(--color-dark);
  color: var(--color-white);
  overflow: hidden;
  height: 100dvh;
  width: 100vw;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  display: block;
}

video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-family);
}

/* ============================================
   SLIDE CONTAINER
   ============================================ */
#slides-wrapper {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

#slides-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-slide);
  will-change: transform;
}

.slide {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-8) var(--space-8) var(--space-8) calc(var(--space-8) + var(--nav-width));
  flex-shrink: 0;
}

/* Ajuste de padding para mobile */
@media (max-width: 768px) {
  .slide {
    padding: var(--space-6) var(--space-4) 80px var(--space-4);
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

/* ============================================
   BACKGROUNDS POR SLIDE
   ============================================ */
.slide-cover {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-3) 50%, #0d1a3a 100%);
}

.slide-institucional {
  background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark-4) 100%);
}

.slide-produto {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-3) 100%);
}

.slide-produto-2 {
  background: linear-gradient(135deg, #0d1a3a 0%, var(--color-dark-2) 100%);
}

.slide-produto-3 {
  background: linear-gradient(135deg, var(--color-dark-4) 0%, #0d1220 100%);
}

.slide-comparativo {
  background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-dark-3) 60%, #0d1a3a 100%);
}

.slide-politicas {
  background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark-5) 100%);
}

.slide-faq {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
}

.slide-encerramento {
  background: linear-gradient(135deg, #0a1628 0%, var(--color-blue-deep) 50%, var(--color-blue) 100%);
}

/* Grid Pattern Overlay */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,35,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,35,246,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.slide-encerramento::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
}

.slide > * {
  position: relative;
  z-index: 1;
}

/* ============================================
   MENU LATERAL (DOTS)
   ============================================ */
#side-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  border: none;
  padding: 0;
}

.nav-dot::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-xs);
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
  background: rgba(0,0,0,0.7);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}

.nav-dot:hover::before,
.nav-dot.active::before {
  opacity: 1;
}

.nav-dot:hover {
  background: rgba(255,255,255,0.6);
  transform: scale(1.3);
}

.nav-dot.active {
  background: var(--color-blue-light);
  transform: scale(1.5);
  box-shadow: 0 0 12px rgba(77,111,218,0.8);
}

/* Número do módulo */
.nav-dot[data-module]::after {
  content: '';
  position: absolute;
  right: calc(100% + 28px);
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(4,35,246,0.4);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

@media (max-width: 768px) {
  #side-nav {
    right: 10px;
    gap: var(--space-2);
  }
  .nav-dot::before {
    display: none;
  }
  .nav-dot {
    width: 6px;
    height: 6px;
  }
}

/* ============================================
   BARRA DE PROGRESSO
   ============================================ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-accent));
  transition: width var(--transition-normal);
  z-index: 101;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  box-shadow: 0 0 10px rgba(4,35,246,0.6);
}

/* ============================================
   INDICADOR DE SLIDE (NÚMERO)
   ============================================ */
#slide-counter {
  display: none !important;
}

#slide-counter:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   INDICADOR DE NAVEGAÇÃO (SETA)
   ============================================ */
#nav-hint {
  position: fixed;
  bottom: 24px;
  right: 80px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
  transition: opacity var(--transition-normal);
}

#nav-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-hint-arrow {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.4);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ============================================
   INNER CONTENT LAYOUTS
   ============================================ */
.slide-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Split layout: texto + imagem */
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* Layout centralizado */
.layout-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
}

/* Layout de 3 colunas */
.layout-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .layout-split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .layout-3col {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 768px) {
  .layout-split {
    gap: var(--space-6);
  }
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
.tag {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-blue-light);
  background: rgba(4,35,246,0.15);
  border: 1px solid rgba(4,35,246,0.3);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  margin-bottom: var(--space-4);
}

.tag-modulo {
  color: var(--color-accent);
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.25);
}

h1.headline {
  font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-6xl));
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

h2.section-title {
  font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

h3.card-title {
  font-size: clamp(var(--font-size-xl), 2.5vw, var(--font-size-3xl));
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

h4.sub-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.lead {
  font-size: clamp(var(--font-size-md), 1.5vw, var(--font-size-xl));
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.btn-primary:hover {
  background: var(--color-blue-light);
  border-color: var(--color-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(4,35,246,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-blue {
  background: rgba(4,35,246,0.12);
  border-color: rgba(4,35,246,0.25);
}

.card-blue:hover {
  background: rgba(4,35,246,0.18);
  border-color: rgba(4,35,246,0.5);
}

/* ============================================
   FEATURE LIST (BULLET POINTS)
   ============================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(4,35,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--color-blue-light);
  font-size: 12px;
}

.feature-item strong {
  color: var(--color-white);
}

/* ============================================
   BADGE / CHIPS
   ============================================ */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.badge-blue {
  background: rgba(4,35,246,0.2);
  border: 1px solid rgba(4,35,246,0.4);
  color: #8ba3f0;
}

.badge-green {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}

.badge-gold {
  background: rgba(245,197,66,0.15);
  border: 1px solid rgba(245,197,66,0.3);
  color: #fcd34d;
}

.badge-cyan {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: #38bdf8;
}

/* ============================================
   SLIDE 0 — CAPA
   ============================================ */
.cover-logo {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: var(--space-8);
  filter: invert(1) hue-rotate(180deg);
}

.cover-badge {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.cover-badge::before,
.cover-badge::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

.cover-hero-img {
  width: 420px;
  max-width: 100%;
  filter: drop-shadow(0 20px 60px rgba(4,35,246,0.5));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.cover-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
  justify-content: center;
}

.cover-stat {
  text-align: center;
}

.cover-stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.cover-stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-1);
}

/* ============================================
   PRODUTO IMAGE SHOWCASE
   ============================================ */
.produto-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto-image-wrap::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,35,246,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.produto-img {
  max-height: 380px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 20px 50px rgba(4,35,246,0.5));
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

@media (max-width: 1024px) {
  .produto-img {
    max-height: 260px;
  }
}

@media (max-width: 768px) {
  .produto-img {
    max-height: 200px;
    animation: none;
  }
}

/* ============================================
   TABS DE PRODUTO (RECURSOS)
   ============================================ */
.tabs {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.tab-btn {
  font-family: var(--font-family);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}

/* ============================================
   PREÇO DO PRODUTO
   ============================================ */
.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.price-currency {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.price-amount {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.price-label {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.4);
}

/* ============================================
   TABELA COMPARATIVA
   ============================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.compare-table th {
  padding: var(--space-4) var(--space-5);
  text-align: center;
  font-weight: 800;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.compare-table th:first-child {
  text-align: left;
}

.compare-table th.col-highlight {
  color: var(--color-accent);
  background: rgba(0,212,255,0.06);
}

.compare-table td {
  padding: var(--space-3) var(--space-5);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  vertical-align: middle;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--color-white);
}

.compare-table tr:hover td {
  background: rgba(255,255,255,0.03);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td.col-highlight {
  background: rgba(0,212,255,0.04);
}

.check-yes {
  color: var(--color-green);
  font-size: 1.2em;
  font-weight: 900;
}

.check-no {
  color: rgba(255,255,255,0.2);
  font-size: 1.2em;
}

.check-partial {
  color: var(--color-gold);
  font-size: 1.2em;
}

.col-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.col-label-name {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-white);
}

.col-label-sub {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

/* Modelos badge na tabela */
.model-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  margin-bottom: 4px;
}

.model-base   { background: rgba(4,35,246,0.2); color: #8ba3f0; border: 1px solid rgba(4,35,246,0.4); }
.model-pro    { background: rgba(0,212,255,0.12); color: #38bdf8; border: 1px solid rgba(0,212,255,0.3); }
.model-ultra  { background: rgba(245,197,66,0.12); color: #fcd34d; border: 1px solid rgba(245,197,66,0.3); }

/* ============================================
   SEÇÃO DE GARANTIA / SUPORTE
   ============================================ */
.garantia-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1024px) {
  .garantia-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .garantia-cards {
    grid-template-columns: 1fr;
  }
}

.garantia-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(4,35,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(4,35,246,0.3);
}

.contato-card {
  background: linear-gradient(135deg, rgba(4,35,246,0.2) 0%, rgba(4,35,246,0.05) 100%);
  border: 1px solid rgba(4,35,246,0.35);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contato-line {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-md);
  color: rgba(255,255,255,0.85);
}

.contato-line-icon {
  font-size: 20px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-line a {
  color: var(--color-blue-light);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.contato-line a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-scroll-container {
  max-height: 440px;
  overflow-y: auto;
  padding-right: 8px;
  width: 100%;
}

.faq-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.faq-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
}

.faq-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.25);
  border-radius: 3px;
}

.faq-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.5);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(4,35,246,0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-white);
  gap: var(--space-4);
  user-select: none;
  -webkit-user-select: none;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(4,35,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: transform var(--transition-fast), background var(--transition-fast);
  color: var(--color-blue-light);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--color-blue);
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 var(--space-5) var(--space-4);
  font-size: var(--font-size-sm);
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   VIDEO CARD
   ============================================ */
.video-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.video-card:hover {
  border-color: rgba(4,35,246,0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.video-card video {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  pointer-events: none;
}

.video-card-label {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.video-card-label::before {
  content: '▶';
  color: var(--color-blue-light);
  font-size: 10px;
}

/* ============================================
   VIDEO MODAL
   ============================================ */
#video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

#video-modal.open {
  display: flex;
}

.video-modal-inner {
  width: 100%;
  max-width: 900px;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.video-modal-close:hover {
  background: rgba(255,255,255,0.25);
}

#modal-video {
  width: 100%;
  border-radius: var(--radius-lg);
  max-height: 70vh;
}

/* ============================================
   ENCERRAMENTO
   ============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin: var(--space-8) 0;
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.pillar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.25);
}

.pillar-icon {
  font-size: 40px;
  margin-bottom: var(--space-3);
  display: block;
}

.pillar-name {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar-desc {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.final-cta-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delays em cascata */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   SEÇÃO MÓDULO HEADER
   ============================================ */
.modulo-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.modulo-num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 900;
  color: var(--color-white);
  flex-shrink: 0;
}

.modulo-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-blue-light);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(4,35,246,0.4);
  border-radius: var(--radius-full);
}

/* ============================================
   RESPONSIVE PATCHES
   ============================================ */
@media (max-width: 768px) {
  .cover-hero-img {
    width: 260px;
  }

  .cover-stats {
    gap: var(--space-6);
  }

  .cover-stat-number {
    font-size: var(--font-size-2xl);
  }

  .garantia-cards {
    grid-template-columns: 1fr;
  }

  .compare-table th,
  .compare-table td {
    padding: var(--space-3);
    font-size: var(--font-size-xs);
  }

  .product-price .price-amount {
    font-size: var(--font-size-3xl);
  }

  h2.section-title {
    font-size: var(--font-size-3xl);
  }

  .layout-3col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .cover-stats {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }

  .cover-logo {
    height: 36px;
  }

  h1.headline {
    font-size: var(--font-size-3xl);
  }
}

/* ============================================
   SECTION DIVIDER / ORNAMENT
   ============================================ */
.section-line {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.section-line::before,
.section-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ============================================
   SELO DE GARANTIA
   ============================================ */
.warranty-seal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(var(--color-blue) 0deg, var(--color-blue-light) 120deg, var(--color-accent) 240deg, var(--color-blue) 360deg);
  padding: 3px;
  box-shadow: 0 0 30px rgba(4,35,246,0.5);
}

.warranty-seal-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-dark-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.warranty-years {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

.warranty-text {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
  background: linear-gradient(135deg, rgba(4,35,246,0.15) 0%, rgba(0,212,255,0.05) 100%);
  border: 1px solid rgba(4,35,246,0.3);
  border-left: 3px solid var(--color-blue-light);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: var(--space-4) 0;
}

.highlight-box strong {
  color: var(--color-white);
}

/* ============================================
   SLIDE COVER — SCROLL OVERRIDE
   ============================================ */
@media (max-width: 768px) {
  body {
    overflow: auto;
  }
  #slides-wrapper {
    position: static;
    overflow: visible;
  }
  #slides-container {
    transform: none !important;
    transition: none !important;
  }
  .slide {
    min-height: 100dvh;
    overflow: visible;
    padding-bottom: 80px;
    padding-top: var(--space-6);
  }
}

/* ============================================
   CAPA PREMIUM — FULLSCREEN PRESENTATION STYLE
   ============================================ */

/* Slide cover setup */
.slide-cover {
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  background: #070913;
}

/* Background image & overlay */
.cover-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

@keyframes coverImageFadeScale {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

.cover-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: coverImageFadeScale 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(7, 9, 19, 0.4) 0%, rgba(7, 9, 19, 0.8) 100%),
              linear-gradient(to bottom, rgba(7, 9, 19, 0.5) 0%, transparent 40%, rgba(7, 9, 19, 0.95) 95%, #070913 100%);
  z-index: 2;
}

/* Content layout */
.cover-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-8) var(--space-12) var(--space-10);
  box-sizing: border-box;
  text-align: center;
}

/* Top: Logo section */
.cover-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: var(--space-2);
}

.cover-logo-hero {
  max-height: 48px;
  max-width: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

/* Warranty badge premium brasão styling */
.cover-warranty-badge {
  position: absolute;
  top: 40px;
  right: 60px;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cover-warranty-badge:hover {
  transform: translateY(-4px) scale(1.05);
}

.cover-warranty-img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

/* Middle: Tagline section */
.cover-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: var(--space-4) 0;
}

.cover-tagline {
  font-size: clamp(2.4rem, 6.2vw, 5.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  max-width: 900px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7),
               0 2px 4px rgba(0, 0, 0, 0.4);
}

.cover-tagline-accent {
  color: #0423F6 !important;
  -webkit-text-fill-color: #0423F6 !important;
  background: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  font-weight: 900;
  text-shadow: none !important;
  filter: drop-shadow(0 2px 10px rgba(4, 35, 246, 0.45));
}

/* Bottom: Technology section */
.cover-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  z-index: 4;
}

.cover-tech-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.65);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.cover-tech-strip {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  max-width: 1350px;
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
}

.cover-tech-item {
  flex: 1;
  background: rgba(12, 19, 38, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.cover-tech-item:hover {
  transform: translateY(-8px);
  background: rgba(18, 30, 60, 0.85);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15), 
              0 15px 30px rgba(0, 0, 0, 0.5);
}

.cover-tech-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 6px;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.cover-tech-item:hover .cover-tech-img-wrap {
  border-color: rgba(0, 212, 255, 0.4);
}

.cover-tech-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cover-tech-item:hover .cover-tech-img {
  transform: scale(1.08);
}

.cover-tech-name {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin-top: 2px;
}

.cover-tech-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.3;
}

.cover-tech-divider {
  display: none;
}

/* ============================================
   FEATURE & GALLERY CARDS (SQUARE IMAGE SLOTS)
   ============================================ */
.feature-card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-2);
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .feature-card-img-wrap {
  border-color: rgba(4, 35, 246, 0.35);
}

.card:hover .feature-card-img {
  transform: scale(1.05);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .cover-content {
    padding: var(--space-6) var(--space-6) var(--space-8);
  }

  .cover-tech-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 95%;
  }

  .cover-tech-img-wrap {
    aspect-ratio: 1 / 1;
    height: auto;
  }
}

@media (max-width: 768px) {
  .cover-content {
    padding: var(--space-8) var(--space-5) var(--space-6);
  }

  .cover-logo-hero {
    max-height: 38px;
    max-width: 180px;
  }

  .cover-tagline {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .cover-tech-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .cover-tech-item {
    padding: 14px 10px;
    border-radius: 14px;
  }

  .cover-tech-img-wrap {
    aspect-ratio: 1 / 1;
    height: auto;
    margin-bottom: 4px;
  }

  .cover-tech-name {
    font-size: 12px;
  }

  .cover-tech-desc {
    font-size: 10px;
  }

  .cover-warranty-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cover-warranty-img {
    max-height: 70px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  }
}

@media (max-width: 480px) {
  .cover-tagline {
    font-size: 1.6rem;
  }

  .cover-tech-strip {
    gap: 10px;
  }

  .cover-tech-img-wrap {
    aspect-ratio: 1 / 1;
    height: auto;
  }
}


/* ============================================
   SLIDE INSTITUCIONAL — LAYOUT NOVO
   ============================================ */

/* Override do slide */
.slide-institucional {
  padding: 0 !important;
  align-items: stretch !important;
  background: radial-gradient(circle at 10% 20%, rgba(10, 15, 30, 0.98) 0%, rgba(5, 7, 15, 1) 100%);
}

/* Layout de dois painéis */
.inst-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  width: 100%;
  height: 100dvh;
  position: relative;
  z-index: 1;
}

/* Painel esquerdo: brand panel escuro e glassmorphic */
.inst-left {
  background: linear-gradient(135deg, rgba(12, 19, 38, 0.6) 0%, rgba(4, 35, 246, 0.05) 100%);
  border-right: 1px solid rgba(4, 35, 246, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--space-8);
  position: relative;
  overflow: hidden;
  box-shadow: inset -5px 0 25px rgba(0, 0, 0, 0.4);
}

.inst-left::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 35, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Brand panel content */
.inst-brand-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.inst-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: var(--space-6);
}

.inst-logo {
  height: 38px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
  align-self: flex-start;
}

.inst-brand-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue-light), var(--color-accent));
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.inst-brand-tagline {
  font-size: var(--font-size-sm);
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-6);
  font-style: italic;
  letter-spacing: 0.02em;
  border-left: 2px solid var(--color-accent);
  padding-left: var(--space-3);
}

/* Tech Chips (Mission & Vision) */
.inst-mvv-tech {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.inst-tech-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.inst-tech-chip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, var(--color-blue-light), var(--color-accent));
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.inst-tech-chip:hover {
  background: rgba(4, 35, 246, 0.06);
  border-color: rgba(4, 35, 246, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 35, 246, 0.1);
}

.inst-tech-chip:hover::before {
  width: 4px;
  opacity: 1;
}

.inst-chip-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.inst-chip-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(4, 35, 246, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(4, 35, 246, 0.2);
}

.inst-chip-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-blue-light);
}

.inst-chip-desc {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin: 0;
}

/* Painel direito: conteúdo */
.inst-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-10) var(--space-12) var(--space-10) var(--space-10);
  overflow-y: auto;
  position: relative;
}

/* Header de Módulo com Brilho */
.modulo-num-glow {
  font-family: monospace;
  font-size: var(--font-size-md);
  font-weight: 900;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 212, 255, 0.25);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.modulo-label-tech {
  font-size: var(--font-size-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.section-title-tech {
  font-size: clamp(var(--font-size-2xl), 2.5vw, var(--font-size-4xl));
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.text-glow-cyan {
  background: linear-gradient(135deg, #00d4ff 0%, #0423f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.lead-tech {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  margin-bottom: var(--space-5);
  max-width: 820px;
}

/* Widescreen Hero Card com scan line */
.inst-hero-container {
  margin-bottom: var(--space-5);
  width: 100%;
  max-width: 820px;
}

.inst-hero-frame {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(4, 35, 246, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(4, 35, 246, 0.1);
  background: #000;
  transition: all var(--transition-normal);
}

.inst-hero-frame:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 212, 255, 0.15);
  transform: scale(1.01);
}

.inst-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.inst-hero-frame:hover .inst-hero-img {
  transform: scale(1.04);
  opacity: 0.95;
}

.inst-scanner-line {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  animation: laserScan 4s linear infinite;
}

@keyframes laserScan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.inst-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.inst-hero-tag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--color-white);
  background: rgba(4, 35, 246, 0.4);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(4, 35, 246, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.inst-hero-tech-specs {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

/* Pilares institucionais horizontais */
.inst-tech-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  width: 100%;
  max-width: 820px;
}

.inst-tech-pillar {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all var(--transition-normal);
}

.inst-tech-pillar:hover {
  background: rgba(4, 35, 246, 0.04);
  border-color: rgba(4, 35, 246, 0.2);
  transform: translateY(-2px);
}

.pillar-tech-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(4, 35, 246, 0.12);
  border: 1px solid rgba(4, 35, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  transition: all var(--transition-normal);
}

.inst-tech-pillar:hover .pillar-tech-icon-wrap {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.25);
}

.pillar-tech-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.pillar-tech-title {
  font-size: var(--font-size-xs);
  font-weight: 800;
  color: var(--color-white);
}

.pillar-tech-desc {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin: 0;
}

/* Painel de Números Corporativo / R&D Metrics */
.inst-stats-dashboard {
  display: flex;
  align-items: center;
  background: rgba(12, 19, 38, 0.5);
  border: 1px solid rgba(4, 35, 246, 0.18);
  border-radius: var(--radius-lg);
  padding: var(--space-4) 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  max-width: 820px;
}

.stat-tech-card {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 var(--space-3);
}

.stat-value-glow {
  font-size: clamp(var(--font-size-xl), 2.5vw, var(--font-size-3xl));
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 15px rgba(4, 35, 246, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #a2b4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label-tech {
  font-size: var(--font-size-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue-light);
}

.stat-desc-tech {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.stat-divider-glow {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(4, 35, 246, 0.3), transparent);
  flex-shrink: 0;
}

/* Responsive institucional premium */
@media (max-width: 1024px) {
  .inst-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100dvh;
    overflow-y: auto;
  }

  .inst-left {
    border-right: none;
    border-bottom: 1px solid rgba(4, 35, 246, 0.15);
    padding: var(--space-8) var(--space-6) var(--space-6);
    box-shadow: inset 0 -5px 25px rgba(0, 0, 0, 0.4);
  }

  .inst-mvv-tech {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

  .inst-right {
    padding: var(--space-8) var(--space-6);
  }

  .inst-tech-pillars {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

@media (max-width: 768px) {
  .inst-mvv-tech {
    grid-template-columns: 1fr;
  }

  .inst-stats-dashboard {
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-5) 0;
  }

  .stat-divider-glow {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(4, 35, 246, 0.3), transparent);
  }

  .inst-right {
    padding: var(--space-6) var(--space-4);
  }

  .inst-left {
    padding: var(--space-6) var(--space-4) var(--space-5);
  }
  
  .inst-hero-frame {
    aspect-ratio: 16 / 9;
  }
}

/* ============================================
   SLIDE TECNOLOGIAS — TECHNOLOGY SHOWCASE
   ============================================ */

/* Background override for tech slide */
.slide-tecnologia {
  overflow: hidden;
}

.tech-slide-card {
  border-radius: 12px;
  padding: clamp(0.75rem, 1.4vh, 1rem) clamp(0.75rem, 1.2vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-slide-card.theme-blue {
  background: rgba(4, 35, 246, 0.1);
  border: 1px solid rgba(4, 35, 246, 0.25);
}

.tech-slide-card.theme-cyan {
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.22);
}

.tech-slide-card.theme-gold {
  background: rgba(245, 197, 66, 0.08);
  border: 1px solid rgba(245, 197, 66, 0.25);
}

.tech-slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(4, 35, 246, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.tech-slide-card:hover::before {
  opacity: 1;
}

/* Model availability badges */
.tech-badge-blue {
  font-size: 9px;
  font-weight: 800;
  color: #8ba3f0;
  background: rgba(4, 35, 246, 0.18);
  border: 1px solid rgba(4, 35, 246, 0.35);
  border-radius: 999px;
  padding: 2px 7px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.tech-badge-cyan {
  font-size: 9px;
  font-weight: 800;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 999px;
  padding: 2px 7px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.tech-badge-gold {
  font-size: 9px;
  font-weight: 800;
  color: #fcd34d;
  background: rgba(245, 197, 66, 0.12);
  border: 1px solid rgba(245, 197, 66, 0.3);
  border-radius: 999px;
  padding: 2px 7px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Slide-tech structure classes */
.tech-slide-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(1.5rem, 3vh, 2.2rem) clamp(2rem, 4vw, 3.5rem);
  gap: clamp(0.8rem, 1.8vh, 1.4rem);
}

.tech-slide-header {
  text-align: center;
  flex-shrink: 0;
}

.tech-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.tech-slide-eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff);
}

.tech-slide-eyebrow-line.line-reverse {
  background: linear-gradient(90deg, #00d4ff, transparent);
}

.tech-slide-title {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.1;
}

.tech-slide-subtitle {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.5);
  margin: 0.4rem 0 0;
  font-weight: 500;
}

/* Robots Lineup Card Styles */
.lineup-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.lineup-card.featured {
  max-width: 320px;
}

.lineup-card-inner {
  border-radius: 16px;
  padding: clamp(0.75rem, 1.5vh, 1.1rem) 1rem;
  position: relative;
  transition: all 0.35s ease;
}

.lineup-card.featured .lineup-card-inner {
  border-radius: 18px;
  padding: clamp(1rem, 2vh, 1.4rem) 1.2rem;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
}

.lineup-card-inner.theme-blue {
  background: rgba(4, 35, 246, 0.09);
  border: 1px solid rgba(4, 35, 246, 0.22);
}

.lineup-card-inner.theme-cyan {
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.28);
}

.lineup-card-inner.theme-gold {
  background: rgba(245, 197, 66, 0.07);
  border: 1px solid rgba(245, 197, 66, 0.25);
}

.lineup-card-badge {
  position: absolute;
  top: 9px;
  left: 10px;
  font-size: 9px;
  font-weight: 800;
  border-radius: 999px;
  padding: 2px 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lineup-card-badge.badge-blue {
  color: #8ba3f0;
  background: rgba(4, 35, 246, 0.18);
  border: 1px solid rgba(4, 35, 246, 0.35);
}

.lineup-card-badge.badge-cyan {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.lineup-card-badge.badge-gold {
  color: #fcd34d;
  background: rgba(245, 197, 66, 0.12);
  border: 1px solid rgba(245, 197, 66, 0.3);
}

.lineup-card img {
  height: clamp(90px, 11vh, 130px);
  width: auto;
  margin: 0 auto;
  display: block;
}

.lineup-card-inner.theme-blue img {
  filter: drop-shadow(0 6px 22px rgba(4, 35, 246, 0.45));
}

.lineup-card-inner.theme-cyan img {
  height: clamp(110px, 14vh, 160px);
  filter: drop-shadow(0 8px 30px rgba(0, 212, 255, 0.4));
}

.lineup-card-inner.theme-gold img {
  filter: drop-shadow(0 6px 24px rgba(245, 197, 66, 0.35));
}

.lineup-card-info {
  margin-top: 0.6rem;
}

.lineup-card-name {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 800;
  color: #fff;
}

.lineup-card.featured .lineup-card-name {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 900;
  color: #00d4ff;
}

.lineup-card-name.text-gold {
  color: #fcd34d;
}

.lineup-card-techs {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Technology card internal components */
.tech-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.tech-card-icon {
  font-size: clamp(16px, 2vw, 20px);
}

.tech-card-title {
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}

.tech-slide-card.theme-cyan .tech-card-title {
  color: #00d4ff;
}

.tech-slide-card.theme-gold .tech-card-title {
  color: #fcd34d;
}

.tech-card-desc {
  font-size: clamp(9px, 0.9vw, 10.5px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.tech-card-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .slide-tecnologia [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .slide-tecnologia [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   AQUASENSE 2 PRO EXPERIENCE
   ============================================ */
.slide-pro-experience {
  --pro-cyan: #00d4ff;
  --pro-cyan-soft: rgba(0, 212, 255, 0.12);
  --pro-cyan-line: rgba(0, 212, 255, 0.28);
  --pro-blue: #0423F6;
  --pro-ink: #06111f;
  --pro-panel: rgba(6, 17, 31, 0.72);
  background:
    radial-gradient(ellipse at 50% 18%, rgba(0, 212, 255, 0.13) 0%, transparent 42%),
    linear-gradient(150deg, #040813 0%, #06111f 48%, #031b28 100%);
}

.slide-pro-experience::before {
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.pro-ambient,
.pro-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pro-ambient {
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 78%, rgba(4, 35, 246, 0.24) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 42%, rgba(0, 212, 255, 0.18) 0%, transparent 56%);
}

.pro-grid-overlay {
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
  opacity: 0.75;
}

.pro-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1360px;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(0.7rem, 1.45vh, 1rem);
  padding: clamp(1.1rem, 2.2vh, 1.6rem) clamp(1.5rem, 3vw, 3rem);
  box-sizing: border-box;
}

.pro-header {
  text-align: center;
}

.pro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.35rem;
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pro-cyan);
}

.pro-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pro-cyan), transparent);
}

.pro-header h2 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pro-header h2 strong {
  color: var(--pro-cyan);
  text-shadow: 0 0 22px rgba(0, 212, 255, 0.32);
}

.pro-header p {
  max-width: 780px;
  margin: 0.5rem auto 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.78rem, 1.05vw, 0.95rem);
  line-height: 1.55;
  font-weight: 600;
}

.pro-stage {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(0.85rem, 1.6vw, 1.3rem);
  min-height: 0;
}

.pro-product-card,
.pro-tech-card,
.pro-benefit-rail > div {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pro-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: clamp(0.9rem, 1.8vh, 1.15rem);
  border: 1px solid var(--pro-cyan-line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 34%, rgba(0, 212, 255, 0.22) 0%, transparent 46%),
    linear-gradient(155deg, rgba(4, 35, 246, 0.22), rgba(0, 212, 255, 0.07) 55%, rgba(3, 27, 40, 0.92));
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pro-product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(0, 212, 255, 0.08);
  pointer-events: none;
}

.pro-product-badge {
  align-self: flex-start;
  position: relative;
  z-index: 1;
  padding: 4px 11px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--pro-cyan);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pro-product-glow {
  position: absolute;
  width: 230px;
  height: 230px;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.28) 0%, transparent 68%);
  pointer-events: none;
}

.pro-product-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: clamp(130px, 22vh, 210px);
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 212, 255, 0.38));
  animation: float 4s ease-in-out infinite;
}

.pro-product-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pro-product-kicker {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pro-product-copy h3 {
  margin: 0.25rem 0 0;
  color: var(--pro-cyan);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pro-product-copy p {
  margin: 0.4rem auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  line-height: 1.45;
}

.pro-metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.pro-metric {
  padding: 0.5rem 0.35rem;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.055);
}

.pro-metric strong {
  display: block;
  color: var(--pro-cyan);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1;
  font-weight: 900;
}

.pro-metric span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pro-tech-panel {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pro-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(4, 35, 246, 0.09));
}

.pro-panel-head span {
  display: block;
  color: var(--pro-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pro-panel-head strong {
  display: block;
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  font-weight: 900;
}

.pro-panel-chip,
.pro-tech-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--pro-cyan);
  font-weight: 900;
}

.pro-panel-chip {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.12);
}

.pro-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.5rem, 1vw, 0.75rem);
  min-height: 0;
}

.pro-tech-card {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.1), rgba(4, 35, 246, 0.1) 48%, rgba(2, 12, 26, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pro-tech-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(0, 212, 255, 0.18), transparent 44%);
  opacity: 0.65;
  pointer-events: none;
}

.pro-tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38), 0 0 24px rgba(0, 212, 255, 0.1);
}

.pro-tech-card-featured {
  border-color: rgba(0, 212, 255, 0.36);
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.16), rgba(4, 35, 246, 0.12) 46%, rgba(3, 27, 40, 0.78));
}

.pro-tech-title,
.pro-tech-card p,
.pro-tech-pill {
  position: relative;
  z-index: 1;
}

.pro-tech-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-white);
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  line-height: 1.15;
  font-weight: 900;
}

.pro-tech-title span {
  font-size: 18px;
  line-height: 1;
}

.pro-tech-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.62rem, 0.82vw, 0.72rem);
  line-height: 1.48;
  font-weight: 600;
}

.pro-tech-pill {
  width: max-content;
  margin-top: auto;
  padding: 2px 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.pro-benefit-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.pro-benefit-rail > div {
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.06);
}

.pro-benefit-rail strong {
  display: block;
  color: var(--color-white);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 900;
}

.pro-benefit-rail span {
  display: block;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.64rem;
  line-height: 1.35;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .pro-stage {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .pro-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pro-shell {
    height: auto;
    padding: var(--space-6) var(--space-4) 90px;
  }

  .pro-header {
    text-align: left;
  }

  .pro-eyebrow span {
    width: 22px;
  }

  .pro-stage,
  .pro-benefit-rail {
    grid-template-columns: 1fr;
  }

  .pro-product-img {
    animation: none;
  }

  .pro-panel-head {
    align-items: flex-start;
  }
}

/* ==========================================================================
   REFATORED GRID CLASSES & CARD HELPER STYLES
   ========================================================================= */

.tech-robots-lineup {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  justify-content: center;
  align-items: flex-end;
  flex-shrink: 0;
}

.tech-robots-lineup img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-robots-lineup img:hover {
  transform: scale(1.15);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1;
  margin: 0.4rem 0;
  align-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  width: 100%;
  flex-shrink: 0;
}

.diferencial-card {
  border-radius: 12px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.25s ease;
  padding: 0.6rem 0.3rem;
  cursor: pointer;
}

.diferencial-card-icon {
  font-size: 24px;
  margin-bottom: 5px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.diferencial-card-title {
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.diferencial-card-subtitle {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
  line-height: 1;
  font-weight: 600;
}

.product-closing-banner {
  position: relative;
  width: 100%;
  border-radius: 10px;
  padding: 0.5rem 7.2rem 0.5rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-sizing: border-box;
  min-height: 50px;
  flex-shrink: 0;
}

.product-closing-banner.theme-blue {
  background: linear-gradient(135deg, rgba(4, 35, 246, 0.15), rgba(4, 35, 246, 0.06));
  border: 1px solid rgba(4, 35, 246, 0.18);
}

.product-closing-banner.theme-cyan {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.06));
  border: 1px solid rgba(0, 212, 255, 0.18);
}

.product-closing-banner.theme-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 223, 115, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.product-closing-banner-title {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.product-closing-banner-desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2;
  margin-top: 2px;
  font-weight: 600;
}

.diferencial-card.theme-blue {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(4, 35, 246, 0.22);
}

.diferencial-card.theme-blue:hover {
  background: rgba(4, 35, 246, 0.08) !important;
  border-color: rgba(0, 212, 255, 0.4) !important;
  transform: translateY(-3px);
}

.diferencial-card.theme-cyan {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(0, 212, 255, 0.22);
}

.diferencial-card.theme-cyan:hover {
  background: rgba(0, 212, 255, 0.08) !important;
  border-color: rgba(0, 212, 255, 0.45) !important;
  transform: translateY(-3px);
}

.diferencial-card.theme-gold {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.diferencial-card.theme-gold:hover {
  background: rgba(212, 175, 55, 0.06) !important;
  border-color: rgba(212, 175, 55, 0.45) !important;
  transform: translateY(-3px);
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 0.45rem 0.2rem;
  text-align: center;
  box-sizing: border-box;
}

.stat-card.theme-blue {
  border: 1px solid rgba(4, 35, 246, 0.18);
}

.stat-card.theme-cyan {
  border: 1px solid rgba(0, 212, 255, 0.18);
}

.stat-card.theme-gold {
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.value-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.8rem;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.1rem 0;
  flex-shrink: 0;
}

.col-diferenciais {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  padding: 0.2rem 0;
}

.col-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 0.2rem 0;
}

.col-beneficios {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  padding: 0.2rem 0;
  gap: 0.6rem;
}

/* Base Product Component Helper Classes */
.product-col-header {
  padding-left: 0.6rem;
  margin-bottom: 0.3rem;
  text-align: left;
  flex-shrink: 0;
}
.product-col-header.theme-blue {
  border-left: 4px solid #0423F6;
}
.product-col-header.theme-cyan {
  border-left: 4px solid #00d4ff;
}
.product-col-header.theme-gold {
  border-left: 4px solid #D4AF37;
}

.product-col-eyebrow {
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: block;
}
.product-col-eyebrow.theme-blue,
.product-col-eyebrow.theme-cyan {
  color: #00d4ff;
}
.product-col-eyebrow.theme-gold {
  color: #D4AF37;
}

.product-col-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin: 1px 0 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-badge {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border-radius: 999px;
  padding: 4.5px 17px;
  flex-shrink: 0;
  display: inline-block;
}
.product-badge.theme-blue {
  color: #4d6fda;
  background: rgba(4, 35, 246, 0.12);
  border: 1px solid rgba(4, 35, 246, 0.25);
}
.product-badge.theme-cyan {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.25);
}
.product-badge.theme-gold {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.product-title-block {
  margin: 0.2rem 0;
}

.product-title {
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.1;
}

.product-title-gradient-blue {
  background: linear-gradient(135deg, #4d6fda, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-title-gradient-cyan {
  background: linear-gradient(135deg, #00d4ff, #00ffd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-title-gradient-gold {
  background: linear-gradient(135deg, #D4AF37, #FFDF73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.3rem 0 0;
  font-weight: 600;
  line-height: 1.3;
}

.product-image-container {
  position: relative;
  width: 100%;
  margin: 0.3rem 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.product-image-glow.theme-blue {
  background: radial-gradient(circle, rgba(4, 35, 246, 0.25) 0%, transparent 70%);
}
.product-image-glow.theme-cyan {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.22) 0%, transparent 70%);
}
.product-image-glow.theme-gold {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.product-image {
  width: 100%;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}
.product-image.theme-blue {
  max-height: 310px;
  filter: drop-shadow(0 14px 32px rgba(4, 35, 246, 0.48));
}
.product-image.theme-cyan {
  max-height: 310px;
  filter: drop-shadow(0 14px 32px rgba(0, 212, 255, 0.42));
}
.product-image.theme-gold {
  max-height: 340px;
  filter: drop-shadow(0 14px 32px rgba(212, 175, 55, 0.35));
}

.stat-number {
  font-size: 1.26rem;
  font-weight: 900;
  line-height: 1;
}
.stat-number.theme-blue,
.stat-number.theme-cyan {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.25);
}
.stat-number.theme-gold {
  color: #D4AF37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.stat-label {
  font-size: 9.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.benefits-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.benefits-card.theme-blue {
  border: 1px solid rgba(4, 35, 246, 0.15);
}
.benefits-card.theme-cyan {
  border: 1px solid rgba(0, 212, 255, 0.15);
}
.benefits-card.theme-gold {
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.benefits-card-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
  flex-shrink: 0;
}
.benefits-card-header-icon {
  font-size: 13px;
}
.benefits-card-header-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.benefits-card-header-title.theme-blue,
.benefits-card-header-title.theme-cyan {
  color: #00d4ff;
}
.benefits-card-header-title.theme-gold {
  color: #D4AF37;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 0.35rem;
  padding: 0.1rem 0;
}
.benefits-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.benefits-item-icon {
  color: #22c55e;
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}
.benefits-item-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.benefits-item-desc {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
  line-height: 1.2;
}

/* Slide 5 Table Scroll Layout */
.table-scroll {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  flex-grow: 1;
  width: 100%;
}
.compare-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 1160px;
  margin: auto;
  box-sizing: border-box;
  padding: 0.1rem 0;
  justify-content: center;
  height: 100%;
}
.compare-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.1rem;
  flex-shrink: 0;
}

/* Slide 6 (Support) Component Helper Classes */
.support-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.support-container-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1260px;
  margin: auto;
  box-sizing: border-box;
  padding: 0.25rem 0.5rem;
}
.support-dashboard-layout {
  gap: 1rem;
  min-height: 0;
}
.support-pillars-grid {
  gap: 0.75rem;
  min-height: 0;
}
.support-reassurance-rail {
  gap: 0.6rem;
}

.support-col-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
}
.support-card-shield {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, rgba(4, 35, 246, 0.18), rgba(0, 212, 255, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}
.support-card-warranty-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 212, 255, 0.18));
  margin-bottom: 0.6rem;
}
.support-card-warranty-badge {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #00d4ff;
}
.support-card-warranty-years {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin: 0.1rem 0;
}
.support-card-warranty-text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin: 0;
  max-width: 250px;
}
.support-card-secondary {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
}
.support-card-secondary-title {
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
}
.support-card-secondary-list {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
.support-card-secondary-item {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}
.support-card-secondary-item-icon {
  color: #22c55e;
  font-size: 12px;
}
.support-card-secondary-item-text {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.support-pillar-card {
  background: rgba(255, 255, 255, 0.025);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}
.support-pillar-card.theme-blue {
  border: 1px solid rgba(4, 35, 246, 0.18);
}
.support-pillar-card.theme-cyan {
  border: 1px solid rgba(0, 212, 255, 0.16);
}
.support-pillar-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.1rem;
}
.support-pillar-icon {
  font-size: 20px;
}
.support-pillar-header-title {
  font-size: 12px;
  font-weight: 900;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.support-pillar-header-subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}
.support-pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.support-pillar-item {
  display: flex;
  gap: 0.45rem;
}
.support-pillar-item-icon {
  color: #22c55e;
}
.support-pillar-item-text {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  line-height: 1.35;
}

.support-card-app {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.1), rgba(4, 35, 246, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 16px;
  padding: 0.9rem;
}
.support-card-app-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}
.support-card-app-icon {
  font-size: 22px;
}
.support-card-app-title {
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.support-card-app-subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 700;
}
.support-card-app-list {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}
.support-card-app-item {
  display: flex;
  gap: 0.45rem;
}

.support-contato-card {
  padding: 0.9rem !important;
  gap: 0.55rem !important;
  flex: 1;
  justify-content: center;
}

.support-reassurance-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.55rem;
  text-align: center;
}
.support-reassurance-title {
  display: block;
  color: #fff;
  font-size: 11px;
}
.support-reassurance-desc {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  margin-top: 2px;
}

/* Slide 8 (Footer) Component Helper Classes */
.footer-grid-layout {
  gap: 2.2rem;
  align-items: center;
  height: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  padding: var(--space-4) var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 10;
  width: 100%;
}
.footer-col-left {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
}
.footer-logo {
  filter: none !important;
  width: 130px;
  margin-bottom: 0.1rem;
  display: block;
}
.footer-title-block {
  flex-shrink: 0;
}
.footer-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.footer-title-gradient {
  background: linear-gradient(135deg, #00d4ff, #4d6fda);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-subtitle {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin: 0.15rem 0 0;
}

.footer-quote-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.8rem;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.1rem 0;
  flex-shrink: 0;
}
.footer-quote-text {
  font-size: 13.5px;
  font-weight: 900;
  color: #00d4ff;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.footer-quote-desc {
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.footer-quote-subdesc {
  font-size: 10.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.52);
  font-weight: 500;
}

.footer-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  max-width: 580px;
  flex-shrink: 0;
}
.footer-badge-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.footer-badge-item span {
  color: #22c55e;
}

.footer-contact-card {
  background: rgba(12, 19, 38, 0.85);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.footer-contact-title {
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  color: #00d4ff;
  letter-spacing: 0.08em;
}
.footer-contact-lines {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-contact-item {
  font-size: 11px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-contact-item-name {
  font-weight: 600;
}
.footer-contact-item a {
  color: #00d4ff;
  text-decoration: none;
}
.footer-contact-item a.phone {
  font-weight: 700;
}
.footer-contact-item a.email {
  font-weight: 500;
}
.footer-contact-note {
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.46);
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.55rem;
  margin-top: 0.15rem;
}

.footer-cta-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
  height: 100%;
}
.footer-pillars-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.footer-pillars-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.45rem;
}
.footer-pillars-title {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-pillars-title span {
  color: #00d4ff;
}
.footer-pillar-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer-pillar-icon {
  font-size: 16px;
  margin-top: 1px;
}
.footer-pillar-content {
  display: flex;
  flex-direction: column;
}
.footer-pillar-heading {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.footer-pillar-desc {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
  font-weight: 500;
}

.footer-trust-bar {
  background: rgba(12, 19, 38, 0.45);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
.footer-trust-item {
  display: flex;
  flex-direction: column;
}
.footer-trust-title {
  font-size: 13px;
  font-weight: 900;
}
.footer-trust-title.theme-cyan {
  color: #00d4ff;
}
.footer-trust-title.theme-white {
  color: #fff;
}
.footer-trust-desc {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  text-transform: uppercase;
}
.footer-trust-separator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.product-ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.product-ambient-glow.theme-blue {
  background: radial-gradient(ellipse at 75% 50%, rgba(4, 35, 246, 0.12) 0%, transparent 60%);
}
.product-ambient-glow.theme-cyan {
  background: radial-gradient(ellipse at 75% 50%, rgba(0, 212, 255, 0.12) 0%, transparent 60%);
}
.product-ambient-glow.theme-gold {
  background: radial-gradient(ellipse at 75% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.product-floating-warranty {
  position: absolute;
  bottom: -10px;
  right: -10px;
  height: 102px;
  width: auto;
  object-fit: contain;
  z-index: 99;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.product-status-badge {
  border-radius: 10px;
  padding: 0.45rem;
  text-align: center;
  box-sizing: border-box;
  flex-shrink: 0;
}
.product-status-badge.theme-blue {
  background: rgba(4, 35, 246, 0.08);
  border: 1px solid rgba(4, 35, 246, 0.2);
}
.product-status-badge.theme-cyan {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.product-status-badge.theme-gold {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.product-status-badge-title {
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}
.product-status-badge-title.theme-blue,
.product-status-badge-title.theme-cyan {
  color: #00d4ff;
}
.product-status-badge-title.theme-gold {
  color: #D4AF37;
}
.product-status-badge-desc {
  font-size: 7.5px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.compare-table .col-label {
  align-items: center;
  text-align: center;
  width: 100%;
  justify-content: center;
}
.compare-table .model-badge {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  padding: 2px 10px;
}
.compare-table .col-label-name {
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.compare-table td {
  padding: 6px 10px !important;
  font-size: 11.5px !important;
}

.support-contact-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #00d4ff;
  margin-bottom: 0.2rem;
}
.support-contact-note {
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.46);
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.55rem;
  margin-top: 0.15rem;
}


/* ==========================================================================
   RESPONSIVE DESIGN & GRID LAYOUTS FOR ALL VIEWPORTS (DESKTOP / TABLET / MOBILE)
   ========================================================================= */

/* --- Desktop Layout Definitions (>= 1240px) --- */
@media (min-width: 1240px) {
  body {
    overflow: hidden !important;
    height: 100vh !important;
    width: 100vw !important;
  }
  #slides-wrapper {
    position: fixed !important;
    inset: 0 !important;
    overflow: hidden !important;
  }
  #slides-container {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }
  .slide {
    height: 100dvh !important;
    min-height: 100dvh !important;
    overflow: hidden !important;
    box-sizing: border-box;
  }
  .product-grid-layout {
    display: grid !important;
    grid-template-columns: 290px minmax(380px, 420px) 480px !important;
    gap: 1.8rem;
    align-items: stretch;
    height: 100%;
    width: 100%;
    max-width: 1320px;
    margin: auto;
    justify-content: center;
  }
  .tech-grid-layout {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .support-container-layout {
    display: grid !important;
    grid-template-rows: auto 1fr auto !important;
    gap: 0.9rem;
    height: 100%;
  }
  .support-dashboard-layout {
    display: grid !important;
    grid-template-columns: 320px 1fr 320px !important;
  }
  .support-pillars-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .support-reassurance-rail {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
  }
  .faq-grid-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .footer-grid-layout {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
  }
  .table-scroll {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  .compare-layout {
    height: 100% !important;
  }
  .compare-table th {
    padding: 6px 10px !important;
    box-sizing: border-box;
  }
  .compare-table th:first-child {
    width: 290px !important;
    font-size: 10px !important;
    color: rgba(255,255,255,0.35) !important;
    letter-spacing: 0.1em !important;
  }
  .compare-table th:not(:first-child) {
    width: 260px !important;
  }
}

/* --- Responsive Scrolling & Stacking Layouts (<= 1239px) --- */
@media (max-width: 1239px) {
  body {
    overflow: auto !important;
    height: auto !important;
    min-height: 100dvh !important;
    width: 100vw !important;
  }
  #slides-wrapper {
    position: static !important;
    overflow: visible !important;
    height: auto !important;
  }
  #slides-container {
    transform: none !important;
    transition: none !important;
    height: auto !important;
    display: block !important;
  }
  .slide {
    height: auto !important;
    min-height: 100dvh !important;
    overflow: visible !important;
    padding-top: var(--space-10) !important;
    padding-bottom: 120px !important;
    padding-left: var(--space-4) !important;
    padding-right: var(--space-4) !important;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  /* Force all elements with entrance animations to be visible by default on mobile/tablet */
  .animate-in, .animate-in-left, .animate-in-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Product Slides Stacking and Column Reordering */
  .product-grid-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 650px !important;
    margin: 0 auto !important;
    height: auto !important;
  }
  .col-hero {
    order: 1 !important;
    width: 100% !important;
    height: auto !important;
  }
  .col-beneficios {
    order: 2 !important;
    width: 100% !important;
    height: auto !important;
  }
  .col-diferenciais {
    order: 3 !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Adjustments to inner columns spacing on stack */
  .col-diferenciais, .col-hero, .col-beneficios {
    padding: 0 !important;
    gap: 1rem !important;
  }
  .col-diferenciais > .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    aspect-ratio: auto !important;
  }
  .col-diferenciais .diferencial-card {
    aspect-ratio: 1.1 / 1 !important;
    height: auto !important;
  }

  /* Tech Grid & Lineup */
  .tech-grid-layout {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .tech-robots-lineup {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  .tech-robots-lineup > div {
    flex: 1 1 200px !important;
    max-width: 250px !important;
  }

  /* Support Grid */
  .support-container-layout {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 2rem !important;
  }
  .support-dashboard-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    width: 100% !important;
  }
  .support-dashboard-layout > div {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }
  .support-pillars-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .support-reassurance-rail {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.6rem !important;
  }

  /* FAQ Grid */
  .faq-grid-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* Encerramento */
  .footer-grid-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.2rem !important;
    width: 100% !important;
    max-width: 650px !important;
    margin: 0 auto !important;
  }
  .footer-grid-layout > div {
    width: 100% !important;
  }
  .footer-grid-layout .col-left {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-grid-layout .col-left .animate-in {
    align-self: center !important;
  }
  .footer-grid-layout .col-left .value-card {
    max-width: 100% !important;
  }
  .footer-grid-layout .col-left .animate-in-right {
    align-items: center !important;
  }
  .compare-layout {
    height: auto !important;
    padding: var(--space-8) 0 !important;
  }
}

/* --- Mobile Breakpoints & UI Optimizations (<= 768px) --- */
@media (max-width: 768px) {
  /* Navigation */
  #side-nav {
    display: none !important;
  }
  #nav-hint {
    display: none !important;
  }

  /* Table Scrolling */
  .table-scroll {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    padding: 0.5rem 0.25rem !important;
  }
  .compare-table {
    min-width: 750px !important;
  }

  /* Grids Stack */
  .tech-grid-layout {
    grid-template-columns: 1fr !important;
  }
  .support-pillars-grid {
    grid-template-columns: 1fr !important;
  }
  .support-reassurance-rail {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .faq-grid-layout {
    grid-template-columns: 1fr !important;
  }

  /* Warranty Seals Adaptations */
  .col-beneficios > img {
    position: static !important;
    margin: 1.2rem auto 0 !important;
    height: 70px !important;
    max-height: 70px !important;
    width: auto !important;
    display: block !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    transform: none !important;
  }

  /* Spacings & Font clamps */
  .slide {
    padding-top: var(--space-8) !important;
    padding-bottom: 80px !important;
  }
  h2, h3 {
    text-align: center !important;
  }
}

/* --- Ultra-compact Mobile Viewports (<= 320px) --- */
@media (max-width: 320px) {
  .slide {
    padding-left: var(--space-2) !important;
    padding-right: var(--space-2) !important;
    padding-top: var(--space-4) !important;
    padding-bottom: 60px !important;
  }
  
  /* Text adjustments to prevent wrapping errors */
  body {
    font-size: 11px !important;
  }
  h1.cover-tagline, .section-title-tech, .section-title {
    font-size: 1.4rem !important;
  }
  .lead, .lead-tech {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  
  /* Grid & Flex Spacings */
  .product-grid-layout, .tech-grid-layout, .support-container-layout, .footer-grid-layout {
    gap: 1rem !important;
  }
  
  /* Support Reassurance Rail */
  .support-reassurance-rail {
    grid-template-columns: 1fr !important;
    gap: 0.4rem !important;
  }
  .support-reassurance-rail div {
    padding: 0.35rem !important;
  }
  
  /* Warranty seals downscale */
  .col-beneficios > img {
    height: 55px !important;
    max-height: 55px !important;
  }
  
  /* Institucional card tweaks */
  .inst-mvv-strip {
    gap: 0.5rem !important;
  }
  .inst-mvv-strip > div {
    min-width: 100% !important;
    padding: var(--space-3) !important;
  }
}

