/* ==========================================================================
   ZION ADVANCED SYSTEM - PREMIUM DESIGN SYSTEM
   Inspirado no estilo estrutural da PNY & Cores Oficiais do Software (Ciano & Violeta)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variáveis Globais (Tokens de Design)
   -------------------------------------------------------------------------- */
:root {
  /* Cores Base do Software */
  --bg-deep: #080a0f;
  --bg-dark-gray: #0e111a;
  --bg-panel: #131824;
  --bg-panel-hover: #192030;

  /* Acentos Neon */
  --accent-cyan: #00d2ff;
  --accent-cyan-glow: rgba(0, 210, 255, 0.4);
  --accent-violet: #9e5cf6;
  --accent-violet-glow: rgba(158, 92, 246, 0.4);

  /* Degradês Premium */
  --gradient-primary: linear-gradient(135deg, #00d2ff 0%, #9e5cf6 100%);
  --gradient-dark: linear-gradient(135deg, #0e111a 0%, #080a0f 100%);
  --gradient-card: linear-gradient(145deg, #131824 0%, #0e111a 100%);
  --gradient-glow: 0px 0px 20px rgba(0, 210, 255, 0.3);

  /* Texto */
  --text-white: #ffffff;
  --text-gray: #8fa0c4;
  --text-muted: #576582;

  /* Fontes */
  --font-headings: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Estrutura */
  --border-radius: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-glow: 1px solid rgba(0, 210, 255, 0.15);
}

/* --------------------------------------------------------------------------
   2. Reset e Configurações Globais
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: auto;
}

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

/* Barra de rolagem personalizada estilo Premium/Gamer */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--accent-cyan);
  background-image: var(--gradient-primary);
  border-radius: 4px;
}

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

body {
  background-color: var(--bg-deep);
  background-image: var(--bg-gradient);
  color: var(--text-gray);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: normal;
}

a {
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition);
}

/* Skip Link para Acessibilidade */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--gradient-primary);
  color: var(--bg-deep);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: bold;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 1000;
  box-shadow: 0 0 10px var(--accent-cyan-glow);
}

/* --------------------------------------------------------------------------
   3. Header e Navegação (Estilo Top Bar do App)
   -------------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(14, 17, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(8, 10, 15, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Component (Z Hexágono com Glow) */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-component {
  position: relative;
  width: 40px;
  height: 40px;
}

.logo-hexagon {
  width: 100%;
  height: 100%;
  background: var(--bg-panel);
  border: 2px solid var(--accent-cyan);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px var(--accent-cyan-glow);
}

.logo-letter {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: bold;
  color: var(--text-white);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
}

.logo-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-cyan);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  filter: blur(8px);
  opacity: 0.4;
  z-index: -1;
  animation: logoPulse 3s infinite ease-in-out;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-family: var(--font-headings);
  font-size: 20px;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: 1px;
}

.logo-text-sub {
  font-size: 10px;
  color: var(--accent-cyan);
  letter-spacing: 3px;
  font-weight: bold;
}

/* Links do Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

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

.nav-separator {
  color: var(--text-muted);
  font-weight: 300;
}

/* Hamburger Menu Mobile */
.hamburger {
  display: none;
  font-size: 24px;
  color: var(--text-white);
  cursor: pointer;
  outline: none;
}

