/* ============================================
   NEW HITS PREMIUM — STYLE SYSTEM
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6vw, 6rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* COLORS — Dark Premium Music Theme */
  --color-bg: #050507;
  --color-bg-alt: #0d0b1a;
  --color-surface: rgba(255, 255, 255, 0.03);
  --color-surface-2: rgba(255, 255, 255, 0.06);
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  --color-glass-hover: rgba(255, 255, 255, 0.1);

  --color-text: #f0eef5;
  --color-text-muted: rgba(240, 238, 245, 0.6);
  --color-text-faint: rgba(240, 238, 245, 0.35);

  --color-accent: #00bcd4;
  --color-accent-hover: #26c6da;
  --color-accent-2: #0097a7;
  --color-accent-3: #00acc1;

  --color-glow: rgba(0, 188, 212, 0.15);
  --color-glow-strong: rgba(0, 188, 212, 0.3);

  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(0, 188, 212, 0.12);
  --shadow-glow-strong: 0 0 60px rgba(0, 188, 212, 0.2);

  --font-display: 'Cabinet Grotesk', 'General Sans', sans-serif;
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.1;
}

p, li, figcaption {
  text-wrap: pretty;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

a, button, [role='button'] {
  transition: color var(--transition-interactive), background var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

::selection {
  background: rgba(0, 188, 212, 0.3);
  color: #fff;
}

.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

/* ============================================
   GLASS MORPHISM SYSTEM
   ============================================ */
.glass-card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-smooth);
}

.glass-card:hover {
  background: var(--color-glass-hover);
  border-color: rgba(0, 188, 212, 0.2);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
  transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-12) 0 var(--space-6);
  transition: background 0.4s ease, padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s ease;
  isolation: isolate; /* mantém z-index do ::before contido aqui dentro */
}

/* Faixa sólida atrás do header — bloqueia 100% conteúdo passando atrás da pílula.
   Fade aparece SOMENTE nos últimos pixels pra não cortar com linha dura. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(6, 8, 14, 1) 0%,
    rgba(6, 8, 14, 1) 78%,
    rgba(6, 8, 14, 0.85) 90%,
    rgba(6, 8, 14, 0) 100%
  );
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 0; /* fica ATRÁS do .header-inner mas À FRENTE da página embaixo */
}

.site-header > * {
  position: relative;
  z-index: 1;
}

/* Respiro pra seção aparecer abaixo do header fixo quando rolada via âncora */
#stats, #global, #platforms, #trust, #features, #why, #reasons,
#artists, #labels, #app, #cta {
  scroll-margin-top: 170px;
}

.site-header.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  padding: var(--space-12) 0 var(--space-6);
  box-shadow: none;
}

.header-inner {
  position: relative;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-left: var(--space-8);
  padding-right: var(--space-8);
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(10, 14, 22, 0.97) 0%, rgba(6, 8, 14, 0.95) 100%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  backdrop-filter: blur(32px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 188, 212, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

/* Borda gradiente animada (mask trick) */
.header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  overflow: hidden;
  background: conic-gradient(
    from var(--header-angle, 0deg),
    rgba(0, 188, 212, 0.0) 0deg,
    rgba(0, 188, 212, 0.7) 60deg,
    rgba(217, 28, 92, 0.55) 140deg,
    rgba(0, 188, 212, 0.0) 220deg,
    rgba(29, 233, 236, 0.6) 300deg,
    rgba(0, 188, 212, 0.0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  animation: header-border-rotate 8s linear infinite;
  opacity: 0.9;
}

/* Shimmer sutil passando da esquerda pra direita */
.header-inner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0%;
  width: 35%;
  border-radius: inherit;
  overflow: hidden;
  -webkit-mask: linear-gradient(#000, #000);
          mask: linear-gradient(#000, #000);
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.10) 40%,
    rgba(0, 220, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.10) 60%,
    transparent 100%
  );
  filter: blur(7px);
  pointer-events: none;
  z-index: 0;
  animation: header-shimmer 8s ease-in-out infinite;
}

.header-inner > * {
  position: relative;
  z-index: 1;
}

@property --header-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes header-border-rotate {
  to { --header-angle: 360deg; }
}

@keyframes header-shimmer {
  0%   { left: 0%;  opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 65%; opacity: 0; }
}

/* fallback de cor extra (placeholder pra manter regra original abaixo) */
.header-inner {
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  position: relative;
  isolation: isolate;
}

/* Glow cyan piscando exatamente sobre o triangulo do play da logo */
/* Triangulo localizado em ~53% horizontal e ~50% vertical da logo PNG (1168x249) */
.logo::after {
  content: '';
  position: absolute;
  left: 53%;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  pointer-events: none;
  z-index: 2;
  /* Glow radial cyan mais intenso */
  background: radial-gradient(
    circle at center,
    rgba(220, 250, 255, 0.85) 0%,
    rgba(120, 240, 255, 0.65) 20%,
    rgba(0, 220, 255, 0.4) 45%,
    rgba(0, 188, 212, 0.15) 65%,
    rgba(0, 188, 212, 0) 85%
  );
  filter: blur(3px);
  mix-blend-mode: screen;
  opacity: 0.4;
  /* Sincronizado com region-pulse e gpm-pulse (1.6s) da barra de distribuicao/recursos */
  animation: logo-play-pulse 1.6s ease-in-out infinite;
}

@keyframes logo-play-pulse {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.75);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo::after { animation: none; opacity: 0.5; transform: scale(1); }
}

.logo svg,
.logo .logo-img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.logo:hover .logo-img {
  opacity: 1;
}

/* .app texto ciano colado no Hits, alinhado na base */
.logo-tld {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #00bcd4;
  line-height: 1;
  text-transform: lowercase;
  margin-left: 2px;
  position: relative;
  bottom: 1px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.logo:hover .logo-tld {
  color: #1de9ec;
  text-shadow: 0 0 12px rgba(0, 188, 212, 0.5);
}

/* Footer logo wrap + .app menor */
.footer-logo-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 12px;
}

.footer-logo-tld {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #00bcd4;
  line-height: 1;
  text-transform: lowercase;
  opacity: 0.9;
  margin-left: 2px;
  position: relative;
  bottom: 1px;
}

.footer-logo-img {
  height: 22px;
  width: auto !important;
  max-width: none;
  display: block;
  margin: 0 0 14px 0;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  opacity: 0.95;
  align-self: flex-start;
}

.main-nav {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav-link {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #00bcd4;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-left: 18px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

/* Halo luminoso atrás do play (efeito brilho) */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.55) 0%, rgba(0, 188, 212, 0) 70%);
  transform: translateY(-50%) scale(1);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  filter: blur(2px);
  animation: navPlayHalo 1.8s ease-out infinite;
}

