/* ==========================================================================
   JV LIGHT ILUMINAÇÕES - REFINAMENTO DO PALCO VERTICAL ÚNICO (ETAPA 1.5)
   ========================================================================== */

/* ------------------------------------------------------------------------
   1. CONTAINER RESPONSIVO COM RESPIRO PREMIUM
   ------------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ------------------------------------------------------------------------
   2. PALCO VERTICAL ÚNICO (CONTINUOUS STAGE ATMOSPHERE)
   ------------------------------------------------------------------------ */
.stage-viewport {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-black);
  overflow-x: hidden;
}

/* Fundo cênico contínuo sem cortes ou divisões horizontais */
.stage-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-stage-effects);
  pointer-events: none;
  background: 
    radial-gradient(ellipse 100% 35% at 50% 0%, rgba(5, 5, 5, 1) 0%, transparent 100%),
    radial-gradient(circle 900px at 80% 12%, rgba(0, 229, 255, 0.06), transparent 65%),
    radial-gradient(circle 1100px at 15% 32%, rgba(55, 125, 255, 0.05), transparent 70%),
    radial-gradient(circle 1200px at 85% 58%, rgba(139, 92, 246, 0.06), transparent 70%),
    radial-gradient(circle 1000px at 20% 82%, rgba(0, 229, 255, 0.05), transparent 70%),
    radial-gradient(ellipse 120% 50% at 50% 100%, rgba(0, 229, 255, 0.08), transparent 70%),
    linear-gradient(180deg, 
      #030304 0%, 
      #070709 15%, 
      #0B0B0E 35%, 
      #09090C 55%, 
      #0E0E12 75%, 
      #050506 100%
    );
}

/* ------------------------------------------------------------------------
   3. ELEMENTOS CÊNICOS CONTINUOS (BEAMS, ORBITAS & FUMAÇA)
   ------------------------------------------------------------------------ */
.stage-orbit-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-stage-effects);
  pointer-events: none;
}

/* SVG Órbitas Cênicas Contínuas inspiradas na Logo */
.orbit-svg-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.orbit-svg-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 1.5;
}

.orbit-svg-path-cyan {
  stroke: rgba(0, 229, 255, 0.14);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.orbit-svg-path-violet {
  stroke: rgba(139, 92, 246, 0.12);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.25));
}

/* Feixes de Luz Cênicos Verticais e Diagonais que Atravessam Seções */
.stage-beam {
  position: absolute;
  pointer-events: none;
  z-index: var(--z-stage-effects);
  border-radius: var(--radius-full);
}

.stage-beam-1 {
  top: 5%;
  right: 12%;
  width: 2px;
  height: 900px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.22) 0%, rgba(55, 125, 255, 0.05) 60%, transparent 100%);
  transform: rotate(-18deg);
  filter: blur(1px);
}

.stage-beam-2 {
  top: 35%;
  left: 8%;
  width: 2px;
  height: 1100px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.18) 0%, rgba(0, 229, 255, 0.03) 70%, transparent 100%);
  transform: rotate(15deg);
  filter: blur(1px);
}

.stage-beam-3 {
  top: 68%;
  right: 15%;
  width: 2px;
  height: 800px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.20) 0%, rgba(240, 0, 184, 0.04) 60%, transparent 100%);
  transform: rotate(-12deg);
  filter: blur(1px);
}

/* Camada de Fumaça Volumétrica Sutil */
.smoke-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(ellipse 65% 25% at 25% 18%, rgba(0, 229, 255, 0.025), transparent 70%),
    radial-gradient(ellipse 75% 30% at 75% 45%, rgba(139, 92, 246, 0.025), transparent 70%),
    radial-gradient(ellipse 60% 25% at 30% 78%, rgba(0, 229, 255, 0.03), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

/* ------------------------------------------------------------------------
   4b. SISTEMA TIPOGRÁFICO UNIFICADO — HIERARQUIA HARMONIOSA DO SITE
   Todas as seções seguem a mesma escala para consistência visual.
   Breakpoints: Desktop (1440px) → Tablet (1024px) → Mobile (768px) → XS (480px)
   ------------------------------------------------------------------------ */

/* === ESTRUTURA BASE DE SEÇÕES (mantida aqui por proximidade) === */
.site-section {
  position: relative;
  z-index: var(--z-base);
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.site-section + .site-section {
  border-top: none;
}

/* === BLOCO DE HEADING (BADGE + TÍTULO + SUBTÍTULO) === */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

/* Variante alinhada à esquerda (Seções 03, 04, 07, 08) */
.section-heading--left {
  align-items: flex-start;
  text-align: left;
}

.section-heading--left .section-title {
  text-align: left;
}

.section-heading--left .section-subtitle,
.section-heading--left .section-description {
  text-align: left;
  margin: 0;
}

/* Badge técnica de identificação da seção */
.section-heading .tech-badge {
  margin-bottom: 0;
}

/* === TÍTULO PRINCIPAL DE SEÇÃO (h2) === */
/* Escala de referência:
   Desktop:  clamp(2.2rem, 2rem + 2.5vw, 3.6rem)  → ~2.2rem – 3.6rem
   Tablet:   ~2.4rem
   Mobile:   ~2.2rem
*/
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 2rem + 2.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Linha 1 do título (menor, funciona como "olho" ou subtítulo do h2) */
.section-title .title-line-1 {
  display: block;
  font-size: 0.72em; /* 72% do tamanho principal → ~2.6rem em desktop */
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Linha 2 do título (destaque principal, maior) */
.section-title .title-line-2 {
  display: block;
  font-size: 1em;
  font-weight: 700;
}

/* Subtítulo / Descrição da seção */
.section-subtitle,
.section-description {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.9rem + 0.35vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(247, 247, 248, 0.72);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

/* === RESPONSIVIDADE TIPOGRAFIA GLOBAL === */
@media (max-width: 1024px) {
  .section-title {
    font-size: clamp(2rem, 1.8rem + 2vw, 3rem);
  }
}

@media (max-width: 768px) {
  .section-heading {
    gap: 0.65rem;
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem);
    letter-spacing: -0.01em;
  }
  .section-subtitle,
  .section-description {
    font-size: clamp(0.9rem, 4vw, 1rem);
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .section-title .title-line-1 {
    font-size: 0.7em;
  }
}

/* ------------------------------------------------------------------------
   5. SEÇÃO 02 - POR TRÁS DO ESPETÁCULO (DIREÇÃO DE ARTE PREMIUM)
   ------------------------------------------------------------------------ */
.stage-section-behind {
  position: relative;
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  overflow: visible; /* Permite sangria cênica atmosférica para a próxima seção */
  background-color: var(--color-black);
}

/* IMAGEM DE BACKGROUND CINEMATOGRÁFICA DA SEÇÃO 02 */
.behind-background-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.behind-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: contrast(1.1) brightness(0.9);
  transform: scale(1.02);
  transition: transform var(--transition-slow);
}

/* PLANOS VISUAIS 3D DA SEÇÃO 02 */
.section2-light-arcs-svg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
  mix-blend-mode: screen;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec2-arc-path {
  transform-origin: center center;
}

.sec2-arc-1 {
  animation: sec2ArcFloat1 34s ease-in-out infinite alternate;
}

.sec2-arc-2 {
  animation: sec2ArcFloat2 40s ease-in-out infinite alternate;
}

@keyframes sec2ArcFloat1 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.50; }
  50% { transform: translate3d(14px, -12px, 0) rotate(1.2deg); opacity: 0.70; }
  100% { transform: translate3d(-10px, 8px, 0) rotate(-1deg); opacity: 0.40; }
}

@keyframes sec2ArcFloat2 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.42; }
  50% { transform: translate3d(-12px, 16px, 0) rotate(-1.5deg); opacity: 0.60; }
  100% { transform: translate3d(10px, -10px, 0) rotate(1deg); opacity: 0.35; }
}

.section2-smoke-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section2-edge-protection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(
    180deg, 
    #050508 0%, 
    rgba(5, 5, 8, 0.85) 10%, 
    rgba(5, 5, 8, 0.15) 28%, 
    rgba(5, 5, 8, 0.0) 45%, 
    rgba(5, 5, 8, 0.0) 55%, 
    rgba(5, 5, 8, 0.15) 72%, 
    rgba(5, 5, 8, 0.85) 90%, 
    #050508 100%
  );
}

/* Sangria Atmosférica Estendida para a Próxima Seção (Continuidade do Palco Único) */
.behind-stage-bleed-overlay {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.75) 45%, rgba(7, 7, 10, 0.98) 100%),
              radial-gradient(ellipse 85% 50% at 50% 100%, rgba(0, 229, 255, 0.05), transparent 80%);
  filter: blur(20px);
  pointer-events: none;
}

/* CONTAINER E LAYOUT EM 2 COLUNAS */
.behind-spectacle-container {
  position: relative;
  z-index: var(--z-content);
}

.behind-spectacle-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: var(--space-xl);
  align-items: center;
}

.behind-layer-interface {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.behind-layer-media {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Responsividade de Layout */
@media (max-width: 1024px) {
  .behind-spectacle-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .stage-section-behind {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
}

/* ------------------------------------------------------------------------
   6. SEÇÃO 03 - A JORNADA DO ESPETÁCULO (METODOLOGIA & ENGENHARIA CÊNICA)
   ------------------------------------------------------------------------ */
.stage-section-journey {
  position: relative;
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  overflow: hidden; /* Fundo contido de transição contínua com preto sólido */
  background-color: #050508;
}

/* CAMADA 01: ATMOSFERA E PLANOS VISUAIS 3D DA SEÇÃO 03 */
.journey-layer-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-stage-effects);
  overflow: hidden;
}

/* PLANO 1 (DISTANTE): ARCOS LUMINOSOS SVG COM ANIMAÇÃO LENTA & PARALLAX */
.section3-light-arcs-svg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
  mix-blend-mode: screen;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec3-arc-path {
  transform-origin: center center;
}

.sec3-arc-1 {
  animation: sec3ArcFloat1 36s ease-in-out infinite alternate;
}

.sec3-arc-2 {
  animation: sec3ArcFloat2 44s ease-in-out infinite alternate;
}

.sec3-arc-3 {
  animation: sec3ArcFloat3 50s ease-in-out infinite alternate;
}

@keyframes sec3ArcFloat1 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.55; }
  50% { transform: translate3d(12px, -15px, 0) rotate(1.5deg); opacity: 0.75; }
  100% { transform: translate3d(-10px, 10px, 0) rotate(-1deg); opacity: 0.45; }
}

@keyframes sec3ArcFloat2 {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.45; }
  50% { transform: translate3d(-15px, 18px, 0) rotate(-2deg); opacity: 0.65; }
  100% { transform: translate3d(8px, -12px, 0) rotate(1deg); opacity: 0.40; }
}

@keyframes sec3ArcFloat3 {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.35; }
  50% { transform: translate3d(10px, -8px, 0) scale(1.02); opacity: 0.50; }
  100% { transform: translate3d(-12px, 14px, 0) scale(0.98); opacity: 0.28; }
}

/* PLANO 2 & 3: CANVAS 2D DE FUMAÇA PROCEDURAL E PARTICULAS LUMINOSAS */
.section3-smoke-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* GRADIENTES VERTICAIS DE PROTEÇÃO DE BORDAS (PRETO SÓLIDO NAS EXTREMIDADES) */
.section3-edge-protection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    180deg, 
    #050508 0%, 
    rgba(5, 5, 8, 0.92) 12%, 
    rgba(5, 5, 8, 0.3) 28%, 
    rgba(5, 5, 8, 0.0) 45%, 
    rgba(5, 5, 8, 0.0) 55%, 
    rgba(5, 5, 8, 0.3) 72%, 
    rgba(5, 5, 8, 0.92) 88%, 
    #050508 100%
  );
}

.journey-volumetric-smoke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 70% 40% at 30% 20%, rgba(0, 229, 255, 0.02), transparent 75%),
    radial-gradient(ellipse 70% 40% at 70% 70%, rgba(139, 92, 246, 0.02), transparent 75%);
  filter: blur(45px);
  will-change: transform;
  animation: smoke-drift 28s ease-in-out infinite alternate;
}

.journey-stage-bleed-overlay {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.75) 45%, rgba(7, 7, 10, 0.98) 100%),
              radial-gradient(ellipse 85% 50% at 50% 100%, rgba(139, 92, 246, 0.04), transparent 80%);
  filter: blur(20px);
  pointer-events: none;
}

