/**
 * PROTOCOL PROVIDER - RED GLASS DESIGN
 * Vermelho + Branco + Glassmorphism
 * Inspirado em "macaco" mas com paleta única
 */

/* ========================================
   COLOR SYSTEM - VERMELHO + BRANCO
   ======================================== */

:root {
  /* CINZA/BRANCO PRIMÁRIO */
  --color-primary: rgb(255, 255, 255);
  --color-primary-light: rgb(220, 220, 220);
  --color-primary-dark: rgb(180, 180, 180);

  /* BRANCO/CINZA COM ALPHA (para glass) */
  --red-alpha-3: rgba(255, 255, 255, 0.03);
  --red-alpha-5: rgba(255, 255, 255, 0.05);
  --red-alpha-7: rgba(255, 255, 255, 0.07);
  --red-alpha-8: rgba(255, 255, 255, 0.08);
  --red-alpha-10: rgba(255, 255, 255, 0.1);
  --red-alpha-15: rgba(255, 255, 255, 0.15);
  --red-alpha-20: rgba(255, 255, 255, 0.2);
  --red-alpha-30: rgba(255, 255, 255, 0.3);
  --red-alpha-40: rgba(255, 255, 255, 0.4);
  --red-alpha-50: rgba(255, 255, 255, 0.5);
  --red-alpha-60: rgba(255, 255, 255, 0.6);
  --red-alpha-80: rgba(255, 255, 255, 0.8);

  /* BRANCO */
  --color-white: rgb(255, 255, 255);
  --white-alpha-3: rgba(255, 255, 255, 0.03);
  --white-alpha-5: rgba(255, 255, 255, 0.05);
  --white-alpha-8: rgba(255, 255, 255, 0.08);
  --white-alpha-10: rgba(255, 255, 255, 0.1);
  --white-alpha-12: rgba(255, 255, 255, 0.12);
  --white-alpha-15: rgba(255, 255, 255, 0.15);
  --white-alpha-60: rgba(255, 255, 255, 0.6);
  --white-alpha-90: rgba(255, 255, 255, 0.9);

  /* BACKGROUNDS */
  --bg-primary: rgb(10, 10, 10);
  --bg-secondary: rgba(255, 255, 255, 0.03);
  --bg-tertiary: rgba(255, 255, 255, 0.02);
  --bg-glass: rgba(255, 255, 255, 0.08);
  --bg-glass-light: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(85, 85, 85, 0.58);
  --bg-glass-red: rgba(255, 255, 255, 0.05);
  --bg-dark: rgb(10, 10, 10);

  /* TEXT */
  --text-primary: rgb(242, 242, 242);
  --text-secondary: rgba(242, 242, 242, 0.9);
  --text-tertiary: rgba(242, 242, 242, 0.85);
  --text-muted: rgba(242, 242, 242, 0.8);
  --text-light: rgba(242, 242, 242, 0.6);

  /* BORDERS */
  --border-primary: rgba(255, 255, 255, 0.1);
  --border-secondary: rgba(255, 255, 255, 0.12);
  --border-red: rgba(255, 255, 255, 0.3);
  --border-red-light: rgba(255, 255, 255, 0.2);

  /* SHADOWS */
  --shadow-sm: rgba(0, 0, 0, 0.21);
  --shadow-md: rgba(0, 0, 0, 0.35);
  --shadow-lg: rgba(0, 0, 0, 0.4);
  --shadow-xl: rgba(0, 0, 0, 0.75);
  --shadow-inset: rgba(255, 255, 255, 0.08);
  --shadow-inset-subtle: rgba(255, 255, 255, 0.05);

  /* GLOW/NEON BRANCO */
  --glow-red: rgba(255, 255, 255, 0.6);
  --glow-red-strong: rgba(255, 255, 255, 0.9);
  --glow-neon: var(--glow-red);

  /* GRID OVERLAY */
  --grid-color: rgba(255, 255, 255, 0.07);
}

/* ========================================
   GLASSMORPHISM BASE
   ======================================== */

.glass {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--bg-glass);
  border: 1px solid var(--border-primary);
  box-shadow:
    0 8px 32px var(--shadow-md),
    inset 0 1px 1px var(--shadow-inset-subtle);
}