/* Play azul ciano puro (igual logo) com drop-shadow luminoso */
.nav-link::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  width: 9px;
  height: 9px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300bcd4'><path d='M8 5v14l11-7z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%) scale(1) rotate(0deg);
  opacity: 1;
  transition: opacity 0.25s ease, filter 0.3s ease, background-image 0.25s ease;
  filter: drop-shadow(0 0 6px rgba(0, 188, 212, 0.5));
  pointer-events: none;
  z-index: 1;
  animation: navPlayGlow 1.6s ease-in-out infinite;
}

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

.nav-link:hover::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M8 5v14l11-7z'/></svg>");
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  animation-play-state: paused;
}

.nav-link:hover::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  animation-play-state: paused;
}

@keyframes navPlayGlow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(0, 188, 212, 0.7)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(0, 188, 212, 1)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.6));
  }
}

@keyframes navPlayHalo {
  0% {
    transform: translateY(-50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-50%) scale(2.2);
    opacity: 0;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Language Selector */
/* Language selector - globo gira + dropdown enxuto */
.lang-selector {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  user-select: none;
}

.lang-toggle:hover,
.lang-selector:hover .lang-toggle {
  color: #00bcd4;
  background: rgba(0, 188, 212, 0.10);
}

.lang-toggle:hover .lang-globe,
.lang-selector:hover .lang-globe {
  animation: globeSpin 1.6s linear infinite;
  color: #00bcd4;
}

.lang-globe {
  opacity: 0.9;
  color: #00bcd4;
  transition: color 0.2s ease;
  transform-origin: center;
  will-change: transform;
  animation: globeSpin 6s linear infinite;
}

@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.lang-toggle.spinning .lang-globe {
  animation: globeSpin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1;
}

/* Bridge invisivel pra nao fechar quando o mouse desce do globo pro menu */
.lang-selector::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 12px;
  pointer-events: none;
}

.lang-selector:hover::after {
  pointer-events: auto;
}

.lang-code {
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-block;
  min-width: 18px;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-code.fading {
  opacity: 0;
  transform: translateY(-4px);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  background: rgba(13, 11, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.2s;
  z-index: 100;
  min-width: 70px;
}

.lang-menu.open,
.lang-selector:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.lang-item.active {
  color: #00bcd4;
  background: rgba(0, 188, 212, 0.08);
}

/* Header buttons - Spotify-inspired */
.btn-login {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(0, 188, 212, 0.9);
  background: transparent;
  border: 1px solid rgba(0, 188, 212, 0.5);
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-login:hover {
  color: #fff;
  background: #00bcd4;
  border-color: #00bcd4;
  transform: scale(1.04);
  box-shadow: 0 0 18px rgba(0, 188, 212, 0.4);
}

.btn-cta-header {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  background: rgba(0, 188, 212, 0.9);
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0, 188, 212, 0.9);
  white-space: nowrap;
  text-transform: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

/* Borda gradiente cyan animada (mesmo efeito do header) */
.btn-cta-header {
  isolation: isolate;
}
.btn-cta-header::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--btn-angle, 0deg),
    rgba(0, 220, 255, 0) 0deg,
    rgba(0, 220, 255, 0.95) 80deg,
    rgba(255, 255, 255, 0.9) 130deg,
    rgba(0, 220, 255, 0.95) 180deg,
    rgba(0, 220, 255, 0) 260deg,
    rgba(0, 220, 255, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 5px rgba(0, 220, 255, 0.7));
  animation: btn-border-rotate 5s linear infinite;
}

.btn-cta-header:hover {
  background: #00bcd4;
  transform: scale(1.04);
  box-shadow: 0 0 18px rgba(0, 188, 212, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--space-2);
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(5, 5, 7, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text-muted);
}

.mobile-link:hover {
  color: var(--color-text);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

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

.hero-globe-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 95vw);
  height: min(900px, 95vw);
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  mix-blend-mode: screen;
}

/* Floating glow orbs */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.12) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: orb-float-1 12s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 151, 167, 0.1) 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
  animation: orb-float-2 15s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-5);
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-8);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 188, 212, 0); }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: var(--space-24) var(--space-6) var(--space-32);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(240, 238, 245, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(0, 188, 212, 0.1));
}

.hero-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 760px;
  margin: 0 auto var(--space-10);
  line-height: 1.6;
  text-wrap: balance;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-glass-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 188, 212, 0.3);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

/* Borda gradiente cyan animada (mesmo efeito do header, em uma cor so) */
.btn-glass-primary {
  isolation: isolate;
}
.btn-glass-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--btn-angle, 0deg),
    rgba(0, 220, 255, 0) 0deg,
    rgba(0, 220, 255, 0.95) 80deg,
    rgba(255, 255, 255, 0.95) 130deg,
    rgba(0, 220, 255, 0.95) 180deg,
    rgba(0, 220, 255, 0) 260deg,
    rgba(0, 220, 255, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 6px rgba(0, 220, 255, 0.7));
  animation: btn-border-rotate 5s linear infinite;
}

.btn-glass-primary > *,
.btn-cta-header > * {
  position: relative;
  z-index: 1;
}

@property --btn-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes btn-border-rotate {
  to { --btn-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta-header::after,
  .btn-glass-primary::after { animation: none; opacity: 0.5; }
}

.btn-glass-primary:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

.btn-glass-primary.btn-lg {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-base);
}

.btn-glass-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  white-space: nowrap;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-text-faint);
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
}

.hero-scroll-indicator:hover {
  color: var(--color-accent);
  background: rgba(0, 188, 212, 0.08);
}

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

/* ============================================
   STATS
   ============================================ */
