html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0c0c0e;
  color: white;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.btn-cart {
  position: relative;
  background-color: transparent;
  border: 1px solid #555;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cart:hover {
  background-color: #1f1f1f;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff4757;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* SCROLLBAR WEBKIT (Chrome, Edge, Safari) */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #0a0a0d;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(145deg, #b61111, #500707);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(145deg, #b61111, #500707);
}

/* SCROLLBAR FIREFOX */
html {
  scrollbar-width: thin;
  scrollbar-color: #b61111 #0a0a0d;
}


.highlighted {
  background: linear-gradient(90deg, #b61111, #b61111, #b61111);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shineText 3s ease-in-out infinite;
  font-size: 2.5rem;
  font-family: 'Sharp', sans-serif;
  display: inline-block;
  line-height: 1;
}

@keyframes shineText {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.navbar {
  background-color: #0c0c0e;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 32px;
}


.navbar-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo img {
  height: 58px;
  display: block;
  margin: 0;
  padding: 0;
}


.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #b61111;
  bottom: -22px;
  left: 0;
  border-radius: 2px;
  transition: width 0.3s ease-in-out;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #b61111;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}


.navbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-forum {
  background-color: #1b1b25;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn-forum:hover {
  background-color: #2b2b39;
}

.btn-signin {
  background-color: #b61111;
  padding: 10px 20px;
  font-weight: bold;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-signin:hover {
  background-color: #b61111;
}

.typing-text {
  font-family: 'Sharp', sans-serif;
}

.typing-text::after {
  content: "|";
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.btn-dashboard {
  background-color: #b61111; 
  color: white; 
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: normal;
  transition: background-color 0.3s ease-in-out;
  margin-left: auto; 
  margin-right: 30px; 
  }
  

.hero-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 90px; /* era 120px */
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}


.hero-content {
  flex: 1;
  animation: fadeUp 1s ease-in-out forwards;
  opacity: 0;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-image::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(55px);
  animation: pulseGlow 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-image img {
  max-width: 480px;
  height: auto;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}



.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  min-height: 90vh; /* era 100vh */
  padding: 0 40px;
  position: relative;
}



.hero-section h1 {
  font-family: 'Sharp', sans-serif;
  font-size: 3.0rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 15px rgba(204, 101, 101, 0.2);
}

.hero-section h1 span {
  background: linear-gradient(to right, #b61111, #5e0909);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.hero-subtitle {
  font-size: 1.1rem;
  color: #c4c4c4;
  margin-bottom: 30px;
  max-width: 600px;
}

.custom-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.custom-buy svg {
  width: 18px;
  height: 18px;
  transform: translateY(1px);
}

.custom-buy:hover {
  animation: pulse 0.8s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}



h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

h1 span {
  color: #b61111;
}

.buttons {
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}



.btn-link {
  background: none;
  color: #b61111;
  text-decoration: underline;
}
.features-section {

  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px; 

}

.features-title {
  font-size: 1.4rem;
  color: #b9b9b9;
  margin-bottom: 0px; 
  margin-top: 93px; 
}

.text-gray {
  font-size: 1.2rem;
  color: #707070;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding:  20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: rgba(30, 20, 20, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px 25px;
  margin: 10px auto;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(130, 50, 50, 0.1);
  border: 1px solid rgba(200, 80, 80, 0.15);
  text-align: left;
  width: 100%;
  max-width: 320px;
}
.feature-item:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(70, 35, 35, 0.75), rgba(50, 20, 20, 0.75));
  box-shadow: 0 0 25px rgba(255, 100, 100, 0.25);
}

.feature-icon {
  font-size: 1.6rem;
  color: #b61111;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(218, 114, 114, 0.3);
  margin-bottom: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 0.95rem;
  color: #bdbdbd;
  line-height: 1.4;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.footer {
  color: #585858;
  padding:  10px;
  text-align: center;
}

.about-section {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
  max-width: 800px;
  flex-direction: column; 
  gap: 30px; 
}

.about-header {
  margin-bottom: 30px; 
}

.about-title {
  font-size: 1.2rem;
  color: #707070;
  margin: 0;
}

.about-subtitle {
  font-size: 1.4rem;
  color: #b9b9b9;
  margin-bottom: 10px;
}

.about-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  counter-reset: item;
}

.about-list li {
  color: #8a8a8a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  counter-increment: item;
}

.about-list li::before {
  content: counter(item) "."; 
  background-color: #ff010121;
  color: #c44747; 
  font-size: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; 
  margin-right: 5px;
}

.about-list li p {
  margin: 0;
  line-height: 1.5;
}



.icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
}

.icon span {
  font-size: 1.5rem;
}

.card-title {
  font-weight: bold;
  font-size: 1.2rem;
}

.card-description {
  color: #b3b3b3;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 200%;
  left: 50%; 
  transform: translateX(-50%) translateY(-10px);
  background-color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  list-style: none;
  display: none; 
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.dropdown-menu.visible {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0); 
}


.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  color: #cacaca;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  padding: 15px 30px;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  width: 100%; 
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden; 
  text-overflow: ellipsis;
}