.glass-red {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--bg-glass-red);
  border: 1px solid var(--border-red-light);
  box-shadow:
    0 8px 32px var(--shadow-md),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.glass-strong {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ========================================
   GLITCH EFFECT - VERMELHO
   ======================================== */

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgb(255, 255, 255) 0%,
    rgb(220, 220, 220) 25%,
    rgb(255, 255, 255) 50%,
    rgb(220, 220, 220) 75%,
    rgb(255, 255, 255) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glitch::before {
  animation: glitch-1 0.3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translateX(-2px);
}

.glitch::after {
  animation: glitch-2 0.3s infinite linear alternate-reverse;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translateX(2px);
}

@keyframes glitch-1 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translateX(-2px);
  }
  10% {
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 55%);
    transform: translateX(2px);
  }
  20% {
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    transform: translateX(-2px);
  }
  30% {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    transform: translateX(0);
  }
  40% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translateX(2px);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translateX(-2px);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translateX(-2px);
  }
}

@keyframes glitch-2 {
  0% {
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translateX(2px);
  }
  15% {
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    transform: translateX(-2px);
  }
  30% {
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translateX(0);
  }
  45% {
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    transform: translateX(2px);
  }
  100% {
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translateX(2px);
  }
}

/* Glitch sutil - só no hover */
.glitch-subtle:not(:hover) .glitch::before,
.glitch-subtle:not(:hover) .glitch::after {
  animation: none;
  opacity: 0;
}

.glitch-subtle:hover .glitch::before,
.glitch-subtle:hover .glitch::after {
  animation-duration: 0.2s;
  animation-iteration-count: 3;
  opacity: 0.8;
}

/* ========================================
   BUTTONS - SIMPLES E BONITOS (SEM BUGS)
   ======================================== */

.btn {
  position: relative;
  overflow: hidden !important;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
}

.btn span {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

/* Esconder segundo span se existir */
.btn span:nth-child(2) {
  display: none;
}

/* Efeito Ripple para todos os botões */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease-out, height 0.5s ease-out;
  z-index: 0;
  pointer-events: none;
}

.btn:hover::before {
  width: 1200px;
  height: 1200px;
}

.btn-large:hover::before {
  width: 1600px;
  height: 1600px;
}

/* Botão Primário - Branco CHAMATIVO */
.btn-primary {
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(220, 220, 220) 100%);
  color: black;
  border: 2px solid rgb(255, 255, 255);
  box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgb(220, 220, 220) 0%, rgb(180, 180, 180) 100%);
  box-shadow:
    0 8px 30px rgba(255, 255, 255, 0.6),
    0 0 40px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  border-color: rgb(220, 220, 220);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 4px 15px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(0, 0, 0, 0.2);
}

/* Botão Secundário - Glass */
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgb(255, 255, 255);
  box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.4),
    0 0 30px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Botão Large */
.btn-large {
  height: 64px;
  padding: 0 50px;
  font-size: 15px;
  letter-spacing: 1px;
}

/* ========================================
   TOP BAR - GLASS
   ======================================== */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--color-primary);
  border-bottom: 1px solid var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
  z-index: 1001; /* Acima do header */
  padding: 12px 0;
  color: white;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  color: white;
}

.urgency-icon {
  font-size: 16px;
  animation: pulse 2s infinite;
  color: white;
}

.urgency-text {
  font-size: 14px;
  color: white;
}

.urgency-text strong {
  color: white;
  font-weight: 700;
}

.timer-text {
  font-weight: 600;
  color: white;
}

.countdown {
  color: white;
  font-weight: 700;
  font-family: monospace;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: white;
}

.social-icon:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

/* ========================================
   HEADER GLASS (Estilo "macaco")
   ======================================== */

body {
  padding-top: 0;
}

#site-header {
  position: fixed;
  top: 5px; /* Espaçamento harmônico do topo */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  height: 65px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--bg-glass);
  border: 1px solid var(--border-primary);
  box-shadow:
    0 8px 32px var(--shadow-md),
    inset 0 1px 1px var(--shadow-inset-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  gap: 20px;
  transition: all 0.3s ease;
}

#site-header:hover {
  background: var(--white-alpha-10);
  box-shadow:
    0 12px 40px var(--shadow-lg),
    inset 0 1px 1px var(--shadow-inset);
}

.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-left .logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--glow-red));
  transition: filter 0.3s ease;
  white-space: nowrap;
}

.header-left .logo:hover {
  filter: drop-shadow(0 0 20px var(--glow-red-strong));
}