.stats-section {
  padding: 10px 0 10px;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  max-width: 720px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 8px 8px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.4;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.stat-plus,
.stat-prefix {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-prefix {
  margin-right: 2px;
}

.stat-label {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.25;
}

/* ============================================
   PLATFORMS MARQUEE
   ============================================ */
.platforms-section {
  padding: 90px 0 40px;
  overflow: hidden;
}
.platforms-section .section-title { margin-bottom: 6px; }
.platforms-section .section-subtitle-center { margin-top: 0; margin-bottom: 0; }
@media (max-width: 768px) {
  .platforms-section { padding: 60px 0 24px; }
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
  letter-spacing: -0.02em;
}

.marquee-wrapper {
  margin-top: var(--space-12);
  overflow-x: clip;
  overflow-y: visible;
  padding: 36px 0;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg) 0%, transparent 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
  animation: marquee 40s linear infinite;
  width: max-content;
  align-items: center;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.platform-item:hover {
  opacity: 1;
}

.platform-item svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 6px 18px rgba(0, 188, 212, 0.18));
  transition: filter 0.35s ease, transform 0.35s ease;
  transform-origin: center;
}

.platform-item:hover svg,
.platform-item:focus-visible svg {
  filter:
    drop-shadow(0 0 8px rgba(0, 220, 255, 0.85))
    drop-shadow(0 0 18px rgba(0, 188, 212, 0.7))
    drop-shadow(0 0 32px rgba(217, 28, 92, 0.35));
  transform: scale(1.08);
}

.platform-item:hover span {
  color: var(--color-text);
  text-shadow: 0 0 12px rgba(0, 220, 255, 0.5);
}
.platform-item span {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.platform-item span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.01em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* IMPACT TICKER (linha de impacto abaixo das logos) */
.impact-ticker-wrapper {
  margin-top: clamp(var(--space-12), 6vw, var(--space-16));
  padding: clamp(var(--space-4), 1.5vw, var(--space-6)) 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg,
    rgba(0, 188, 212, 0.06),
    rgba(217, 28, 92, 0.06),
    rgba(0, 188, 212, 0.06)
  );
  border-top: 1px solid rgba(0, 188, 212, 0.18);
  border-bottom: 1px solid rgba(0, 188, 212, 0.18);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.impact-ticker-track {
  display: flex;
  gap: clamp(var(--space-6), 3vw, var(--space-10));
  align-items: center;
  animation: impactTicker 45s linear infinite;
  width: max-content;
  white-space: nowrap;
}

.impact-item {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--color-text-muted);
  font-weight: 300;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.impact-item b {
  color: #00dcff;
  font-weight: 500;
  letter-spacing: 0;
  background: none;
  -webkit-text-fill-color: #00dcff;
}

.impact-dot {
  color: #d91c5c;
  font-size: 0.7em;
  opacity: 0.7;
  flex-shrink: 0;
}

@keyframes impactTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .platform-item svg { width: 48px; height: 48px; }
  .impact-item { font-size: clamp(0.95rem, 3.5vw, 1.1rem); }
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.feature-card:hover::before {
  opacity: 0.5;
}

.feature-icon {
  margin-bottom: var(--space-6);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 188, 212, 0.08);
  border-radius: var(--radius-lg);
}

.feature-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   ARTISTS SECTION
   ============================================ */
.artists-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, var(--color-bg) 100%);
}

.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: center;
}

.artists-content .section-title {
  text-align: left;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.artists-list {
  list-style: none;
  margin-bottom: var(--space-8);
}

.artists-list li {
  position: relative;
  padding-left: var(--space-8);
  padding-block: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.artists-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  opacity: 0.2;
}

.artists-list li::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 700;
}

/* Phone Mockup */
.artists-phone {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #111;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 20px 60px rgba(0,0,0,0.5), var(--shadow-glow);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #111;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0c0a1a 0%, #13102a 100%);
  border-radius: 30px;
  overflow: hidden;
  padding: var(--space-12) var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
}

.app-header-mock {
  margin-bottom: var(--space-5);
}

.app-greeting {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-5);
}

.app-stats-row {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.app-stat {
  flex: 1;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}

.app-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.app-stat-lbl {
  font-size: 10px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-chart {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-bottom: var(--space-5);
}

.app-releases {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.app-release-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
}

.app-release-art {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  flex-shrink: 0;
}

.app-release-art.art-2 {
  background: linear-gradient(135deg, #00acc1, #f97316);
}

.app-release-info {
  display: flex;
  flex-direction: column;
}

.app-release-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.app-release-status {
  font-size: 10px;
  color: #22c55e;
}

.app-release-status.pending {
  color: #eab308;
}

/* ============================================
   LABELS SECTION
   ============================================ */
.labels-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
}

.labels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: center;
}

.labels-content .section-title {
  text-align: left;
}

/* Dashboard Mockup */
.labels-dashboard {
  background: #0c0a1a;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-glass-border);
  overflow: hidden;
  box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.dash-top-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--color-glass-border);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28c841; }

.dash-title {
  font-size: 11px;
  color: var(--color-text-faint);
  font-weight: 500;
}

.dash-content {
  display: flex;
  min-height: 280px;
}

.dash-sidebar {
  width: 48px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--color-glass-border);
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.dash-nav-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
}

.dash-nav-item.active {
  background: rgba(0, 188, 212, 0.2);
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.dash-main {
  flex: 1;
  padding: var(--space-5);
}

.dash-kpi-row {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.dash-kpi {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}

.dash-kpi-num {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.dash-kpi-label {
  font-size: 10px;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-chart-area {
  margin-bottom: var(--space-5);
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.dash-table {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.dash-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2);
}

.dash-cell-art {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  flex-shrink: 0;
}

.dash-row:nth-child(2) .dash-cell-art {
  background: linear-gradient(135deg, #00acc1, #f97316);
}

.dash-row:nth-child(3) .dash-cell-art {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.dash-cell-name {
  width: 60px;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.dash-cell-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}

.dash-cell-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  border-radius: 3px;
}

/* eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

/* ============================================
   APP DOWNLOAD SECTION
   ============================================ */
.app-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.app-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: center;
}

.app-content .section-title {
  text-align: left;
}

.app-content .section-subtitle {
  text-align: left;
  margin-left: 0;
}

.app-install {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-8);
}

.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,188,212,0.1);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}

.qr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,188,212,0.25), 0 0 30px rgba(0,188,212,0.18);
}