/* --------------------------------------------------------------------------
   4. Hero Section (Visual Impact)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 25px 80px 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: linear-gradient(to right, rgba(8, 10, 15, 0.9) 30%, rgba(8, 10, 15, 0.2) 60%, rgba(8, 10, 15, 0.2) 100%),
    url('zion-hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 650px;
  text-align: left;
  margin-left: 5vw;
  position: relative;
  z-index: 2;
}

/* Credibility Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 13px;
  color: var(--accent-cyan);
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.05);
}

/* Hero Title */
.hero-title {
  font-family: var(--font-headings);
  font-weight: normal;
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-title .title-line-1 {
  display: block;
  font-size: 32px;
  color: var(--text-gray);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title .title-line-2 {
  display: block;
  font-size: 68px;
  color: var(--text-white);
  line-height: 1.1;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: bold;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 550px;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* Dual CTA Buttons */
.hero-cta-group {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 50px;
}

/* Estilo Geral de Botões (Inspirado no Painel) */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 18px;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: normal;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.cta-button.primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(158, 92, 246, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 210, 255, 0.6);
}

.cta-button.secondary {
  background: rgba(19, 24, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.cta-button.secondary:hover {
  background: rgba(19, 24, 36, 0.9);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
  transform: translateY(-2px);
}

/* Quick Stats */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-headings);
  font-size: 32px;
  color: var(--text-white);
  line-height: 1;
}

.stat-value i {
  font-size: 16px;
  color: #ffb703;
  margin-left: 5px;
  vertical-align: middle;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Floating Decorative Elements */
.hero-decoration {
  position: absolute;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.02);
  z-index: 1;
  pointer-events: none;
  animation: float 6s infinite ease-in-out;
}

.hero-decoration-left {
  left: 10%;
  top: 30%;
}

.hero-decoration-right {
  right: 10%;
  top: 40%;
  animation-delay: 3s;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
}

.mouse-icon {
  width: 20px;
  height: 35px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 1.5s infinite ease-in-out;
}

/* --------------------------------------------------------------------------
   5. Promo Banner (Countdown do App)
   -------------------------------------------------------------------------- */
.promo-banner {
  background: linear-gradient(90deg, #131824 0%, #1e1b4b 50%, #131824 100%);
  border-top: 1px solid rgba(0, 210, 255, 0.1);
  border-bottom: 1px solid rgba(158, 92, 246, 0.1);
  padding: 20px 25px;
  text-align: center;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.promo-banner .countdown {
  font-family: var(--font-headings);
  font-size: 20px;
  color: var(--accent-cyan);
  letter-spacing: 1px;
  margin-left: 5px;
  text-shadow: 0 0 10px var(--accent-cyan-glow);
}

/* --------------------------------------------------------------------------
   6. Seções de Conteúdo (Estrutura e Títulos PNY)
   -------------------------------------------------------------------------- */
section {
  width: 100%;
  padding: 100px 25px;
  position: relative;
}

/* Título de Seção Padrão PNY (Com Subtítulo no Topo) */
section h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

/* Restringir largura dos grids principais para manter consistência PNY */
.feature-grid,
.testimonial-grid,
.roadmap-grid,
.ratings-summary {
  max-width: 1200px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   7. Demo Video Section
   -------------------------------------------------------------------------- */
.demo-video {
  text-align: center;
}

.demo-content p {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 600px;
  margin: -40px auto 40px auto;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 210, 255, 0.05);
}

.video-container video {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   8. Features Grid (Cartões Estilo PNY/XLR8 com Cantos de 10px)
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  transition: var(--transition);
  outline: none;
}

.feature-card:hover,
.feature-card:focus {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.08);
}

.feature-card i {
  font-size: 36px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 24px;
  color: var(--text-white);
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. Sobre a Empresa (About Section)
   -------------------------------------------------------------------------- */
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 25px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  flex: 1.2;
  text-align: left;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 25px;
  position: relative;
}

.about-text h2::after {
  margin: 15px 0 0 0;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-gray);
}

.about-image {
  flex: 1;
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  border: 1px solid rgba(158, 92, 246, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.about-img:hover {
  border-color: var(--accent-violet);
  box-shadow: 0 20px 45px rgba(158, 92, 246, 0.25);
  transform: translateY(-2px);
}

.about-img-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--accent-violet-glow) 0%, transparent 70%);
  z-index: -1;
  filter: blur(30px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .about-text {
    text-align: center;
  }
  .about-text h2 {
    text-align: center;
  }
  .about-text h2::after {
    margin: 15px auto 0 auto;
  }
}

/* --------------------------------------------------------------------------
   10. Tabela de Preços (Pricing Cards)
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 50px 35px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card:hover,
.pricing-card:focus {
  transform: translateY(-5px);
  border-color: var(--accent-violet);
  box-shadow: 0 10px 30px rgba(158, 92, 246, 0.08);
}

/* Destacar o Plano Premium (Que equivale ao principal no design PNY) */
.pricing-card:nth-child(2) {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.05);
  padding-top: 65px;
  /* Mais espaço no topo para evitar que a faixa sobreponha o título */
}

.pricing-card:nth-child(2)::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gradient-primary);
  color: var(--text-white);
  font-size: 9px;
  font-weight: bold;
  padding: 6px 35px;
  transform: rotate(45deg);
  letter-spacing: 1.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-family: var(--font-headings);
  font-size: 48px;
  color: var(--text-white);
  margin-bottom: 25px;
}

