:root {
  --header-h: 72px;
}
/* ====================================
   Reset & Base Styles
   ==================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Titillium Web", sans-serif;
  background: #ffffff;
  color: #1e2f3c;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Prevenir zoom em inputs no iOS */
@media (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ====================================
   Header fixo (só aparece após a 1ª seção)
   ==================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-48px);
  transition: transform 0.35s ease, opacity 0.35s ease;
  /* Blur e overlay para melhorar contraste */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.15);
}
.site-header.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(40px, 8vw, 120px);
  /* background: linear-gradient(
    rgba(0, 0, 0, 0.08) 10%,
    rgba(30, 47, 60, 0.05) 54%
  ); */
  overflow: hidden;
}
.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border: none;
  mix-blend-mode: screen;
  pointer-events: none;
}

@media (max-width: 880px) {
  .header-inner {
    max-width: none;
    margin: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  }
}

.header-brand,
.header-logo,
.header-edge {
  display: none;
}

.site-nav {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 6vw, 60px);
  list-style: none;
}
.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 15px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0 12px;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.3s ease;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.nav-list a:hover,
.nav-list a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}
.nav-list a.active {
  opacity: 1;
}

/* Classes específicas para diferentes seções - ajustam contraste automaticamente */
.site-header.over-light-section {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.over-light-section .nav-list a {
  color: rgba(0, 0, 0, 0.85);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.site-header.over-light-section .nav-list a:hover,
.site-header.over-light-section .nav-list a:focus-visible {
  color: rgba(0, 0, 0, 1);
}

.site-header.over-light-section .nav-list a.active {
  color: rgba(0, 0, 0, 1);
}

.site-header.over-dark-section {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.over-dark-section .nav-list a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.site-header.over-dark-section .nav-list a:hover,
.site-header.over-dark-section .nav-list a:focus-visible {
  color: rgba(255, 255, 255, 1);
}

.site-header.over-dark-section .nav-list a.active {
  color: rgba(255, 255, 255, 1);
}

/* Botão hambúrguer (mobile) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(244, 248, 255, 0.3);
  background: rgba(244, 248, 255, 0.14);
  color: rgba(244, 248, 255, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}

/* Animação do hambúrguer ao abrir */
.site-header.menu-open .nav-toggle {
  background: rgba(254, 230, 68, 0.2);
  border-color: rgba(254, 230, 68, 0.5);
}
.site-header.menu-open .nav-toggle .bar {
  background: #fee644;
}
.site-header.menu-open .nav-toggle .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.menu-open .nav-toggle .bar:nth-child(2) {
  opacity: 0;
}
.site-header.menu-open .nav-toggle .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 880px) {
  .site-header {
    top: 0;
    width: 100%;
  }
  .site-header.is-visible {
    background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(30, 47, 60, 0.1));
  }
  /* Menu sempre visível no mobile */
  .site-header {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  /* Ajustes específicos para mobile */
  .site-header.over-light-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .site-header.over-dark-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .header-inner {
    padding: 0 24px;
    justify-content: center;
    position: relative;
    background: transparent;
    border: none;
  }
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    transform: translateY(-50%) scale(1.05);
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(30, 47, 60, 0.5) 100%
    );
    border: none;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 256px) 51px 295px;
    overflow-y: auto;
  }
  .site-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at 50% 20%,
      rgba(254, 230, 68, 0.08) 0%,
      transparent 60%
    );
    pointer-events: none;
  }
  .site-header.menu-open .site-nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    width: min(100%, 420px);
    align-self: center;
  }
  .nav-list a {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: rgba(254, 230, 68, 0.2);
    color: #fee644;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(254, 230, 68, 0.2);
  }
  .nav-list a.active {
    background: rgba(254, 230, 68, 0.32);
    color: #fee644;
    box-shadow: 0 2px 8px rgba(254, 230, 68, 0.25);
  }
}

/* Offset de rolagem para âncoras, compensando header fixo */
[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

@media (max-width: 768px) {
  [id] {
    scroll-margin-top: calc(var(--header-h) + 16px);
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

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

/* ====================================
   Section Headers - Estilos Globais
   ==================================== */

.section-header {
  margin-bottom: 60px;
}

.section-label {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.section-line {
  width: 100%;
  height: 1px;
  opacity: 0.3;
}

.section-line.red {
  background: #dc473b;
}

.section-line.white {
  background: #ffffff;
}

/* ====================================
   Hero Section - EXATAMENTE COMO FIGMA
   ==================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  --hero-grid-h: 60px; /* altura do grid inferior (usado também p/ alinhar a VR) */
  /* Fundo roxo do Figma */
  /* corrige caminho relativo: CSS está em assets/css e imagem em /img */
  /* ancorado no rodapé e menor para não ocupar toda a tela */
  background: #f6efd1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
}

/* Logo abaixo do título no Hero (147 vermelho) */
.hero-logo-small {
  position: relative; /* fica no fluxo, logo após o título */
  top: auto;
  left: auto;
  width: clamp(240px, 28vw, 420px);
  height: auto;
  margin-top: 16px;
  z-index: 4; /* mantém acima do círculo amarelo */
}

.hero-logo-small img {
  width: 100%;
  height: auto;
  display: block;
}

/* Conteúdo principal */
.hero-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Seção de texto */
.hero-text-section {
  position: relative;
  z-index: 5;
  flex: 1;
}

.hero-title {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-size: 120px;
  line-height: 0.9;
  margin: 0;
  position: relative;
  z-index: 5; /* garante texto acima do círculo */
  letter-spacing: -0.02em;
}

/* caracteres individuais para hover sutil */
.hero-title .char {
  display: inline-block;
  will-change: transform;
  transform-origin: 50% 60%;
}

.hero-text-dark {
  color: #1e2f3c;
}

.hero-text-red {
  color: #dc473b;
}

.hero-title .hero-line {
  display: block;
  line-height: 1.09;
}

.hero-title .hero-word {
  display: inline-block;
}

/* Bloco que agrupa logo e ícone abaixo do título */
.hero-below-title {
  position: relative;
  margin-top: 8px; /* aproxima do texto */
  display: inline-block;
}

/* Elemento 147 vermelho conforme Figma */
.hero-147-element {
  position: absolute;
  left: 0;
  bottom: -80px;
  z-index: 6;
  pointer-events: none;
}

.hero-147-symbol {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #dc473b;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-147-text {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #dc473b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Ícone amarelo do Figma */
.hero-yellow-circle {
  position: absolute;
  /* Posicionamento responsivo aproximado ao Figma */
  --circle-size: clamp(122px, 10vw, 180px);
  top: calc(var(--circle-size) * -0.4);
  left: calc(100% - var(--circle-size) * 0.72);
  width: var(--circle-size);
  height: var(--circle-size);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; /* abaixo do texto e logo para ficar "atrás" */
}

.hero-yellow-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.16));
  transform-origin: 50% 50%;
  will-change: transform;
}

/* Mulher VR */
.hero-vr-girl {
  position: relative;
  width: 50%;
  height: 120vh;
  z-index: 3;
}

.hero-vr-girl img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(
    var(--hero-grid-h) / 1
  ); /* alinha a base da cabeça com a metade do grid inferior */
  width: auto;
  height: min(90vh, 900px);
  max-height: calc(100vh - (var(--hero-grid-h) / 2));
  object-fit: contain;
  object-position: center bottom;
}