.qr-code {
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code canvas,
.qr-code img {
  display: block;
  width: 100%;
  height: 100%;
}

.qr-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #050507;
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.install-step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.install-step:hover {
  border-color: rgba(0,188,212,0.25);
  background: var(--color-glass-hover);
}

.install-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(0,188,212,0.12);
  color: var(--color-accent);
}

.install-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.install-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.install-text span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.btn-install-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--color-accent);
  color: #050507;
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
}

.btn-install-direct:hover {
  background: #00d4ee;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,188,212,0.35);
}

/* Phone mockup (segunda tela: app real) */
.phone-frame-2 {
  width: 280px;
  height: 560px;
  background: linear-gradient(180deg, #0a0a0d 0%, #050507 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,188,212,0.06), inset 0 0 0 1px rgba(255,255,255,0.04);
}

.phone-frame-2 .phone-screen {
  background: #050507;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.app-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 8px;
  color: rgba(255,255,255,0.85);
}

.status-time {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.02em;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.85);
}

.app-header-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px 10px;
}

.app-logo-mock {
  height: 16px;
  width: auto;
  display: block;
}

.app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #007a8a);
  color: #050507;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-greeting {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 18px 14px;
}

.greet-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.greet-name {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.app-upload-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0 14px 12px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(0,188,212,0.14), rgba(0,188,212,0.04));
  border: 1px solid rgba(0,188,212,0.22);
  border-radius: 14px;
}

.upload-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0,188,212,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
}

.upload-text {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}

.upload-sub {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

.upload-arrow {
  color: rgba(0,188,212,0.7);
}

.app-stats-card {
  margin: 0 14px 12px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}

.stats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.stats-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

.stats-value {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.app-mini-stats {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.mini-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.mini-bar {
  width: 100%;
  background: linear-gradient(180deg, rgba(0,188,212,0.55), rgba(0,188,212,0.18));
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

.mini-bar-active {
  background: linear-gradient(180deg, var(--color-accent), #007a8a);
  box-shadow: 0 0 12px rgba(0,188,212,0.5);
}

.mini-stat span {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 14px 0 18px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.bnav-item {
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.bnav-item.active {
  color: var(--color-accent);
}

/* ============================================
   CTA BOTTOM
   ============================================ */
.cta-section {
  position: relative;
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0;
  text-align: center;
  overflow: hidden;
}

.cta-section .cta-canvas {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff, rgba(240, 238, 245, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0 var(--space-6);
  border-top: 1px solid var(--color-glass-border);
  background: var(--color-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 280px;
  padding: 0;
  margin: 0;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-faint);
  margin: 0 0 14px 0;
  padding: 0;
  text-align: left;
}

.footer-address {
  font-style: normal;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  margin: 0;
  padding: 0;
  text-align: left;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 18px 0;
  padding: 0;
}

.footer-col a {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: #00bcd4;
  transform: translateX(2px);
}

/* Botão New Hits Records */
.footer-records-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 8px 14px !important;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(0, 188, 212, 0.04));
  border: 1px solid rgba(0, 188, 212, 0.35);
  border-radius: 8px;
  color: #00bcd4 !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
  transition: all 0.25s ease;
}

.footer-records-btn:hover {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.22), rgba(0, 188, 212, 0.08));
  border-color: rgba(0, 188, 212, 0.6);
  color: #ffffff !important;
  transform: translateX(3px) !important;
  box-shadow: 0 0 16px rgba(0, 188, 212, 0.3);
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered reveal for grid children */
.features-grid .feature-card:nth-child(1) { transition-delay: 0ms; }
.features-grid .feature-card:nth-child(2) { transition-delay: 80ms; }
.features-grid .feature-card:nth-child(3) { transition-delay: 160ms; }
.features-grid .feature-card:nth-child(4) { transition-delay: 240ms; }
.features-grid .feature-card:nth-child(5) { transition-delay: 320ms; }
.features-grid .feature-card:nth-child(6) { transition-delay: 400ms; }

.stats-grid .stat-card:nth-child(1) { transition-delay: 0ms; }
.stats-grid .stat-card:nth-child(2) { transition-delay: 100ms; }
.stats-grid .stat-card:nth-child(3) { transition-delay: 200ms; }
.stats-grid .stat-card:nth-child(4) { transition-delay: 300ms; }

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .header-actions .btn-login,
  .header-actions .btn-cta-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .artists-grid,
  .labels-grid,
  .app-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .artists-phone,
  .app-phone {
    order: -1;
  }

  .labels-visual {
    order: -1;
  }

  .artists-content .section-title,
  .labels-content .section-title,
  .app-content .section-title,
  .app-content .section-subtitle {
    text-align: center;
  }

  .app-install {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: var(--space-6);
  }

  .qr-card {
    display: none;
  }

  .install-steps {
    width: 100%;
    max-width: 420px;
  }

  .btn-install-direct {
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .artists-list {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-subtitle {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
  }

  .phone-frame-2 {
    width: 220px;
    height: 440px;
  }

  .hero-content {
    padding: var(--space-20) var(--space-4) var(--space-24);
  }
}

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

  .stat-card {
    padding: var(--space-6) var(--space-4);
  }

  .app-buttons {
    flex-direction: column;
  }

  .qr-code {
    width: 140px;
    height: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SECTION SUBTITLE CENTER
   ============================================ */
.section-subtitle-center {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 700px;
  margin: calc(-1 * var(--space-8)) auto var(--space-12);
  line-height: 1.7;
}

/* ============================================
   GLOBAL PRESENCE SECTION
   ============================================ */
.global-section {
  padding: 14px 0 110px !important;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, var(--color-bg) 100%);
  overflow: hidden;
}

.global-section .section-title {
  margin-bottom: 4px;
  font-size: var(--text-lg);
}

.global-section .section-subtitle-center {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: var(--text-sm);
}

.globe-container {
  position: relative;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-2) var(--space-6);
}

.globe-canvas {
  display: none;
  width: 100%;
  height: 280px;
  pointer-events: none;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-10);
}

.globe-regions {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}

.globe-region {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 14px;
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
  font-size: var(--text-sm);
}

.globe-region:hover {
  background: var(--color-glass-hover);
  border-color: rgba(0, 188, 212, 0.25);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.region-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 188, 212, 0.9);
  animation: region-pulse 1.6s ease-in-out infinite;
}

.globe-region:nth-child(2) .region-dot { animation-delay: 0.5s; }
.globe-region:nth-child(3) .region-dot { animation-delay: 1s; }
.globe-region:nth-child(4) .region-dot { animation-delay: 1.5s; }
.globe-region:nth-child(5) .region-dot { animation-delay: 2s; }
.globe-region:nth-child(6) .region-dot { animation-delay: 2.5s; }

@keyframes region-pulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.7), 0 0 16px rgba(0, 188, 212, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 24px rgba(0, 188, 212, 1), 0 0 48px rgba(0, 188, 212, 0.7), 0 0 80px rgba(0, 188, 212, 0.4);
    transform: scale(1.25);
  }
}

.region-name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ============================================
   TRUST / TRANSPARENCY SECTION
   ============================================ */
.trust-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.trust-card {
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  opacity: 0.4;
}

.trust-icon {
  margin: 0 auto var(--space-5);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.06);
  border-radius: var(--radius-xl);
}

