/* ============================================
   VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ============================================ */
:root {
  --primary: #ff0000;
  --primary-dark: #cc0000;
  --primary-light: #ff3333;
  --secondary: #f8f7f8;
  --dark: #0a0a0a;
  --darker: #050505;
  --light: #ffffff;
  --gray: #8e9196;
  --gray-light: #d0d0d0;
  --gray-dark: #2a2a2a;
  --yellow: #ffb700;
  --blue: #3b82f6;
  --green: #10b981;
  --accent: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  color: var(--light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   NAVBAR - BARRA DE NAVEGAÇÃO
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  padding: 15px 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.9) 100%);
  box-shadow: 0 10px 50px rgba(255, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-weight: 800;
  font-size: 24px;
  background: linear-gradient(135deg, #ff0000 0%, #ff3333 50%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.logo-text:hover {
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links li {
  margin: 0;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--light);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--light);
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-secondary:hover::before {
  left: 0;
}

/* ============================================
   SEÇÃO HERO
   ============================================ */
.hero {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -50%;
  right: -50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideInLeft 0.8s ease;
}

.title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 35px;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease 0.4s both;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s ease;
}

.hero-animation {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.discord-icon-wrapper {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.discord-animated-icon {
  font-size: 8rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.4));
  animation: pulse 3s ease-in-out infinite;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.4) 0%, rgba(255, 0, 0, 0.1) 50%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
  filter: blur(30px);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  animation: float 8s ease-in-out infinite;
}

.floating-item.item1 { top: 10%; left: 5%; animation-delay: 0s; }
.floating-item.item2 { top: 20%; right: 10%; animation-delay: 1s; }
.floating-item.item3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.floating-item.item4 { bottom: 10%; right: 5%; animation-delay: 3s; }
.floating-item.item5 { top: 50%; right: 0%; animation-delay: 1.5s; }

/* ============================================
   SEÇÃO DE ESTATÍSTICAS
   ============================================ */
.stats {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.02) 0%, transparent 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.02) 100%);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1rem;
  color: var(--gray);
}

/* ============================================
   SEÇÃO DE RECURSOS
   ============================================ */
.features {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--light) 0%, var(--gray-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 1px solid rgba(255, 0, 0, 0.15);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 0, 0, 0.2);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--light);
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--light);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   SEÇÃO DE VANTAGENS
   ============================================ */
.advantages {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.03) 0%, transparent 100%);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.advantage-card {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 45px 35px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 0, 0, 0.2);
  border-color: var(--primary);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.advantage-icon.green {
  background: linear-gradient(135deg, var(--green) 0%, rgba(16, 185, 129, 0.6) 100%);
  color: var(--light);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.advantage-icon.blue {
  background: linear-gradient(135deg, var(--blue) 0%, rgba(59, 130, 246, 0.6) 100%);
  color: var(--light);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.advantage-icon.yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, rgba(255, 183, 0, 0.6) 100%);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(255, 183, 0, 0.3);
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.15) rotate(-10deg);
}

.advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--light);
}

.advantage-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   SEÇÃO CTA (CALL TO ACTION)
   ============================================ */
.cta {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

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

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.discord-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  animation: bounce 2s ease-in-out infinite;
}

.discord-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 50px rgba(255, 0, 0, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, var(--darker) 100%);
  border-top: 1px solid rgba(255, 0, 0, 0.15);
  padding: 60px 0 20px;
  color: var(--gray);
}

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

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

.footer-logo .logo-text {
  font-size: 20px;
}

.footer-logo p {
  color: var(--gray);
  line-height: 1.7;
}

.discord-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  color: var(--light);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-right: 10px;
}

.discord-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--light);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

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

.footer-links a,
.footer-contact a {
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before,
.footer-contact a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.footer-links a:hover::before,
.footer-contact a:hover::before {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 0, 0, 0.1);
  color: var(--gray);
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--dark);
    gap: 0;
  }

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

  .nav-links li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  }

  .hamburger {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .title {
    font-size: 2.5rem;
  }

  .hero-animation {
    width: 250px;
    height: 250px;
  }

  .discord-animated-icon {
    font-size: 6rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 480px) {
  .title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .discord-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* ============================================
   CLASSES UTILITÁRIAS
   ============================================ */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}


/* ============================================
   BANNER DE AVISO
   ============================================ */
.alert-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
  color: white;
  padding: 4px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.8rem;
  z-index: 2000;
  box-shadow: none;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.alert-banner a.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
  text-decoration: none;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 10px;
  font-size: 0.7rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.alert-banner a.banner-btn:hover {
  background: rgba(255, 0, 0, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
}

.alert-banner a.banner-btn i {
  font-size: 0.7rem;
}

.alert-banner .close-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0 5px;
  border-radius: 0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.alert-banner .close-btn:hover {
  background: transparent;
  opacity: 1;
}

body.has-alert {
  padding-top: 24px;
}

body.has-alert .navbar {
  top: 24px;
}

/* ============================================
   MODAL - DASHBOARD INFO
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--darker);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(255, 0, 0, 0.2);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--light);
}

.modal-text {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--light);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.5);
}

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

.modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }

  .navbar .container {
    flex-wrap: nowrap;
    position: relative;
  }

  .logo-text {
    font-size: 18px;
  }

  #dashboard-btn {
    display: none;
  }

  .hamburger {
    display: flex !important;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
    z-index: 1001;
    backdrop-filter: blur(20px);
  }

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

  .nav-links li {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.08);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    width: 100%;
  }

  .hero {
    padding: 110px 0 60px;
    margin-top: 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .title {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-animation {
    width: 220px;
    height: 220px;
  }

  .discord-animated-icon {
    font-size: 5rem;
  }

  .glow-effect {
    width: 140px;
    height: 140px;
  }

  .floating-item {
    display: none;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stats,
  .features,
  .advantages,
  .cta {
    padding: 60px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .alert-banner {
    display: none !important;
  }

  body.has-alert {
    padding-top: 0;
  }

  body.has-alert .navbar {
    top: 0;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 16px;
  }

  .title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero-image {
    display: none;
  }

  .discord-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
    font-size: 22px;
  }
}

/* ============================================
   PÁGINA DE ATUALIZAÇÕES (ESTILO DISCORD)
   ============================================ */
.updates-section {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.updates-container {
  max-width: 800px;
  margin: 0 auto;
}

.update-date-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
}

.update-date-divider::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.update-date-divider span {
  background: var(--dark);
  padding: 0 15px;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.discord-card {
  background: #2b2d31;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.5s ease both;
}

.discord-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.discord-card-header i {
  color: var(--light);
  font-size: 1.2rem;
}

.discord-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--light);
  margin: 0;
}

.discord-card-description {
  color: #dbdee1;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.discord-card-section {
  background: rgba(30, 31, 34, 0.6);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.discord-card-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

.update-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #dbdee1;
}

.badge-fix {
  background: #f0b232;
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-top: 3px;
  min-width: 32px;
  text-align: center;
}

.badge-new {
  background: #23a55a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-top: 3px;
  min-width: 32px;
  text-align: center;
}

.discord-card-footer {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: var(--gray);
}