.header-middle {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header-right {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

/* Nav Links - Duplo Texto */
.nav-link {
  position: relative;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  transition: all 0.3s ease;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

.nav-link span {
  display: block;
  transition: transform 0.3s ease;
  height: 40px;
  line-height: 40px;
  color: var(--text-secondary);
}

.nav-link span:nth-child(2) {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  padding: 0 15px;
  color: var(--color-primary);
}

.nav-link:hover span:nth-child(1) {
  transform: translateY(-40px);
}

.nav-link:hover span:nth-child(2) {
  transform: translateY(-40px);
}

/* ========================================
   URGENCY & CONVERSION ELEMENTS
   ======================================== */

.urgency-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.badge-hot {
  background: linear-gradient(135deg, #ffffff, #dddddd);
  color: black;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-badge 2s infinite;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.6);
  }
}

@keyframes shake-badge {
  0%, 90%, 100% {
    transform: translateX(0);
  }
  92%, 96% {
    transform: translateX(-3px);
  }
  94%, 98% {
    transform: translateX(3px);
  }
}

.badge-new {
  background: linear-gradient(135deg, #dddddd, #cccccc);
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-exclusive {
  background: linear-gradient(135deg, #999999, #aaaaaa);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Live Activity Indicator */
.live-activity {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 15px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #dddddd;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  box-shadow: 0 0 10px #dddddd;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.live-activity strong {
  color: var(--color-primary);
}

/* ========================================
   PRODUCT CARDS - 3D + BORDER SPIN
   ======================================== */

.produto-card {
  background: linear-gradient(145deg,
    rgba(20, 20, 20, 0.8),
    rgba(15, 15, 15, 0.9));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  min-height: 400px;
}

/* Border Gradiente Animado */
.produto-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.4),
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: all 0.6s ease;
}

/* Glow interno */
.produto-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* Hover - 3D Lift */
.produto-card:hover {
  transform: translateY(-12px) rotateX(-5deg);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.produto-card:hover::before {
  opacity: 1;
  animation: border-spin 4s linear infinite;
}

.produto-card:hover::after {
  opacity: 1;
}

@keyframes border-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Featured Card - Pulse */
.produto-card.featured {
  border: 2px solid var(--color-primary);
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.1),
    rgba(20, 20, 20, 0.9));
  animation: pulse-red 2s infinite;
}

/* Featured Large - Cards em destaque com MESMO TAMANHO mas visual diferenciado */
.produto-card.featured-large {
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.08),
    rgba(20, 20, 20, 0.95));
  box-shadow:
    0 10px 40px rgba(255, 255, 255, 0.2),
    0 0 80px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.produto-card.featured-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.produto-card.featured-large:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
}

/* Grid com 4 cards na mesma linha - IMPORTANTE: força todos os cards terem o mesmo tamanho */
.produtos-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px;
  align-items: stretch;
  max-width: 100%;
  margin: 0 auto;
}

/* Garantir que TODOS os cards ocupem apenas 1 coluna */
.produto-card,
.produto-card.featured,
.produto-card.featured-large {
  grid-column: span 1 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Remover qualquer order que possa ter sido aplicado */
.produto-card {
  order: 0 !important;
}

/* Responsivo */
@media (max-width: 1200px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .produtos-grid {
    grid-template-columns: 1fr !important;
  }
}

@keyframes pulse-red {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
  }
}

/* Elementos internos do card */
.produto-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.produto-features,
.produto-card .btn {
  position: relative;
  z-index: 1;
}

/* Se tiver badge exclusivo, dar espaço pro header */
.produto-card.featured .produto-header {
  margin-top: 30px;
}

.produto-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  flex: 1;
  min-width: 200px;
}

.produto-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.produto-badge.premium {
  background: linear-gradient(135deg, #aaaaaa, #cccccc);
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 255, 255, 0.4);
}

.produto-badge:not(.premium) {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgb(255, 255, 255);
}

.produto-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-item svg {
  flex-shrink: 0;
  stroke: rgb(255, 255, 255);
}

.produto-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.produto-badge-exclusive {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(220, 220, 220) 100%);
  color: black;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
  z-index: 5;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.7);
  }
}

/* ========================================
   BADGES E INDICATORS
   ======================================== */

.status-badge,
.produto-badge {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--red-alpha-15);
  border: 1px solid var(--border-red);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  box-shadow: 0 0 20px var(--red-alpha-30);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow:
    0 0 10px var(--glow-red-strong),
    0 0 20px var(--glow-red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.status-indicator.active {
  background: rgb(220, 220, 220);
  box-shadow:
    0 0 10px rgba(0, 255, 136, 0.8),
    0 0 20px rgba(0, 255, 136, 0.4);
}

/* ========================================
   HERO SECTION - GLASS + RED GLOW
   ======================================== */

.hero {
  background:
    radial-gradient(circle at 30% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%),
    rgb(10, 10, 10);
  position: relative;
  overflow: hidden;
}

/* Grid overlay vermelho */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 2px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 2px,
      transparent 4px
    );
  pointer-events: none;
  opacity: 0.5;
}