.trust-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.trust-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  padding: var(--space-8);
  position: relative;
}

.testimonial-quote {
  margin-bottom: var(--space-5);
}

.testimonial-quote svg {
  display: inline;
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  flex-shrink: 0;
}

.testimonial-avatar svg {
  border-radius: 50%;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* Stagger testimonials */
.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 100ms; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 200ms; }

/* ============================================
   CTA SUB TEXT
   ============================================ */
.cta-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-6);
  line-height: 1.7;
}

/* ============================================
   GLASS GLOBE (mapa-mundi futurista)
   ============================================ */
.glass-globe-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 36px;
  padding: 0;
}

.glass-globe {
  position: relative;
  width: clamp(300px, 30vw, 400px);
  height: clamp(300px, 30vw, 400px);
  border-radius: 50%;
  isolation: isolate;
  background:
    radial-gradient(circle at 35% 28%, rgba(180, 235, 255, 0.10), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.06), rgba(4, 8, 18, 0.4) 70%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
          backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.10),
    inset 0 -2px 0 rgba(0, 188, 212, 0.10),
    0 30px 80px rgba(0, 188, 212, 0.20),
    0 0 60px rgba(0, 188, 212, 0.15);
  animation: glass-globe-float 6s ease-in-out infinite;
}

/* Borda gradiente conic animada (igual da barra) */
.glass-globe::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--globe-angle, 0deg),
    rgba(0, 188, 212, 0.0) 0deg,
    rgba(0, 220, 255, 0.85) 60deg,
    rgba(217, 28, 92, 0.55) 140deg,
    rgba(0, 188, 212, 0.0) 220deg,
    rgba(29, 233, 236, 0.75) 300deg,
    rgba(0, 188, 212, 0.0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  animation: globe-border-rotate 8s linear infinite;
}

@property --globe-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes globe-border-rotate {
  to { --globe-angle: 360deg; }
}

@keyframes glass-globe-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.glass-globe-svg {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  z-index: 1;
}

/* Camada interna que controla a rotacao por continente — transform via atributo SVG (animado por JS) */
.globe-spin {
  /* Sem transform CSS — evitar conflito com transform attribute SVG */
  will-change: transform;
}

/* Continentes — default e estado ativo */
.continents .continent {
  cursor: pointer;
  fill: rgba(255, 255, 255, 0.55);
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 1px rgba(0, 188, 212, 0.5));
  transition: fill 0.4s ease, filter 0.4s ease;
}

.continents .continent path {
  fill: inherit;
  stroke: inherit;
  vector-effect: non-scaling-stroke;
}

.continents .continent.active {
  fill: rgba(0, 220, 255, 0.95);
  filter: drop-shadow(0 0 6px rgba(0, 220, 255, 0.9)) drop-shadow(0 0 14px rgba(0, 220, 255, 0.55));
}

.continents .continent:hover {
  fill: rgba(180, 235, 255, 0.85);
}

/* Play icon HUD/tech no centro do continente ativo */
.globe-play-marker {
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(0, 220, 255, 0.9)) drop-shadow(0 0 22px rgba(0, 188, 212, 0.45));
  transform-box: fill-box;
  transform-origin: center;
}

/* Anel pulsante (radar) — expande e desaparece */
.gpm-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: gpm-pulse 1.6s ease-out infinite;
}
@keyframes gpm-pulse {
  0%   { transform: scale(0.7); opacity: 1; stroke-width: 1.4; }
  80%  { transform: scale(1.6); opacity: 0; stroke-width: 0.4; }
  100% { transform: scale(1.6); opacity: 0; stroke-width: 0.4; }
}

/* Anel pontilhado mid — gira lento */
.gpm-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: gpm-spin 6s linear infinite;
}
@keyframes gpm-spin {
  to { transform: rotate(360deg); }
}

/* Crosshair — pisca */
.gpm-cross {
  animation: gpm-blink 1.4s ease-in-out infinite;
}
@keyframes gpm-blink {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1; }
}

/* Quando uma região no painel embaixo está ativa, destacamos visualmente */
.globe-region.active .region-name {
  color: #00bcd4;
}

.globe-region.active .region-dot {
  background: #00bcd4;
  box-shadow: 0 0 16px rgba(0, 188, 212, 0.9);
}

/* Shimmer atravessando (tipo o da barra) */
.glass-globe-shimmer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 35%;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.10) 40%,
    rgba(0, 220, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.10) 60%,
    transparent 100%
  );
  filter: blur(8px);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 3;
  animation: globe-shimmer 8s ease-in-out infinite;
  -webkit-mask: radial-gradient(circle at center, #000 95%, transparent 100%);
          mask: radial-gradient(circle at center, #000 95%, transparent 100%);
}

@keyframes globe-shimmer {
  0%   { left: 0%;   opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 65%;  opacity: 0; }
}

@media (max-width: 768px) {
  .glass-globe {
    width: 300px;
    height: 300px;
  }
}

/* ============================================
   RESPONSIVE — NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
  .globe-regions {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .globe-regions {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    max-width: none;
  }

  .globe-canvas {
    height: 200px;
  }

  .hero-glow-1 {
    width: 300px;
    height: 300px;
  }

  .hero-glow-2 {
    width: 250px;
    height: 250px;
  }
}

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

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Nossa História */
.history-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}
.history-header .section-title {
  margin-top: 12px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00bcd4;
}
.history-signature {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}
.testimonials-section .testimonial-card .testimonial-author {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.testimonials-section .testimonial-card .testimonial-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Desktop Mockup (Para Artistas) */
.desktop-frame {
  width: 100%;
  max-width: 540px;
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08), 0 25px 70px rgba(0,0,0,0.55), var(--shadow-glow);
  position: relative;
}