/* Grid de transição */
.hero-transition-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--hero-grid-h);
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  background-size: 40px 40px;
  background-position: 0 0;
  z-index: 2;
}

/* Glow sutil sobre o grid em perspectiva (fundo roxo) */
.hero-grid-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--hero-grid-h));
  height: clamp(120px, 22vh, 260px);
  pointer-events: none;
  background: radial-gradient(
    120px 40px at 0% 100%,
    rgba(254, 230, 68, 0.25),
    rgba(254, 230, 68, 0) 70%
  );
  mix-blend-mode: screen;
  opacity: 0.65;
  z-index: 2;
}

@media (max-width: 1280px) {
  .hero-container {
    padding: 0 80px;
  }
  .hero-title {
    font-size: 100px;
  }
  .hero-vr-girl img {
    height: min(80vh, 820px);
  }
  .hero-yellow-circle {
    --circle-size: clamp(108px, 13vw, 156px);
    top: calc(var(--circle-size) * -0.4);
    left: calc(100% - var(--circle-size) * 0.65);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 0 60px;
  }
  .hero-title {
    font-size: 80px;
  }
  .hero-vr-girl img {
    height: min(70vh, 720px);
  }
  .hero-yellow-circle {
    --circle-size: clamp(96px, 16vw, 140px);
    top: calc(var(--circle-size) * -0.4);
    left: calc(100% - var(--circle-size) * 0.65);
  }
  .hero-icon {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    padding: 0 40px;
  }
  .hero-title {
    font-size: clamp(64px, 10vw, 80px);
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 24px;
    justify-content: flex-start;
    padding-top: calc(var(--header-h) + 40px);
  }
  .hero-main-content {
    flex-direction: column;
    height: auto;
    gap: 32px;
  }
  .hero-text-section {
    width: 100%;
  }
  .hero-title {
    font-size: clamp(48px, 12vw, 64px);
    line-height: 0.95;
  }
  .hero-logo-small {
    width: clamp(180px, 45vw, 280px);
    margin-top: 20px;
  }
  .hero-vr-girl {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 400px;
    position: relative;
  }
  .hero-vr-girl img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: var(--hero-grid-h);
    height: auto;
    max-height: 350px;
    width: auto;
  }
  .hero-yellow-circle {
    --circle-size: clamp(80px, 20vw, 110px);
    top: calc(var(--circle-size) * -0.35);
    left: calc(100% - var(--circle-size) * 0.7);
  }
  .hero-corner-element {
    width: clamp(100px, 30vw, 160px);
    right: 8px;
    bottom: calc(var(--hero-grid-h) + 12px);
  }
  .hero-transition-grid {
    height: clamp(40px, 10vh, 60px);
  }
  .hero-floor-svg {
    height: clamp(60px, 12vh, 100px);
  }
}

/* Elemento decorativo no canto direito sobreposto à Girl VR */
.hero-corner-element {
  position: absolute;
  right: clamp(8px, 5.5vw, 31px);
  bottom: clamp(14px, 2vw, 28px);
  width: clamp(160px, 69vw, 400px); /* mais largo como no Figma */
  height: auto;
  z-index: 6; /* acima da girl (z-index:3) e do círculo (z-index:4) */
  pointer-events: none;
  top: 93%;
}

@media (max-width: 1024px) {
  .hero-corner-element {
    width: clamp(140px, 18vw, 220px);
    right: 16px;
    bottom: 18px;
  }
}

@media (max-width: 768px) {
  .hero-corner-element {
    width: 120px;
    right: 12px;
    bottom: 12px;
  }
  .hero-logo-small {
    width: clamp(200px, 50vw, 320px);
    margin-top: 12px;
  }
  .hero-yellow-circle {
    position: relative;
    left: auto;
    top: auto;
    margin: 12px 0 0 0;
    width: 84px;
    height: 84px;
  }
}

/* ====================================
   Numbers Section - EXATAMENTE COMO FIGMA
   ==================================== */

.numbers-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background com overlay */
.numbers-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  z-index: 1;
}

.numbers-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.numbers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Watermark de fundo - exatamente como no Figma */
.numbers-watermark-bg {
  position: absolute;
  top: 60%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: 5; /* acima do overlay (2) e abaixo do conteudo (10) */
  pointer-events: none;
  text-align: left;
}

.watermark-word {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 140px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(78, 193, 182, 0.6);
  mix-blend-mode: overlay;
  opacity: 0.12;
  letter-spacing: 0.06em;
  margin: 0;
}

/* Container principal */
.numbers-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  top: -4%;
}

/* Header da seção */
.numbers-header {
  margin-bottom: 50px;
}

.numbers-title {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px 0;
}

/* Container das estatísticas - layout direto conforme Figma */
.stats-direct {
  position: relative;
  z-index: 10;
  max-width: min(100%, 980px); /* mais largo para comportar descrições longas */
  margin-left: 0;
}

/* Itens de estatísticas - sem cards, coluna vertical */
.stat-item {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: clamp(18px, 3vw, 48px);
  background: transparent;
  border: none;
  padding: 12px 0;
  margin: 0 0 30px 0;
  width: 100%;
  opacity: 1;
  cursor: pointer;
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
  outline: none;
  align-items: start;
  transform-origin: left center; /* para crescer para a direita sem deslocar o layout */
  will-change: transform;
}

/* Layout vertical simples conforme Figma */
.stat-item-1 {
  margin-bottom: 32px;
}

.stat-item-2 {
  margin-bottom: 32px;
}

.stat-item-3 {
  margin-bottom: 32px;
}

.stat-item-large {
  margin-bottom: 0;
}

/* Números - exatamente como no Figma */
.stat-number {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  text-transform: uppercase;
  transition: color 0.35s ease;
  white-space: nowrap;
}

.stat-item-1 .stat-number {
  font-size: 56px;
}

.stat-item-2 .stat-number {
  font-size: 64px;
}

.stat-item-3 .stat-number {
  font-size: 67px;
}

.stat-item-large .stat-number {
  font-size: 72px;
}

/* Textos - exatamente como no Figma */
.stat-text {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  transition: color 0.35s ease, opacity 0.35s ease;
}

