body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #111;
  color: #fff;
}
.top-bar {
  background-color: red;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  font-size: 14px;
}
.hero {
  text-align: center;
  padding: 40px 20px 20px;
}
.hero h1 {
  font-size: 2.2em;
  font-weight: bold;
  line-height: 1.2;
}
.hero h1 .highlight {
  color: #ff00ff;
}
.hero p {
  margin-top: 15px;
  font-size: 1.1em;
  color: #00ff00;
  font-weight: 500;
}
.video-wrapper {
  max-width: 640px;
  margin: 30px auto 10px;
}
.button-container {
  margin-top: 20px;
}
.button-container a,
.unlock-btn {
  background-color: #FFD700;
  color: #111;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  display: inline-block;
  transition: background 0.3s;
}
.unlock-btn:hover {
  background: #ffcc00;
}
.features-section,
.benefits-section,
.recommended-section,
.tools-cost-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}
.features-section h2,
.benefits-section h2,
.recommended-section h2,
.tools-cost-section h2 {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.features-section .subtitle,
.tools-cost-section .subtitle,
.recommended-section .subtitle,
.benefits-section .subtitle {
  font-size: 1.1em;
  color: #00ff00;
  font-weight: bold;
  margin-bottom: 30px;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  margin: 40px auto;
  max-width: 1000px;
}
.icon-grid img {
  height: 120px;
  filter: drop-shadow(0 0 10px #00f7ff) brightness(1.2);
  transition: transform 0.3s ease;
}
.icon-grid img:hover {
  transform: scale(1.1);
}
.benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.benefits-list li {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  font-size: 1em;
  font-weight: 500;
  color: #00ff00;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  transition: background 0.3s;
}
.benefits-list li:hover {
  background: #333;
}
.recommended-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1.6;
}
.recommended-list li {
  background-color: #1a1a1a;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 5px solid #00ff99;
  text-align: left;
}
.tools-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}
.tools-list li {
  background: #1a1a1a;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tools-list li span {
  color: #00f7ff;
  font-weight: bold;
}
.total-box {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.total-box .highlight {
  color: #FFD700;
  font-size: 1.5em;
}
.total-box .sub {
  font-size: 0.95em;
  color: #bbb;
}
.cta-box p {
  font-size: 1.1em;
  color: #00ff00;
}
.plan-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  color: #111;
}
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.plan-card {
  background-color: #f1f1f1;
  padding: 30px 25px;
  border-radius: 16px;
  width: 320px;
  border: 1px solid #ccc;
  position: relative;
}
.plan-card .price {
  font-size: 2.5em;
  font-weight: bold;
  margin: 10px 0;
  color: #00c853;
}
.price-orange {
  color: #ff5722;
}
.btn-green {
  background-color: #00c853;
}
.btn-orange {
  background-color: #ff5722;
}
.plan-highlight {
  background-color: #ffd700;
  color: #111;
  font-weight: bold;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
footer.rodape {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95em;
}
.rodape-conteudo {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }
  .benefits-list {
    grid-template-columns: 1fr !important;
  }
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-wrapper {
    width: 100%;
    padding: 0 10px;
  }
}