/* ------------------------------------------------------------------------
   LAYOUT INTEGRADO DA SEÇÃO 03 (SPLIT 2 COLUNAS: TEXTO + CARROSSEL)
   ------------------------------------------------------------------------ */

.services-section-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: 0; /* Permite avanço livre e suave do carrossel até a borda direita */
  position: relative;
  z-index: var(--z-content);
}

.services-section-layout {
  display: grid;
  grid-template-columns: clamp(300px, 26vw, 380px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center; /* Alinhamento central vertical perfeito entre o bloco textual e os cards */
  width: 100%;
}

/* COLUNA ESQUERDA FIXA: TIPOGRAFIA 100% HARMONIZADA COM A SEÇÃO 01 */
.services-text-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 5;
  padding-right: var(--space-xs);
}

.services-text-column .tech-badge {
  margin-bottom: var(--space-xs);
}

.services-col-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 2rem + 2.5vw, 3.6rem); /* Harmonizado com o sistema global */
  font-weight: var(--font-weight-bold);
  line-height: 1.12;
  text-transform: uppercase;
  margin-top: var(--space-2xs);
  margin-bottom: var(--space-md);
  text-align: left;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.services-col-title .title-line-1 {
  display: block;
  font-size: 0.75em;
  font-weight: var(--font-weight-semibold);
  color: #FFFFFF;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.services-col-title .title-line-2 {
  display: block;
  background: var(--gradient-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.35));
  line-height: 1.08;
}

.services-col-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: var(--space-xs);
  border-left: 2px solid rgba(0, 229, 255, 0.35);
}

.services-col-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.25rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.services-col-desc {
  font-family: var(--font-body);
  font-size: var(--text-base); /* MESMO TAMANHO DO PARÁGRAFO DA SEÇÃO 01 */
  color: var(--color-text-muted);
  line-height: var(--lh-body);
}

/* COLUNA DIREITA: CARROSSEL SLIDER DE CONTINUIDADE LATERAL (MIN-WIDTH: 0 DESTRAVA O SCROLL NO GRID) */
.services-carousel-column {
  width: 100%;
  min-width: 0; /* FUNDAMENTAL: Permite que o container do carrossel no CSS Grid ative o scroll horizontal */
  position: relative;
  overflow: visible;
}

.services-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: var(--space-xs) 0 var(--space-sm) 0;
  z-index: 6;
}

/* BOTÕES DE NAVEGAÇÃO FLUTUANTES (SETAS ESQUERDA & DIREITA) */
.carousel-nav-btn {
  position: absolute;
  top: calc(50% - 34px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 10, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: #00E5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

/* Seta esquerda posicionada na transição entre a coluna textual e os cards */
.carousel-btn-prev {
  left: -24px;
}

/* Seta direita próxima da borda direita */
.carousel-btn-next {
  right: 20px;
}

.carousel-nav-btn:hover:not(:disabled) {
  background: rgba(0, 229, 255, 0.25);
  border-color: #00E5FF;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.55);
  transform: translateY(-2px) scale(1.08);
}

.carousel-nav-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.95);
}

.carousel-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
}

/* TRACK CONTAINER & VIEWPORT SLIDER COM SUPORTE A ARRASTE DO MOUSE E TOUCH */
.services-carousel-track-container {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.services-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 1.25rem 10px 1.8rem 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  /* Máscara de gradiente suave na lateral direita para acabamento premium */
  mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
}

.services-carousel-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.services-carousel-track::-webkit-scrollbar {
  display: none;
}

/* CARD INDIVIDUAL DO CARROSSEL DE SERVIÇOS */
.service-carousel-card {
  flex: 0 0 clamp(300px, 21.5vw, 380px);
  height: clamp(480px, 60vh, 550px);
  scroll-snap-align: start;
  cursor: pointer;
  outline: none;
}

.service-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  background: rgba(12, 12, 18, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Reflexo metálico superior sutil */
.service-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.45) 40%, rgba(255, 255, 255, 0.7) 50%, rgba(139, 92, 246, 0.45) 60%, transparent 100%);
  z-index: 4;
}

/* HOVER EFFECT E CARD ATIVO */
.service-carousel-card:hover .service-card-inner,
.service-carousel-card:focus-visible .service-card-inner,
.service-carousel-card.active .service-card-inner {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 28px rgba(0, 229, 255, 0.2);
}

/* ÁREA DA IMAGEM (~60% DA ALTURA DO CARD) */
.service-card-media {
  position: relative;
  width: 100%;
  height: 60%;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: contrast(1.08) brightness(0.92);
}

.service-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 35%, rgba(12, 12, 18, 0.85) 80%, rgba(12, 12, 18, 1) 100%);
  transition: opacity 0.4s ease;
}

.service-carousel-card:hover .service-card-img {
  transform: scale(1.06);
  filter: contrast(1.12) brightness(1);
}

/* CONTEÚDO INFERIOR DO CARD (ÍCONE, TÍTULO, DESCRIÇÃO) */
.service-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.2rem 1.4rem 1.4rem 1.4rem;
  flex: 1;
  z-index: 2;
}

.service-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.22);
  color: #00E5FF;
  margin-bottom: 0.8rem;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.service-carousel-card:hover .service-icon-badge {
  background: rgba(0, 229, 255, 0.2);
  border-color: #00E5FF;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
  transform: scale(1.06);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.service-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(247, 247, 248, 0.74);
  line-height: 1.55;
}

/* PAGINAÇÃO COM PILLS INFERIORES */
.services-carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.2rem;
}

.pagination-pill {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, box-shadow 0.35s ease;
}

.pagination-pill.active {
  width: 46px;
  background-color: #00E5FF;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

/* RESPONSIVIDADE DE COMPOSIÇÃO DE CARROSSEL */
@media (max-width: 1100px) {
  .services-section-layout {
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
  }

  .service-carousel-card {
    flex: 0 0 clamp(270px, 26vw, 320px);
    height: 480px;
  }
}

@media (max-width: 900px) {
  .services-section-container {
    padding-right: clamp(1rem, 4vw, 4.5rem);
  }

  .services-section-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .service-carousel-card {
    flex: 0 0 clamp(280px, 45vw, 340px);
    height: 500px;
  }

  .carousel-btn-prev { left: -10px; }
  .carousel-btn-next { right: 10px; }
}

@media (max-width: 600px) {
  .service-carousel-card {
    flex: 0 0 85%;
    height: 460px;
  }
  .carousel-nav-btn {
    display: none;
  }
}

/* SUPORTE COMPLETO A PREFERS-REDUCED-MOTION */
@media (prefers-reduced-motion: reduce) {
  .service-card-inner,
  .service-card-img,
  .service-icon-badge,
  .pagination-pill {
    animation: none !important;
    transition: none !important;
  }
}

/* ===========================================================================
   SEÇÃO 04 — AUTORIDADE EM CENA (ATMOSFERA DE FUNDO CÊNICO)
   =========================================================================== */

/* ===========================================================================
   4. SEÇÃO DE AUTORIDADE EM CENA (#parceiros)
   =========================================================================== */
.stage-section-authority {
  position: relative;
  background: #050505;
  padding: 6.5rem 0 7rem 0;
  overflow: hidden;
  min-height: 85vh;
}

/* CAMADA 01: ATMOSFERA E EFEITOS (ARCOS SVG) */
.authority-layer-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.section4-light-arcs-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.85;
}

.section4-smoke-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.section4-edge-protection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5,5,5,0.85) 0%, transparent 20%, transparent 80%, rgba(5,5,5,0.95) 100%);
  pointer-events: none;
  z-index: 3;
}

.authority-section-container {
  position: relative;
  z-index: 10;
}

/* TIPOGRAFIA E ALINHAMENTO À ESQUERDA DA SEÇÃO 04 */
.section4-custom-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 2rem + 2.5vw, 3.6rem); /* Harmonizado com o sistema global */
  font-weight: 700;
  line-height: 1.12;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.text-accent-cyan {
  background: var(--gradient-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.35));
  display: inline-block;
  font-weight: 700;
}

.section4-support-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.15rem);
  color: rgba(247, 247, 248, 0.75);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0.75rem;
  margin-bottom: 0;
  text-align: left !important;
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
}

/* SLIDER HORIZONTAL DE ARTISTAS (5 VISÍVEIS NO DESKTOP) */
.authority-gallery-wrapper {
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.authority-slider-track-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1.5rem 0.25rem;
  cursor: grab;
}

.authority-slider-track-container:active {
  cursor: grabbing;
}

.authority-slider-track-container::-webkit-scrollbar {
  display: none;
}

.authority-slider-track {
  display: flex;
  gap: 1.25rem;
  width: 100%;
}

/* CARDS DOS ARTISTAS (PROPORÇÃO EXPANDIDA, PÔSTER PREMIUM IMPONENTES) */
.artist-card {
  flex: 0 0 calc((100% - (3 * 1.5rem)) / 4);
  min-width: 270px;
  aspect-ratio: 3 / 4.25;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #050508;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 400ms var(--ease-out-smooth), border-color 400ms var(--ease-out-smooth), box-shadow 400ms var(--ease-out-smooth), opacity 400ms var(--ease-out-smooth), filter 400ms var(--ease-out-smooth);
  user-select: none;
  scroll-snap-align: start;
}

.artist-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.artist-card-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ESTADO INICIAL: PRETO E BRANCO, ELEGANTE E INTEGRADO COM O FUNDO */
.artist-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) brightness(0.72) contrast(1.1);
  transition: filter 420ms var(--ease-out-smooth), transform 450ms var(--ease-out-smooth);
}

.artist-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 35%, rgba(5, 5, 5, 0.5) 65%, rgba(5, 5, 5, 0.92) 100%);
  pointer-events: none;
  z-index: 2;
}

.artist-card-content {
  position: relative;
  z-index: 5;
  padding: 1.25rem 1.2rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 500ms var(--ease-out-smooth);
}

.artist-card-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #00E5FF;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.artist-card-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.55rem);
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.artist-card-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* HOVER E FOCO: EFEITO DE REVELAÇÃO EM COR E GLOW SUAVE E REFINADO */
.artist-card:hover,
.artist-card:focus-visible,
.artist-card.active {
  border: 2px solid #00E5FF !important;
  transform: translateY(-8px) scale(1.025) !important;
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.22), 0 16px 36px rgba(0, 0, 0, 0.85) !important;
  z-index: 10;
  opacity: 1 !important;
}

.artist-card:hover .artist-card-img,
.artist-card:focus-visible .artist-card-img,
.artist-card.active .artist-card-img {
  filter: grayscale(0%) brightness(1.08) contrast(1.12);
  transform: scale(1.05);
}

.artist-card:hover .artist-card-name,
.artist-card:focus-visible .artist-card-name,
.artist-card.active .artist-card-name {
  color: #FFFFFF;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}

/* DEMAIS CARDS REDUZEM SUAVEMENTE O DESTAQUE NO HOVER */
.authority-slider-track:hover .artist-card:not(:hover) {
  opacity: 0.65;
  filter: grayscale(100%) brightness(0.6);
}

/* SETAS DE NAVEGAÇÃO FLUTUANTES DISCRETAS */
.authority-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(8, 8, 12, 0.92);
  border: 1.5px solid rgba(0, 229, 255, 0.35);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 35;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 229, 255, 0.15);
  transition: all 300ms var(--ease-out-smooth);
}

.authority-nav-btn:hover:not(:disabled) {
  background: #00E5FF;
  border-color: #00E5FF;
  color: #050505;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
  transform: translateY(-50%) scale(1.08);
}

.authority-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.1);
}

.authority-nav-prev { left: 0px; }
.authority-nav-next { right: 0px; }

/* BOTÃO "VER TODOS OS NOMES" ALINHADO NO CANTO INFERIOR DIREITO */
.authority-action-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1.75rem;
}

.btn-all-names {
  background: none;
  border: none;
  padding: 0.6rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  border-bottom: 2px solid #00E5FF;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.35);
  transition: all 350ms var(--ease-out-smooth);
}

.btn-all-names:hover {
  color: #00E5FF;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.7);
}

.btn-all-names-icon {
  transition: transform 350ms var(--ease-out-smooth);
}

.btn-all-names:hover .btn-all-names-icon {
  transform: translateX(8px);
}