/* Cursor piscando quando em digitação */
.stat-text.typing::after {
  content: "\00a0"; /* espaço para posicionar o cursor logo após o texto */
  display: inline-block;
  width: 10px;
  height: 1.1em;
  margin-left: 2px;
  background: currentColor;
  vertical-align: -0.1em;
  animation: blink-caret 0.9s steps(1, end) infinite;
}

@keyframes blink-caret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.stat-item-large .stat-text {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  max-width: 600px;
}

.stat-item:focus-visible {
  box-shadow: 0 0 0 2px rgba(254, 230, 68, 0.6);
}

@media (hover: hover) and (pointer: fine) {
  .stats-direct:hover .stat-item,
  .stats-direct:focus-within .stat-item {
    opacity: 0.28; /* fundo/itens apagados */
    transform: translateX(0);
    box-shadow: none; /* nada de quadrado */
  }

  .stats-direct:hover .stat-item:hover,
  .stats-direct:focus-within .stat-item:focus-visible {
    opacity: 1;
    transform: translateX(18px) scale(1.1); /* aumento mais perceptível */
    box-shadow: none; /* remove glow de fundo */
    z-index: 20; /* por cima dos irmãos durante o zoom */
  }

  .stats-direct:hover .stat-item:hover .stat-number,
  .stats-direct:focus-within .stat-item:focus-visible .stat-number {
    color: #fee644; /* destaque amarelo no número */
    text-shadow: 0 0 16px rgba(254, 230, 68, 0.45);
    transform: scale(1.02); /* reforça o aumento no texto */
    display: inline-block;
  }

  .stats-direct:hover .stat-item:hover .stat-text,
  .stats-direct:focus-within .stat-item:focus-visible .stat-text {
    color: #fee644; /* descrição amarela também */
    text-shadow: 0 0 12px rgba(254, 230, 68, 0.35);
    transform: scale(1.02); /* reforça o aumento no texto */
    display: inline-block;
  }
}