.pricing-card p:not(.price) {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 35px;
  flex-grow: 1;
  /* Pushes the button to the bottom! */
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .cta-button {
  width: 100%;
  font-size: 16px;
  padding: 12px 20px;
  margin-top: auto;
  /* Alinhamento garantido na base */
}

/* --------------------------------------------------------------------------
   11. Depoimentos e Avaliações
   -------------------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  transition: var(--transition);
  outline: none;
}

.testimonial-card:hover,
.testimonial-card:focus {
  border-color: rgba(158, 92, 246, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.testimonial-card cite {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Seção de Avaliações Resumo */
.ratings {
  text-align: center;
}

.ratings-summary {
  margin-bottom: 50px;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 28px;
  color: #ffb703;
  margin-bottom: 10px;
}

.rating-stars span {
  font-family: var(--font-headings);
  font-size: 24px;
  color: var(--text-white);
  margin-left: 10px;
}

.rating-comments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.rating-card {
  background: rgba(19, 24, 36, 0.4);
  border-radius: var(--border-radius);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.01);
  text-align: left;
}

.rating-stars-small {
  color: #ffb703;
  font-size: 13px;
  margin-bottom: 10px;
}

.rating-card p {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--text-gray);
}

.rating-card cite {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. Roadmap (Grade Dinâmica)
   -------------------------------------------------------------------------- */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.roadmap-item {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 35px 30px;
  border-radius: var(--border-radius);
  position: relative;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px 0 0 4px;
}

.roadmap-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.roadmap-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* --------------------------------------------------------------------------
   14. FAQ Accordion-like Items
   -------------------------------------------------------------------------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-panel);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.02);
  margin-bottom: 15px;
  padding: 25px 30px;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 210, 255, 0.1);
}

.faq-item h3 {
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* --------------------------------------------------------------------------
   16. Botão de Voltar ao Topo
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: -60px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--bg-panel);
  border: 1px solid rgba(0, 210, 255, 0.2);
  color: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 99;
  outline: none;
  transition: var(--transition);
}

.back-to-top.visible {
  bottom: 25px;
}

.back-to-top:hover {
  background: var(--gradient-primary);
  color: var(--text-white);
  border-color: transparent;
  box-shadow: 0 0 15px var(--accent-cyan-glow);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   17. Rodapé (Footer Estilo PNY Corporativo)
   -------------------------------------------------------------------------- */
footer {
  background-color: var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 25px 40px 25px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  flex: 1;
  min-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-white);
  letter-spacing: 1px;
}

.footer-column a {
  font-size: 14px;
  color: var(--text-gray);
}

.footer-column a:hover {
  color: var(--accent-cyan);
}