/* MODAL / DRAWER PREMIUM DE TODOS OS ARTISTAS */
.artists-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.artists-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.artists-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
}

.artists-modal-dialog {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1200px;
  max-height: 85vh;
  background: #0A0A0E;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 229, 255, 0.15);
  scrollbar-width: thin;
  scrollbar-color: #00E5FF #0A0A0E;
}

/* Custom Scrollbar WebKit & Firefox para o Modal de Artistas */
.artists-modal-dialog::-webkit-scrollbar {
  width: 6px;
}

.artists-modal-dialog::-webkit-scrollbar-track {
  background: #0A0A0E;
  border-radius: 9999px;
}

.artists-modal-dialog::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00E5FF 0%, #8B5CF6 100%);
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.45);
}

.artists-modal-dialog::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #33EBFF 0%, #A78BFA 100%);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.75);
}

.artists-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
}

.artists-modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
}

.artists-modal-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease;
}

.artists-modal-close:hover {
  background: #00E5FF;
  border-color: #00E5FF;
  color: #050505;
  transform: rotate(90deg);
}

.artists-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.modal-artist-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #101014;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.modal-artist-card:hover {
  transform: translateY(-5px);
  border-color: #00E5FF;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 229, 255, 0.3);
}

.modal-card-media {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.modal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%) brightness(1);
  transition: transform 500ms ease;
}

.modal-artist-card:hover .modal-card-media img {
  transform: scale(1.06);
}

.modal-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.95) 100%);
}

.modal-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 1rem;
  z-index: 5;
}

/* ===========================================================================
   SEÇÃO 05 — EXPERIÊNCIAS QUE ILUMINAMOS (#experiencias)
   ATMOSFERA DE FUNDO CÊNICO 3D, ARCOS ORBITAIS SVG & GLOW DA ARENA
   =========================================================================== */

.stage-section-experiences {
  position: relative;
  background: #050505;
  padding: clamp(5.5rem, 4.5rem + 4vw, 9rem) 0;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* CAMADA 01: ATMOSFERA E EFEITOS DE FUNDO */
.experiences-layer-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* BRILHO VOLUMÉTRICO CÊNICO ATRÁS DA ESTRUTURA (BACKDROP SPOTLIGHT GLOW) */
.experiences-backdrop-spotlight-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(ellipse at 50% 40%, rgba(0, 229, 255, 0.18) 0%, rgba(139, 92, 246, 0.12) 40%, rgba(5, 5, 5, 0) 75%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 1;
}

/* TRANSIÇÕES DE TOPO E BASE */
.experiences-top-transition-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.6) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.experiences-bottom-transition-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.6) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* ARCOS LUMINOSOS ORBITAIS SVG DA SEÇÃO 05 */
.section5-light-arcs-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.75;
  z-index: 2;
}

/* PISO CÊNICO EM PERSPECTIVA 3D (STAGE GRID FLOOR) */
.experiences-stage-grid-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: 
    perspective(350px) rotateX(65deg) repeating-linear-gradient(0deg, rgba(0, 229, 255, 0.08) 0px, rgba(0, 229, 255, 0.08) 1px, transparent 1px, transparent 18px),
    perspective(350px) rotateX(65deg) repeating-linear-gradient(90deg, rgba(0, 229, 255, 0.08) 0px, rgba(0, 229, 255, 0.08) 1px, transparent 1px, transparent 36px);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
  pointer-events: none;
  z-index: 2;
}

/* SANGRIA ATMOSFÉRICA LATERAL E PROTEÇÃO DE BORDAS */
.experiences-edge-protection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5,5,5,0.7) 0%, transparent 15%, transparent 85%, rgba(5,5,5,0.7) 100%);
  pointer-events: none;
  z-index: 4;
}

.experiences-stage-bleed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 8% 25%, rgba(0, 229, 255, 0.09) 0%, transparent 40%),
    radial-gradient(circle at 92% 75%, rgba(139, 92, 246, 0.09) 0%, transparent 40%);
  pointer-events: none;
  z-index: 4;
}

.experiences-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* ===========================================================================
   ESTRUTURA CÊNICA DE RIGGING & TOTENS LED
   =========================================================================== */

.stage-show-structure {
  position: relative;
  width: 100%;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0.5rem 0.5rem 0.5rem;
  background: radial-gradient(ellipse at 50% 60%, rgba(12, 16, 28, 0.6) 0%, rgba(5, 5, 5, 0.95) 80%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8), 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* TRELIÇA SUPERIOR HORIZONTAL (BOX TRUSS) */
.stage-top-truss-beam {
  position: relative;
  width: 100%;
  height: 24px;
  margin-bottom: 1.25rem;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0px, rgba(255, 255, 255, 0.08) 2px, transparent 2px, transparent 10px),
              linear-gradient(180deg, #151822 0%, #090b10 100%);
  border-top: 1.5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.5px solid rgba(0, 229, 255, 0.4);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.truss-fixture-nodes {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding: 0 4%;
}

.fixture-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00E5FF;
  box-shadow: 0 0 12px #00E5FF, 0 0 24px #00E5FF;
}

.fixture-node:nth-child(even) {
  background: #8B5CF6;
  box-shadow: 0 0 12px #8B5CF6, 0 0 24px #8B5CF6;
}

/* GRID DOS 5 TOTENS VERTICAIS DE LED */
.led-towers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  align-items: flex-end;
  width: 100%;
}

/* CADA ITEM/TOTEM DE VÍDEO */
.led-tower-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #06070a;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  transition: transform 400ms var(--ease-out-smooth), border-color 400ms ease, box-shadow 400ms ease;
  cursor: pointer;
  outline: none;
}

.led-tower-item.tower-side {
  aspect-ratio: 9 / 17.5;
}

.led-tower-item.tower-center-hero {
  aspect-ratio: 9 / 19.5;
  transform: translateY(-16px);
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.2), inset 0 0 20px rgba(0, 229, 255, 0.1);
  z-index: 5;
}

/* HOVER EFFECT NOS TOTENS DE LED */
.led-tower-item:hover,
.led-tower-item:focus-visible {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 229, 255, 0.7);
  box-shadow: 0 16px 40px rgba(0, 229, 255, 0.3);
  z-index: 8;
}

.led-tower-item.tower-center-hero:hover,
.led-tower-item.tower-center-hero:focus-visible {
  transform: translateY(-24px) scale(1.03);
  border-color: #00E5FF;
  box-shadow: 0 22px 50px rgba(0, 229, 255, 0.45);
}

/* TRELIÇA LATERAL VERTICAL DO TOTEM (BOX TRUSS TEXTURE) */
.truss-side-border {
  position: absolute;
  top: 0;
  width: 6px;
  height: 100%;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0px, rgba(255, 255, 255, 0.15) 2px, transparent 2px, transparent 8px), #11141d;
  z-index: 6;
  pointer-events: none;
}

.truss-side-left { left: 0; border-right: 1px solid rgba(255, 255, 255, 0.08); }
.truss-side-right { right: 0; border-left: 1px solid rgba(255, 255, 255, 0.08); }

/* CARD DE VÍDEO E HEADER */
.led-video-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.led-card-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.85rem 0.75rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.95) 0%, rgba(4, 5, 8, 0.6) 75%, transparent 100%);
  pointer-events: none;
}

.led-panel-code {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 0.6rem + 0.2vw, 0.75rem);
  color: var(--color-cyan-glow);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.led-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.95rem);
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

/* WRAPPER E IMAGEM DE POSTER DO TOTEM */
.led-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
}

.led-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms var(--ease-out-smooth), filter 400ms ease;
  filter: brightness(0.9) contrast(1.08);
}

.led-tower-item:hover .led-poster-img {
  transform: scale(1.07);
  filter: brightness(1.1) contrast(1.12);
}

.led-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 600ms var(--ease-out-smooth), filter 400ms ease;
  filter: brightness(0.95) contrast(1.05);
}

.led-tower-item:hover .led-video-player {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

/* MESH E SCANLINES DE LED DE PALCO */
.led-screen-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.14) 0px, rgba(0, 0, 0, 0.14) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
  z-index: 4;
  transition: opacity 400ms ease;
}

/* REMOVER/SUAVIZAR A MALHA E ELEMENTOS QUE POSSAM ATRAPALHAR O VÍDEO QUANDO TOCANDO */
.led-tower-item.is-playing .led-screen-mesh {
  opacity: 0;
}

.led-tower-item.is-playing .led-card-header {
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.75) 0%, transparent 100%);
}

.led-tower-item.is-playing .led-card-overlay {
  background: linear-gradient(0deg, rgba(4, 5, 8, 0.75) 0%, transparent 100%);
}

/* OVERLAY DO BOTÃO DE REPRODUÇÃO */
.led-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0.75rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: linear-gradient(0deg, rgba(4, 5, 8, 0.95) 0%, rgba(4, 5, 8, 0.6) 70%, transparent 100%);
  pointer-events: none;
  transition: background 400ms ease;
}

.led-play-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 20px;
  color: #00E5FF;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: fit-content;
  backdrop-filter: blur(8px);
  transition: background 300ms ease, border-color 300ms ease, color 300ms ease;
  pointer-events: auto;
}

.hero-play-badge {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.6);
  color: #FFFFFF;
}

.led-tower-item:hover .led-play-badge {
  background: #00E5FF;
  border-color: #00E5FF;
  color: #050505;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}

.led-spec-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

/* BASE DO PALCO - PISO REFLETIVO */
.stage-floor-base {
  position: relative;
  width: 100%;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 2px solid rgba(0, 229, 255, 0.3);
}

.stage-led-strip-lights {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
}

.led-spot-dot {
  width: 12px;
  height: 4px;
  border-radius: 2px;
}

.cyan-spot {
  background: #00E5FF;
  box-shadow: 0 0 10px #00E5FF, 0 0 20px #00E5FF;
}

.violet-spot {
  background: #8B5CF6;
  box-shadow: 0 0 10px #8B5CF6, 0 0 20px #8B5CF6;
}

/* BARRA DE REDES SOCIAIS DA JV LIGHT NA BASE DO PALCO */
.stage-social-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 1.5rem;
  padding: 0.9rem 1.75rem;
  background: rgba(8, 10, 16, 0.92);
  border: 1.5px solid rgba(0, 229, 255, 0.3);
  border-radius: 40px;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.18);
  pointer-events: auto;
  position: relative;
  z-index: 15;
}

.social-bar-title {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.72rem + 0.25vw, 0.9rem);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.social-bar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  pointer-events: auto;
}

.instagram-link {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.22) 0%, rgba(253, 29, 29, 0.22) 50%, rgba(245, 96, 64, 0.22) 100%);
  border: 1.5px solid rgba(225, 48, 108, 0.55);
  color: #FF5A79;
}

.instagram-link:hover {
  background: linear-gradient(135deg, #E1306C 0%, #FD1D1D 50%, #F56040 100%);
  border-color: #FD1D1D;
  color: #FFFFFF;
  box-shadow: 0 0 22px rgba(225, 48, 108, 0.7);
  transform: translateY(-2px);
}

.youtube-link {
  background: rgba(255, 0, 0, 0.18);
  border: 1.5px solid rgba(255, 0, 0, 0.55);
  color: #FF4D4D;
}

.youtube-link:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #FFFFFF;
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.7);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .stage-social-bar {
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
  }
}

/* BOTÃO CTA DE AÇÃO DA SEÇÃO 05 */
.experiences-action-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.75rem;
  width: 100%;
  position: relative;
  z-index: 12;
}

.btn-experiences-cta {
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.15rem);
  padding: 1.1rem 2.8rem;
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.35);
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.btn-experiences-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.6);
}

/* RESPONSIVIDADE DOS TOTENS LED DA SEÇÃO 05 */
@media (max-width: 1200px) {
  .led-towers-grid {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }
  .led-tower-item {
    scroll-snap-align: center;
  }
}

@media (max-width: 768px) {
  .led-towers-grid {
    grid-template-columns: repeat(5, clamp(200px, 60vw, 250px));
    gap: 1rem;
  }
  .led-tower-item.tower-center-hero {
    transform: translateY(0);
  }
  .led-tower-item.tower-center-hero:hover {
    transform: translateY(-8px);
  }
}

