/* ==========================================================================
   PATRONOTECH - DESIGN SYSTEM EXECUTIVO & PSICOLOGIA COMERCIAL (v6)
   Diretrizes Impeccable + Landing Page Design:
   - Tipografia de Autoridade: Manrope (Google Fonts)
   - Arquitetura de Cores: Deep Executive Obsidian (#07060E, #0E0C1B, #151327)
   - Acentos Oficiais da Marca: Laranja Vibrante (#F97316 / #EA580C) e Violeta (#6D28D9)
   - Física de Micro-interações: cubic-bezier(0.32, 0.72, 0, 1)
   - Alinhamento Matemático Rigoroso em Container max-w-7xl (1280px)
   ========================================================================== */

:root {
  /* Camadas de Superfície Obsidian */
  --bg-deep: #07060E;
  --bg-surface-1: #0E0C1B;
  --bg-surface-2: #151327;
  --bg-surface-3: #1E1B38;
  --bg-surface-hover: #262247;

  /* Bordas de Precisão */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-active: rgba(249, 115, 22, 0.5);

  /* Acentos Oficiais */
  --accent-orange: #F97316;
  --accent-orange-hover: #EA580C;
  --accent-orange-glow: rgba(249, 115, 22, 0.35);
  --accent-orange-glow-strong: rgba(249, 115, 22, 0.75);

  --accent-purple: #6D28D9;
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;
  --accent-blue: #3B82F6;

  /* Tipografia */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;

  /* Física de Movimento */
  --spring-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --trans-fast: 200ms var(--spring-ease);
  --trans-normal: 400ms var(--spring-ease);
  --trans-smooth: 650ms var(--spring-ease);
}

/* Reset e Configurações Globais */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Tipografia Editorial e Psicológica */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
  letter-spacing: -0.03em;
}

p,
li,
label {
  text-wrap: pretty;
  line-height: 1.65;
}

/* Header Floating Pill Glass (B7 Fluid Island Nav) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  transition: all 700ms var(--spring-ease);
}

.site-header .header-inner {
  max-width: 1260px;
  margin: 12px auto 0;
  padding: 0 32px;
  background-color: rgba(14, 12, 27, 0.78);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  box-sizing: border-box;
  transition: all 700ms var(--spring-ease);
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.04);
}

.site-header.scrolled .header-inner {
  max-width: 100%;
  margin-top: 0;
  border-radius: 0;
  padding: 0 24px;
  background-color: rgba(7, 6, 14, 0.96);
  border-color: var(--border-medium);
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: 0 10px 35px -5px rgba(0, 0, 0, 0.8);
}

/* Logotipo Oficial da PatronoTech (Destaque e Proporção Correta) */
.site-logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all var(--trans-normal);
}

@media (min-width: 640px) {
  .site-logo {
    height: 44px;
    max-width: 220px;
  }
}

.logo-glow {
  filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.4));
}

.logo-glow:hover {
  filter: drop-shadow(0 0 18px rgba(249, 115, 22, 0.7));
  transform: translateY(-1px);
}

/* Links do Menu Executivo */
.nav-link {
  position: relative;
  white-space: nowrap;
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  transition: color var(--trans-fast);
  padding: 4px 0;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-orange);
  border-radius: 9999px;
  transition: width 250ms var(--spring-ease);
}

.nav-link:hover::after {
  width: 100%;
}

/* Iluminação de Estúdio & Gradients Subtis */
.hero-glow-ambient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1300px;
  height: 700px;
  background: radial-gradient(circle at 50% 15%, rgba(109, 40, 217, 0.22) 0%, rgba(249, 115, 22, 0.12) 40%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* Superfícies dos Cards com Acabamento Executivo (ui-ux-pro-max) */
.surface-card {
  background-color: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 25px 50px -15px rgba(0, 0, 0, 0.7);
  transition: border-color var(--trans-normal), transform var(--trans-normal), box-shadow var(--trans-normal);
}

.surface-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 30px 60px -15px rgba(0, 0, 0, 0.85), 0 0 25px -5px rgba(249, 115, 22, 0.15);
}

.surface-card-inner {
  background-color: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
}

