* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    background: #ffffff;
    color: #000000;
    font-family: Montserrat, sans-serif;
}

.introducao {
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 100px 110px;
    gap: 50px;
    flex-wrap: wrap;
    background: linear-gradient(to right, #282A2B, #6F6F70);
    color: white;
}

.introducao h2 {
  margin-bottom: 1.5rem;
}

.introducao p {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
    .introducao {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        text-align: center;
        gap: 40px;
    }
}

#topo1 {
    width: 100%;
    max-width: 550px;
    height: auto;
    box-shadow: 0 0 20px rgba(1, 1, 1, 0.5);
    border-radius: 10px;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 60px;
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
}

li {
    list-style: none;
    margin-bottom: 20px;
    font-size: 18px;
}

.beneficios {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 110px;
  gap: 50px;
  flex-wrap: wrap;
  background: #ffffff;
}

.beneficios > div {
  flex: 1 1 400px;
  max-width: 500px;
  box-sizing: border-box;
}

.beneficios h1 {
  padding-bottom: 24px;
  margin: 0;
}

.beneficios ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
}

.beneficios li {
    margin-bottom: 10px;
}

#topo2 {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 0 20px rgba(1, 1, 1, 0.5);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .beneficios {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 40px;
    text-align: center;
  }

  .beneficios > div {
    max-width: 100%;
  }

  .beneficios ul {
    padding: 0;
  }

  .beneficios .button {
    width: 100%;
  }
}

.organizacao {
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 25px;
    gap: 30px;
    flex-wrap: wrap;
    background: linear-gradient(to right, #282A2B, #6F6F70);
    color: white;
}

.organizacao p {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    padding: 10 10px;
}

.notion {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  padding: 6rem 6%;
  background: #ffffff;
  font-size: 20px;
}

.notiontexto {
  flex: 1 1 500px;
  max-width: 500px;
  box-sizing: border-box;
}

.notion h2 {
    padding-bottom: 24px;
    margin: 0;
    font-weight: 900;
}

#notionimg {
  flex: 1 1 400px;
  max-width: 350px;
  box-sizing: border-box;
}

#notionimg img {
  width: 100%;
  height: auto;
  display: block;
}

.funcionalidades {
    text-align: center;
    background: linear-gradient(to right, #282A2B, #6F6F70);
    color: white;
}
  
.funcionalidades h2 {
    padding-top: 4rem;
    padding-bottom: 2rem;
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 800;
    text-transform: uppercase;
}
  
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 4rem;
}
  
.card {
    width: 140px;
}
  
.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}
  
.card p {
    font-style: italic;
    font-size: 14px;
}

.zoom-img {
  transition: none;
  cursor: pointer;
  transform: translate(0, 0);
}

.zoom-img.zoomed {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 70vw;
  height: auto;
  z-index: 9999;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  background: white;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.carrossel-texto {
  text-align: center;
  padding: 10px 25px;
}

.carrossel-auto {
  padding: 5px;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  overflow: hidden;
  height: auto;
}
  
.carrossel-auto .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  box-shadow: 0 1px 10px rgba(1, 1, 1, 0.5);
  border-radius: 20px;
}
  
.carrossel-auto .slide.active {
  display: flex;
  opacity: 1;
  z-index: 1;
  position: relative;
}

.bloco-preco {
  background: linear-gradient(to right, #3a3a3a, #5a5a5a);
  color: #fff;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 3rem;
  padding: 10px 25px;
  font-family: 'Montserrat', sans-serif;
}

.bloco-preco h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bloco-preco p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.6;
}

.preco {
  font-size: 60px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px black;
  margin: 30px 0 10px;
}

.parcelado {
  font-weight: bold;
  margin-bottom: 30px;
}

.botao-compra {
  background: #5AE783;
  color: black;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 0 #2e7031;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 30px;
}

.botao-compra:hover {
  background: #4fd174;
  box-shadow: 0 3px 0 #2e7031;
  transform: translateY(2px);
}

.urgencia {
  font-size: 12px;
  margin-top: 50px;
  color: #dddddd;
  text-decoration: underline;
}

.garantia-bloco {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.selo {
  width: 100px;
  flex-shrink: 0;
}

.garantia-texto {
  font-size: 14px;
  color: white;
  max-width: 400px;
}

.formas-pagamento {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.pagamento {
  background: #444;
  padding: 16px 30px;
  border-radius: 10px;
  border: 2px solid #ccc;
  font-size: 16px;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.faq h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}

.faq h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.faq details {
  background: #2c2c2c;
  color: white;
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 20px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  text-align: left;
  cursor: pointer;
}

.faq summary {
  font-weight: 600;
  font-size: 16px;
  list-style: none;
}

.faq summary::marker {
  display: none;
}

.faq p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.rodape {
  background: linear-gradient(to top, #e5e5e5, #2c2c2c);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: black;
}

.rodape .aviso {
  font-size: 12px;
  color: white;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.4;
}

.rodape .logo {
  width: 180px;
  margin: 20px auto;
  display: block;
}

.rodape .copy {
  font-size: 12px;
  color: black;
  margin-top: 20px;
}