/* RESPONSIVIDADE COMPLETA DA SEÇÃO 04 */
@media (max-width: 1366px) {
  .artist-card {
    flex: 0 0 calc((100% - (2 * 1.25rem)) / 3.2);
    min-width: 260px;
  }
  .artists-modal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .artist-card {
    flex: 0 0 calc((100% - (1.25rem)) / 2.3);
    min-width: 250px;
  }
  .artists-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .authority-nav-btn {
    display: none;
  }
  .authority-slider-track-container {
    scroll-snap-type: x mandatory;
  }
  .artist-card {
    flex: 0 0 clamp(240px, 78vw, 300px);
    scroll-snap-align: center;
  }
  .artists-modal-dialog {
    padding: 1.5rem;
    width: 95%;
  }
  .artists-modal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .artist-card {
    flex: 0 0 84vw;
  }
}

/* ===========================================================================
   SEÇÃO 06 — TECNOLOGIA QUE TRANSFORMA PALCOS (#tecnologia)
   EXPOSIÇÃO CÊNICA DE EQUIPAMENTOS SOBRE PEDESTAIS LUMINOSOS & LINHA CONECTORA
   =========================================================================== */

.stage-section-tech {
  position: relative;
  background: #050505;
  padding: clamp(5.5rem, 4.5rem + 4vw, 9rem) 0;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* CAMADA 01: ATMOSFERA DE FUNDO CÊNICO HARMONIZADO */
.tech-layer-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* CANVAS DE FUMAÇA PROCEDURAL DA SEÇÃO 06 */
.section6-smoke-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.65;
}

.tech-top-transition-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.6) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.tech-bottom-transition-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.6) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.section6-tech-arcs-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 2;
}

/* MALHA DE CIRCUITOS CIBERNÉTICOS & NÓS DE MATRIZ */
.cyber-circuit-matrix-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.75;
}

.cyber-node-blink {
  animation: cyberNodeFlicker 3s infinite ease-in-out;
}

.cyber-node-blink.delay-1 { animation-delay: 0.7s; }
.cyber-node-blink.delay-2 { animation-delay: 1.4s; }
.cyber-node-blink.delay-3 { animation-delay: 2.1s; }

@keyframes cyberNodeFlicker {
  0%, 100% { opacity: 0.3; transform: scale(1); filter: drop-shadow(0 0 2px currentColor); }
  50% { opacity: 1; transform: scale(1.6); filter: drop-shadow(0 0 10px currentColor); }
}

.tech-edge-protection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5,5,5,0.7) 0%, transparent 15%, transparent 85%, rgba(5,5,5,0.7) 100%);
  pointer-events: none;
  z-index: 4;
}

.tech-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* CAMADA 02: PALCO DE EXPOSIÇÃO TÉCNICA */
.tech-exhibition-stage {
  position: relative;
  width: 100%;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LINHA TÉCNICA CONTINUA DE SINCRONIZAÇÃO DA JV LIGHT (FLUXO ESQUERDA -> DIREITA) */
.tech-connecting-line {
  position: absolute;
  top: 70%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 229, 255, 0.6) 20%, rgba(139, 92, 246, 0.6) 80%, rgba(0, 229, 255, 0.1) 100%);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.connecting-line-pulse {
  position: absolute;
  top: -1px;
  left: 0;
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00E5FF, #FFFFFF, #00E5FF, transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px #00E5FF, 0 0 40px #00E5FF;
  animation: linePulseLeftToRight 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes linePulseLeftToRight {
  0% { left: -10%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 105%; opacity: 0; }
}

.connecting-nodes {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
}

.node-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00E5FF;
  box-shadow: 0 0 12px #00E5FF, 0 0 24px #00E5FF;
  transform: translateY(-4px);
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

/* ANIMAÇÃO SEQUENCIAL CONTINUA DA ESQUERDA PARA A DIREITA NOS NÓS */
.node-1 { animation: nodePulseSeq 5s infinite 0.2s; }
.node-2 { animation: nodePulseSeq 5s infinite 1.1s; }
.node-3 { animation: nodePulseSeq 5s infinite 2.0s; }
.node-4 { animation: nodePulseSeq 5s infinite 2.9s; }
.node-5 { animation: nodePulseSeq 5s infinite 3.8s; }

@keyframes nodePulseSeq {
  0%, 100% { transform: translateY(-4px) scale(1); }
  15% { transform: translateY(-7px) scale(1.5); box-shadow: 0 0 25px #00E5FF, 0 0 45px #00E5FF; }
  30% { transform: translateY(-4px) scale(1); }
}

.node-dot:nth-child(even) {
  background: #8B5CF6;
  box-shadow: 0 0 12px #8B5CF6, 0 0 24px #8B5CF6;
}

/* GRID DOS 5 MÓDULOS DE EQUIPAMENTOS SOBRE PEDESTAIS */
.tech-modules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  align-items: flex-end;
  width: 100%;
  position: relative;
  z-index: 6;
  padding-bottom: 2rem;
}

/* CADA MÓDULO TECNOLÓGICO */
.tech-module-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  outline: none;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 400ms var(--ease-out-smooth);
}

/* ANIMAÇÕES DE RESPIRAÇÃO ASSÍNCRONA DOS MÓDULOS (ORGANISMO VIVO) */
.tech-module-item[data-tech="moving-head"] .equipment-img {
  animation: floatBreathing 8s infinite ease-in-out;
}

.tech-module-item[data-tech="grandma3"] .equipment-img {
  animation: floatBreathing 6s infinite ease-in-out 1s;
}

.tech-module-item[data-tech="paineis-led"] .equipment-img {
  animation: floatBreathing 10s infinite ease-in-out 2s;
}

.tech-module-item[data-tech="visualizacao-3d"] .equipment-img {
  animation: floatBreathing 7s infinite ease-in-out 0.5s;
}

.tech-module-item[data-tech="operacao-tecnica"] .equipment-img {
  animation: floatBreathing 9s infinite ease-in-out 1.5s;
}

@keyframes floatBreathing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* WRAPPER E IMAGENS DOS EQUIPAMENTOS (ESCALA IMPONENTE +35%) */
.module-equipment-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 240px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* GLOW AMBIENTE INDIVIDUAL RGB POR MÓDULO DA SEÇÃO 06 */
.equipment-glow-ambient {
  position: absolute;
  width: 85%;
  height: 85%;
  filter: blur(28px);
  opacity: 0.65;
  transition: opacity 400ms ease, transform 400ms ease, filter 400ms ease;
  pointer-events: none;
}

/* 01. MOVING HEAD: CYAN NEON CÊNICO */
.tech-module-item[data-tech="moving-head"] .equipment-glow-ambient {
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.45) 0%, rgba(0, 229, 255, 0.12) 50%, transparent 75%);
}

/* 02. GRANDMA3: ÂMBAR / AMARELO DE CONSOLE */
.tech-module-item[data-tech="grandma3"] .equipment-glow-ambient {
  background: radial-gradient(circle at 50% 50%, rgba(255, 180, 0, 0.45) 0%, rgba(255, 140, 0, 0.12) 50%, transparent 75%);
}

/* 03. PAINÉIS LED: VIOLETA / MAGENTA RGB */
.tech-module-item[data-tech="paineis-led"] .equipment-glow-ambient {
  background: radial-gradient(circle at 50% 50%, rgba(225, 48, 108, 0.45) 0%, rgba(139, 92, 246, 0.15) 50%, transparent 75%);
}

/* 04. VISUALIZAÇÃO 3D: AZUL ELÉTRICO CAD */
.tech-module-item[data-tech="visualizacao-3d"] .equipment-glow-ambient {
  background: radial-gradient(circle at 50% 50%, rgba(55, 125, 255, 0.48) 0%, rgba(0, 229, 255, 0.12) 50%, transparent 75%);
}

/* 05. OPERAÇÃO TÉCNICA: VERMELHO NEON ARENA */
.tech-module-item[data-tech="operacao-tecnica"] .equipment-glow-ambient {
  background: radial-gradient(circle at 50% 50%, rgba(255, 50, 60, 0.45) 0%, rgba(255, 0, 100, 0.12) 50%, transparent 75%);
}

.equipment-img {
  width: auto;
  max-width: 95%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.85));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 400ms ease;
}

/* HERO MOVING HEAD (MAIOR DIMENSÃO HERO +40%) */
.tech-module-item.module-hero .module-equipment-wrapper {
  min-height: 290px;
}

.tech-module-item.module-hero .equipment-img {
  max-height: 280px;
  filter: drop-shadow(0 25px 45px rgba(0, 229, 255, 0.4));
}

/* PEDESTAL LUMINOSO 3D (EXPANDIDO 180PX) */
.module-pedestal {
  position: relative;
  width: 175px;
  height: 36px;
  margin-top: -20px;
  margin-bottom: 1.25rem;
}

.tech-module-item.module-hero .module-pedestal {
  width: 210px;
  height: 42px;
}

.pedestal-ring-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(0, 229, 255, 0.55);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5), inset 0 0 12px rgba(0, 229, 255, 0.25);
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 229, 255, 0.18) 0%, rgba(12, 16, 28, 0.85) 80%);
  transform: rotateX(70deg);
  transition: border-color 400ms ease, box-shadow 400ms ease, background 400ms ease;
}

/* ANÉIS DE PEDESTAL REFINADOS POR MÓDULO RGB */
.tech-module-item[data-tech="grandma3"] .pedestal-ring-outer {
  border-color: rgba(255, 180, 0, 0.55);
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.45), inset 0 0 12px rgba(255, 180, 0, 0.2);
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 180, 0, 0.15) 0%, rgba(12, 16, 28, 0.85) 80%);
}

.tech-module-item[data-tech="paineis-led"] .pedestal-ring-outer {
  border-color: rgba(225, 48, 108, 0.55);
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.45), inset 0 0 12px rgba(225, 48, 108, 0.2);
  background: radial-gradient(ellipse at 50% 50%, rgba(225, 48, 108, 0.15) 0%, rgba(12, 16, 28, 0.85) 80%);
}

.tech-module-item[data-tech="visualizacao-3d"] .pedestal-ring-outer {
  border-color: rgba(55, 125, 255, 0.55);
  box-shadow: 0 0 20px rgba(55, 125, 255, 0.45), inset 0 0 12px rgba(55, 125, 255, 0.2);
  background: radial-gradient(ellipse at 50% 50%, rgba(55, 125, 255, 0.15) 0%, rgba(12, 16, 28, 0.85) 80%);
}

.tech-module-item[data-tech="operacao-tecnica"] .pedestal-ring-outer {
  border-color: rgba(255, 50, 60, 0.55);
  box-shadow: 0 0 20px rgba(255, 50, 60, 0.45), inset 0 0 12px rgba(255, 50, 60, 0.2);
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 50, 60, 0.15) 0%, rgba(12, 16, 28, 0.85) 80%);
}

.pedestal-ring-inner {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 1.2px solid rgba(139, 92, 246, 0.6);
  transform: rotateX(70deg);
}

.pedestal-surface-reflection {
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 70%;
  height: 10px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.4) 0%, transparent 100%);
  filter: blur(4px);
}

/* METADADOS E LEGENDA COM BADGES TECNOLÓGICOS */
.module-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.module-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-cyan-glow);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.module-title {
  font-family: var(--font-heading);
  font-size: clamp(0.88rem, 0.8rem + 0.35vw, 1.08rem);
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.module-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  color: rgba(0, 229, 255, 0.9);
  font-weight: 500;
  padding: 0.2rem 0.75rem;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.25);
  transition: color 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

/* MICROINTERAÇÕES AO PASSAR O MOUSE / FOCO NO MÓDULO */
.tech-module-item:hover,
.tech-module-item:focus-visible {
  transform: translateY(-10px);
}

.tech-module-item:hover .equipment-img,
.tech-module-item:focus-visible .equipment-img {
  filter: drop-shadow(0 30px 50px rgba(0, 229, 255, 0.65));
}

.tech-module-item:hover .equipment-glow-ambient,
.tech-module-item:focus-visible .equipment-glow-ambient {
  opacity: 1;
}

.tech-module-item:hover .pedestal-ring-outer,
.tech-module-item:focus-visible .pedestal-ring-outer {
  border-color: #00E5FF;
  box-shadow: 0 0 30px #00E5FF, inset 0 0 18px #00E5FF;
}

