@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-main: #06070d;
  --bg-surface: #0e111a;
  --bg-card: rgba(22, 28, 45, 0.4);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 242, 254, 0.4);
  
  --primary: #00f2fe;
  --primary-hover: #00c6d1;
  --secondary: #7f00ff;
  --secondary-hover: #6700cc;
  --accent: #f857a6;
  
  --text-main: #f5f6f7;
  --text-muted: #9fa6b2;
  
  --glow-primary: 0 0 15px rgba(0, 242, 254, 0.35);
  --glow-secondary: 0 0 15px rgba(127, 0, 255, 0.35);
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 16px;
  --radius-md: 8px;
  
  --container-width: 1200px;
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(127, 0, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

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

button, input, textarea, select {
  font-family: inherit;
}

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

/* Layout Geral */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px auto;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #06070d;
  box-shadow: var(--glow-primary);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary-hover) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 13, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--text-main);
  -webkit-text-fill-color: var(--text-main);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  text-shadow: var(--glow-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer */
.footer {
  background: #030407;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-family: var(--font-title);
  color: var(--text-main);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.social-icon:hover {
  background: var(--primary);
  color: #06070d;
  box-shadow: var(--glow-primary);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-primary);
  transform: translateY(-4px);
}

/* Cards de Jogo */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 380px;
  transition: var(--transition);
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 7, 13, 0.95) 20%, rgba(6, 7, 13, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.game-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-card-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.game-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  background: linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
              linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.25), 0 0 35px rgba(127, 0, 255, 0.15);
}

.game-card:hover .game-card-img {
  transform: scale(1.05);
}

/* Cards de Produto */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  background: linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
              linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.25), 0 0 35px rgba(127, 0, 255, 0.15);
}

.product-card-img-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-game {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.product-card-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}

.product-card-features {
  list-style: none;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.product-card-features li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.product-card-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price-wrapper {
  display: flex;
  flex-direction: column;
}

.product-old-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-price {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.product-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-primary);
  transform: translateY(-4px);
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

/* Formulários */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-main);
  transition: var(--transition);
}

select.form-control {
  background-color: var(--bg-surface);
}

select.form-control option {
  background-color: var(--bg-surface);
  color: var(--text-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
  background: rgba(255, 255, 255, 0.05);
}

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

.faq-item {
  background: rgba(22, 28, 45, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0, 1, 0, 1);
  color: var(--text-muted);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
  max-height: 1000px;
  transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

/* Global Notification */
.notification-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notification {
  background: rgba(14, 17, 26, 0.95);
  border-left: 4px solid var(--primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), var(--glow-primary);
  border-radius: 4px;
  padding: 16px 24px;
  color: var(--text-main);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 450px;
  backdrop-filter: blur(10px);
  animation: slideIn 0.3s forwards;
}

.notification.success {
  border-left-color: #00ff87;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 255, 135, 0.2);
}

.notification.error {
  border-left-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 15px rgba(248, 87, 166, 0.2);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 10%, #dbdbdb 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  opacity: 0.6;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, transparent 20%, var(--bg-main) 80%);
}

.hero-image-wrapper img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: var(--glow-secondary);
}

/* Grid de Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 40px 30px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: var(--primary);
  font-size: 1.5rem;
  box-shadow: var(--glow-primary);
}

.benefit-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, rgba(22, 28, 45, 0.4) 25%, rgba(40, 50, 75, 0.4) 50%, rgba(22, 28, 45, 0.4) 75%);
  background-size: 200% 100%;
  animation: loadingSkeleton 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes loadingSkeleton {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsividade Geral */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition);
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active {
    left: 0;
  }
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-badge {
    margin: 0 auto 24px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image-wrapper {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Status do Cheat (Indetectável / Atualizado) */
.status-badge-cheat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(6, 7, 13, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid #00ff87;
  color: #00ff87;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.status-badge-cheat.updating {
  border-color: #ffc107;
  color: #ffc107;
}

.status-badge-cheat.detected {
  border-color: #f857a6;
  color: #f857a6;
}

.status-badge-cheat::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #00ff87;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff87;
  animation: pulseGreen 1.5s infinite;
}

.status-badge-cheat.updating::before {
  background-color: #ffc107;
  box-shadow: 0 0 8px #ffc107;
  animation: pulseYellow 1.5s infinite;
}

.status-badge-cheat.detected::before {
  background-color: #f857a6;
  box-shadow: 0 0 8px #f857a6;
  animation: pulseRed 1.5s infinite;
}

@keyframes pulseYellow {
  0% { transform: scale(1); box-shadow: 0 0 8px #ffc107; }
  50% { transform: scale(1.2); box-shadow: 0 0 14px #ffc107; }
  100% { transform: scale(1); box-shadow: 0 0 8px #ffc107; }
}

@keyframes pulseRed {
  0% { transform: scale(1); box-shadow: 0 0 8px #f857a6; }
  50% { transform: scale(1.2); box-shadow: 0 0 14px #f857a6; }
  100% { transform: scale(1); box-shadow: 0 0 8px #f857a6; }
}

@keyframes pulseGreen {
  0% {
    transform: scale(1);
    box-shadow: 0 0 8px #00ff87;
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 14px #00ff87;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 8px #00ff87;
  }
}

/* Widget de Suporte Flutuante */
.support-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
}

.support-bubble {
  width: 56px;
  height: 56px;
  background: #5865F2; /* Discord Blurple */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.4);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.support-bubble:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.6);
}

.support-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #5865F2;
  animation: supportPulse 2s infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes supportPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.support-tooltip {
  position: absolute;
  left: 70px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--glow-primary);
  transform: translateX(-10px);
}

.support-bubble:hover .support-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Efeitos de Partículas e Animação Cyber no Hero */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 242, 254, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 254, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
}

.cyber-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--glow-primary);
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
  animation: floatParticle 8s infinite ease-in-out;
}

.cyber-particle.sec {
  background: var(--secondary);
  box-shadow: var(--glow-secondary);
  animation-duration: 12s;
}

.cyber-particle.acc {
  background: var(--accent);
  box-shadow: 0 0 15px rgba(248, 87, 166, 0.5);
  animation-duration: 10s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-200px) translateX(40px) scale(0.6);
    opacity: 0;
  }
}