/* Elementos decorativos */
.numbers-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(220, 71, 59, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.decoration-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.decoration-shape {
  position: absolute;
}

.decoration-shape.shape-1 {
  top: 15%;
  left: 15%;
  width: 20px;
  height: 20px;
  background: rgba(254, 230, 68, 0.4);
  border-radius: 50%;
}

.decoration-shape.shape-2 {
  top: 25%;
  right: 20%;
  width: 15px;
  height: 15px;
  background: rgba(220, 71, 59, 0.4);
  border-radius: 50%;
}

.decoration-shape.shape-3 {
  bottom: 25%;
  left: 10%;
  width: 25px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transform: rotate(30deg);
}

@media (max-width: 1024px) {
  .numbers-container {
    padding: 0 60px;
  }
  .numbers-watermark-bg {
    font-size: clamp(100px, 18vw, 120px);
  }
  .watermark-word {
    font-size: clamp(100px, 18vw, 120px);
  }
  .stat-item-1 .stat-number {
    font-size: clamp(48px, 8vw, 56px);
  }
  .stat-item-2 .stat-number {
    font-size: clamp(52px, 9vw, 64px);
  }
  .stat-item-3 .stat-number {
    font-size: clamp(56px, 10vw, 67px);
  }
  .stat-item-large .stat-number {
    font-size: clamp(60px, 11vw, 72px);
  }
  .stat-text {
    font-size: clamp(22px, 4vw, 28px);
  }
}

@media (max-width: 768px) {
  .numbers-section {
    height: auto;
    min-height: 100vh;
    padding: 80px 0;
  }
  .numbers-container {
    padding: 0 24px;
  }
  .numbers-title {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .numbers-watermark-bg {
    font-size: clamp(60px, 15vw, 100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .watermark-word {
    font-size: clamp(60px, 15vw, 100px);
    line-height: 1.1;
  }
  .stats-direct {
    max-width: 100%;
  }
  .stat-item {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
    padding: 16px 0;
  }
  .stat-item-1 .stat-number {
    font-size: clamp(40px, 10vw, 56px);
  }
  .stat-item-2 .stat-number {
    font-size: clamp(44px, 11vw, 64px);
  }
  .stat-item-3 .stat-number {
    font-size: clamp(48px, 12vw, 67px);
  }
  .stat-item-large .stat-number {
    font-size: clamp(52px, 13vw, 72px);
  }

  .stat-text {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.4;
  }
  .stat-item-large .stat-text {
    font-size: clamp(18px, 5vw, 24px);
    max-width: 100%;
  }

  /* Simplificar hover em mobile */
  .stats-direct:hover .stat-item,
  .stats-direct:focus-within .stat-item {
    opacity: 1;
    transform: none;
  }
  .stats-direct:hover .stat-item:hover,
  .stats-direct:focus-within .stat-item:focus-visible {
    transform: none;
  }
}

/* ====================================
   About Section
   ==================================== */

.about-section {
  position: relative;
  width: 100%;
  min-height: 1031px;
  background: #f3f3f3;
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 549px 1fr;
  gap: 80px;
  margin-top: 60px;
}

.about-images {
  position: relative;
}

.about-img-1,
.about-img-2 {
  width: 549px;
  height: 288px;
  object-fit: cover;
  border-radius: 8px;
}

.about-img-2 {
  margin-top: 32px;
}

.about-arrow {
  position: absolute;
  top: 260px;
  right: 200px;
  width: 115px;
  height: 101px;
  z-index: 10;
  overflow: hidden;
}
.about-arrow-mobile {
  display: none;
}

.about-arrow-bg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.about-arrow-fletch {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: auto;
  transform: translate(-140%, -140%) rotate(45deg);
  opacity: 0;
  animation: aboutArrowGlide 3.6s linear infinite;
  will-change: transform, opacity;
  pointer-events: none;
}

.about-arrow-fletch-two {
  animation-delay: 1.8s;
}

@keyframes aboutArrowGlide {
  0% {
    transform: translate(-140%, -140%) rotate(45deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(120%, 120%) rotate(45deg);
    opacity: 0;
  }
}

.about-text {
  padding-top: 40px;
}

.about-text h3 {
  font-weight: 600;
  font-size: 64px;
  line-height: 90%;
  text-transform: uppercase;
  color: #1e2f3c;
  margin-bottom: 32px;
}

.about-text p {
  font-weight: 300;
  font-size: 24px;
  line-height: 140%;
  color: #1e2f3c;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
    min-height: auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 40px;
  }
  .about-images {
    width: 100%;
  }
  .about-img-1,
  .about-img-2 {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .about-img-2 {
    margin-top: 24px;
  }
  .about-arrow {
    width: 86px;
    height: auto;
    top: 228px;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
  .about-text {
    padding-top: 0;
  }
  .about-text h3 {
    font-size: clamp(40px, 10vw, 56px);
    margin-bottom: 24px;
  }
  .about-text p {
    font-size: clamp(16px, 4.5vw, 20px);
    line-height: 150%;
  }
  .section-label-red {
    font-size: 18px;
  }
}
.section-label-red {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  color: #dc473b;
}

/* ====================================
   Team Section
   ==================================== */

.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 710px;
}

.team-left {
  background: #f6efd1;
  padding: 120px 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.6s ease-in-out, box-shadow 0.5s ease;
}

.team-right {
  background: #f6efd1;
  padding: 120px 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.6s ease-in-out, box-shadow 0.5s ease;
}

@media (max-width: 768px) {
  .team-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .team-left,
  .team-right {
    padding: 60px 24px;
    min-height: 600px;
  }
  .team-member {
    max-width: 100%;
  }
  .member-photo {
    width: clamp(240px, 60vw, 320px);
    height: clamp(240px, 60vw, 320px);
    margin-bottom: 32px;
  }
  .member-name {
    font-size: clamp(28px, 7vw, 36px);
  }
  .member-name span {
    font-size: clamp(22px, 5.5vw, 28px);
  }
  .member-bio {
    font-size: clamp(16px, 4.5vw, 20px);
    line-height: 150%;
  }
  .social-link {
    width: 48px;
    height: 48px;
  }
}

.team-member {
  text-align: center;
  max-width: 524px;
  transition: transform 0.45s ease-out;
}

.member-photo {
  width: 368px;
  height: 368px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 48px;
  background: #d9d9d9;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  text-align: center;
  margin-bottom: 24px;
  transition: color 0.8s ease-in-out, opacity 0.45s ease;
}

.team-left .member-name {
  color: #1e2f3c;
}

.team-right .member-name {
  color: #1e2f3c;
}

.member-name span {
  display: block;
  font-size: 32px;
}

.member-bio {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  margin-bottom: 32px;
  transition: color 0.8s ease-in-out, opacity 0.45s ease;
}

.team-left .member-bio {
  color: #1e2f3c;
}

.team-right .member-bio {
  color: #1e2f3c;
}

.member-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  will-change: transform, opacity;
}

.social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background-color 0.45s ease,
    border-color 0.45s ease, opacity 0.35s ease;
  text-decoration: none;
  transform: translateY(4px);
  opacity: 0.9;
}

.social-link svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.team-left .social-link {
  border-color: #1e2f3c;
  background: transparent;
}

.team-left .social-link svg {
  fill: #1e2f3c;
}

.team-right .social-link {
  border-color: #1e2f3c;
  background: transparent;
}

.team-right .social-link svg {
  fill: #1e2f3c;
}

.social-link:hover {
  transform: translateY(0) scale(1.06);
}

.team-left .social-link:hover {
  background: #1e2f3c;
}

.team-left .social-link:hover svg {
  fill: #f6efd1;
}

.team-right .social-link:hover {
  background: #1e2f3c;
}

.team-right .social-link:hover svg {
  fill: #f6efd1;
}

/* Microanimações no hover/focus do bloco */
.team-left:hover .team-member,
.team-right:hover .team-member,
.team-left:focus-within .team-member,
.team-right:focus-within .team-member {
  transform: translateY(-2px);
}

.team-left:hover .member-photo,
.team-right:hover .member-photo,
.team-left:focus-within .member-photo,
.team-right:focus-within .member-photo {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

/* Não alterar letter-spacing para evitar quebra de linhas no hover */

/* Ícones sobem com leve atraso para efeito de cascata */
.member-social .social-link:nth-child(1) {
  transition-delay: 0.05s;
}
.member-social .social-link:nth-child(2) {
  transition-delay: 0.1s;
}
.team-left:hover .member-social .social-link,
.team-right:hover .member-social .social-link,
.team-left:focus-within .member-social .social-link,
.team-right:focus-within .member-social .social-link {
  transform: translateY(0);
  opacity: 1;
}

/* Brilho radial sutil no topo ao ativar */
.team-left::before,
.team-right::before {
  content: "";
  position: absolute;
  inset: -15% -10% -5% -10%;
  background: radial-gradient(
    120% 80% at 50% 0%,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015) 45%,
    rgba(255, 255, 255, 0) 65%
  );
  opacity: 0;
  transform: translateY(8px) scale(1.03);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}

.team-left:hover::before,
.team-right:hover::before,
.team-left:focus-within::before,
.team-right:focus-within::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Respeita preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .team-member,
  .member-photo,
  .social-link {
    transition: none !important;
  }
}

/* Hover/focus do bloco inteiro: aplica tema azul temporário */
.team-left:hover,
.team-right:hover,
.team-left:focus-within,
.team-right:focus-within {
  background-color: #1e2f3c;
}

.team-left:hover .member-name,
.team-right:hover .member-name,
.team-left:focus-within .member-name,
.team-right:focus-within .member-name,
.team-left:hover .member-bio,
.team-right:hover .member-bio,
.team-left:focus-within .member-bio,
.team-right:focus-within .member-bio {
  color: #ffffff;
}

.team-left:hover .social-link,
.team-right:hover .social-link,
.team-left:focus-within .social-link,
.team-right:focus-within .social-link {
  border-color: #ffffff;
  background: transparent;
}

.team-left:hover .social-link svg,
.team-right:hover .social-link svg,
.team-left:focus-within .social-link svg,
.team-right:focus-within .social-link svg {
  fill: #ffffff;
}

/* Ao focar/hover no ícone dentro do bloco azul, inverter para contraste */
.team-left:hover .social-link:hover,
.team-right:hover .social-link:hover,
.team-left:focus-within .social-link:hover,
.team-right:focus-within .social-link:hover {
  background: #ffffff;
}

.team-left:hover .social-link:hover svg,
.team-right:hover .social-link:hover svg,
.team-left:focus-within .social-link:hover svg,
.team-right:focus-within .social-link:hover svg {
  fill: #1e2f3c;
}

/* ====================================
   Services Section
   ==================================== */

.services-section {
    position: relative;
    background: #DC473B;
    padding: 120px 0;
    min-height: 100vh;
    /* overflow hidden pode quebrar position: sticky; manter visível para empilhamento */
    overflow: visible;
}

.services-title {
    font-weight: 700;
    font-size: 90px;
    line-height: 90%;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.15;
    text-align: center;
    margin: 60px 0 80px;
    position: relative;
    text-shadow: 0 0 0 rgba(255,255,255,0);
    animation: services-title-breathe 6.5s ease-in-out infinite;
}

.services-title .letter {
    display: inline-block;
    will-change: transform, opacity;
}

/* Grid cards estilo antigo, adaptado às classes atuais */
.space { height: 40vh; }
.space--small { height: 0; }

/* Aumenta a largura útil apenas nesta seção para caber texto + imagem */
.services-section .container { padding: 0 20px; }

.services-progress {
    position: sticky;
    top: clamp(64px, 16vh, 140px);
    z-index: 12;
    max-width: min(680px, 82vw);
    margin: clamp(28px, 6vh, 48px) auto clamp(52px, 12vh, 96px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    --services-progress-count: rgba(255, 255, 255, 0.8);
    --services-progress-step: rgba(255, 255, 255, 0.28);
    --services-progress-step-active: #112F3F;
    --services-progress-step-complete: rgba(17, 47, 63, 0.7);
}

.services-progress-count {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: clamp(12px, 1.3vw, 15px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--services-progress-count);
}

.services-progress-bar {
    width: 100%;
}

.services-progress-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: min(780px, 90vw);
}

.services-progress-step {
    width: clamp(56px, 9vw, 92px);
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    opacity: 0.45;
    transition: opacity 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.services-progress-step.is-complete {
    opacity: 1;
    background: rgba(15, 39, 53, 0.75);
}

.services-progress-step.is-active {
    opacity: 1;
    background: #162F3E;
    box-shadow: 0 0 16px rgba(17, 47, 63, 0.3);
}

/* Brilho de linha sutil sob o título dos serviços */
.services-title::after {
        content: "";
        position: absolute;
        left: 12%;
        right: 12%;
        height: 6px;
        bottom: -16px;
        background: linear-gradient(90deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.12) 30%,
                rgba(255,255,255,0.45) 50%,
                rgba(255,255,255,0.12) 70%,
                rgba(255,255,255,0) 100%);
        border-radius: 4px;
        filter: blur(0.3px);
        opacity: 0;
        transform: translateX(-35%) scaleX(0.6);
        animation: services-title-sheen 7s ease-in-out infinite 0.8s;
        pointer-events: none;
}

@keyframes services-title-breathe {
    0%, 100% { text-shadow: 0 0 0 rgba(255,255,255,0); }
    40% { text-shadow: 0 0 10px rgba(255,255,255,0.18), 0 0 22px rgba(255,255,255,0.10); }
}

@keyframes services-title-sheen {
    0% { opacity: 0; transform: translateX(-45%) scaleX(0.5); }
    12% { opacity: .88; }
    50% { transform: translateX(45%) scaleX(1); }
    88% { opacity: 0; }
    100% { opacity: 0; transform: translateX(60%) scaleX(0.5); }
}

@media (prefers-reduced-motion: reduce) {
    .services-title { animation: none; text-shadow: none; }
    .services-title::after { animation: none; opacity: 0; }
}

.cards {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-rows: repeat(var(--cards-count, 2), var(--card-height, 420px));
    gap: 40px 0;
}

.card {
    position: sticky;
    /* centraliza, mas não deixa aparecer tarde demais */
    top: clamp(80px, calc((100vh - var(--card-height, 420px)) / 2), 200px);
}

.card__inner {
    position: relative;
    height: 420px;
    padding: 47px 80px;
    display: flex;
    align-items: center;
    border-radius: 14px;
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.16);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Cores por card (equivalente ao .service-card.card-1/card-2) */
.card--teal .card__inner {
    background: #4EC1B6;
    margin-left: 60px;
    width: calc(100% - 60px);
}
.card--white .card__inner {
    background: #F5F5F5;
    margin-left: 60px;
    width: calc(100% - 60px);
}
.card--blue .card__inner {
    background: #1E2F3C;
    margin-left: 60px;
    width: calc(100% - 60px);
}
.card--blue .card__number,
.card--blue .card__description,
.card--blue .card__title {
    color: #FFFFFF !important;
}
/* Número e textos como no CSS antigo */
.card__number {
    /* número integrado ao fluxo para que o título fique logo abaixo */
    position: static;
    display: block;
    font-weight: 700;
    font-size: 80px;
    line-height: 120%;
    text-transform: uppercase;
    color: #1E2F3C;
    margin: 0 0 8px 0;
}

.card__content {
    padding: 0;
    display: flex;
    flex-direction: column;
    /* empilha número > título > descrição alinhados à esquerda */
    margin-left: 0;
    padding-top: 0;
    /* mantém respiro à direita sem estrangular coluna */
    padding-right: 40px;
    max-width: 520px;
    gap: 8px;
}

.card__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    text-transform: uppercase;
    color: #1E2F3C;
    margin: 0 0 16px 0;
    max-width: 478px;
}

.card__description {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    color: #1E2F3C;
    max-width: 520px;
}

/* Imagem absoluta à direita com borda branca */
.card__image-container {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 560px;
    height: 300px;
    border: 2.44px solid #FFFFFF;
    box-sizing: border-box;
    z-index: 2;
}
.card__image { width: 100%; height: 100%; object-fit: cover; }

/* Hover de deslocamento (como no antigo) */
.card:hover .card__inner { transform: translateX(20px); }

@media (max-width: 900px) {
    .cards { max-width: 90%; }
}

@media (max-width: 820px) {
    .services-section {
        overflow: visible;
    }
    .cards {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
        padding-bottom: max(220px, calc(var(--card-height, 420px) * 0.6));
        --card-mobile-offset: 0px;
        align-items: center;
        width: 100%;
    }
    .card {
        position: sticky;
        top: clamp(64px, calc((100vh - var(--card-height, 420px)) / 2), 140px);
        margin-bottom: clamp(48px, 12vw, 96px);
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
        transform-origin: center top;
    }
    .card:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
        min-height: auto;
        overflow: visible;
    }
    .services-section .container {
        padding: 0 24px;
    }
    .services-progress {
        margin: 20px auto 44px;
        top: 71px;
    }
    .services-progress-count {
        font-size: 12px;
    }
    .services-progress-steps {
        max-width: 100%;
    }
    .services-progress-step {
        flex-basis: clamp(42px, 15vw, 64px);
    }
    .services-title {
        font-size: clamp(48px, 12vw, 72px);
        margin: 40px 0 60px;
    }
    .cards {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
        padding-bottom: max(220px, calc(var(--card-height, 420px) * 0.6));
        --card-mobile-offset: 0px;
        align-items: center;
        width: 100%;
    }
    .card {
        position: sticky;
        top: clamp(56px, calc((100vh - var(--card-height, 420px)) / 2), 120px);
        margin-bottom: clamp(48px, 14vw, 96px);
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
        transform-origin: center top;
    }
    .card:last-child {
        margin-bottom: 0;
    }
    .card__inner { 
        flex-direction: column; 
        height: auto; 
        padding: 32px 24px;
        margin-left: var(--card-mobile-offset, 0px);
        width: calc(100% - var(--card-mobile-offset, 0px));
        box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.24);
    }
    .card--teal .card__inner,
    .card--white .card__inner,
    .card--blue .card__inner {
        margin-left: 0;
        width: 100%;
    }
    .card__number {
        font-size: clamp(56px, 14vw, 72px);
        margin-bottom: 16px;
    }
    .card__content {
        padding-right: 0;
        max-width: 100%;
    }
    .card__title { 
        font-size: clamp(24px, 6vw, 28px);
        max-width: 100%;
        margin-bottom: 16px;
    }
    .card__description { 
        font-size: clamp(16px, 4vw, 18px);
        line-height: 150%;
        max-width: 100%;
    }
    .card__image-container { 
        position: relative; 
        right: auto; 
        top: auto; 
        transform: none; 
        width: 100%; 
        max-width: 520px;
        height: 0;
        padding-bottom: 53.6%; /* mantém proporção original 560x300 */
        min-height: 0;
        border-width: 2px; 
        margin: 0 auto 24px;
        order: -1;
        overflow: hidden;
    }
    .card__image { 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%; 
        height: 100%; 
        object-fit: contain;
        object-position: center;
        background: #0f2735;
    }
    .card:hover .card__inner { 
        transform: none; 
    }
    .section-label {
        font-size: 18px;
    }
}