.tech-module-item:hover .module-subtitle,
.tech-module-item:focus-visible .module-subtitle {
  color: #FFFFFF;
  border-color: #00E5FF;
  background: rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* CAMADA 03: MENSAGEM FINAL DE SINCRONIZAÇÃO DA INTELIGÊNCIA (DESIGN FIEL À REFERÊNCIA) */
.tech-sync-banner {
  position: relative;
  width: 100%;
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

.sync-banner-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sync-banner-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
}

.sync-banner-badge {
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.65rem + 0.25vw, 0.85rem);
  color: #00E5FF;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
  text-transform: uppercase;
}

.sync-banner-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1rem + 1.1vw, 1.95rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
}

.sync-line-white {
  color: #FFFFFF;
  letter-spacing: 0.12em;
}

.sync-line-cyan {
  color: #00E5FF;
  letter-spacing: 0.14em;
  text-shadow: 0 0 25px rgba(0, 229, 255, 0.7);
}

/* RESPONSIVIDADE DA SEÇÃO 06 */
@media (max-width: 1200px) {
  .tech-modules-grid {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
  }
  .tech-module-item {
    scroll-snap-align: center;
  }
  .tech-connecting-line {
    min-width: 900px;
  }
}

@media (max-width: 768px) {
  .tech-modules-grid {
    grid-template-columns: repeat(5, clamp(210px, 62vw, 250px));
    gap: 1rem;
  }
  .tech-sync-banner {
    padding: 1.25rem 1rem;
    width: 95%;
  }
}

/* ==========================================================================
   SEÇÃO 07 — DO PRIMEIRO CLIQUE AO ÚLTIMO APLAUSO (BANNER FULL-WIDTH STRIP)
   ========================================================================== */
.full-width-banner-strip {
  position: relative;
  width: 100%;
  padding: 3.5rem 0;
  background: #06070B;
  overflow: hidden;
  border-top: 1px solid rgba(0, 229, 255, 0.18);
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 229, 255, 0.08);
}

.process-banner-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.process-banner-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(15, 23, 42, 0.6) 0%, rgba(5, 5, 7, 0.95) 100%);
  backdrop-filter: blur(12px);
}

.process-banner-laser-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.5) 20%, rgba(139, 92, 246, 0.5) 80%, transparent 100%);
}

.process-banner-laser-line.line-top { top: 0; }
.process-banner-laser-line.line-bottom { bottom: 0; }

.process-banner-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* COLUNA ESQUERDA: HEADING */
.process-heading-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.process-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.75rem); /* Tamanho compacto ideal para banner horizontal */
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  margin-bottom: 0.65rem;
}

.process-title-white {
  color: #FFFFFF;
  display: inline-block;
  white-space: nowrap;
}

.process-title .title-line-2 {
  white-space: nowrap;
}

.process-description {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.88rem);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  max-width: 340px;
  margin: 0;
}

/* COLUNA DIREITA: TIMELINE DE 5 ETAPAS */
.process-timeline-col {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* LINHA CONECTORA DAS ETAPAS */
.process-timeline-track {
  position: absolute;
  top: 26px;
  left: 30px;
  right: 30px;
  height: 2px;
  pointer-events: none;
  z-index: 1;
}

.process-track-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.2) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(0, 229, 255, 0.2) 100%);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}

.process-track-pulse {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00E5FF, #FFFFFF, transparent);
  border-radius: 2px;
  box-shadow: 0 0 15px #00E5FF;
  animation: processTrackPulse 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes processTrackPulse {
  0% { left: 0%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 85%; opacity: 0; }
}

/* GRID DOS 5 NÓS DE ETAPA */
.process-steps-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* CADA NÓ DE ETAPA */
.process-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  outline: none;
  transition: transform 300ms ease;
}

.step-icon-circle {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.9) 0%, rgba(6, 7, 11, 0.95) 100%);
  border: 1.8px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.25), inset 0 0 10px rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
  margin-bottom: 0.85rem;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease, color 300ms ease, background 300ms ease;
}

.step-node-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00E5FF;
  box-shadow: 0 0 8px #00E5FF;
  opacity: 0.6;
}

.process-step-node:last-child .step-node-dot {
  display: none;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.step-name {
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 0.72rem + 0.25vw, 0.9rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  transition: color 300ms ease, text-shadow 300ms ease;
}

.step-text {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.65rem + 0.18vw, 0.78rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
  margin: 0;
  max-width: 140px;
  transition: color 300ms ease;
}

/* INTERAÇÃO HOVER E FOCO NOS NÓS */
.process-step-node:hover,
.process-step-node:focus-visible {
  transform: translateY(-5px);
}

.process-step-node:hover .step-icon-circle,
.process-step-node:focus-visible .step-icon-circle {
  border-color: #00E5FF;
  color: #FFFFFF;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.3) 0%, rgba(139, 92, 246, 0.4) 100%);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6), 0 0 45px rgba(139, 92, 246, 0.3);
  transform: scale(1.12);
}

.process-step-node:hover .step-name,
.process-step-node:focus-visible .step-name {
  color: #00E5FF;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

.process-step-node:hover .step-text,
.process-step-node:focus-visible .step-text {
  color: rgba(255, 255, 255, 0.95);
}

/* RESPONSIVIDADE DO BANNER STRIP DA SEÇÃO 07 */
@media (max-width: 1100px) {
  .process-banner-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-heading-col {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .full-width-banner-strip {
    padding: 2.5rem 0;
  }
  .process-steps-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    gap: 1.5rem;
  }
  .process-step-node {
    flex: 0 0 160px;
    scroll-snap-align: center;
  }
}

/* ===========================================================================
   8. SEÇÃO 08: SOBRE NÓS / O ESPETÁCULO ACONTECE AQUI (SLIDER PREMIUM)
   =========================================================================== */
.stage-section-about {
  position: relative;
  padding: clamp(4rem, 6vw, 7rem) 0;
  background: radial-gradient(circle at 50% 30%, rgba(14, 18, 30, 0.85) 0%, rgba(5, 5, 5, 0.98) 80%);
  overflow: hidden;
}

/* CAMADA DE ATMOSFERA DA SEÇÃO 08 (FUMAÇA PROCEDURAL + ARCOS DE LUZ + PARALLAX 3D) */
.about-layer-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.section8-light-arcs-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.1s ease-out;
}

.section8-smoke-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.section8-edge-protection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5,5,5,0.85) 0%, transparent 15%, transparent 85%, rgba(5,5,5,0.95) 100%);
  pointer-events: none;
  z-index: 3;
}

.about-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.about-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

/* SETAS FLUTUANTES NAS LATERAIS */
.about-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 14, 24, 0.8);
  border: 1.5px solid rgba(0, 229, 255, 0.35);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
  transition: all 300ms var(--ease-out-smooth);
}

.about-nav-btn:hover {
  background: rgba(0, 229, 255, 0.25);
  border-color: var(--color-cyan);
  color: #FFFFFF;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.about-nav-prev { left: -24px; }
.about-nav-next { right: -24px; }

@media (max-width: 1100px) {
  .about-nav-prev { left: 8px; }
  .about-nav-next { right: 8px; }
}

/* TRACK E MOLDURA UNIFICADA DOS SLIDES */
.about-slides-track {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.about-slide-item {
  display: none;
  position: relative;
  width: 100%;
  opacity: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.2), 0 20px 50px rgba(0, 0, 0, 0.85);
  background: #050508;
  transition: opacity 500ms ease;
}

.about-slide-item.active {
  display: block;
  opacity: 1;
}

/* FUNDO ORIGINAL DA FOTO ADAPTADA DO CONTAINER COMPLETO */
.about-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% 10%;
  filter: brightness(0.94) contrast(1.12);
  transition: transform 800ms var(--ease-out-smooth);
}

.about-slide-item:hover .about-bg-img {
  transform: scale(1.02);
}

.about-bg-overlay-mask {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, 
      #050508 0%, 
      #050508 20%, 
      rgba(5, 5, 8, 0.65) 36%, 
      rgba(5, 5, 8, 0.05) 55%, 
      rgba(5, 5, 8, 0.25) 80%, 
      rgba(5, 5, 8, 0.55) 100%
    ),
    linear-gradient(180deg, 
      rgba(5, 5, 8, 0.5) 0%, 
      transparent 25%, 
      transparent 75%, 
      rgba(5, 5, 8, 0.8) 100%
    );
  pointer-events: none;
}

.about-slide-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  width: 100%;
  min-height: 590px;
  height: 590px;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .about-slide-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTAINER 1 (PAINEL ESQUERDO DA SEÇÃO 08) */
.about-card-left {
  position: relative;
  z-index: 2;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
}

/* CIRCUITO TÉCNICO VETORIAL NO CANTO INFERIOR ESQUERDO */
.about-circuit-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 380px;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

.about-circuit-svg {
  width: 100%;
  height: 100%;
}

.about-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  justify-content: space-between;
}

.about-card-header-badge {
  display: flex;
  align-items: center;
}

.about-hero-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 2rem + 2.5vw, 3.6rem); /* Harmonizado com o sistema global */
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.about-description-main {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  font-weight: 500;
}

.about-description-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.text-highlight-cyan {
  color: var(--color-cyan);
  font-weight: 600;
}

.text-highlight-gradient {
  color: var(--color-violet);
  font-weight: 600;
}

.about-action-link {
  margin-top: 1rem;
}

.btn-history-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 300ms ease;
  width: fit-content;
}

.history-line-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: rgba(0, 229, 255, 0.8);
}

.history-line {
  width: 70px;
  height: 1.5px;
  background: rgba(0, 229, 255, 0.6);
  transition: width 300ms ease, background 300ms ease;
}

.btn-history-link:hover {
  color: var(--color-cyan);
}

.btn-history-link:hover .history-line {
  width: 95px;
  background: var(--color-cyan);
  box-shadow: 0 0 10px var(--color-cyan);
}

.btn-history-link svg {
  transition: transform 300ms ease, color 300ms ease;
}

.btn-history-link:hover svg {
  transform: translateX(4px);
  color: var(--color-cyan);
}

/* CONTAINER 2 (PAINEL DIREITO) */
.about-card-right {
  position: relative;
  z-index: 2;
  background: transparent;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  justify-content: space-between;
}

.about-right-media-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.about-media-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.about-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out-smooth), filter 300ms ease;
  filter: brightness(0.9);
}

.about-media-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.media-top {
  height: 200px;
}

.about-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.media-sub {
  height: 130px;
}

/* 4 PILARES NO CARD DIREITO INFERIOR */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.about-pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.5rem 0.25rem;
}

.pillar-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
}

.about-pillar-item:hover .pillar-icon-box {
  background: rgba(0, 229, 255, 0.25);
  border-color: var(--color-cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
  font-weight: 700;
  color: var(--color-cyan);
  letter-spacing: 0.06em;
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.65rem + 0.15vw, 0.75rem);
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* BARRA INFERIOR DECORATIVA COM LINHAS LASER E ANIMAÇÃO RGB PISCA-PISCA */
.about-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  width: 100%;
}

.about-tech-line-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.5rem;
}

.tech-line-side {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.tech-line-left {
  justify-content: flex-end;
}

.tech-line-right {
  justify-content: flex-start;
}

.line-glow-track {
  width: 100%;
  height: 1.5px;
  display: block;
}

.tech-line-left .line-glow-track {
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.25) 50%, rgba(0, 229, 255, 0.85) 100%);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.tech-line-right .line-glow-track {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.85) 0%, rgba(240, 0, 184, 0.25) 50%, transparent 100%);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.line-node-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-cyan {
  background: #00E5FF;
  box-shadow: 0 0 8px #00E5FF, 0 0 16px #00E5FF;
}

.dot-magenta {
  background: #F000B8;
  box-shadow: 0 0 8px #F000B8, 0 0 16px #F000B8;
}

/* TAGS DECORATIVAS RGB COM ANIMAÇÃO PISCA-PISCA (ELEGANTES & ALINHADAS) */
.about-decorative-tags {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 0.62rem + 0.15vw, 0.75rem);
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1;
  padding: 0 0.25rem;
}

.rgb-tag {
  transition: color 400ms ease, text-shadow 400ms ease;
  animation: rgbTwinkleTag 6s infinite ease-in-out;
}

