  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f8f9fc;
      color: #333;
    }
    header {
      background: linear-gradient(135deg, #4c00ff, #7300ff);
      color: #fff;
      padding: 60px 20px 40px;
      text-align: center;
    }
    header h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    header p {
      font-size: 1.3rem;
      opacity: 0.95;
    }
    .promo-bubble {
      position: fixed;
      top: 25px;
      right: 25px;
      background: #ff3c3c;
      padding: 14px 22px;
      color: white;
      border-radius: 10px;
      font-weight: bold;
      z-index: 1000;
      animation: pulse 1.8s infinite;
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.08); }
    }
    section {
      padding: 70px 20px;
      text-align: center;
    }
    section h2 {
      font-size: 2.3rem;
      color: #4c00ff;
      margin-bottom: 40px;
    }
    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .card {
      background: white;
      border-radius: 15px;
      max-width: 400px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-8px);
    }
    .card h3 {
      color: #4c00ff;
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    .card p strong {
      font-size: 1.2rem;
      color: #111;
    }
    .card ul {
      text-align: left;
      margin-top: 20px;
      padding-left: 20px;
      line-height: 1.8;
    }
    .btn {
      display: inline-block;
      background: #4c00ff;
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 20px;
      transition: background 0.3s;
    }
    .btn:hover {
      background: #3700b3;
    }
    .timer {
      color: red;
      font-size: 1.2rem;
      font-weight: bold;
      margin-top: 10px;
    }
    .depoimentos {
      background: #f0f0ff;
      padding: 70px 20px;
    }
    .depoimentos .box {
      background: #fff;
      border-left: 5px solid #4c00ff;
      max-width: 600px;
      margin: 20px auto;
      padding: 25px 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      font-style: italic;
    }
    .depoimentos strong {
      display: block;
      margin-top: 10px;
      color: #4c00ff;
    }
    .faq {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }
    .faq h3 {
      font-size: 1.3rem;
      margin: 20px 0 10px;
      color: #222;
    }
    .faq p {
      color: #555;
    }
    footer {
      background: #1a1a1a;
      color: white;
      padding: 50px 20px;
      text-align: center;
    }
    footer a {
      color: #ccc;
      text-decoration: underline;
      margin: 0 10px;
    }
    .hero {
  position: relative;
  background: linear-gradient(135deg, #4c00ff, #7300ff);
  color: #fff;
  text-align: center;
  padding: 100px 20px 120px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #f8f9fc;
  clip-path: polygon(0 80%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #4c00ff;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #e4dbff;
  color: #3700b3;
  transform: scale(1.05);
}
.planos-section {
  padding: 80px 20px;
  background: #f9f9ff;
  text-align: center;
}
.planos-section h2 {
  font-size: 2.5rem;
  color: #4c00ff;
  margin-bottom: 50px;
}
.planos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.plano-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  position: relative;
}
.plano-card:hover {
  transform: translateY(-6px);
}
.plano-card h3 {
  font-size: 1.6rem;
  color: #4c00ff;
  margin-bottom: 12px;
}
.preco {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.preco-destaque {
  color: #e60000;
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  margin-top: 4px;
}
.plano-card ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
  margin-bottom: 30px;
}
.plano-card ul li::before {
  content: "✔️";
  margin-right: 8px;
  color: #4c00ff;
}
.btn-plano {
  display: inline-block;
  background: #4c00ff;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-plano:hover {
  background: #3700b3;
  transform: scale(1.05);
}
.destaque {
  border: 2px solid #4c00ff;
  background: #f0e7ff;
  transform: scale(1.04);
  z-index: 1;
}
.destaque .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #4c00ff;
  color: white;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
@media (max-width: 992px) {
  .plano-card {
    width: 100%;
    max-width: 400px;
  }
}
.depoimentos {
  padding: 80px 20px;
  background: #f8f8ff;
  text-align: center;
}
.depoimentos h2 {
  font-size: 2.3rem;
  color: #4c00ff;
  margin-bottom: 50px;
}
.depoimentos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.depoimento-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 350px;
  width: 100%;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease both;
}
.depoimento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}
.depoimento-card p {
  font-style: italic;
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}
.depoimento-card strong {
  color: #4c00ff;
  font-size: 1rem;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .depoimento-card {
    max-width: 100%;
  }
}
.faq-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
.faq-section h2 {
  font-size: 2.3rem;
  color: #4c00ff;
  margin-bottom: 50px;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  background: #f5f5ff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.faq-question:hover {
  background: #ebe6ff;
}
.faq-question .icon {
  font-size: 1.4rem;
  color: #4c00ff;
  transition: transform 0.3s ease;
}
.faq-answer {
  display: none;
  padding: 0 25px 20px;
  animation: fadeIn 0.4s ease;
}
.faq-answer p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .icon {
  transform: rotate(45deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }
  .faq-answer {
    padding: 0 20px 20px;
  }
}
.footer {
  background: #1a1a1a;
  color: #eee;
  padding-top: 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px 40px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}