.dropdown-menu li a:hover {
  color: #ebebeb;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.plans-section {
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

.plans-title {
  font-size: 1.8rem;
  color: #b9b9b9;
  margin-bottom: 10px;
  text-align: center;
}

.plans-subtitle {
  font-size: 1.2rem;
  color: #707070;
  margin-bottom: 40px;
  text-align: center;
}

.plans-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
}

.plan-item {
  background: linear-gradient(145deg, rgba(40, 25, 25, 0.6), rgba(20, 10, 10, 0.6));
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(130, 50, 50, 0.1);
  border: 1px solid rgba(200, 80, 80, 0.15);
  position: relative;
  overflow: hidden;
}

.plan-item:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(70, 35, 35, 0.75), rgba(50, 20, 20, 0.75));
  box-shadow: 0 0 25px rgba(255, 100, 100, 0.25);
}

.plan-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #b61111;
  text-shadow: 0 0 10px rgba(218, 114, 114, 0.4);
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.plan-features li {
  color: #c2c2c2;
  font-size: 0.95rem;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.plan-price::after {
  content: attr(data-period);
  font-size: 0.9rem;
  font-weight: 400;
  color: #a0a0a0;
  margin-left: 4px;
}

.btn-primary {
  background: linear-gradient(145deg, #b61111, #b61111);
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 12px;
  font-weight: 600;
  color: white;
  box-shadow: 0 0 15px rgba(204, 101, 101, 0.4);
  animation: glowPulse 2s infinite ease-in-out;
  transition: all 0.3s ease;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 12px rgba(204, 101, 101, 0.3); }
  50% { box-shadow: 0 0 24px rgba(204, 101, 101, 0.5); }
  100% { box-shadow: 0 0 12px rgba(204, 101, 101, 0.3); }
}


.btn-primary:hover {
  background-color: #b61111;
  transform: scale(1.04);
}


.plan-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* espaÃ§o entre os itens */
  padding: 0;
  margin: 0 0 25px 0;
  list-style: none;
}


.plan-features li::before {
  color: #cc6565;
  font-weight: bold;
  font-size: 1rem;
}


.plan-features i {
  color: #c44747;
  font-size: 0.8rem;
}

.combat-visual-section {
  padding: 80px 20px;
  background-color: #080707;
  text-align: center;
}

.feature-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.feature-card {
  padding: 25px 20px 25px 20px; /* reduzi a margem interna */
  background: linear-gradient(135deg, #0c0c0c 0%, #110f0f 100%);
  border: 1px solid #1a1a1a;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #1c1010, #0d0909);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}


.store-section {
  padding: 200px 20px;
  background: #0e0c0c;
  text-align: center;
}

.store-section .plans-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.store-section .plan-item {
  background: linear-gradient(145deg, rgba(40, 25, 25, 0.6), rgba(20, 10, 10, 0.6));
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(200, 80, 80, 0.15);
}

.store-section .plan-item:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(70, 35, 35, 0.75), rgba(50, 20, 20, 0.75));
  box-shadow: 0 0 25px rgba(255, 100, 100, 0.25);
}
.store-section .plan-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.btn-view-product {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: linear-gradient(145deg, #b61111, #640909);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(204, 101, 101, 0.3);
}

.btn-view-product:hover {
  background: linear-gradient(145deg, #b61111, #5c0909);
  box-shadow: 0 0 20px rgba(204, 101, 101, 0.5);
  transform: scale(1.05);
}


.store-section .plan-item:hover .plan-title {
  color: #ff7c7c;
}


.store-section .plan-item:hover .plan-title {
  color: #ff7c7c;
}


.card-list li::before {
  content: "â€¢";
  color: #c44747;
  font-size: 1rem;
  display: inline-block;
}

/* Estilos responsivos */
@media (max-width: 600px) {
  body {
    padding-top: 130px;
  }

  .navbar {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
  }

  .navbar-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
  }

  .navbar-left {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 0;
  }

  .nav-links li a {
    font-size: 0.9rem;
    padding: 6px;
  }

  .navbar-actions {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .btn-forum,
  .btn-signin {
    font-size: 0.8rem;
    padding: 8px 14px;
    border-radius: 6px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .highlighted {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .features-list,
  .plans-list,
  .feature-cards-container {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .features-title,
  .plans-title,
  .plans-subtitle {
    font-size: 1rem;
    padding: 0 12px;
  }

  .plan-item,
  .feature-item {
    max-width: 100%;
    padding: 20px;
  }

  .btn-view-product {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .store-section {
    padding: 100px 20px;
  }

  .hero-section {
    padding: 0 16px;
    min-height: auto;
  }

  .btn-primary {
    font-size: 0.9rem;
    padding: 10px 22px;
  }
  .features-section {
    padding: 40px 12px;
    text-align: center;
  }
  
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin-top: 20px;
  }
  
  .feature-item {
    padding: 18px 16px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: left;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
}