.tag-1 { animation-delay: 0s; }
.tag-2 { animation-delay: 1.2s; }
.tag-3 { animation-delay: 2.4s; }
.tag-4 { animation-delay: 3.6s; color: #00E5FF; text-shadow: 0 0 14px #00E5FF; }
.tag-5 { animation-delay: 4.8s; }

.rgb-bullet {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.65rem;
  line-height: 1;
  animation: rgbBulletPulse 3s infinite ease-in-out alternate;
}

@keyframes rgbTwinkleTag {
  0%, 100% {
    color: rgba(255, 255, 255, 0.32);
    text-shadow: none;
  }
  20% {
    color: #00E5FF;
    text-shadow: 0 0 12px #00E5FF, 0 0 24px rgba(0, 229, 255, 0.6);
  }
  40% {
    color: #377DFF;
    text-shadow: 0 0 12px #377DFF;
  }
  60% {
    color: #8B5CF6;
    text-shadow: 0 0 12px #8B5CF6, 0 0 24px rgba(139, 92, 246, 0.6);
  }
  80% {
    color: #F000B8;
    text-shadow: 0 0 12px #F000B8;
  }
}

@keyframes rgbBulletPulse {
  0% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; color: #00E5FF; transform: scale(1.3); }
  100% { opacity: 0.3; transform: scale(1); }
}

@keyframes mobileRgbMarquee {
  0% {
    transform: translateX(18%);
  }
  100% {
    transform: translateX(-48%);
  }
}

/* DOTS DE PAGINAÇÃO COM ANIMAÇÃO RGB PISCA-PISCA */
.about-pagination-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.rgb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 400ms ease;
  animation: rgbDotTwinkle 4.2s infinite ease-in-out;
}

.dot-1 { animation-delay: 0s; background: #00E5FF; box-shadow: 0 0 10px #00E5FF; }
.dot-2 { animation-delay: 0.6s; }
.dot-3 { animation-delay: 1.2s; }
.dot-4 { animation-delay: 1.8s; }
.dot-5 { animation-delay: 2.4s; }
.dot-6 { animation-delay: 3.0s; }
.dot-7 { animation-delay: 3.6s; }

@keyframes rgbDotTwinkle {
  0%, 100% {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    transform: scale(1);
  }
  25% {
    background: #00E5FF;
    box-shadow: 0 0 10px #00E5FF, 0 0 16px #00E5FF;
    transform: scale(1.2);
  }
  50% {
    background: #8B5CF6;
    box-shadow: 0 0 10px #8B5CF6;
    transform: scale(1.1);
  }
  75% {
    background: #F000B8;
    box-shadow: 0 0 10px #F000B8;
    transform: scale(1.15);
  }
}

/* ===================================================================
   ESTILOS DO SLIDE 02 (MAIS QUE TÉCNICA. UMA HISTÓRIA DE PAIXÃO.)
   =================================================================== */

.text-accent-violet {
  background: linear-gradient(135deg, #DDD6FE 0%, #A78BFA 40%, #8B5CF6 75%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(139, 92, 246, 0.5));
  display: inline-block;
  font-weight: 800;
}

.text-highlight-violet {
  color: var(--color-violet);
  font-weight: 600;
}

.dot-violet {
  background: var(--color-violet);
  box-shadow: 0 0 10px var(--color-violet);
}

/* SLIDE 02 (MAIS QUE TÉCNICA. UMA HISTÓRIA DE PAIXÃO.) - AJUSTE DE FLUXO E PROPORÇÕES IDÊNTICAS AO SLIDE 1 */
.about-slide-item[data-slide="2"] .about-slide-grid {
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

.about-slide-item[data-slide="2"] .about-card-left {
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
}

.about-slide-item[data-slide="2"] .about-card-right {
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
}

.about-slide-item[data-slide="2"] .about-card-content {
  justify-content: space-between;
  gap: 1.25rem;
}

.about-slide-item[data-slide="2"] .about-hero-block {
  gap: 0.6rem;
}

.about-slide-item[data-slide="2"] .about-hero-title {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.35rem);
  line-height: 1.12;
}

.about-slide-item[data-slide="2"] .about-description-main,
.about-slide-item[data-slide="2"] .about-description-sub {
  font-size: clamp(0.82rem, 0.78rem + 0.25vw, 0.92rem);
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.8);
}

/* CONTADORES DE MÉTRICAS */
.about-slide2-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.about-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
}

.stat-icon-wrap {
  color: var(--color-violet);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

/* BOX DE CITAÇÃO (QUOTE BOX COM TRILHO E FEIXE LASER CIRCULANDO TODA A BORDA DO CARD) */
.about-quote-box {
  position: relative;
  background: rgba(14, 10, 26, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.15), inset 0 0 15px rgba(139, 92, 246, 0.05);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.about-quote-box > * {
  position: relative;
  z-index: 2;
}

.quote-border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.quote-border-rect {
  fill: none;
  stroke: url(#quoteLaserGradient);
  stroke-width: 2.5;
  stroke-dasharray: 140 500;
  stroke-dashoffset: 0;
  animation: svgLaserBorderRun 4s linear infinite;
  filter: drop-shadow(0 0 8px #A78BFA) drop-shadow(0 0 16px #8B5CF6);
}

@keyframes svgLaserBorderRun {
  from {
    stroke-dashoffset: 640;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #A78BFA;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px rgba(167, 139, 250, 0.6);
  letter-spacing: -0.05em;
}

.quote-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.text-highlight-violet {
  color: #A78BFA;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
}

/* GALERIA DO SLIDE 2 - 3 IMAGENS IGUAIS COM ALTURA NORMAL E CONTROLADA */
.about-slide2-stacked-media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  height: 100%;
}

.slide2-stacked-item {
  position: relative;
  height: 148px;
  flex: 0 0 148px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(139, 92, 246, 0.3);
}

.slide2-stacked-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88);
  transition: transform 500ms ease, filter 500ms ease;
}

.slide2-stacked-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* CONTAINER DO SLIDE 03 (VÍDEOS & BASTIDORES - DIMENSÕES E ALINHAMENTO PERFEITOS) */
.about-slide3-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  width: 100%;
  min-height: 590px;
  height: 590px;
  box-sizing: border-box;
  gap: 1rem;
}

.about-slide3-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* TRILHO DE LINHA E FEIXE LASER EM MOVIMENTO SLIDE 3 */
.slide3-header-laser-track {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(139, 92, 246, 0.2);
  overflow: hidden;
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

.slide3-header-laser-pulse {
  position: absolute;
  top: 0;
  left: -140px;
  width: 140px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #8B5CF6, #A78BFA, #FFFFFF, #8B5CF6, transparent);
  box-shadow: 0 0 14px #8B5CF6, 0 0 28px #A78BFA;
  border-radius: 2px;
  animation: quoteLaserPulseMove 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* CORPO EM 2 COLUNAS */
.about-slide3-body-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 992px) {
  .about-slide3-body-grid {
    grid-template-columns: 1fr;
  }
}

.slide3-col-left, .slide3-col-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.slide3-col-label {
  display: flex;
  align-items: center;
}

/* REELS PLAYER (VERTICAL 9:16) */
.player-reels-card {
  width: 100%;
  max-width: 185px;
  aspect-ratio: 9 / 16;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.25);
  background: #000;
}

/* YOUTUBE PLAYER (WIDESCREEN 16:9) */
.player-yt-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.25);
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 330px;
  background: #000;
}

.yt-iframe-player {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.btn-yt-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.12);
  border-radius: 20px;
  padding: 0.45rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 300ms ease;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.btn-yt-follow:hover {
  border-color: #FF0000;
  background: rgba(255, 0, 0, 0.15);
  color: #FFF;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.yt-btn-icon {
  color: #FF0000;
  display: flex;
  align-items: center;
}

/* ATALHOS RÁPIDOS REDES */
.about-social-quick-bar {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.social-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 300ms ease;
}

.social-quick-link:hover {
  color: #A78BFA;
}

.link-icon-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #A78BFA;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.link-icon-box svg {
  width: 13px;
  height: 13px;
}

/* GRID DOS PLAYERS DE VÍDEO SLIDE 3 */
.about-players-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

/* PLAYER REELS (VERTICAL 9:16) */
.player-reels-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  background: #000;
}

.reels-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.reels-cover-img,
.reels-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.9);
}

.reels-ui-overlay {
  position: absolute;
  inset: 0;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 30%, transparent 60%, rgba(0, 0, 0, 0.85) 100%);
}

.reels-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
}

.reels-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: #FFF;
}

.reels-side-actions {
  position: absolute;
  right: 0.5rem;
  bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
  color: #FFF;
}

.reels-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.6rem;
  font-family: var(--font-mono);
}

.reels-footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reels-user-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reels-user {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFF;
}

.btn-reels-follow {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #FFF;
  font-size: 0.6rem;
  padding: 0.1rem 0.45rem;
  border-radius: 6px;
  cursor: pointer;
}

.reels-caption {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

/* PAINEL YOUTUBE + COMPROMISSO + ASSINATURA */
.player-yt-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
}

.yt-video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  width: 100%;
  max-width: 270px;
  height: 120px;
  flex: 0 0 120px;
}

.yt-video-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.yt-video-wrap:hover .yt-play-circle {
  transform: scale(1.12);
  background: rgba(139, 92, 246, 0.9);
  box-shadow: 0 0 25px rgba(167, 139, 250, 0.8);
}

.yt-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.yt-ui-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
}

.yt-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  cursor: pointer;
  text-align: center;
}

/* ===================================================================
   RESPONSIVIDADE E DISPOSITIVOS MÓVEIS (SEÇÃO 08 - SOBRE NÓS)
   =================================================================== */

@media (max-width: 992px) {
  .about-slide-grid,
  .about-slide3-wrapper {
    min-height: auto !important;
    height: auto !important;
  }

  .about-slide-grid {
    grid-template-columns: 1fr;
  }

  .about-slide3-body-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .slide3-col-left, 
  .slide3-col-right {
    align-items: center;
    text-align: center;
  }

  .player-reels-card {
    max-width: 220px;
    height: 340px;
  }

  .player-yt-card {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .about-card-left,
  .about-card-right,
  .about-slide3-wrapper {
    padding: 1.5rem 1.25rem;
  }

  .about-slide3-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .btn-yt-follow {
    width: 100%;
    justify-content: center;
  }

  .about-hero-title {
    font-size: 1.5rem;
  }

  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .player-reels-card {
    max-width: 200px;
    height: 320px;
  }

  .player-yt-card {
    height: 220px;
  }

  .about-nav-prev { left: 4px; z-index: 10; }
  .about-nav-next { right: 4px; z-index: 10; }
}

@media (max-width: 480px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .player-reels-card {
    max-width: 100%;
    height: 300px;
  }

  .player-yt-card {
    height: 190px;
  }
}

/* ==========================================================================
   SEÇÃO 09 (CTA) & FOOTER - PALCO CINEMATOGRÁFICO UNIFICADO (BASE VISUAL)
   ========================================================================== */

.stage-cta-footer-composition {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #030305;
  isolation: isolate;
}

/* CAMADA DE ATMOSFERA & IMAGEM DE FUNDO ÚNICA E CONTÍNUA (SEÇÃO 09 + FOOTER) */
.cta-footer-atmosphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cta-footer-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-footer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.06) saturate(1.28) brightness(1.08);
  transform: scale(1.01);
}

/* ------------------------------------------------------------------------
   CAMADA DE FUMAÇA ANIMADA CÊNICA (CONCERT FOG MACHINE BURST CYCLE)
   ------------------------------------------------------------------------ */

.cta-stage-smoke-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.smoke-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  will-change: transform, opacity;
}

/* 1. Disparo de Névoa Superior (Injeta em 2s, flutua cruzando refletores e esvanece) */
.smoke-cloud-mid-1 {
  top: 10%;
  left: -10%;
  width: 75vw;
  height: 52vh;
  background: 
    radial-gradient(ellipse 65% 55% at 50% 50%, rgba(220, 240, 255, 0.38) 0%, rgba(160, 215, 255, 0.20) 35%, rgba(139, 92, 246, 0.10) 65%, transparent 85%);
  animation: smokeBurstCycle1 14s ease-in-out infinite;
}

/* 2. Disparo de Névoa Central (Dessincronizado, surge no meio do palco) */
.smoke-cloud-mid-2 {
  top: 22%;
  right: -10%;
  width: 70vw;
  height: 55vh;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 245, 255, 0.35) 0%, rgba(0, 229, 255, 0.18) 40%, rgba(120, 160, 255, 0.08) 65%, transparent 85%);
  animation: smokeBurstCycle2 16s ease-in-out infinite;
}