.footer-column a i {
  margin-right: 8px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   18. Efeitos Especiais Gamer (PNY XLR8 / Zion)
   -------------------------------------------------------------------------- */
.glowytext {
  filter: drop-shadow(0 0 8px var(--accent-cyan-glow)) drop-shadow(0 0 20px var(--accent-violet-glow));
  animation: glowAnimation 15s linear infinite;
}

.rgb-rotation {
  animation: rgbRotateAnimation 10s linear infinite;
}

/* --------------------------------------------------------------------------
   19. Animações (Keyframes)
   -------------------------------------------------------------------------- */
@keyframes logoPulse {

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

  50% {
    transform: scale(1.08);
    opacity: 0.6;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes scrollMouse {
  0% {
    opacity: 1;
    top: 8px;
  }

  50% {
    opacity: 0.5;
    top: 15px;
  }

  100% {
    opacity: 0;
    top: 22px;
  }
}

@keyframes glowAnimation {
  0% {
    filter: hue-rotate(0deg) brightness(120%);
  }

  100% {
    filter: hue-rotate(360deg) brightness(120%);
  }
}

@keyframes rgbRotateAnimation {
  0% {
    background-color: #00d2ff;
  }

  33% {
    background-color: #9e5cf6;
  }

  66% {
    background-color: #00ffd2;
  }

  100% {
    background-color: #00d2ff;
  }
}

@media (prefers-reduced-motion) {

  .glowytext,
  .rgb-rotation,
  .logo-glow,
  .hero-decoration,
  .mouse-wheel {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   20. Consultas de Mídia (Responsividade)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .hero-title .title-line-1 {
    font-size: 26px;
  }

  .hero-title .title-line-2 {
    font-size: 52px;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark-gray);
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-separator {
    display: none;
  }

  .footer-links {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 70px 20px;
  }

  section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .hero {
    justify-content: center;
    background-image: linear-gradient(to bottom, rgba(8, 10, 15, 0.95) 0%, rgba(8, 10, 15, 0.8) 100%),
      url('zion-hero.png');
    background-position: center;
  }

  .hero-content {
    text-align: center;
    margin-left: 0;
    max-width: 100%;
  }

  .hero-title .title-line-1 {
    font-size: 22px;
  }

  .hero-title .title-line-2 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin: 0 auto 40px auto;
  }

  .hero-cta-group {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    max-width: 320px;
    margin: 0 auto 40px auto;
  }

  .cta-button {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex-basis: 40%;
  }


}

@media screen and (max-width: 480px) {
  .hero-title .title-line-1 {
    font-size: 18px;
  }

  .hero-title .title-line-2 {
    font-size: 30px;
  }

  .hero-stats {
    flex-direction: column;
  }
}

/* ==========================================================================
   INFLUENCERS PAGE STYLES
   ========================================================================== */

/* Hero Section */
.influencers-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 25px 60px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-deep);
  background-image: 
    linear-gradient(to bottom, rgba(8, 10, 15, 0.45) 0%, rgba(8, 10, 15, 0.95) 100%), 
    url('hero-gaming.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Grade digital tecnológica */
.influencers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 85%);
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

.influencers-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  box-shadow: 0 -5px 20px rgba(0, 212, 255, 0.3);
  z-index: 2;
}

.influencers-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(14, 17, 26, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 55px 45px;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.7), 
    inset 0 0 30px rgba(0, 212, 255, 0.03),
    0 0 40px rgba(158, 92, 246, 0.05);
  transform: translateY(-20px);
}

/* Cantos decorativos de HUD militar/cyberpunk */
.influencers-hero .hero-content::before,
.influencers-hero .hero-content::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent-cyan);
  pointer-events: none;
}

.influencers-hero .hero-content::before {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
}

.influencers-hero .hero-content::after {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
}

/* Cabeçalho Técnico HUD */
.hero-hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  color: var(--accent-cyan);
  opacity: 0.6;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border-bottom: 1px dashed rgba(0, 210, 255, 0.15);
  padding-bottom: 8px;
}

.hud-glow-dot {
  width: 5px;
  height: 5px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: hudPulse 1.5s infinite ease-in-out;
}

@keyframes hudPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Badge Holográfica */
.influencers-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(158, 92, 246, 0.08);
  border: 1px solid rgba(158, 92, 246, 0.25);
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(158, 92, 246, 0.05);
}

.influencers-hero .hero-badge i {
  color: var(--accent-violet);
  font-size: 12px;
  text-shadow: 0 0 5px rgba(158, 92, 246, 0.5);
}

.influencers-hero .hero-badge .badge-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 1px;
}

.influencers-hero .hero-title {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.influencers-hero .title-line-1 {
  font-size: 20px;
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.influencers-hero .title-line-2 {
  font-size: 54px;
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: 1px;
}

.influencers-hero .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: none;
}

.influencers-hero .hero-subtitle {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Grid Section */
.influencers-grid-section {
  padding: 80px 25px;
  background-color: var(--bg-deep);
}

.influencer-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.influencer-section-title {
  font-size: 36px;
  color: var(--text-white);
  margin-bottom: 10px;
}

.influencer-section-subtitle {
  font-size: 16px;
  color: var(--text-gray);
}

.influencers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Influencer Card */
.influencer-card {
  position: relative;
  background: linear-gradient(145deg, rgba(19, 24, 36, 0.7) 0%, rgba(14, 17, 26, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

/* Faixa Neon Superior */
.influencer-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0.4;
  transition: all 0.4s ease;
  z-index: 10;
}

.influencer-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.65), 
    0 0 25px rgba(0, 210, 255, 0.15), 
    0 0 25px rgba(158, 92, 246, 0.15);
}

.influencer-card:hover::after {
  opacity: 1;
  box-shadow: 0 0 12px var(--accent-cyan);
}

.influencer-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #080a0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Overlay de gradiente para melhorar contraste na imagem */
.influencer-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(8, 10, 15, 0.3) 0%, transparent 35%, transparent 65%, rgba(8, 10, 15, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.influencer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.02) brightness(0.95);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
}

.influencer-card:hover .influencer-image img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.08) brightness(1.02);
}