.desktop-top-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: #222;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.desktop-dots {
  display: flex;
  gap: 6px;
}

.desktop-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #555;
}

.desktop-dots span:nth-child(1) { background: #ff5f57; }
.desktop-dots span:nth-child(2) { background: #febc2e; }
.desktop-dots span:nth-child(3) { background: #28c840; }

.desktop-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  background: rgba(0,0,0,0.3);
  padding: 4px 12px;
  border-radius: 6px;
  max-width: 240px;
  margin: 0 auto;
}

.desktop-screen {
  background: linear-gradient(180deg, #0c0a1a 0%, #13102a 100%);
  padding: 22px 22px 24px;
  min-height: 380px;
}

.desktop-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.desktop-logo {
  height: 26px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .desktop-frame {
    max-width: 100%;
  }
  .desktop-screen {
    padding: 18px 16px 20px;
    min-height: 340px;
  }
  .desktop-logo {
    height: 22px;
  }
}

/* Floating section nav (fixed on viewport edge) */
.floating-section-nav {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-section-nav.hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.float-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 14, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  animation: float-arrow-bob 2.4s ease-in-out infinite;
}

.float-arrow.up {
  animation-delay: 0.6s;
}

@keyframes float-arrow-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.float-arrow:hover {
  color: var(--color-accent);
  background: rgba(0, 188, 212, 0.15);
  border-color: rgba(0, 188, 212, 0.6);
  transform: translateY(-2px);
  animation-play-state: paused;
}

.float-arrow.disabled {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  animation: none;
}

@media (max-width: 768px) {
  .floating-section-nav {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }
  .float-arrow {
    width: 38px;
    height: 38px;
  }
  .float-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   ALGORITHM BACKGROUND — efeito tech sutil para secoes pretas
   Neural network + grid + dados scrollando, leve e nao intrusivo
   ============================================ */

/* Aplicado via classe .has-algo-bg em secoes que estao pretas estaticas */
.has-algo-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Camada 1: grid de pontos (algoritmo base) */
.has-algo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 188, 212, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  background-position: 0 0;
  opacity: 0.35;
  animation: algo-grid-pan 60s linear infinite;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 30%, transparent 90%);
          mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 30%, transparent 90%);
}

/* Camada 2: linhas de algoritmo + glow flutuante via SVG no ::after */
.has-algo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 20% 30%, rgba(0, 188, 212, 0.10), transparent 70%),
    radial-gradient(ellipse 45% 30% at 80% 70%, rgba(217, 28, 92, 0.06), transparent 70%);
  animation: algo-glow-drift 18s ease-in-out infinite alternate;
}

@keyframes algo-grid-pan {
  0%   { background-position: 0 0; }
  100% { background-position: 42px 42px; }
}

@keyframes algo-glow-drift {
  0%   { transform: translate3d(0, 0, 0); opacity: 0.7; }
  50%  { transform: translate3d(2%, -1.5%, 0); opacity: 1; }
  100% { transform: translate3d(-1.5%, 2%, 0); opacity: 0.7; }
}

/* Garantir que conteudo da secao fica acima dos efeitos */
.has-algo-bg > * {
  position: relative;
  z-index: 1;
}

/* Camada extra opcional: scan line + particulas via SVG */
.algo-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Linhas tipo algoritmo (codigo binario / data flow) */
.algo-fx-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 188, 212, 0.04) 50%, transparent 100%),
    linear-gradient(transparent 50%, rgba(0, 188, 212, 0.025) 50%);
  background-size: 100% 100%, 100% 4px;
  animation: algo-scan 8s linear infinite;
  opacity: 0.5;
}

@keyframes algo-scan {
  0%   { background-position: -100% 0, 0 0; }
  100% { background-position: 200% 0, 0 0; }
}

/* Particulas conectadas (nodes piscando) */
.algo-fx-nodes {
  position: absolute;
  inset: 0;
}

.algo-fx-nodes span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(0, 220, 255, 0.55);
  box-shadow: 0 0 8px rgba(0, 188, 212, 0.6);
  animation: algo-node-pulse 3.2s ease-in-out infinite;
}

.algo-fx-nodes span:nth-child(1)  { left: 8%;  top: 20%; animation-delay: 0s; }
.algo-fx-nodes span:nth-child(2)  { left: 22%; top: 70%; animation-delay: 0.4s; }
.algo-fx-nodes span:nth-child(3)  { left: 35%; top: 35%; animation-delay: 0.9s; }
.algo-fx-nodes span:nth-child(4)  { left: 48%; top: 80%; animation-delay: 1.3s; }
.algo-fx-nodes span:nth-child(5)  { left: 62%; top: 25%; animation-delay: 0.6s; background: rgba(217, 28, 92, 0.5); box-shadow: 0 0 8px rgba(217, 28, 92, 0.6); }
.algo-fx-nodes span:nth-child(6)  { left: 75%; top: 60%; animation-delay: 1.7s; }
.algo-fx-nodes span:nth-child(7)  { left: 88%; top: 30%; animation-delay: 2.1s; }
.algo-fx-nodes span:nth-child(8)  { left: 92%; top: 75%; animation-delay: 0.2s; }
.algo-fx-nodes span:nth-child(9)  { left: 15%; top: 50%; animation-delay: 2.4s; background: rgba(217, 28, 92, 0.5); box-shadow: 0 0 8px rgba(217, 28, 92, 0.6); }
.algo-fx-nodes span:nth-child(10) { left: 55%; top: 50%; animation-delay: 1.0s; }
.algo-fx-nodes span:nth-child(11) { left: 30%; top: 15%; animation-delay: 2.8s; }
.algo-fx-nodes span:nth-child(12) { left: 82%; top: 15%; animation-delay: 1.5s; }

