* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #1c1d26;
  color: white;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(28, 29, 38, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #009c51;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #00c46a;
}

a.disabled,
select.disabled,
input.disabled,
button.disabled {
  pointer-events: none;
  color: #dddddd;
  text-decoration: none;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-acessar,
.btn-login,
.btn-logout {
  background: #009c51;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.btn-acessar>a:hover {
  color: white;
}

.btn-login,
.btn-logout {
  display: flex;
  gap: 6px;
  background: white;
  color: black;
}

.btn-login:hover>svg,
.btn-logout:hover>svg {
  fill: white;
}

.btn-acessar:hover,
.btn-login:hover,
.btn-logout:hover {
  background: #00b863;
  transform: scale(1.05);
  color: white;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(rgba(28, 29, 38, 0.8), rgba(28, 29, 38, 0.9)), url("produtos.png") center/cover no-repeat;
}

.hero h2 {
  font-size: 2.8rem;
  color: #fff;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  max-width: 600px;
  margin: 20px auto;
  color: #d6d6d6;
  font-size: 1.1rem;
  animation: fadeInUp 1.4s ease-out;
}

.hero .buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1.8s ease-out;

  a {
    background: #009c51;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;

  }
}

.hero a {
  background: #009c51;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.hero a:hover {
  background: #00b863;
  transform: scale(1.05);
}

/*===== PLANS ===== */

.plans {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}

.plans-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #111827;
}

.plans-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.plans-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.plans-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.plans-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #111827;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #111827;
}

.currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.period {
  font-size: 1rem;
  color: #6b7280;
}

.plans-card ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.plans-card ul li {
  margin-bottom: 12px;
  color: #374151;
}

.atv-license {

  color: #656464;
  margin: 10px;
  font-size: 0.8rem;

}

.badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .85rem;
  margin-top: 10px;
}

.division-month {
  font-size: 13px;
  color: #afafaf;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #009c51;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background .3s ease;
}

.btn-primary:hover {
  background: #00b863;
}

.fix {
  margin-top: 43px;
}

/* PLANO EM DESTAQUE */
.plans-card.featured {
  border: 2px solid #009c51;
  transform: scale(1.05);
}

.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #009c51;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .85rem;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 40px;
  text-align: center;
  background-color: white;
  color: #1c1d26;
}

.features h2 {
  color: #009c51;
  margin-bottom: 50px;
  font-size: 2rem;
}

.features .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1250px;
  margin: auto;
}

.card {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.card:hover {
  transform: translateY(-8px);
}

/* ===== SCREENSHOTS ===== */
.screenshots {
  background-color: #1c1d26;
  padding: 100px 40px;
  text-align: center;
}

.screenshots h2 {
  color: #009c51;
  margin-bottom: 40px;
  font-size: 2rem;
}

.screenshots img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 156, 81, 0.4);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
  cursor: pointer;
}

.screenshots img.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CTA ===== */
.cta {
  background: #009c51;
  color: white;
  text-align: center;
  display: flex;
  padding: 80px 20px;
  flex-direction: column;
  align-items: center;

}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta a {
  background: white;
  color: #009c51;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 25px;
  text-decoration: none;
}

.cta a:hover {
  background: #1c1d26;
  color: white;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  color: #ccc;
  font-size: 0.9rem;
}

footer a {
  color: #009c51;
  text-decoration: none;
}

/* Modal */
#imageModal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

#imageModal img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 6px;
}

#imageModal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.menu-close {
  display: none;
}

.lp-section {
  padding: 80px 20px;
  background: #1c1d26
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.audience-card {
  background: #f6f6f6;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0px 0px 12px rgb(8 243 130);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audience-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.audience-card h3 {
  margin-bottom: 15px;
  color: #00c46a;
}

.audience-card ul li {
  margin-bottom: 10px;
  color: #1c1d26;
  font-family: "Poppins", sans-serif;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.feature-text h3 {
  font-size: 28px;
  color: #00c46a;
  margin-bottom: 15px;
}

.feature-text p {
  font-size: 18px;
  color: #d1d5db;
}

.feature-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.6s ease;
}

.feature-image.visible img {
  transform: scale(1);
  opacity: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.step {
  background: #f6f6f6;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  color: #1c1d26;
  box-shadow: 0 0 20px rgba(0, 156, 81, 0.15);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease;
  font-family: "Poppins", sans-serif;
}

.step.visible {
  transform: translateY(0);
  opacity: 1;
}

/*** FAQ STYLE **/

#faq {
  scroll-margin-top: 90px;
}

.faq-section {
  background: #1c1d26;
  margin: 50px;
}


.faq-header {
  text-align: center;
  margin-bottom: 50px;
}


.faq-header h2 {
  font-size: 2.5rem;
  color: #22c55e;
}


.faq-header p {
  color: #cbd5f5;
}


.faq-list {
  max-width: 900px;
  margin: 0 auto;
}


.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all .3s ease;
}


.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}


.faq-question:hover {
  background: rgba(34, 197, 94, 0.08);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 20px;
}


.faq-answer p {
  padding: 20px 0;
  color: #e5e7eb;
}


.faq-item.active .faq-answer {
  max-height: 300px;
}


.faq-item.active .icon {
  transform: rotate(45deg);
}


.icon {
  transition: transform .3s ease;
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE MENU MOBILE */
@media (max-width: 900px) {
  header {
    flex-direction: row;
    gap: 10px;
    height: 61px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  img {

    display: flex;
    margin-left: -15px;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .features {
    padding: 60px 20px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: #0f172a;
    /* mesma vibe do site */
    transition: right 0.3s ease;
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 90px 20px;
    gap: 18px;
  }

  nav ul li a {
    font-size: 18px;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  .faq-header h2 {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=landing-page.css.map */