.verified-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(8, 10, 15, 0.7);
  color: var(--accent-cyan);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.4);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0, 212, 255, 0.4);
}

.verified-badge i {
  font-size: 11px;
  animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

.influencer-info {
  padding: 22px 20px 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.influencer-info h3 {
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 4px;
  font-family: var(--font-headings);
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 60%, #e0e6f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.influencer-info .handle {
  color: var(--accent-cyan);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 14px;
  background: rgba(0, 210, 255, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.influencer-info .bio {
  color: var(--text-gray);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Ensure support button fills width or is neatly centered */
.influencer-info .support-button {
  width: 100%;
  max-width: 280px;
  margin-top: auto;
  padding: 10px 18px !important;
  font-size: 0.85rem !important;
}

/* Casual Card Specific */
.casual-card .influencer-image {
  height: 220px;
}

.casual-card::after {
  background: linear-gradient(135deg, var(--accent-violet) 0%, #7b2cbf 100%);
}

.casual-card:hover {
  border-color: rgba(158, 92, 246, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.65), 
    0 0 25px rgba(158, 92, 246, 0.15), 
    0 0 25px rgba(0, 210, 255, 0.15);
}

.casual-card:hover::after {
  box-shadow: 0 0 12px var(--accent-violet);
}

.casual-card .verified-badge {
  color: var(--accent-violet);
  border-color: rgba(158, 92, 246, 0.4);
  text-shadow: 0 0 5px rgba(158, 92, 246, 0.4);
  background: rgba(8, 10, 15, 0.7);
}

/* CTA Partner Section */
.cta-partner-section {
  padding: 80px 25px;
  background-color: var(--bg-deep);
}

.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(19, 24, 36, 0.6) 0%, rgba(14, 17, 26, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(158, 92, 246, 0.25);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(158, 92, 246, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.cta-content h2 {
  font-size: 36px;
  color: var(--text-white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

/* Animations */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-delay-1, .anim-delay-2, .anim-delay-3 {
  animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.anim-delay-1 { animation-delay: 0.2s; }
.anim-delay-2 { animation-delay: 0.4s; }
.anim-delay-3 { animation-delay: 0.6s; }

/* Responsive for Influencers Page */
@media screen and (max-width: 768px) {
  .influencers-hero .title-line-2 {
    font-size: 40px;
  }
  .influencers-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   CUSTOM GAMER MEDIA PLAYER (ZION ADVANCED SYSTEM)
   ========================================================================== */
.demo-video {
  padding: 80px 20px;
  background: var(--bg-dark-gray);
  position: relative;
  text-align: center;
}

.demo-content {
  max-width: 900px;
  margin: 0 auto;
}

.demo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--text-white);
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.demo-content p {
  color: var(--text-gray);
  margin-bottom: 35px;
  font-size: 1.1rem;
}

/* Custom Player Container */
.zion-media-player {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 210, 255, 0.2);
  border: 1px solid rgba(0, 210, 255, 0.25);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  user-select: none;
  -webkit-user-select: none;
}

.zion-media-player:hover {
  border-color: rgba(0, 210, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 210, 255, 0.35);
}

.zion-media-player video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Desabilitar menu de contexto nativo e opções de download */
.zion-media-player video::-webkit-media-controls {
  display: none !important;
}
.zion-media-player video::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Overlay Big Play Button */
.player-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 10, 15, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2;
}

.zion-media-player.playing .player-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.overlay-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
}

.player-overlay:hover .overlay-play-btn {
  transform: scale(1.15);
  box-shadow: 0 0 45px rgba(158, 92, 246, 0.85);
}

/* Custom Controls Bar */
.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8, 10, 15, 0.95) 0%, rgba(8, 10, 15, 0.6) 70%, transparent 100%);
  padding: 15px 20px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.zion-media-player.playing.user-idle .player-controls {
  opacity: 0;
  pointer-events: none;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: height 0.2s ease;
}

.progress-container:hover {
  height: 9px;
}

.progress-bar-filled {
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
}

/* Bottom Controls Layout */
.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls-left, .controls-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.player-btn {
  background: transparent;
  border: none;
  color: var(--text-gray);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.player-btn:hover {
  color: var(--accent-cyan);
  transform: scale(1.1);
}

/* Time Display */
.time-display {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
}

/* Volume Slider */
.volume-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  cursor: pointer;
}