@keyframes algo-node-pulse {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .has-algo-bg::before,
  .has-algo-bg::after,
  .algo-fx-lines,
  .algo-fx-nodes span { animation: none; }
}

/* ============================================
   ECOSSISTEMA DA MUSICA DIGITAL
   ============================================ */

.ecosystem-section {
  padding: var(--space-32) 0;
  position: relative;
}

.ecosystem-section .eyebrow {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.ecosystem-section .section-title { text-align: center; }
.ecosystem-section .section-subtitle-center { max-width: 640px; margin: var(--space-4) auto var(--space-16); }

.eco-orbit {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin: var(--space-6) auto 0;
}

/* Aneis orbitais */
.eco-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0, 188, 212, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.eco-ring-1 { width: 35%; height: 35%; animation: eco-spin 40s linear infinite; }
.eco-ring-2 { width: 62%; height: 62%; border-style: solid; border-color: rgba(0, 188, 212, 0.10); animation: eco-spin 70s linear infinite reverse; }
.eco-ring-3 { width: 92%; height: 92%; border-color: rgba(0, 188, 212, 0.08); animation: eco-spin 100s linear infinite; }

@keyframes eco-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* SVG linhas conectando ao centro */
.eco-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.7;
  animation: eco-lines-fade 4s ease-in-out infinite alternate;
}
@keyframes eco-lines-fade {
  0%   { opacity: 0.4; }
  100% { opacity: 0.85; }
}

/* Nucleo central: Logo New Hits */
.eco-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  z-index: 3;
}

.eco-core-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-core-logo-img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(0, 220, 255, 0.55)) drop-shadow(0 0 28px rgba(0, 188, 212, 0.3));
}

/* Play azul piscando sobre o triangulo da logo */
.eco-core-play {
  position: absolute;
  /* logo.png: triangulo do play em ~53% x 50% */
  left: 53%;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 235, 255, 1) 0%, rgba(0, 188, 212, 0.7) 35%, rgba(0, 188, 212, 0) 75%);
  pointer-events: none;
  animation: eco-core-play-pulse 1.6s ease-in-out infinite;
  mix-blend-mode: screen;
  z-index: 4;
}
@keyframes eco-core-play-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.85); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.35); }
}

.eco-core-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 130px; height: 130px;
  margin-left: -65px; margin-top: -65px;
  border-radius: 50%;
  border: 2px solid rgba(0, 220, 255, 0.5);
  animation: eco-core-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.eco-core-pulse-2 { animation-delay: 1.2s; }
@keyframes eco-core-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2); opacity: 0; }
}

/* Nodes satelites */
.eco-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(8, 12, 22, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  width: 220px;
  z-index: 2;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: eco-node-float 6s ease-in-out infinite;
}
.eco-node:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(0, 220, 255, 0.6);
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
}

.eco-node-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 220, 255, 0.18), rgba(0, 188, 212, 0.08));
  color: #00dcff;
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.eco-node-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.eco-node-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.eco-node-text span {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Posicoes dos satelites ao redor em hexagono (6 nos) */
.eco-node-1 { top: 8%;  left: 50%; transform: translate(-50%, -50%); }
.eco-node-2 { top: 30%; left: 92%; transform: translate(-50%, -50%); }
.eco-node-3 { top: 70%; left: 92%; transform: translate(-50%, -50%); }
.eco-node-4 { top: 92%; left: 50%; transform: translate(-50%, -50%); }
.eco-node-5 { top: 70%; left: 8%;  transform: translate(-50%, -50%); }
.eco-node-6 { top: 30%; left: 8%;  transform: translate(-50%, -50%); }

/* Float aplicado via translate (preserva o transform absoluto) */
@keyframes eco-node-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -5px; }
}

/* Particulas de dados orbitando entre o centro e os satelites */
.eco-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.eco-particles span {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(0, 220, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 220, 255, 0.8);
  transform-origin: 0 0;
}
.eco-particles span:nth-child(1) { animation: eco-orbit-1 4s linear infinite; }
.eco-particles span:nth-child(2) { animation: eco-orbit-2 5s linear infinite; animation-delay: 0.7s; }
.eco-particles span:nth-child(3) { animation: eco-orbit-3 6s linear infinite; animation-delay: 1.4s; background: rgba(217, 28, 92, 0.8); box-shadow: 0 0 10px rgba(217, 28, 92, 0.7); }
.eco-particles span:nth-child(4) { animation: eco-orbit-1 7s linear infinite reverse; animation-delay: 2.1s; }
.eco-particles span:nth-child(5) { animation: eco-orbit-2 5.5s linear infinite reverse; animation-delay: 2.8s; }
.eco-particles span:nth-child(6) { animation: eco-orbit-3 4.5s linear infinite; animation-delay: 3.5s; }