/* ====================================
   Cases Section
   ==================================== */

.cases-section {
    background-color: #1E2F3C;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    transition: background-color 0.6s ease;
}

.cases-section .container {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(80px, 10vh, 120px) clamp(40px, 8vw, 120px);
    box-sizing: border-box;
}

.cases-section .section-header {
    position: relative;
    margin-bottom: clamp(32px, 6vh, 64px);
    z-index: 5;
}

.cases-progress {
    position: relative;
    margin-bottom: clamp(28px, 5vh, 52px);
    z-index: 4;
    --cases-progress-count: rgba(255, 255, 255, 0.85);
    --cases-progress-track: rgba(255, 255, 255, 0.28);
    --cases-progress-step: rgba(255, 255, 255, 0.32);
    --cases-progress-step-active: #FFFFFF;
    --cases-progress-step-complete: #2AD3C9;
    --cases-progress-outline: rgba(42, 211, 201, 0.15);
    --cases-progress-knob-border: #FFFFFF;
}

.cases-progress-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: clamp(13px, 1.5vw, 16px);
    color: var(--cases-progress-count);
    margin-bottom: 14px;
}

.cases-progress-bar {
    position: relative;
    height: 9px;
    padding: 0 clamp(14px, 2vw, 22px);
}

.cases-progress-track,
.cases-progress-fill {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    z-index: 1;
}