/* 3. Disparo de Fumaça Baixa de Chão (Heavy Fog no piso refletivo do Footer) */
.smoke-cloud-floor {
  bottom: -4%;
  left: -10%;
  width: 120vw;
  height: 40vh;
  background: 
    radial-gradient(ellipse 85% 45% at 50% 70%, rgba(230, 245, 255, 0.42) 0%, rgba(210, 235, 255, 0.22) 30%, rgba(139, 92, 246, 0.12) 55%, transparent 85%);
  filter: blur(40px);
  animation: smokeBurstFloor 12s ease-in-out infinite;
}

/* ANIMAÇÃO DE DISPARO, EXPANSÃO E ESVANECIMENTO (EFEITO MÁQUINA DE FUMAÇA) */

/* Disparo 1: Injeta em ~2s, expande flutuando, esvanece totalmente e se dissipa */
@keyframes smokeBurstCycle1 {
  0% {
    transform: translate3d(-5%, 10px, 0) scale(0.85);
    opacity: 0;
  }
  16% {
    /* Disparo rápido de 2s */
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.70;
  }
  48% {
    /* Flutuando e cruzando feixes de luz */
    transform: translate3d(8%, -14px, 0) scale(1.12);
    opacity: 0.48;
  }
  72% {
    /* Esvanecimento total */
    transform: translate3d(14%, -22px, 0) scale(1.22);
    opacity: 0.04;
  }
  78%, 100% {
    /* Pausa antes do próximo disparo de fumaça */
    transform: translate3d(16%, -24px, 0) scale(1.25);
    opacity: 0;
  }
}

/* Disparo 2: Dessincronizado com pausa inicial */
@keyframes smokeBurstCycle2 {
  0%, 22% {
    transform: translate3d(5%, 15px, 0) scale(0.9);
    opacity: 0;
  }
  38% {
    /* Injeção em 2s */
    transform: translate3d(0, 0, 0) scale(1.02);
    opacity: 0.65;
  }
  68% {
    /* Expansão através do palco */
    transform: translate3d(-10%, -15px, 0) scale(1.15);
    opacity: 0.38;
  }
  88% {
    /* Dissipação total */
    transform: translate3d(-18%, -25px, 0) scale(1.25);
    opacity: 0.03;
  }
  92%, 100% {
    transform: translate3d(-20%, -30px, 0) scale(1.3);
    opacity: 0;
  }
}

/* Disparo 3: Heavy Fog Rastejante de Chão */
@keyframes smokeBurstFloor {
  0% {
    transform: translate3d(-2%, 10px, 0) scale(0.95);
    opacity: 0;
  }
  20% {
    /* Disparo de fumaça de chão em 2s */
    transform: translate3d(0, 0, 0) scale(1.02);
    opacity: 0.75;
  }
  52% {
    /* Rolando pelo piso refletivo */
    transform: translate3d(5%, -8px, 0) scale(1.08);
    opacity: 0.42;
  }
  80% {
    /* Dissipação completa */
    transform: translate3d(10%, -15px, 0) scale(1.15);
    opacity: 0.02;
  }
  85%, 100% {
    transform: translate3d(12%, -18px, 0) scale(1.18);
    opacity: 0;
  }
}

/* ------------------------------------------------------------------------
   CAMADAS DE OVERLAY, TRANSIÇÃO SUAVE E SOMBREAMENTO ESCURO
   ------------------------------------------------------------------------ */

/* 1. Transição Superior Suave (Fumaça & Haze da Seção 08 para a Seção 09) */
.cta-footer-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(
    180deg, 
    #050507 0%, 
    rgba(5, 5, 7, 0.94) 20%, 
    rgba(5, 5, 7, 0.65) 55%, 
    rgba(5, 5, 7, 0.15) 85%, 
    transparent 100%
  );
  z-index: 2;
}

/* 2. Sombreamento Suave de Bordas (Centro preservado 100% claro e radiante) */
.cta-footer-overlay-center {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 70% 60% at 50% 40%, transparent 0%, rgba(4, 4, 7, 0.30) 65%, rgba(2, 2, 4, 0.65) 100%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.20) 0%, transparent 35%, transparent 75%, rgba(3, 3, 5, 0.30) 100%);
  z-index: 3;
}

/* 3. Efeito Neon & Haze Atmosférico de Integração Cênica */
.cta-footer-overlay-haze {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle 900px at 50% 35%, rgba(139, 92, 246, 0.16), transparent 70%),
    radial-gradient(circle 750px at 20% 65%, rgba(0, 229, 255, 0.12), transparent 65%),
    radial-gradient(circle 750px at 80% 65%, rgba(240, 0, 184, 0.09), transparent 65%);
  pointer-events: none;
  z-index: 4;
}

/* 4. Suave Proteção de Contraste na Base do Footer (Preserva a visibilidade do chão refletivo) */
.cta-footer-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(
    180deg, 
    transparent 0%, 
    rgba(3, 3, 5, 0.15) 50%, 
    rgba(2, 2, 3, 0.45) 100%
  );
  z-index: 5;
}

/* 5. CAMADA TIPOGRÁFICA GIGANTE DE FUNDO (SHOW STARTS HERE - ESQUERDA & DIREITA) */
.cta-bg-typography-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 6;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  box-sizing: border-box;
}

.cta-bg-typo-block {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  opacity: 0.78;
}

.cta-bg-typo-left {
  align-items: flex-start;
  text-align: left;
  animation: floatTypoLeft 11s ease-in-out infinite alternate;
}

.cta-bg-typo-right {
  align-items: flex-end;
  text-align: right;
  animation: floatTypoRight 13s ease-in-out infinite alternate-reverse;
}

.typo-line {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6.8vw, 8.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(0.02em, 0.3vw, 0.08em);
  color: rgba(255, 255, 255, 0.025);
  -webkit-text-stroke: 1.8px rgba(255, 255, 255, 0.28);
  filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.22)) drop-shadow(0 0 50px rgba(139, 92, 246, 0.2));
  white-space: nowrap;
}

/* ANIMAÇÃO FLUTUANTE CINEMATOGRÁFICA DE TRANSIÇÃO SUAVE */
@keyframes floatTypoLeft {
  0% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(12px) rotate(0.8deg);
  }
}

@keyframes floatTypoRight {
  0% {
    transform: translateY(12px) rotate(0.8deg);
  }
  100% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}

/* ------------------------------------------------------------------------
   ESTRUTURA INTEGRADA DA SEÇÃO 09 E FOOTER (TAMANHOS HARMONIOSOS E COMPACTOS)
   ------------------------------------------------------------------------ */

.stage-section-cta {
  position: relative;
  z-index: 10;
  padding-top: clamp(3rem, 6vh, 5rem);
  padding-bottom: clamp(2rem, 4vh, 3rem);
  min-height: clamp(450px, 50vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(0.9rem, 1.4vw, 1.6rem);
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* 1. BADGE / SUBTÍTULO "PRONTO PARA CRIAR" */
.cta-tech-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  font-weight: 700;
  color: #00E5FF;
  letter-spacing: clamp(0.18em, 0.25vw, 0.3em);
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.6), 0 0 30px rgba(0, 229, 255, 0.3);
}

/* 2. TÍTULO PRINCIPAL "ALGO INESQUECÍVEL?" COM DEGRADÊ LIMPO E EFEITO LEVE DE LUZ CORRENDO */
.cta-main-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  line-height: 0.94;
}

.cta-title-line {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.2vw, 4.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
  width: 100%;
  display: block;
  background: linear-gradient(180deg, #FFFFFF 0%, #E6F7FF 38%, #A8CDFF 72%, #7C6CEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.4)) drop-shadow(0 0 50px rgba(139, 92, 246, 0.3));
}

.cta-title-line.line-1 {
  font-size: clamp(1.9rem, 4.4vw, 4.0rem);
  letter-spacing: 0.04em;
}

/* LINHA DE FEIXE LASER COM PONTO DE LUZ SUAVE CORRENDO DE FORMA LEVE */
.cta-title-glow-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.2) 15%, #00E5FF 50%, rgba(0, 229, 255, 0.2) 85%, transparent 100%);
  box-shadow: 0 0 12px #00E5FF, 0 0 25px #00E5FF, 0 0 45px rgba(55, 125, 255, 0.8);
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

/* PONTO DE LUZ LEVE QUE CAMINHA CONTINUAMENTE AO LONGO DA LINHA DO TÍTULO */
.cta-title-glow-beam::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -20%;
  width: 130px;
  height: 6px;
  background: radial-gradient(ellipse at center, #FFFFFF 0%, #00E5FF 50%, transparent 100%);
  box-shadow: 0 0 15px #FFFFFF, 0 0 30px #00E5FF;
  filter: blur(1px);
  animation: runLightTitleBeam 4.5s ease-in-out infinite;
}

@keyframes runLightTitleBeam {
  0% {
    left: -25%;
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    left: 115%;
    opacity: 0;
  }
}

/* 3. SUBTÍTULO DESCRITIVO */
.cta-description-text {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.1vw, 1.02rem);
  font-weight: 400;
  color: rgba(247, 247, 248, 0.85);
  line-height: 1.55;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.highlight-cyan {
  color: #00E5FF;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

/* 4. BOTÃO CTA FUTURISTA TECH COM CORTE OCTOGONAL CHANFRADO (TAMANHO COMPACTO E HARMONIOSO) */
.cta-btn-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 0 auto;
  padding: 0.5rem 1rem;
}

.cta-btn-tech-octa {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: clamp(240px, 25vw, 340px);
  height: 52px;
  padding: 0 1.75rem;
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 0.92vw, 0.92rem);
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-align: center;
  background: rgba(6, 6, 14, 0.88);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.3), 0 0 50px rgba(139, 92, 246, 0.25), inset 0 0 15px rgba(0, 229, 255, 0.12);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
  z-index: 2;
}

.cta-btn-tech-octa:hover {
  transform: translateY(-3px) scale(1.025);
  background: rgba(8, 8, 22, 0.94);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.6), 0 0 80px rgba(139, 92, 246, 0.45), inset 0 0 25px rgba(0, 229, 255, 0.25);
}

/* SVG DA BORDA QUE ENVOLVE O BOTÃO CHANFRADO */
.cta-btn-svg-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.svg-border-path-base {
  fill: none;
  stroke: url(#btnBorderGrad);
  stroke-width: 2;
  opacity: 0.75;
}

/* LUZ NEON QUE CAMINHA CONTINUAMENTE PELA BORDA */
.svg-border-path-runner {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 120 700;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 8px #00E5FF) drop-shadow(0 0 16px #00E5FF) drop-shadow(0 0 24px #377DFF);
  animation: runLightBorder 4s linear infinite;
}

@keyframes runLightBorder {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -820;
  }
}

.cta-btn-text {
  position: relative;
  z-index: 4;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-btn-arrow {
  width: 18px;
  height: 18px;
  color: #FFFFFF;
  filter: drop-shadow(0 0 8px #00E5FF);
  transition: transform var(--transition-fast);
  position: relative;
  z-index: 4;
}

.cta-btn-tech-octa:hover .cta-btn-arrow {
  transform: translateX(5px);
  color: #00E5FF;
}

/* TRILHOS E LINHAS HUD EXTERNAS AO REDOR DO BOTÃO */
.cta-btn-hud-frame {
  position: absolute;
  inset: -5px -10px;
  pointer-events: none;
  z-index: 1;
}

.hud-line {
  position: absolute;
  background: rgba(0, 229, 255, 0.45);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.hud-top-left {
  top: 0;
  left: 0;
  width: 35px;
  height: 1.5px;
}

.hud-top-right {
  top: 0;
  right: 0;
  width: 35px;
  height: 1.5px;
  background: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.7);
}

.hud-bottom-left {
  bottom: 0;
  left: 0;
  width: 35px;
  height: 1.5px;
}

.hud-bottom-right {
  bottom: 0;
  right: 0;
  width: 35px;
  height: 1.5px;
  background: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.7);
}

/* STARBURST / PONTO DE LUZ COM FEIXE LASER NO CENTRO ABAIXO DO BOTÃO */
.cta-btn-starburst-beam {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}

.starburst-laser {
  position: absolute;
  width: clamp(180px, 35vw, 420px);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.2) 20%, #00E5FF 50%, rgba(0, 229, 255, 0.2) 80%, transparent 100%);
  box-shadow: 0 0 10px #00E5FF, 0 0 20px #00E5FF, 0 0 35px rgba(55, 125, 255, 0.8);
}

