@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Fira+Code:wght@300..700&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    font-size: 16px;
}



.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


.header {
    width: 100%;
    display: flex;
    margin-top: 10px;
    justify-content: center;
}

.header img {
    height: 140px; /* define a altura desejada */
    width: auto;  /* mantém a proporção da imagem */
}

.texts_top {
    width: 90%;
    margin: auto;
    text-align: center;
}

.texts_top > h1 {
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-size: 30px; 
    font-weight: bold;
    color: #000000;
}

.texts_top > h2 {
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #8600FE;
    margin-top: 20px;
}

.img1_container {
    max-width: 700px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

.img1 {
    max-width: 90%;
}

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

:root {
    --primary-color: #9dff20;
    --secondary-color: #345c00;
    --base-color: #ffffff;
    --contrast-color: #000000;
    --tertiary-color: #f6f6f6;
    --primary-gradient: linear-gradient(135deg, #9dff20 0%, #7acc00 100%);
    --secondary-gradient: linear-gradient(135deg, #345c00 0%, #2a4700 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

section {
  width: 100%;
  padding: 3rem 0;
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
  max-width: 600px;
  margin: auto;
}

.card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #f9fafb; 
  border: 2px solid #f97316;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: Arial, Helvetica, sans-serif;
}

.card svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  stroke: #f97316;
}

.card span {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
}


.conteudo-principal {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.conteudo-problema {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}

.texto-problema {
  min-width: 300px;
  max-width: 700px;
  text-align: center;
}

.texto-problema p {
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #555;
}

.texto-problema strong {
  color: #333;
}

.lista-barreiras {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  text-align: left;
}

.item-barreira {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-barreira:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.icone-barreira {
  flex-shrink: 0;
  background-color: #6a0dad;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
}

.conteudo-barreira h4 {
  margin-bottom: 5px;
  color: #6a0dad;
  font-size: 1.2em;
  font-family: 'Poppins',sans-serif;
}

.conteudo-barreira p {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 0;
}

.imagem-problema {
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem-problema-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pravoce {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.pravoce img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.elementor-icon-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.elementor-icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #333;
}

.elementor-icon-list-items > h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #8600FE;
}

.elementor-icon-list-icon {
  color: #f97316;
  font-size: 1.2rem;
  margin-top: 4px;
}

.elementor-icon-list-text {
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

.blackfriday {
    width: 100%;
    display: block;
}

.feedbacks {
    margin: 0;
    padding: 30px;
    width: 100%;
    background-image: url('../images/MOCKUPS-44-1024x724.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}
.feedbacks > h2 {
    margin: 0;
    color: white;
    font-family: 'Poppins',sans-serif;
    font-size: 1.5rem;
}

.imgs {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.imgs img {
  max-width: 30%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.img3 {
    max-width: 700px;
    margin: 20px auto;
}

.img3 > img {
    width: 100%;
    display: block;
}

.h1_2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 80%;
    margin: 20px auto;
    color: #8600FE;
    font-size: 24px;
}

.h3_h3 {
    width: 80%;
    margin: 20px auto;
    text-align: center;
    font-family: 'Poppins', Helvetica, sans-serif;
    font-weight: 500;
    color: rgb(68, 68, 68);
    padding: 10px;
    font-size: 1.1rem;
}

.pay {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
}

.pay > h2 {
    font-family: 'Poppins',sans-serif;
    color:#8600FE;
    text-align: center;
    width: 90%;
    margin: auto;
    margin-top: 20px;
    font-size: 1.25rem;
}

.pay > .price {
    font-size: 55px;
    color:#FFD200;
    text-align: center;
    font-family: 'Poppins',sans-serif;
    margin: 10px;
    -webkit-text-stroke: 1px #a18101;
}

.pay > .parcela {
    text-align: center;
    font-family: 'Poppins',sans-serif;
    color: rgb(73, 73, 73);
}

.container_button {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container_button > a {
    text-decoration: none;
    padding: 20px 20px;
    background: #00bf63;
    color: white;
    font-family: 'Poppins',sans-serif;
    border: 2px solid #FFD200;
    border-radius: 40px;
    margin: 20px;
    font-size: 1rem;
    transition: transform 0.2s;
    display: flex;
align-items: center;
justify-content: center;

}
.container_button > a:hover {
    transform: scale(1.05);
}

.pay > .condicao {
    text-align: center;
    font-family: 'Poppins',sans-serif;
    color: rgb(73, 73, 73);
}

.garantias {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background-color: #ffffff;
  color: #374151;
  border-radius: 10px;
  max-width: 1200px;
  margin: 40px auto;
}

.garantias img {
  max-width: 60%;
  height: auto;
  border-radius: 8px;
  margin: auto;
}

.garantias .items h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #C29100; 
  font-family: 'Poppins',sans-serif;
}

.garantias .items p {
  font-size: 1rem;
  line-height: 1.6;
  color: #C29100;
  font-family: 'Arial',sans-serif;
}

.garantias .items strong {
  color: #825B17;
}

.rodape {
  background-color: #ffffff;
  color: #4b5563;
  padding: 2rem 1rem;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.rodape-conteudo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.contato a {
  color: #2563eb;
  text-decoration: none;
}

.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.8rem;
}

.redes-sociais a {
  color: #10b981;
  transition: color 0.2s;
}

.redes-sociais a:hover {
  color: #065f46;
}

.logo img {
  max-width: 150px;
  height: auto;
  margin: auto;
}

.copy {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* --- MEDIA QUERIES PARA RESPONSIVIDADE --- */

@media (max-width: 900px) {
  .conteudo-problema {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pravoce {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .elementor-icon-list-items > h2 {
    font-size: 18px;
  }
  .elementor-icon-list-text {
    font-size: 0.95rem;
  }
  .garantias {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .garantias .items h2 {
    font-size: 1.3rem;
  }
  .garantias img {
    max-width: 40%;
  }
}

@media (max-width: 600px) {
  .texts_top > h1 {
    font-size: 38px;
  }
  .texts_top > h2 {
    font-size: 18px;
  }
  .h1_2 {
    font-size: 20px;
  }
  .pay > h2 {
    font-size: 16px;
  }
  .pay > .price {
    font-size: 44px;
  }
  .card span {
    font-size: 1rem;
  }
  .garantias .items h2 {
    font-size: 1.2rem;
  }
  .garantias .items p {
    font-size: 0.9rem;
  }
  .item-barreira {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .icone-barreira {
    margin-bottom: 10px;
  }
  .imgs img {
    max-width: 45%;
  }
}

@media (max-width: 480px) {
  .texts_top > h1 {
    font-size: 20px;
  }
  .texts_top > h2 {
    font-size: 16px;
  }
  .h1_2 {
    font-size: 18px;
  }
  .h3_h3 {
    font-size: 1rem;
  }
  .feedbacks > h2 {
    font-size: 1.2rem;
  }
  .pay > h2 {
    font-size: 1rem;
  }
  .pay > .price {
    font-size: 44px;
  }
  .container_button > a {
    font-size: 1.1rem;
    padding: 18px;
  }
  .conteudo-barreira h4 {
    font-size: 1.1em;
  }
  .conteudo-barreira p {
    font-size: 0.9em;
  }
  .imgs img {
    max-width: 80%;
  }
}



.carousel {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1; /* quadrado */
  overflow: hidden;
  margin: auto;
  position: relative;
}

.carousel-track {
  display: flex;
  width: 300px;
  height: 300px;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover; /* cobre o espaço sem distorcer */
}