* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f0f;
  color: #ffffff;
}

header {
  min-height: 100vh;
  background: linear-gradient(120deg, #ffc400, #1f1f1f);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  max-width: 1200px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text h1 span {
  background: #fff;
  color: #000;
  padding: 4px 10px;
  border-radius: 8px;
}

.hero-text h2 {
  margin: 15px 0;
  padding-top: 20px;
  text-align: left;
}

.hero-text p {
  margin-bottom: 25px;
  color: #111;
  
}

.btn {
  background: #1f1f1f;
  color: #ffc400;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}



.hero-video iframe {
  width: 100%;
  height: 315px;
  border-radius: 20px;
  border: none;
}

section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 2.4rem;
}

.desc {
  text-align: center;
  margin: 20px auto 60px;
  max-width: 800px;
  color: #ccc;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #1b1b1b;
  padding: 30px;
  border-radius: 20px;
}

.card h3 {
  color: #ffc400;
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery img {
  width: 100%;
  border-radius: 20px;
  
}

.img-sistema {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 20px;
  text-align: center;
  font-size: 22px;
  color: #ffc400;
  
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.benefits ul li {
  list-style: none;
  margin-bottom: 15px;
}

.warning {
  background: #141414;
  border: 2px dashed #ffc400;
  border-radius: 20px;
  padding: 30px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.plan {
  background: #1b1b1b;
  padding: 40px;
  border-radius: 25px;
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.plan.highlight {
  border: 2px solid #ffc400;
}

.price {
  font-size: 2.5rem;
  color: #ffc400;
  margin: 20px 0;
}

footer {
  background: #000;
  padding: 30px;
  text-align: center;
  color: #777;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero,
  .benefits {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
  font-size: 2rem;
}

.hero-text h2 {
  font-size: 1.5rem;
}
section {
  padding: 40px 30px;
  max-width: 1200px;
  margin: auto;
}


}