.cases-progress-track {
    background: var(--cases-progress-track);
}

.cases-progress-fill {
    width: 0%;
    background: linear-gradient(90deg, #86D2DB 0%, #2AD3C9 100%);
    box-shadow: 0 0 18px rgba(42, 211, 201, 0.32);
    transform-origin: left center;
    overflow: visible;
    z-index: 2;
}

.cases-progress-fill::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2AD3C9;
    border: 2px solid var(--cases-progress-knob-border);
    box-shadow: 0 0 0 6px var(--cases-progress-outline);
    z-index: 4;
}

.cases-progress-steps {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.cases-progress-step {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cases-progress-step);
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cases-progress-step.is-active {
    background: var(--cases-progress-step-active);
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 0 0 6px var(--cases-progress-outline);
}

.cases-progress-step.is-complete {
    background: var(--cases-progress-step-complete);
}

.cases-list {
    position: relative;
    flex: 1;
    overflow: visible;
}

.case-content {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.case-content.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* Logo no canto superior direito do cabeçalho da seção Cases */
.cases-logo-mark {
    position: absolute;
    top: -25px; /* ajuste fino para alinhar à linha */
    right: 0;
    width: 85.45px;
    height: 65px;
    display: inline-block;
    background-image: url('../../img/logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
}

.case-mockup {
    position: relative;
    height: 100%;
    padding: clamp(24px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.mockup-img {
    width: calc(100% + clamp(140px, 12vw, 280px));
    max-width: 1600px;
    min-width: clamp(640px, 100%, 960px);
    aspect-ratio: 604 / 530;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.mockup-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.case-info {
    padding-top: 40px;
}

.case-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: #86D2DB;
    margin-bottom: 40px;
}
.case-subtitle {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: -16px 0 18px;
}
.case-subdescription {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 36px;
    max-width: 520px;
}
.case-subdescription span {
    display: block;
    font-size: 18px;
    opacity: 0.8;
}
.case-line { height: 2px; 
    background: currentColor; 
    transform: scaleX(0); 
    transform-origin: left center; 
    margin: -24px 0 24px; 
    opacity: .9;
}

.case-features {
    list-style: none;
    margin-bottom: 40px;
}

.case-features li {
    font-weight: 400;
    font-size: 24px;
    line-height: 160%;
    color: #FFFFFF;
    padding-left: 26px;
    position: relative;
}

.case-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 10px;
    background: #4EC1B6;
    border-radius: 50%;
}

.case-buttons {
    display: none;
    gap: 20px;
}

/* Temas de case (cores diferentes) */
.case-item.theme-default .case-title { color: #86D2DB; }
.case-item.theme-default .btn-outline { border-color: #4EC1B6; color: #4EC1B6; }
.case-item.theme-default .btn-outline:hover { background: #4EC1B6; color: #1E2F3C; }
.case-item.theme-default .case-subtitle { color: #86D2DB; }
.case-item.theme-default .case-subdescription { color: rgba(255,255,255,0.88); }

.case-item.theme-yellow .case-title { color: #1E2F3C; }
.case-item.theme-yellow .btn-outline { border-color: #1E2F3C; color: #1E2F3C; }
.case-item.theme-yellow .btn-outline:hover { background: #1E2F3C; color: #4EC1B6; }
.case-item.theme-yellow .case-features li::before { background: #1E2F3C; }
.case-item.theme-yellow .case-features li { color: #1E2F3C !important; }
.case-item.theme-yellow .case-subtitle { color: #1E2F3C; }
.case-item.theme-yellow .case-subdescription { color: rgba(30, 47, 60, 0.8); }
.case-item.theme-yellow .case-subdescription span { opacity: 0.7; }

.case-item.theme-red .case-title { color: #FFFFFF; }
.case-item.theme-red .case-features li { color: #FFFFFF !important; }
.case-item.theme-red .case-features li::before { background: #FEE644; }
.case-item.theme-red .btn-outline { border-color: #FEE644; color: #FEE644; }
.case-item.theme-red .btn-outline:hover { background: #FEE644; color: #B32E2A; }
.case-item.theme-red .case-subtitle { color: rgba(255,255,255,0.85); }
.case-item.theme-red .case-subdescription { color: rgba(255,255,255,0.92); }

.case-item.theme-light .case-title { color: #DC473B; }
.case-item.theme-light .case-features li { color: #1E2F3C !important; }
.case-item.theme-light .case-features li::before { background: #DC473B; }
.case-item.theme-light .btn-outline { border-color: #DC473B; color: #DC473B; }
.case-item.theme-light .btn-outline:hover { background: #DC473B; color: #FFFFFF; }
.case-item.theme-light .case-subtitle { color: #DC473B; }
.case-item.theme-light .case-subdescription { color: rgba(30, 47, 60, 0.82); }

.case-item.theme-deep .case-title { color: #7CC0FF; }
.case-item.theme-deep .case-features li::before { background: #7CC0FF; }
.case-item.theme-deep .btn-outline { border-color: #7CC0FF; color: #7CC0FF; }
.case-item.theme-deep .btn-outline:hover { background: #7CC0FF; color: #102436; }
.case-item.theme-deep .case-subtitle { color: #7CC0FF; }
.case-item.theme-deep .case-subdescription { color: rgba(255,255,255,0.9); }

.case-item.theme-teal .case-title { color: #0F2735; }
.case-item.theme-teal .case-features li { color: #0F2735 !important; }
.case-item.theme-teal .case-features li::before { background: #0F2735; }
.case-item.theme-teal .btn-outline { border-color: #0F2735; color: #0F2735; }
.case-item.theme-teal .btn-outline:hover { background: #0F2735; color: #4EC1B6; }
.case-item.theme-teal .case-subtitle { color: #0F2735; }
.case-item.theme-teal .case-subdescription { color: rgba(15, 39, 53, 0.82); }

.cases-section.cases-theme-light .section-label {
    color: #DC473B;
}
.cases-section.cases-theme-light .section-line.white {
    background: #DC473B;
    opacity: 0.8;
}
.cases-section.cases-theme-light .cases-anim-line {
    background: #DC473B;
    opacity: 0.9;
}
.cases-section.cases-theme-light .cases-logo-mark {
    background-image: url('../../img/logo-red.svg') !important; 
}
.cases-section.cases-theme-light .cases-progress,
.cases-section.cases-theme-teal .cases-progress,
.cases-section.cases-theme-yellow .cases-progress {
    --cases-progress-count: rgba(15, 39, 53, 0.82);
    --cases-progress-track: rgba(15, 39, 53, 0.22);
    --cases-progress-step: rgba(15, 39, 53, 0.35);
    --cases-progress-step-active: #2AD3C9;
    --cases-progress-step-complete: #2AD3C9;
    --cases-progress-knob-border: #0F2735;
    --cases-progress-outline: rgba(42, 211, 201, 0.22);
}

.cases-section.cases-theme-teal .section-label {
    color: #1E2F3C;
}
.cases-section.cases-theme-teal .section-line{
    background: #1E2F3C;
    opacity: 0.8;
}
.cases-section.cases-theme-teal .cases-logo-mark {
    background-image: url('../../img/logo-teal.svg') !important; 
}

.cases-section.cases-theme-red .section-label,
.cases-section.cases-theme-dark .section-label,
.cases-section.cases-theme-deep .section-label {
    color: #FFFFFF;
}

/* Linha animada no header dos cases */
.cases-anim {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
}
.cases-anim-line {
    width: 100%;
    height: 2px;
    background: #F6EFD1;
    transform: scaleX(0);
    transform-origin: left center;
}

/* Tablets e acima mantêm animação desktop - não mexer */

@media (max-width: 991px) {
    .cases-section .container {
        padding: clamp(72px, 10vh, 96px) 24px 96px;
    }

    .cases-section .section-header {
        margin-bottom: 32px;
    }

    .cases-progress {
        margin-bottom: 32px;
    }

    .cases-progress-count {
        font-size: 13px;
    }

    .case-content {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: flex-start;
    }

    .case-mockup {
        order: -1;
        padding: 0;
        justify-content: flex-start;
        overflow: hidden;
    }

    .mockup-img {
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .case-info {
        padding-top: 0;
    }

    .case-features {
        margin-bottom: 32px;
    }

    .case-features li {
        font-size: clamp(16px, 2.6vw, 20px);
        line-height: 150%;
    }
}

@media (max-width: 768px) {
    .cases-section .container {
        padding: 72px 20px 88px;
    }

    .cases-progress {
        margin-bottom: 28px;
    }

    .cases-progress-fill::after {
        width: 14px;
        height: 14px;
        box-shadow: 0 0 0 4px var(--cases-progress-outline);
    }

    .cases-logo-mark {
        width: 56px;
        top: -18px;
    }

    .case-content {
        gap: 28px;
    }

    .case-title {
        font-size: clamp(26px, 7vw, 34px);
    }
    .case-subdescription{
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 28px;
    }

    .case-line {
        margin: -12px 0 20px;
    }

    .case-features li {
        font-size: clamp(15px, 4.4vw, 18px);
    }

    .btn-outline,
    .btn-primary {
        padding: 14px 26px;
        font-size: 16px;
    }
}

.btn-outline,
.btn-primary {
    padding: 16px 32px;
    border-radius: 32px;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid #4EC1B6;
    background: transparent;
    color: #4EC1B6;
}

.btn-primary {
    border: none;
    background: #4EC1B6;
    color: #1E2F3C;
}

.btn-outline:hover {
    background: #4EC1B6;
    color: #1E2F3C;
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: #3da89d;
    transform: translateY(-2px);
}

/* ====================================
   Localização (Figma style)
   ==================================== */
.localizacao-section {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
}
.localizacao-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.localizacao-bg img {
  width: 100%;
  height: 107%;
  object-fit: cover;
}

.localizacao-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
}

/* Barra superior com linha */
.localizacao-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding-top: 28px;
}
.localizacao-topbar .topbar-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.localizacao-topbar .brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
  white-space: nowrap;
  font-family: "Titillium Web", "TitilliumWeb", sans-serif;
}
.localizacao-topbar .brand .dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #ff9b04;
  border-radius: 50%;
  margin: 0px 0px 6px 6px;
  vertical-align: middle;
}

.localizacao-topbar .topline {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  width: 100%;
}

/* Conteúdo central */
.localizacao-inner {
  position: relative;
  z-index: 5;
  padding-top: 120px;
}
.localizacao-title {
  font-weight: 600;
  font-size: 88px;
  line-height: 90%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.localizacao-cta {
  margin-top: 28px;
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-top: 18px;
}
.localizacao-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

/* Barra inferior com linha */
.localizacao-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 5;
}
.localizacao-bottom .bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
}
.localizacao-bottom .bottom-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  width: 100%;
}
.localizacao-bottom .address {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.localizacao-bottom .address .location-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.localizacao-bottom .sala {
  display: flex;
  align-items: center;
  gap: 10px;
}

.localizacao-bottom .sala-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.localizacao-bottom .sala-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.localizacao-bottom .sala-icon img,
.localizacao-bottom .sala-icon svg {
  height: 60px;
  width: auto;
  display: block;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(85%) sepia(58%) saturate(646%)
    hue-rotate(357deg) brightness(104%) contrast(101%);
}

/* ====================================
   Footer logo (bloco vermelho dinâmico)
   ==================================== */
.footer-section {
  position: relative;
  min-height: 560px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.6s ease, filter 0.6s ease;
}
.footer-section.footer-theme-red {
  background: #dc473b;
}
.footer-section.footer-theme-teal {
  background: #4ec1b6;
}
.footer-section.footer-theme-dark {
  background: #1e2f3c;
}
.footer-section.footer-theme-yellow {
  background: #fee644;
}

.footer-logo-giant {
  position: relative;
  z-index: 2;
  width: min(80vw, 980px);
  opacity: 1;
}
.footer-logo-giant img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer do tipo painel (full viewport) */
.footer-section.footer-panels {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 0; /* respiro semelhante às outras seções */
  border-radius: 0; /* sem cantos arredondados */
}

/* Cores default; serão trocadas pelo GSAP */
.footer-section.footer-panels {
  background: #dc473b;
}
.footer-panels.theme-dark {
  background: #1e2f3c;
}
.footer-panels.theme-teal {
  background: #4ec1b6;
}
.footer-panels.theme-yellow {
  background: #fee644;
}
.footer-panels.theme-red {
  background: #dc473b;
}

.footer-logo-giant {
  width: min(76vw, 1180px);
}

/* Footer Panels (seção com transições de cor) */
.footer-panels-section {
  position: relative;
  height: 400vh; /* espaço para transição de cores */
}

@media (max-width: 768px) {
  .footer-panels-section {
    height: 400vh;
  }
}

.footer-panels-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc473b; /* cor inicial */
  transition: background-color 0.4s ease;
}
.footer-panels-pin.theme-dark {
  background: #1e2f3c;
}
.footer-panels-pin.theme-teal {
  background: #4ec1b6;
}
.footer-panels-pin.theme-yellow {
  background: #fee644;
}
.footer-panels-pin.theme-red {
  background: #dc473b;
}

/* Conteúdo do footer com texto e logo */
.footer-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  width: 100%;
  max-width: min(1100px, 85vw);
  padding: clamp(40px, 12vw, 160px) clamp(32px, 20vw, 145px);
  gap: clamp(32px, 4vw, 48px);
}

.footer-heading {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 clamp(28px, 19vw, 214px) 0;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
  align-self: center;
  text-align: center;
}

.footer-heading-line {
  display: block;
  white-space: nowrap;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  position: relative;
  z-index: 2;
}

.footer-cta-text {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.4s ease;
}

.footer-cta-text + .footer-cta-text {
  margin-top: -14px; /* Pull second line closer to mimic negative gap */
}

.footer-panels-pin .footer-logo-giant {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(85vw, 1200px);
  z-index: 1;
  pointer-events: none;
  --frame-opacity: 0.24;
  --logo-img-opacity: 1;
  --logo-shadow-opacity: 0.28;
}

.footer-panels-pin .footer-logo-giant img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  opacity: var(--logo-img-opacity);
  filter: drop-shadow(0 24px 55px rgba(0, 0, 0, var(--logo-shadow-opacity)));
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.footer-panels-pin .footer-logo-giant::before {
  content: "";
  position: absolute;
  opacity: var(--frame-opacity);
  transition: opacity 0.4s ease, border-color 0.4s ease;
  z-index: 0;
}

@media (max-width: 768px) {
  .footer-content {
    align-items: center;
    text-align: center;
    max-width: none;
    padding: clamp(32px, 10vw, 80px);
    gap: clamp(24px, 5vw, 36px);
  }

  .footer-cta {
    align-items: center;
  }

  .footer-heading-line {
    white-space: normal;
  }
}

/* Ajuste de cores do texto e logo por tema */
.footer-panels-pin.theme-dark .footer-heading,
.footer-panels-pin.theme-dark .footer-cta-text {
  color: #ffffff;
}

.footer-panels-pin.theme-teal .footer-heading,
.footer-panels-pin.theme-teal .footer-cta-text {
  color: #ffffff;
}

.footer-panels-pin.theme-yellow .footer-heading,
.footer-panels-pin.theme-yellow .footer-cta-text {
  color: #1e2f3c;
}

.footer-panels-pin.theme-red .footer-heading,
.footer-panels-pin.theme-red .footer-cta-text {
  color: #ffffff;
}

/* Ajustes responsivos */
@media (max-width: 1200px) {
  .localizacao-title {
    font-size: 72px;
  }
  .footer-logo-giant {
    width: min(90vw, 1000px);
  }
}
@media (max-width: 768px) {
  .localizacao-section {
    height: auto;
    min-height: 600px;
    padding: 60px 0;
  }
  .localizacao-topbar {
    padding-top: 20px;
  }
  .localizacao-topbar .brand {
    font-size: 16px;
  }
  .localizacao-topbar .brand .dot {
    width: 12px;
    height: 12px;
    margin: 0 0 4px 4px;
  }
  .localizacao-inner {
    padding-top: 80px;
  }
  .localizacao-title {
    font-size: clamp(48px, 12vw, 64px);
    line-height: 95%;
  }
  .localizacao-cta {
    font-size: 11px;
    margin-top: 20px;
    padding-top: 14px;
  }
  .localizacao-cta::before {
    width: 120px;
  }
  .localizacao-bottom {
    bottom: 20px;
  }
  .localizacao-bottom .bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
  }
  .localizacao-bottom .address {
    font-size: 10px;
    line-height: 140%;
  }
  .localizacao-bottom .address .location-icon {
    width: 16px;
    height: 16px;
  }
  .localizacao-bottom .sala {
    gap: 8px;
  }
  .localizacao-bottom .sala-label {
    font-size: 11px;
  }
  .localizacao-bottom .sala-icon {
    min-height: 40px;
  }
  .localizacao-bottom .sala-icon img,
  .localizacao-bottom .sala-icon svg {
    height: 40px;
    max-width: 100px;
  }

  .footer-content {
    padding: 0 24px;
  }
  .footer-heading {
    font-size: clamp(32px, 8vw, 48px);
    margin: 0 0 32px 0;
    line-height: 1.2;
  }
  .footer-cta {
    gap: 16px;
  }
  .footer-cta-text {
    font-size: clamp(20px, 5vw, 32px);
  }
  .footer-panels-pin .footer-logo-giant img {
    opacity: var(--logo-img-opacity);
  }
  .footer-panels-pin .footer-logo-giant::before {
    opacity: 0.24;
  }
}

/* SVG das lanes tipo Guitar Hero */
/* SVG oficial no rodapé (como background animável) */
.hero-floor-svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(90px, 13vh, 220px);
  z-index: 2;
  pointer-events: none;
}