.hero-badge {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--red-alpha-15);
  border: 1px solid var(--border-red);
  box-shadow: 0 0 20px var(--red-alpha-20);
}

.badge-dot {
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--glow-red);
  animation: pulse 2s infinite;
}

/* ========================================
   VIDEO WRAPPER - GLASS FRAME
   ======================================== */

.hero-video,
.video-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-red-light);
  box-shadow:
    0 20px 60px rgba(255, 255, 255, 0.2),
    inset 0 0 40px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: var(--bg-glass-red);
}

.video-expand {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-red);
  color: var(--color-primary);
}

.video-expand:hover {
  background: rgba(0, 0, 0, 0.95);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px var(--red-alpha-40);
}

/* ========================================
   FEATURE CARDS - GLASS
   ======================================== */

.feature-card,
.trust-card,
.testemunho-card {
  background: var(--bg-glass);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
}

.feature-card:hover,
.trust-card:hover,
.testemunho-card:hover {
  background: var(--white-alpha-10);
  border-color: var(--border-red-light);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px var(--shadow-lg),
    0 0 30px var(--red-alpha-10);
}

.feature-icon,
.trust-icon {
  background: var(--red-alpha-10);
  border-radius: var(--border-radius);
  color: var(--color-primary);
}

/* ========================================
   FAQ - GLASS ACCORDION
   ======================================== */

.faq-item {
  background: var(--white-alpha-3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--border-primary);
  border-left: 3px solid transparent;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover,
.faq-item.active {
  border-left-color: var(--color-primary);
  background: var(--red-alpha-5);
  box-shadow: 0 0 30px var(--red-alpha-10);
}

.faq-question {
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.4s ease-out, opacity 0.3s ease-out !important;
  opacity: 0 !important;
}

.faq-item.active .faq-answer {
  max-height: 1000px !important;
  opacity: 1 !important;
  transition: max-height 0.4s ease-in, opacity 0.3s ease-in !important;
}

.faq-icon {
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ========================================
   DIVIDER LINE - GLASS
   ======================================== */

.divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%);
  box-shadow: 0 0 10px var(--red-alpha-30);
  margin: var(--spacing-xl) 0;
}

/* ========================================
   PRICE DISPLAY - VERMELHO GRADIENT
   ======================================== */

.price,
.price-value,
.stat-value {
  font-weight: 700;
  background: linear-gradient(135deg,
    rgb(255, 255, 255) 0%,
    rgb(220, 220, 220) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   MODAL/OVERLAY - GLASS FORTE
   ======================================== */

.modal-overlay {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(10, 10, 10, 0.85);
}

.modal-content {
  background: linear-gradient(145deg,
    rgba(30, 30, 30, 0.9),
    rgba(20, 20, 20, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--border-red);
  border-radius: 20px;
  box-shadow:
    0 0 60px rgba(255, 255, 255, 0.3),
    inset 0 0 40px rgba(255, 255, 255, 0.03);
}

/* ========================================
   FOOTER - GLASS
   ======================================== */

.footer {
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.9),
    rgba(10, 10, 10, 0.95));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-red-light);
  box-shadow: 0 -8px 32px rgba(255, 255, 255, 0.1);
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg,
    rgb(255, 255, 255),
    rgb(220, 220, 220));
  box-shadow: 0 0 10px var(--glow-red-strong);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ========================================
   NOTIFICAÇÃO DE DESCONTO LEGÍTIMA
   ======================================== */