@keyframes eco-orbit-1 {
  0%   { transform: rotate(0deg) translateX(110px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(110px) rotate(-360deg); }
}
@keyframes eco-orbit-2 {
  0%   { transform: rotate(0deg) translateX(180px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}
@keyframes eco-orbit-3 {
  0%   { transform: rotate(0deg) translateX(250px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(250px) rotate(-360deg); }
}

/* Plataformas digitais (pillula compacta com pulse) */
.eco-node.eco-plat {
  width: auto;
  min-width: 0;
  padding: 10px 14px;
  gap: 10px;
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.78);
  border: 1px solid rgba(0, 188, 212, 0.28);
  box-shadow: 0 0 0 rgba(0, 220, 255, 0);
  animation: eco-plat-pulse 2.4s ease-in-out infinite, eco-node-float 6s ease-in-out infinite;
}
.eco-node.eco-plat .eco-node-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.eco-node.eco-plat .eco-node-text strong {
  font-size: 13px;
  white-space: nowrap;
}

/* Cores por plataforma */
.eco-node-icon[data-plat="spotify"]  { color: #1ed760; }
.eco-node-icon[data-plat="apple"]    { color: #fc3c44; }
.eco-node-icon[data-plat="youtube"]  { color: #ff0033; }
.eco-node-icon[data-plat="deezer"]   { color: #a238ff; }
.eco-node-icon[data-plat="amazon"]   { color: #25d1da; }
.eco-node-icon[data-plat="tidal"]    { color: #ffffff; }

/* Pulse das plataformas (sincronizado com core via duracoes proximas) */
@keyframes eco-plat-pulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(0, 220, 255, 0), 0 0 12px rgba(0, 188, 212, 0.18);
    border-color: rgba(0, 188, 212, 0.28);
  }
  50% {
    box-shadow: 0 0 18px rgba(0, 220, 255, 0.35), 0 0 32px rgba(0, 188, 212, 0.25);
    border-color: rgba(0, 220, 255, 0.6);
  }
}
.eco-node.eco-plat:nth-of-type(1) { animation-delay: 0s, 0s; }
.eco-node.eco-plat:nth-of-type(2) { animation-delay: 0.4s, 1s; }
.eco-node.eco-plat:nth-of-type(3) { animation-delay: 0.8s, 2s; }
.eco-node.eco-plat:nth-of-type(4) { animation-delay: 1.2s, 3s; }
.eco-node.eco-plat:nth-of-type(5) { animation-delay: 1.6s, 4s; }
.eco-node.eco-plat:nth-of-type(6) { animation-delay: 2.0s, 5s; }

/* Pulse no proprio icone tambem */
.eco-node.eco-plat .eco-node-icon {
  animation: eco-plat-icon-pulse 2.4s ease-in-out infinite;
}
@keyframes eco-plat-icon-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 currentColor); }
  50%      { transform: scale(1.08); filter: drop-shadow(0 0 8px currentColor); }
}

/* Responsive: empilhar em mobile */
@media (max-width: 900px) {
  .eco-orbit {
    aspect-ratio: auto;
    height: auto;
    padding: var(--space-8) 0;
  }
  .eco-ring,
  .eco-lines,
  .eco-particles { display: none; }
  .eco-core {
    position: relative;
    top: auto; left: auto;
    transform: none;
    margin: 0 auto var(--space-8);
  }
  .eco-node {
    position: relative;
    top: auto !important; left: auto !important; right: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 360px;
    margin: 0 auto var(--space-3);
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-ring,
  .eco-core-pulse,
  .eco-particles span,
  .eco-node,
  .eco-lines { animation: none !important; }
}

/* COMPACT TRUST SECTION (#trust) - fit in single viewport */
#trust.trust-section {
  padding: 36px 0 28px !important;
}
#trust .section-title {
  font-size: var(--text-xl) !important;
  margin-bottom: 8px !important;
  line-height: 1.15 !important;
}
#trust .section-subtitle-center {
  font-size: var(--text-sm) !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}
#trust .trust-grid {
  gap: var(--space-3) !important;
}
#trust .trust-card {
  padding: 14px 14px !important;
}
#trust .trust-icon {
  width: 38px !important;
  height: 38px !important;
  margin: 0 auto 8px !important;
}
#trust .trust-icon svg {
  width: 28px !important;
  height: 28px !important;
}
#trust .trust-card-title {
  font-size: var(--text-base) !important;
  margin-bottom: 6px !important;
  line-height: 1.25 !important;
}
#trust .trust-card-desc {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
}

/* COMPACT WHY-CHOOSE SECTION (#why) - fit in single viewport */
#why.features-section {
  padding: 36px 0 32px !important;
}
#why .section-title {
  font-size: var(--text-xl) !important;
  margin-bottom: 18px !important;
  line-height: 1.15 !important;
}
#why .features-grid {
  gap: var(--space-3) !important;
}
#why .feature-card {
  padding: 14px 14px !important;
}
#why .feature-icon {
  margin-bottom: 8px !important;
  width: 36px !important;
  height: 36px !important;
}
#why .feature-icon svg {
  width: 26px !important;
  height: 26px !important;
}
#why .feature-title {
  font-size: var(--text-base) !important;
  margin-bottom: 4px !important;
  line-height: 1.25 !important;
}
#why .feature-desc {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
}

/* ============================================
   REASONS MARQUEE - moving cards section
   ============================================ */
.reasons-section {
  padding: 24px 0 24px;
  position: relative;
  overflow: visible;
}
.reasons-section .section-title {
  font-size: var(--text-xl);
  margin-bottom: 8px;
  line-height: 1.15;
  text-align: center;
}
.reasons-section .section-subtitle-center {
  font-size: var(--text-sm);
  margin-top: 0;
  margin-bottom: 18px;
  text-align: center;
  color: var(--color-text-muted);
}
.reasons-marquee {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  padding: 28px 0 40px;
  position: relative;
}
.reasons-marquee::before,
.reasons-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6%;
  z-index: 2;
  pointer-events: none;
}
.reasons-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg) 0%, transparent 100%);
}
.reasons-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg) 0%, transparent 100%);
}
.reasons-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reasonsScroll 110s linear infinite;
  will-change: transform;
}
.reasons-track.is-paused { animation-play-state: paused; }
.reasons-card { cursor: pointer; }
.reasons-card.is-active {
  border-color: rgba(0, 220, 255, 0.65);
  box-shadow: 0 14px 38px rgba(0, 188, 212, 0.25);
  transform: translateY(-3px);
}
/* loop infinito - pausa apenas ao clicar num card */
/* 9 cards x 300px + 9 gaps x 18px = 2862px */
@keyframes reasonsScroll {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-2862px,0,0); }
}
.reasons-card {
  flex: 0 0 300px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid rgba(0, 188, 212, 0.18);
  border-radius: 16px;
  padding: 14px 14px 12px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.reasons-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(0,188,212,0.10), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.reasons-card:hover {
  border-color: rgba(0, 220, 255, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 188, 212, 0.18);
}
.reasons-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.reasons-icon svg {
  width: 26px;
  height: 26px;
}
.reasons-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 4px;
  line-height: 1.2;
}
.reasons-desc {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .reasons-card { flex-basis: 260px; padding: 12px; }
  .reasons-track { animation-duration: 140s; animation-name: reasonsScrollMobile; }
}
/* mobile: 9 cards x 260px + 9 gaps x 18px = 2502px */
@keyframes reasonsScrollMobile {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-2502px,0,0); }
}
/* loop sempre ativo, mesmo com reduced-motion */
