:root {
  --primary: #ff0000;
  --primary-dark: #cc0000;
  --secondary: #f8f7f8;
  --dark: #18191c;
  --darker: #121315;
  --light: #ffffff;
  --gray: #8e9196;
  --yellow: #ffb700;
  --blue: #3b82f6;
  --green: #10b981;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--darker);
  color: var(--light);
  overflow-x: hidden;
}

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background-color: rgba(18, 19, 21, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 15px 0;
  background-color: var(--darker);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.logo-text {
  font-weight: bold;
  font-size: 24px;
  background: linear-gradient(270deg, #ff0000, #ffffff, #0e0e0e, #ff0000, #ffffff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

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

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

.nav-links li {
  margin: 0 15px;
}

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

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

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

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

.hamburger {
  display: none;
  cursor: pointer;
}

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

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  color: var(--light);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.6);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  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;
}

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

/* HERO SECTION */
.hero {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.15), transparent 60%);
}

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

.hero-content {
  z-index: 1;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  background-color: rgba(247, 6, 6, 0.2);
  z-index: -1;
  transition: height 0.3s ease;
}

.highlight:hover::after {
  height: 50%;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-animation {
  position: relative;
  width: 300px;
  height: 300px;
  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;
  color: var(--primary);
  filter: drop-shadow(0 0 15px rgba(245, 244, 244, 0.7));
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.6) 0%, rgba(255, 0, 120, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

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

.floating-item {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.item1 {
  top: 30%;
  left: 10%;
  animation: floatItem 8s ease-in-out infinite;
}

.item2 {
  top: 60%;
  left: 15%;
  animation: floatItem 7s ease-in-out infinite 1s;
}

.item3 {
  top: 20%;
  right: 15%;
  animation: floatItem 9s ease-in-out infinite 0.5s;
}

.item4 {
  top: 70%;
  right: 20%;
  animation: floatItem 10s ease-in-out infinite 1.5s;
}

.item5 {
  top: 45%;
  right: 5%;
  animation: floatItem 6s ease-in-out infinite 0.3s;
}

/* STATS SECTION */
.stats {
  padding: 80px 0;
  background-color: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

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

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* FEATURES SECTION */
.features {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  color: var(--light);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--light), var(--primary));
  background-size: 200%;
  animation: shine 4s ease-in-out infinite;  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}


@keyframes shine {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0%;
  }
}
.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--gray);
  margin-bottom: 50px;
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(88, 101, 242, 0.2));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

/* ADVANTAGES SECTION */
.advantages {
  padding: 100px 0;
  background-color: var(--dark);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 35px;
}

.advantage-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.green {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(16, 185, 129, 0.2));
}

.green i {
  color: var(--green);
}

.blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
}

.blue i {
  color: var(--blue);
}

.yellow {
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.2), rgba(234, 179, 8, 0.2));
}

.yellow i {
  color: var(--yellow);
}

.advantage-icon i {
  font-size: 1.8rem;
}

.advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

/* CTA SECTION */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 77, 77, 0.1));
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.pulse {
  animation: pulse 2s infinite;
}

/* FOOTER */
.footer {
  background-color: var(--darker);
  padding: 70px 0 20px;
}

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

.footer-logo p {
  color: var(--gray);
  margin-top: 10px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

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

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

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

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

.footer-contact i {
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.9rem;
}

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

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

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@keyframes floatItem {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, -15px);
  }
  50% {
    transform: translate(-5px, 10px);
  }
  75% {
    transform: translate(-12px, -7px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes blob {
  0% {
    border-radius: 60% 40% 70% 30% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 40% 60% 30% 70% / 40% 60% 30% 70%;
  }
  50% {
    border-radius: 30% 70% 60% 40% / 50% 60% 40% 50%;
  }
  75% {
    border-radius: 70% 30% 40% 60% / 30% 40% 70% 60%;
  }
  100% {
    border-radius: 60% 40% 70% 30% / 60% 30% 70% 40%;
  }
}

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

/* RESPONSIVENESS */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 40px;
  }
  
  .title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .features-grid,
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar .container {
    position: relative;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--darker);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .title {
    font-size: 2rem;
  }
  
  .features-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card,
  .advantage-card {
    padding: 20px;
  }
  
  .btn-primary,
  .btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-animation {
    width: 200px;
    height: 200px;
  }
  
  .discord-animated-icon {
    font-size: 5rem;
  }
  
  .floating-item {
    width: 30px;
    height: 30px;
  }
  
  .floating-item i {
    font-size: 0.9rem;
  }
}


.discord-float {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #111111;
  color: white;
  padding: 12px 14px;
  font-size: 27px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.discord-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-left: 3px;
  background-color: transparent; /* Sem fundo */
  border: none;                  /* Sem borda */
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 4px; /* Pequeno padding ao redor do ícone */
  border-radius: 6px;
}

.discord-box:hover {
  color: #d32525; /* Verde do WhatsApp no hover */
  transform: scale(1.1); /* Leve zoom ao passar o mouse */
}