/* Botões de Ação com Micro-interações e Alvos Ergonômicos (44px min) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 12px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 8px 24px -4px rgba(249, 115, 22, 0.45);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), background var(--trans-fast);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.btn-cta:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 3px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FB923C 0%, #EA580C 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 12px 30px -4px rgba(249, 115, 22, 0.65);
  color: #FFFFFF;
}

.btn-cta:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all var(--trans-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 3px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-medium);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: scale(0.98);
}

/* Tagline Reveal (Princípio de Gestão) */
.tagline-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.28;
}

.tagline-word {
  display: inline-block;
  opacity: 0.22;
  color: #FFFFFF;
  transition: opacity 650ms var(--spring-ease), transform 650ms var(--spring-ease);
  transform: translateY(3px);
}

.tagline-word.active {
  opacity: 1;
  transform: translateY(0);
}

/* Simulador Interativo de Setores */
.segment-tab {
  transition: all var(--trans-normal);
  cursor: pointer;
}

.segment-tab.active {
  background-color: var(--bg-surface-2);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
}

/* Indicador de Digitação Fluida da IA */
.typing-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes typingBounce {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  40% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Micro-animações de Entrada */
.fade-up-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms var(--spring-ease), transform 750ms var(--spring-ease);
}

.fade-up-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Sliders de Simulação */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #23203C;
  border-radius: 9999px;
}

input[type=range]::-webkit-slider-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--accent-orange);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
  box-shadow: 0 0 16px var(--accent-orange-glow-strong);
  transition: transform 0.2s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: #23203C;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* ==========================================================================
   ESPECIALISTAS: MÍDIA DINÂMICA, VÍDEO & CINEMAGRAPH INTERATIVO (v8)
   ========================================================================== */

.agent-media-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 2px solid rgba(249, 115, 22, 0.7);
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: transparent;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.95), 0 0 25px rgba(249, 115, 22, 0.15);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.agent-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.agent-video-element.is-playing {
  opacity: 1;
}

.agent-avatar-cinemagraph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s var(--spring-ease), filter 0.6s ease;
  z-index: 1;
  display: block;
}

.agent-avatar-cinemagraph.is-speaking {
  animation: cinemagraphBreathing 3.2s infinite ease-in-out;
  filter: brightness(1.06) contrast(1.03);
}

@keyframes cinemagraphBreathing {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045) translateY(-3px);
  }
}

/* Equalizer de Voz / Soundwave Animado */
.soundwave-container {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.soundwave-bar {
  width: 3px;
  background-color: var(--accent-orange);
  border-radius: 9999px;
  height: 4px;
  transition: height 0.2s ease;
}

.soundwave-active .soundwave-bar {
  animation: soundwaveBounce 0.7s infinite ease-in-out alternate;
}

.soundwave-active .bar-1 {
  animation-delay: 0.1s;
  height: 14px;
}

.soundwave-active .bar-2 {
  animation-delay: 0.28s;
  height: 18px;
}

.soundwave-active .bar-3 {
  animation-delay: 0.14s;
  height: 11px;
}

.soundwave-active .bar-4 {
  animation-delay: 0.38s;
  height: 16px;
}

.soundwave-active .bar-5 {
  animation-delay: 0.22s;
  height: 9px;
}

@keyframes soundwaveBounce {
  0% {
    height: 3px;
  }

  100% {
    height: 16px;
  }
}

/* Hero Console SysZap v8 — 100% Fluido, Sem Cortes e Sem Overflow (Zero Layout Shift) */
.hero-console {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  height: 770px;
  background-color: #0E0C1B;
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(109, 40, 217, 0.15);
  transition: border-color var(--trans-normal);
}

@media (max-width: 1024px) {
  .hero-console {
    height: 710px;
  }
}

@media (max-width: 640px) {
  .hero-console {
    height: 590px;
  }
}

/* Ocultar barra de rolagem nas abas de setores com rolagem horizontal suave */
#setores {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#setores::-webkit-scrollbar {
  display: none;
}

/* Área de Conversa estilo WhatsApp/Telegram: Tudo Visível, Sem Barra de Rolagem */
.hero-chat-scroll {
  flex: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
  padding-bottom: 2rem;
}