.footer-column {
  flex: 1;
  min-width: 250px;
}
.footer-column h3,
.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-column ul li a:hover {
  color: #fff;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.porque-nexure {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}
.porque-nexure h2 {
  font-size: 2.4rem;
  color: #4c00ff;
  margin-bottom: 10px;
}
.porque-nexure .subtexto {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}
.beneficios-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.beneficio-card {
  background: #f5f5ff;
  border-radius: 16px;
  padding: 30px 25px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.beneficio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.icone {
  font-size: 2.5rem;
  color: #4c00ff;
  margin-bottom: 20px;
}
.beneficio-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}
.beneficio-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .beneficio-card {
    width: 100%;
    max-width: 100%;
  }
}
.galeria-sites {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
.galeria-sites h2 {
  font-size: 2.3rem;
  color: #4c00ff;
  margin-bottom: 10px;
}
.galeria-sites .subtexto {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}
.galeria-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.galeria-card {
  background: #f9f9ff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  max-width: 360px;
  width: 100%;
  transition: transform 0.3s ease;
  position: relative;
}
.galeria-card:hover {
  transform: translateY(-6px);
}
.galeria-card h3 {
  font-size: 1.2rem;
  color: #4c00ff;
  margin-bottom: 15px;
}
.galeria-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.btn-demo {
  display: inline-block;
  background: #4c00ff;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  transition: background 0.3s;
}
.btn-demo:hover {
  background: #3700b3;
}
@media (max-width: 768px) {
  .galeria-container {
    flex-direction: column;
    align-items: center;
  }
  .galeria-card {
    max-width: 100%;
  }
}
.como-funciona {
  background: #f5f5ff;
  padding: 80px 20px;
  text-align: center;
}
.como-funciona h2 {
  font-size: 2.4rem;
  color: #4c00ff;
  margin-bottom: 10px;
}
.como-funciona .subtexto {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}
.etapas-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.etapa {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.etapa:hover {
  transform: translateY(-6px);
}
.etapa-icono {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4c00ff;
}
.etapa h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}
.etapa p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.garantia-seguranca {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.garantia-seguranca h2 {
  font-size: 2.3rem;
  color: #4c00ff;
  margin-bottom: 10px;
}
.garantia-seguranca .subtexto {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}
.garantia-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.garantia-item {
  background: #f5f5ff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.garantia-item:hover {
  transform: translateY(-6px);
}
.garantia-item .icone {
  font-size: 2.5rem;
  color: #4c00ff;
  margin-bottom: 20px;
}
.garantia-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}
.garantia-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.planos-profissionais {
  padding: 100px 20px;
  background: #f8f9fc;
  text-align: center;
}
.planos-profissionais h2 {
  font-size: 2.6rem;
  color: #4c00ff;
  margin-bottom: 10px;
}
.planos-subtexto {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}
.planos-blocos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.plano-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease;
}
.plano-box:hover {
  transform: translateY(-8px);
}
.plano-box h3 {
  font-size: 1.5rem;
  color: #4c00ff;
  margin-bottom: 10px;
}
.preco {
  font-size: 2rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 5px;
}
.preco-mes {
  font-size: 1rem;
  color: #777;
  margin-left: 4px;
}
.preco-original {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 25px;
}
.recursos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.recurso {
  background: #f0f0ff;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  text-align: left;
}
.btn-plano {
  display: inline-block;
  background: #4c00ff;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-plano:hover {
  background: #3700b3;
  transform: scale(1.05);
}
.destaque {
  border: 2px solid #4c00ff;
  background: #f5efff;
  transform: scale(1.04);
  z-index: 1;
}
.selo {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #4c00ff;
  color: white;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
@media (max-width: 992px) {
  .plano-box {
    width: 100%;
    max-width: 400px;
  }
}