.starburst-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 12px #00E5FF, 0 0 24px #00E5FF, 0 0 40px #FFFFFF;
  animation: pulseStarburst 2s ease-in-out infinite alternate;
}

@keyframes pulseStarburst {
  0% {
    transform: scale(0.85);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.25);
    opacity: 1;
  }
}

/* 5. FRASE MANIFESTO COM ÍCONE DE PULSO CÊNICO */
.cta-manifesto-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.5rem auto 0 auto;
  padding: 0.4rem 1rem;
  text-align: center;
}

.manifesto-pulse-icon {
  width: 28px;
  height: 12px;
  color: #00E5FF;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.7));
}

.manifesto-text {
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------------
   FOOTER: ESTRUTURA INTEGRADA E COMPACTA
   ------------------------------------------------------------------------ */

.stage-footer {
  position: relative;
  z-index: 10;
  padding-top: clamp(1.5rem, 2.5vh, 2.2rem);
  padding-bottom: clamp(1.8rem, 3vh, 2.5rem);
  border-top: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.footer-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LOGO PRINCIPAL JV LIGHT NO FOOTER COM GLOW E REFLEXO DE CHÃO */
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-normal), filter var(--transition-normal);
  /* REFLEXO CÊNICO ESPELHADO DE CHÃO MOLHADO */
  -webkit-box-reflect: below 2px linear-gradient(transparent 35%, rgba(0, 229, 255, 0.45) 100%);
}

.footer-logo-img {
  height: clamp(48px, 6vw, 68px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4)) drop-shadow(0 0 35px rgba(139, 92, 246, 0.25));
  transition: filter var(--transition-normal);
}

.footer-logo-link:hover {
  transform: translateY(-2px) scale(1.03);
}

.footer-logo-link:hover .footer-logo-img {
  filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.75)) drop-shadow(0 0 50px rgba(139, 92, 246, 0.5));
}

/* CONTATOS (LOCALIZAÇÃO, TELEFONES, EMAIL) */
.footer-info-group {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.info-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.05);
  color: #00E5FF;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

.info-text-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.info-title, .info-number, .info-email {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.info-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
}

.info-email {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
}

/* REDES SOCIAIS (INSTAGRAM, YOUTUBE, WHATSAPP) COMPACTOS E HARMONIOSOS */
.footer-social-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.social-btn-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  z-index: 2;
  -webkit-box-reflect: below 2px linear-gradient(transparent 30%, rgba(0, 0, 0, 0.55) 100%);
}

.social-icon-btn svg {
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.social-icon-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.btn-insta {
  background: rgba(24, 8, 30, 0.82);
  border: 1.5px solid #D946EF;
  color: #F472B6;
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.4), inset 0 0 10px rgba(217, 70, 239, 0.2);
}

.btn-yt {
  background: rgba(16, 18, 28, 0.82);
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.btn-wa {
  background: rgba(8, 24, 16, 0.82);
  border: 1.5px solid #22C55E;
  color: #4ADE80;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.4), inset 0 0 10px rgba(34, 197, 94, 0.2);
}

.social-floor-flare {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

.flare-insta {
  background: #D946EF;
  box-shadow: 0 0 8px #D946EF, 0 0 16px #D946EF;
}

.flare-yt {
  background: #00E5FF;
  box-shadow: 0 0 8px #00E5FF, 0 0 16px #FFFFFF;
}

.flare-wa {
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E, 0 0 16px #4ADE80;
}

/* COPYRIGHT INFERIOR, POLÍTICA DE PRIVACIDADE E ÁREA RESERVADA DA LOGO DO CRIADOR (EM PILHA CENTRALIZADA) */
.footer-copyright-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  text-align: center;
  width: 100%;
}

.copyright-legal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  text-align: center;
}

.copyright-text, .footer-legal-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.footer-legal-link:hover {
  color: #00E5FF;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.legal-divider {
  color: rgba(0, 229, 255, 0.4);
  font-size: 0.7rem;
}

/* LOGO DO CRIADOR DO SITE (LJR DIGITAL STUDIO) - COM LUZ NEON E TAMANHO EXPANDIDO */
.footer-creator-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(0, 229, 255, 0.25);
}

.creator-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: #00E5FF;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.8), 0 0 20px rgba(0, 229, 255, 0.4);
}

.creator-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity var(--transition-fast), filter var(--transition-fast), transform var(--transition-fast);
}

.creator-logo-img {
  height: 44px; /* Aumentado para destaque visual marcante e nítido! */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.creator-logo-link:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.9)) drop-shadow(0 0 35px rgba(139, 92, 246, 0.7));
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .footer-main-row {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  .footer-copyright-bar {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .footer-info-group {
    flex-wrap: wrap;
    justify-content: center;
  }
  .info-email-col {
    align-items: center;
  }
  .footer-creator-brand {
    padding-left: 0;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-main-title .cta-title-line {
    font-size: clamp(1.8rem, 7.5vw, 3.2rem);
  }
  .footer-info-group {
    flex-direction: column;
    gap: 0.85rem;
  }
}/* ==========================================================================
   OTIMIZAÇÃO MOBILE DEDICADA & COMPLETA (ATENDENDO TODAS AS 5 SEÇÕES)
   ========================================================================== */

@media (max-width: 768px) {

  /* ---- FIX 1: SEÇÃO 05 - BOTÃO CTA CENTRALIZADO E PROPORCIONAL ---- */
  .experiences-action-bar {
    margin-top: 1.75rem;
    padding: 0 0.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn-experiences-cta {
    width: 100%;
    max-width: 320px;
    padding: 0.85rem 1.25rem;
    font-size: 0.82rem;
    line-height: 1.35;
    text-align: center;
    border-radius: 28px;
    white-space: normal;
    justify-content: center;
    gap: 0.5rem;
  }

  /* ---- FIX 2: SEÇÃO 06 - SINC TUDO POR UMA ÚNICA INTELIGÊNCIA ---- */
  /* Ocultar SVG com linhas HUD fixas que cortam o texto no celular */
  .sync-banner-svg {
    display: none !important;
  }

  .tech-sync-banner {
    margin-top: 2rem;
    min-height: auto;
    padding: 1.5rem 1rem;
    background: rgba(8, 12, 22, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.12);
    backdrop-filter: blur(12px);
    width: 100%;
  }

  .sync-banner-content {
    gap: 0.5rem;
  }

  .sync-banner-heading {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }

  /* ---- FIX 3: SEÇÃO 07 - TIMELINE VERTICAL DEDICADA NO MOBILE ---- */
  .full-width-banner-strip {
    padding: 2.5rem 1rem;
  }

  .process-banner-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-heading-col {
    align-items: center;
    text-align: center;
  }

  .process-title {
    text-align: center;
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .process-description {
    text-align: center;
    max-width: 100%;
  }

  /* Ocultar linha horizontal do desktop */
  .process-timeline-track {
    display: none !important;
  }

  /* Transformar os 5 nós em lista vertical com conector neon à esquerda */
  .process-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding-left: 0;
    width: 100%;
  }

  /* Linha conectora vertical iluminada no mobile */
  .process-steps-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 27px;
    width: 2px;
    background: linear-gradient(180deg, #00E5FF, #8B5CF6);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    z-index: 1;
  }

  .process-step-node {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1.1rem;
    background: rgba(12, 16, 26, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    width: 100%;
  }

  .step-icon-circle {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    z-index: 2;
  }

  .step-node-dot {
    display: none;
  }

  .step-content {
    align-items: flex-start;
    text-align: left;
  }

  .step-name {
    font-size: 0.85rem;
  }

  .step-text {
    max-width: 100%;
    text-align: left;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
  }

  /* ---- FIX 4: SEÇÃO 08 - SOBRE NÓS SLIDES 2 E 3 ---- */

  /* Reposicionar flechas do slider no mobile mantendo alinhamento vertical fixo e sem deslocamento no toque */
  .about-nav-btn {
    top: auto !important;
    bottom: -16px !important;
    transform: none !important;
    z-index: 20 !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(15, 23, 42, 0.92) !important;
    border: 1px solid rgba(0, 229, 255, 0.4) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3) !important;
    margin: 0 !important;
  }

  .about-nav-btn:hover,
  .about-nav-btn:focus,
  .about-nav-btn:active {
    transform: scale(1.08) !important;
    background: rgba(0, 229, 255, 0.25) !important;
  }

  .about-nav-prev {
    left: 22% !important;
  }

  .about-nav-next {
    right: 22% !important;
  }

  .about-slider-wrapper {
    padding-bottom: 2.5rem;
    position: relative;
  }

  .about-slides-track {
    min-height: 420px;
  }

  /* Slide 1 & 2 Mobile: Ocultar imagens secundárias no mobile e manter alturas harmoniosas */
  .about-slide-item[data-slide="1"] .about-right-media-grid,
  .about-slide-item[data-slide="2"] .about-card-right {
    display: none !important;
  }

  .about-slide-item[data-slide="1"] .about-slide-grid,
  .about-slide-item[data-slide="2"] .about-slide-grid {
    grid-template-columns: 1fr !important;
  }

  .about-slide-item[data-slide="1"] .about-card-left,
  .about-slide-item[data-slide="1"] .about-card-right,
  .about-slide-item[data-slide="2"] .about-card-left {
    width: 100%;
    padding: 1.25rem 1rem;
  }

  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .about-slide-item[data-slide="2"] .about-hero-block {
    width: 100%;
  }

  .about-slide-item[data-slide="2"] .about-quote-box {
    margin-top: 1.25rem;
    padding: 1.1rem 1.25rem;
    width: 100%;
  }

  /* Slide 3 Mobile - Ajuste Perfeito do Instagram Reels & YouTube */
  .about-slide3-wrapper {
    padding: 1.5rem 1rem;
    width: 100%;
  }

  .about-slide3-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .about-slide3-title {
    text-align: center;
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
  }

  .btn-yt-follow {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin: 0 auto;
  }

  .about-slide3-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    margin-top: 1.25rem;
  }

  .slide3-col-left,
  .slide3-col-right {
    width: 100%;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .slide3-col-label {
    justify-content: center;
    width: 100%;
  }

  /* Instagram Reels Card em enquadramento vertical 9:16 perfeito no mobile */
  .player-reels-card {
    width: 100%;
    max-width: 250px;
    height: 380px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.35);
  }

  /* YouTube Card em enquadramento widescreen 16:9 perfeito no mobile */
  .player-yt-card {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.35);
  }

  /* Painel Letreiro Horizontal com efeito contínuo de deslizamento (Marquee) */
  .about-tech-line-bar {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.6rem 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }

  .about-decorative-tags {
    display: flex;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    width: max-content;
    gap: 1.25rem;
    padding: 0 1rem;
    animation: mobileRgbMarquee 12s ease-in-out infinite alternate;
  }

  .rgb-tag,
  .rgb-bullet {
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* ---- FIX 5: SEÇÃO 09 CTA FINAL & FOOTER ---- */
  .cta-content-wrapper {
    padding: 0 1rem;
  }

  .cta-btn-hud-frame,
  .cta-btn-starburst-beam {
    display: none !important;
  }

  .cta-btn-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-btn-tech-octa {
    width: 100%;
    padding: 1rem 1.25rem;
  }

  /* Footer Mobile Clean Card & Social Row */
  .footer-main-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-logo-img {
    max-height: 70px;
  }

  .footer-info-group {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    background: rgba(5, 7, 12, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 20px;
    padding: 1.6rem 1.25rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  }

  /* Alinhamento perfeito dos contatos no celular: ícones em coluna reta e textos alinhados à esquerda */
  .footer-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    text-align: left;
  }

  .info-icon-box {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
  }

  .info-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .info-title,
  .info-number,
  .info-email,
  .info-sub {
    text-align: left;
  }

  .footer-creator-brand {
    padding-left: 0;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
  }

  /* Redes Sociais em Linha Horizontal no Mobile */
  .footer-social-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    margin-top: 0.5rem;
  }

  .social-btn-wrapper {
    margin: 0;
  }

  .social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-copyright-bar {
    padding-top: 1rem;
  }

  .copyright-legal-row {
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
  }

  .legal-divider {
    display: none;
  }
}