.hero-chat-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.hero-console:hover {
  border-color: var(--border-medium);
}

.hero-console-header {
  background-color: #141126;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.cockpit-tab-btn {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #94A3B8;
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--trans-fast);
  white-space: nowrap;
  cursor: pointer;
}

.cockpit-tab-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.cockpit-tab-btn.active {
  color: #FFFFFF;
  background: #18152B;
  border-color: var(--accent-orange);
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.25);
}

/* Malha Técnica com Gradiente Radial no Hero */
.hero-technical-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 25%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 25%, #000 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Hero Heading Gradient Text (B5 Dark Theme) */
.hero-gradient-heading {
  background: linear-gradient(to right, #FFFFFF 30%, #9B9B9B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.22em;
  overflow: visible;
}

.hero-gradient-heading .text-highlight {
  -webkit-text-fill-color: var(--accent-orange);
}

/* Proteção absoluta contra corte inferior de letras com cauda (g, p, y, q, j) */
#hero-typewriter-text {
  display: inline-block;
  color: #F97316;
  -webkit-text-fill-color: #F97316;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  padding-bottom: 0.2em;
  line-height: inherit;
  vertical-align: baseline;
}

/* Focus Visible for secondary buttons */
.btn-secondary:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

/* FAQ Accordion */
.faq-item {
  cursor: pointer;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color var(--trans-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary:hover {
  color: var(--accent-orange);
}

.faq-item summary .faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 400ms var(--spring-ease);
  color: var(--text-tertiary);
}

.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  animation: faqSlideDown 400ms var(--spring-ease);
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seção Como Funciona — Steps com Fluxo de Energia Dinâmico */
.steps-connector {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), #10B981, var(--accent-orange));
  background-size: 200% 100%;
  animation: dataStream 4s linear infinite;
  z-index: 0;
  opacity: 0.6;
}

@keyframes dataStream {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (max-width: 767px) {
  .steps-connector {
    display: none;
  }
}

/* Chat ao Vivo no Hero Console: Typing Indicator */
.typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background-color: #19162F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  opacity: 0.4;
  animation: typingBounce 1.2s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* Mensagens do Chat com Transição de Revelação */
.chat-bubble-enter {
  animation: chatBubbleIn 350ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Animação de Fluxo Interativo entre Agentes */
.agent-flow-node {
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.agent-flow-node.active-agent {
  border-color: var(--accent-orange) !important;
  background-color: rgba(249, 115, 22, 0.08) !important;
  box-shadow: 0 0 25px -4px rgba(249, 115, 22, 0.35);
  transform: translateY(-3px);
}

.agent-flow-track {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.agent-flow-particle {
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), #10B981, transparent);
  border-radius: 9999px;
  filter: drop-shadow(0 0 6px var(--accent-orange));
  animation: flowParticleMove 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes flowParticleMove {
  0% {
    left: -10%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 110%;
    opacity: 0;
  }
}

/* Efeito Máquina de Escrever (Typewriter) na Headline do Hero */
.typewriter-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--accent-orange);
  font-weight: 300;
  animation: typewriterBlink 0.9s infinite ease-in-out;
  user-select: none;
}

@keyframes typewriterBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Abas de Visualização no Mockup do SysZap */
.syszap-tab-btn {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
  cursor: pointer;
}

.syszap-tab-btn:hover {
  color: #FFFFFF;
  border-color: rgba(249, 115, 22, 0.4);
}

.syszap-tab-btn.active {
  background: rgba(249, 115, 22, 0.15);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

/* Box de Execução Dinâmica no Hero Console */
.system-action-box {
  animation: fadeUpEnter 0.5s var(--spring-ease) forwards;
}

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

/* Lazy load image placeholder */
img[loading="lazy"] {
  background-color: var(--bg-surface-2);
}

/* Cards Dinâmicos do Processo de Implantação */
.step-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 20px 40px -15px rgba(249, 115, 22, 0.15);
}

.step-card.is-focused-step {
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 16px 36px -10px rgba(249, 115, 22, 0.22);
  transform: translateY(-4px);
}

.step-card .step-num {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.step-card.is-focused-step .step-num {
  transform: scale(1.08);
}