.discount-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(145deg,
    rgba(24, 24, 27, 0.98),
    rgba(18, 18, 21, 0.98));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(220, 220, 220, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.9),
    0 4px 16px rgba(220, 220, 220, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  z-index: 99998;
  min-width: 320px;
  max-width: 360px;
  transform: translateX(-500px) scale(0.9);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.discount-notification.show {
  transform: translateX(0) scale(1);
  opacity: 1;
  animation: notification-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes notification-bounce {
  0% {
    transform: translateX(-500px) scale(0.9);
  }
  60% {
    transform: translateX(10px) scale(1.02);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 14px 18px;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg,
    rgba(220, 220, 220, 0.2),
    rgba(220, 220, 220, 0.15));
  border: 2px solid rgba(220, 220, 220, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 15px rgba(220, 220, 220, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: pulse-icon 2s infinite;
}

.notification-icon svg {
  width: 20px;
  height: 20px;
  color: rgb(220, 220, 220);
}

@keyframes pulse-icon {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(220, 220, 220, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow:
      0 0 30px rgba(220, 220, 220, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.notification-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
}

.notification-header {
  color: white;
  margin-bottom: 4px;
  font-size: 14px;
}

.notification-header strong {
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.notification-message {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.highlight-discount {
  color: rgb(220, 220, 220);
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 2px 8px rgba(220, 220, 220, 0.3);
}

.notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
  opacity: 0.6;
}

.notification-close:hover {
  background: rgba(220, 220, 220, 0.2);
  color: rgb(220, 220, 220);
  opacity: 1;
}

.notification-progress {
  height: 3px;
  background: rgba(220, 220, 220, 0.2);
  position: relative;
  overflow: hidden;
}

.notification-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgb(220, 220, 220), rgb(200, 200, 200));
  transform: translateX(-100%);
  transition: none;
}

.discount-notification.show .notification-progress::after {
  animation: progress-fill 10s linear forwards;
}

@keyframes progress-fill {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .discount-notification {
    left: 15px;
    right: 15px;
    bottom: 15px;
    min-width: auto;
    max-width: calc(100% - 30px);
    transform: translateY(200px) scale(0.9);
  }

  .discount-notification.show {
    transform: translateY(0) scale(1);
  }

  .notification-content {
    padding: 12px 14px;
    gap: 10px;
  }

  .notification-icon {
    width: 36px;
    height: 36px;
  }

  .notification-icon svg {
    width: 18px;
    height: 18px;
  }

  .notification-header strong {
    font-size: 13px;
  }

  .notification-message {
    font-size: 12px;
  }

  .highlight-discount {
    font-size: 13px;
  }
}

/* ========================================
   CTA ALERT - GLASS
   ======================================== */

.final-cta-alert {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--red-alpha-10);
  border: 1px solid var(--border-red);
  box-shadow: 0 0 30px var(--red-alpha-20);
}

/* ========================================
   LOADING ANIMATION
   ======================================== */

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* ========================================
   MOBILE MENU - GLASS
   ======================================== */

.mobile-menu {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 3px solid var(--color-primary);
  box-shadow:
    -10px 0 40px rgba(0, 0, 0, 0.5),
    inset 3px 0 20px var(--red-alpha-10);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.glow-red {
  box-shadow: 0 0 20px var(--glow-red);
}

.glow-red-strong {
  box-shadow: 0 0 40px var(--glow-red-strong);
}

.border-red {
  border-color: var(--border-red) !important;
}

.bg-red-alpha {
  background: var(--red-alpha-10);
}

.text-red {
  color: var(--color-primary);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  body {
    padding-top: 0;
  }

  #site-header {
    width: 95%;
    top: 70px;
  }

  .header-middle {
    gap: 5px;
  }

  .nav-link {
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  .top-bar {
    padding: 8px 0;
  }

  .top-bar-text {
    font-size: 12px;
  }

  .urgency-text {
    font-size: 11px;
  }

  .timer-text {
    font-size: 12px;
  }

  .countdown {
    font-size: 13px;
  }

  #site-header {
    width: 95%;
    padding: 0 15px;
    height: 55px;
    top: 60px; /* Abaixo do top bar */
  }

  .header-middle {
    display: none; /* Esconde nav no mobile */
  }

  .header-right .btn {
    padding: 12px 20px;
    font-size: 12px;
  }

  .produto-card:hover {
    transform: translateY(-8px);
  }

  .glass-strong {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 0;
  }

  .top-bar {
    padding: 6px 0;
  }

  .top-bar-content {
    gap: 8px;
  }

  .top-bar-text {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .urgency-text,
  .timer-text {
    font-size: 10px;
  }

  .countdown {
    font-size: 12px;
  }

  .top-bar-social {
    display: none;
  }

  #site-header {
    top: 50px;
    height: 50px;
    padding: 0 12px;
  }

  .header-left .logo {
    font-size: 16px !important;
  }

  .header-right .btn span {
    font-size: 10px;
  }

  .produto-card:hover {
    transform: translateY(-4px) rotateX(0deg);
  }
}

/* ========================================
   ANIMATIONS EXTRAS
   ======================================== */

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes rotate-slow {
  100% {
    transform: rotate(360deg);
  }
}

.rotate-slow {
  animation: rotate-slow 20s linear infinite;
}

/* Efeito de digitação */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

.typing-effect {
  overflow: hidden;
  border-right: 2px solid var(--color-primary);
  white-space: nowrap;
  animation:
    typing 3.5s steps(40, end),
    blink-caret 0.75s step-end infinite;
}