/* Abas do Painel do Cliente */
.client-tabs-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  overflow-x: auto;
}

.client-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.client-tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

.client-tab-btn.active {
  color: var(--primary);
  background: rgba(0, 242, 254, 0.06);
  border-color: rgba(0, 242, 254, 0.2);
}

.client-tab-content {
  display: none;
  animation: fadeInTab 0.4s ease;
}

.client-tab-content.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Chat de Suporte */
.ticket-chat-container {
  display: flex;
  flex-direction: column;
  height: 500px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: rgba(14, 17, 26, 0.5);
  overflow: hidden;
}

.ticket-chat-header {
  padding: 16px 24px;
  background: rgba(22, 28, 45, 0.5);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-chat-messages {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble {
  max-width: 70%;
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
}

.chat-bubble.customer {
  align-self: flex-end;
  background: var(--secondary);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(127, 0, 255, 0.25);
}

.chat-bubble.admin {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border-color);
}

.chat-bubble-time {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-align: right;
}

.chat-bubble.admin .chat-bubble-time {
  color: var(--text-muted);
}

.ticket-chat-input-area {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  background: rgba(22, 28, 45, 0.5);
  display: flex;
  gap: 12px;
}

.ticket-chat-input-area input {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.ticket-chat-input-area input:focus {
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

/* Tickets List */
.tickets-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticket-item {
  background: rgba(22, 28, 45, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  background: rgba(22, 28, 45, 0.4);
}

.ticket-meta-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.ticket-meta-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.chat-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.chat-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--glow-primary);
}
.recording-dot {
  width: 12px;
  height: 12px;
  background-color: #ff0055;
  border-radius: 50%;
  animation: pulse-red-record 1s infinite alternate;
}
@keyframes pulse-red-record {
  0% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7); }
  100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 8px rgba(255, 0, 85, 0); }
}

/* Selecionador de Idioma Customizado */
.lang-selector {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.lang-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  color: var(--text-main);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  height: 38px;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  display: none;
  flex-direction: column;
  min-width: 110px;
  z-index: 1000;
  padding: 4px;
}
.lang-dropdown.active {
  display: flex;
}
.lang-option {
  padding: 6px 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.lang-option:hover {
  background: rgba(0, 242, 254, 0.05);
  color: var(--primary);
}

/* Ocultar Barra Superior do Google Translate e Elementos Residuais */
body {
  top: 0 !important;
}
.skiptranslate, iframe.goog-te-banner-frame {
  display: none !important;
}
.goog-te-balloon-frame {
  display: none !important;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

