@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Space+Grotesk:wght@400;500;700&display=swap');
:root{
    --background-color: #F7FCFE;
    --section-color: #FCFAFA;
    --section-color-2: #FFF;
    --footer-color: #1E1E1E;
    --text-color-dark: #212121;
    --text-color-light: #FDFDFD;
    --text-color-header: #09142D;
    --btn-color-laranja: #D88345;
    --btn-color-laranja-hover: #bb7340;
    --font-principal: 'Montserrat', sans-serif;
    --font-secundaria: 'Space Grotesk', sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: var(--section-color);
    font-family: var(--font-principal);
}
/* ======= HEADER ======= */
header{
    align-items: center;
}
.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    max-width: auto;
    margin-left: 3%;
}
.logo-header img {
    height: 40px;
    width: 100%;
}
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
}
.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.nav-list ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}
.nav-item {
    margin: 0 20px;
}
.nav-link {
    color: var(--text-color-header);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}
.dropbtn{
    color: var(--text-color-header);
    font-family: 'Montserrat', sans-serif;
    padding: 12px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background-color: var(--section-color);
    border-radius: 5px;
    width: 100%;
}
.dropdown {
    position: relative;
    display: inline-block;
    border-radius: 5px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FDFDFD;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    color: #09142D;
    border-radius: 5px;
}
.dropdown-content a {
    color: var(--text-color-header);
    font-weight: 500;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.show {
    display: block;
}
/* ======= HOME ======= */
#home {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: var(--background-color);
}
.textos-home {
    display: flex;
    flex-direction: column;
    width: 60%;
    max-height: auto;
    margin-top: 10%;
    margin-left: 5%;
}
#home-title {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 108.333%; /* 3.25rem */
}
.textos-home p {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 3%;
}
.btn-home {
    display: flex;
    color: var(--text-color-light);
    font-family: var(--font-secundaria);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    background: var(--btn-color-laranja);
    padding: 15px 20px;
    border-radius: 5px;
    width: 30%;
    margin-top: 3%;
}
.btn-home:hover {
    background: var(--btn-color-laranja-hover);
    transition: all 0.3s ease-out;
}
/* ======= VISAO ======= */
#visao {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 70vh;
    background-color: var(--section-color);
}
.textos-visao {
    display: flex;
    max-height: auto;
    width: 100%;
    justify-content: center;
    gap: 10%;
}
.textos-visao-title {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    margin-top: 5%;
}
.textos-visao-p {
    color: var(--text-color-dark);
    font-family: var(--font-principal);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    margin-top: 5%;
}
/* ======= INDICADO ======= */
#indicado {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-height: auto;
    width: 100%;
    height: 80vh;
    background-color: var(--section-color-2);
}
.textos-indicado {
    display: flex;
    flex-direction: column;
    width: 40%;
    max-height: auto;
    margin-left: 5%;
}
.textos-indicado h1 {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 3%;
    text-align: left;
}
.desc-indicado {
    color: var(--text-color-dark);
    font-family: var(--font-principal);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 5%;
    text-align: left;
}
.imagem-indicado {
    display: flex;
    width: 40%;
    height: 500px;
    align-items: center;
    justify-content: center;
    background-image: url(imagens/indicado-Img.png);
    background-repeat: no-repeat;
    margin-left: 10%;
    background-size: contain;
    background-position: center;
}
/* ======= BENEFITS ======= */
.section-benefits {
    display: flex;
    width: 100%;
    padding: 60px 0;
    background: var(--section-color);
}
.section-benefits .container {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
}
.section-benefits h2 {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 3%;
    text-align: left;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.benefit-item {
  background: white;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
}
.benefit-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}
/* ======= DOWNLOAD ======= */
#download {
    display: flex;
    flex-direction: row;
    max-height: auto;
    width: 100%;
    height: 80vh;
    background-color: var(--background-color);
}
.textos-download {
    display: flex;
    flex-direction: column;
    width: 40%;
    max-height: auto;
    margin-left: 5%;
    margin-top: 5%;
}
.textos-download h1 {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 3%;
}
.desc-download {
    color: var(--text-color-dark);
    font-family: var(--font-principal);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 3%;
}
.btn-download {
    color: var(--text-color-light);
    font-family: var(--font-secundaria);
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-color-laranja);
    padding: 15px 20px;
    width: 40%;
    margin-top: 5%;
    border-radius: 5px;
}
.btn-download:hover {
    background: var(--btn-color-laranja-hover);
    transition: all 0.3s ease-out;
}
.imagem-download {
    display: flex;
    width: 50%;
    height: 500px;
    align-items: center;
    justify-content: center;
    margin-left: 95%;
}
.imagem-download img {
    display: flex;
    height: 400px;
}
/* ======= CRIE POWERPRO ======= */
.crie-tela {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px;
  gap: 30px;
}
.form-area {
  flex: 1;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-area h1 {
  font-family: var(--font-secundaria);
  font-size: 2.5rem;
}
textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
}
.button-form-area {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  background: var(--btn-color-laranja);
  color: var(--text-color-light);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.button-form-area:hover {
  background: var(--btn-color-laranja-hover);
}
#resultado {
  flex: 1;
  min-height: 400px;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-content: flex-start;
      -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}
.campo {
  padding: 15px;
  border: 1px dashed #888;
  border-radius: 8px;
  background-color: white;
  cursor: grab;
  min-width: 200px;
  max-width: 300px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease-in-out;
}
.campo.dragging {
  opacity: 0.5;
  border-style: solid;
  transform: scale(1.05);
}
.campo label {
  font-weight: bold;
}
input {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
}
/* ======= TESTEMUNHAS ======= */
.section-social-proof {
  display: flex;
  flex-direction: column;  
  padding: 60px 0;
  background: #fff;
}
.section-social-proof h2 { 
    color: #212121;
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    margin-bottom: 3%;
    margin-left: 3%;
}
.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
.testimonials-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
  }
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
.testimonial-card {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 14px;
        -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
.testimonial-photo {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
  }
.testimonial-text {
    font-style: italic;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
.testimonial-author {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
  }
.testimonial-role {
    font-size: 14px;
    color: #555;
}
/* ======= FAQ ======= */
#faq {
    background-color: #FFF;
    max-height: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.titulo-faq {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: auto;
    margin-top: 3%;
    justify-content: center;
}
.titulo-faq h1 {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 5%;
}
.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 3%;
    width: 90%;
    max-height: auto;
    margin-left: 3%;
}
.benefits-list li {
    background-color: #FDFDFD;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.benefit-details {
    display: none;
    padding: 20px;
    border-radius: 5px;
    margin-top: 5px;
}
.benefit-title {
    font-weight: 400;
    color: #212121;
    font-family: 'Space Grotesk', sans-serif;
}
.benefits-list li.active .benefit-title {
    color: #212121;
    font-weight: 500;
}
.benefits-list li.active .benefit-details {
    display: block;
}
.titulo-faq-dois {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: auto;
    margin-top: 5%;
    align-items: flex-start;
    justify-content: center;
}
.titulo-faq-dois h1 {
    color: #212121;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 3%;
}
.contato-faq {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-height: auto;
}
form {
    width: 40%;
    margin-left: 3%;
    margin-top: 3%;
    margin-bottom: 5%;
}
label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Space Grotesk', sans-serif;
}
textarea {
    resize: vertical;
}
input[type="submit"] {
    background: #D88345;
    color: #fff;
    font-weight: 600;
    width: 40%;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}
input[type="submit"]:hover {
    background: #bb7340;
}
/* Estilo para a mensagem de confirmação */
.confirmation-message {
    color: #4CAF50;
    font-weight: bold;
}
.imagem-contato-faq {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 400px;
    margin-left: 13%;
    margin-top: 3%;
    border-radius: 10px;
}
.imagem-contato-faq img {
    max-width: auto;
    height: 490px;
}
/* ======= GALERIA ======= */
#galeria {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    max-height: auto;
    width: 100%;
    height: 80vh;
    background-color: #FFF;
}
.textos-galeria {
    display: flex;
    flex-direction: column;
    text-align: right;
    align-items: flex-end;
    width: 40%;
    max-height: auto;
    margin-left: 20%;
}
.tittle-galeria {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.textos-galeria h1 {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 3%;
}
.desc-galeria {
    color: var(--text-color-dark);
    font-family: var(--font-principal);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 3%;
}
.imagem-galeria {
    display: flex;
    max-width: auto;
    max-height: auto;
    align-items: center;
    justify-content: center;
}
.imagem-galeria img {
    display: flex;
    height: 450px;
}
.btn-galeria {
    color: #FCFAFA;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #19203F;
    padding: 15px 20px;
    width: 40%;
    margin-top: 5%;
    border-radius: 5px;
}
.btn-galeria:hover {
    background: #0d1120;
    transition: all 0.3s ease-out;
}
/* ======= QUEM FAZ ======= */
#quem-faz {
    display: flex;
    flex-direction: column;
    background-color: #F7FCFE;
    height: 80vh;
}
.title-quem-faz {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-left: 3%;
    margin-top: 3%;
}
.container-quem-faz {
    display: flex;
    flex-direction: row;
    max-height: auto;
    width: 100%;
    margin-top: 3%;
    align-items: center;
    justify-content: space-around;
}
.container-quem-faz-card {
    display: flex;
    flex-direction: column;
    height: 330px;
    width: 30%;
    padding: 15px;
    border-radius: 10px;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}
.container-quem-faz-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 10px;
}
.container-quem-faz-card-img img {
    display: flex;
    height: 120px;
    width: 120px;
    border-radius: 10px;
    object-fit: cover; /* Adicionado para garantir o ajuste da imagem no desktop também */
}
.container-quem-faz-card p {
    margin-top: 2%;
    font-size: 0.8rem;
}
.container-quem-faz-card-title {
    margin-top: 1%;
}
.container-quem-faz-card-p {
    font-size: 1rem;
    margin-top: 5%;
    width: 90%;
}
.container-quem-faz-card-icons {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-height: auto;
    margin-top: 2%;
    gap: 20px;
}
.container-quem-faz-card-icons img {
    display: flex;
    height: 30px;
}
/* ======= CONTRIBUA ======= */
#contribua {
    display: flex;
    flex-direction: row;
    height: 110vh;
    width: 100%;
    background-color: var(--section-color);
}
.textos-contribua {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    width: 40%;
    max-height: auto;
    margin-left: 3%;
    margin-top: 5%;
}
.textos-contribua h1 {
    color: var(--text-color-dark);
    font-family: var(--font-secundaria);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 3%;
}
.desc-contribua {
    color: var(--text-color-dark);
    font-family: var(--font-principal);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 3%;
}
.imagem-contribua {
    display: flex;
    width: 50%;
    max-height: auto;
    align-items: center;
    justify-content: center;
    background-image: url(imagens/contribua1.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-left: 5%;
    margin-top: 8%;
    mix-blend-mode: multiply;
}
.btn-contribua {
    color: var(--text-color-light);
    font-family: var(--font-secundaria);
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2A4604;
    padding: 15px 20px;
    width: 40%;
    margin-top: 5%;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.btn-contribua:hover {
    background: #182702;
    transition: all 0.3s ease-out;
}
/* ======= FOOTER ======= */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 460px;
    width: 100%;
    background-color: #1E1E1E;
}
.conteudo-footer {
    display: flex;
    flex-direction: row;
    max-height: auto;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
}
.conteudo-footer-navegacao {
    display: flex;
    flex-direction: column;
    height: 200px;
    width: 18%;
    margin-top: 5%;
}
.conteudo-footer-navegacao-contribua {
    display: flex;
    flex-direction: column;
    height: 200px;
    width: 25%;
    margin-top: 5%;
}
.conteudo-footer-navegacao h2,
.conteudo-footer-navegacao-contribua h2 { /* Corrigido seletor para h2 de contribua */
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem; /* Ajustado para melhor legibilidade no desktop */
    color: #FCFAFA;
}
.conteudo-footer-navegacao ul {
    list-style: none;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.conteudo-footer-navegacao a {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.1rem;
    color: #FCFAFA;
    text-decoration: none;
}
.conteudo-footer-navegacao h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.1rem;
    color: #FCFAFA;
    margin-top: 3%;
}
.conteudo-footer-navegacao-p {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 0.9rem;
    color: #FCFAFA;
    margin-top: 3%;
    margin-bottom: 3%;
}
.conteudo-footer-navegacao-contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: auto;
    margin-top: 5%;
    gap: 10px;
}
.conteudo-footer-navegacao-contato-img {
    display: flex;
    flex-direction: row;
    max-height: auto;
    max-width: auto;
    gap: 5px;
}
.conteudo-footer-navegacao-contato-img a {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 15px;
    color: #FCFAFA;
}
.conteudo-footer-navegacao-contribua-p {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    color: #FCFAFA;
    margin-top: 3%;
}
.conteudo-footer-navegacao-contribua-a {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    color: #FCFAFA;
    text-decoration: none;
    margin-top: 3%;
    padding: 10px 10px;
    border-radius: 5px;
    background-color: #D88345;
    width: 30%;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.divisao-footer {
    display: flex;
    width: 90%;
    margin-top: 5%;
    border: 1px solid #F7FCFE;
}
.conteudo-footer-pt2 {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-height: auto;
    margin-top: 1%;
}
.conteudo-footer-pt2 p {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 19px;
    color: #F7FCFE;
}
.conteudo-footer-pt2 a{
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 19px;
    color: #F7FCFE;
    
    
}
.conteudo-footer-pt2 img {
    display: flex;
    height: 60px;
    margin-left: 60%;
}
/* ======= RESPONSIVO ======= */
 @media (max-width: 950px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }

  }
  @media (max-width: 600px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
    header{
        align-items: center;
        justify-content: center;
        display: flex;
        padding: 1rem;
    }
    .nav-list{
        display: none;
    }
    #home{
        width: 100%;
        height: auto;
    }
    #visao,
    #indicado,
    #benefits,
    #download,
    #crie-tela,
    #social-proof,
    #faq,
    #galeria,
    #quem-faz,
    #contribua{
        width: 100%;
        height: auto;
        margin-top: 10%;
        margin-bottom: 10%;
    }
    .textos-home{
        width: 90%;
    }
    #home-title{
        font-size: 1.7rem;
    }
    .textos-home p{
        font-size: 0.9rem;
        margin-top: 5%;
    }
    .btn-home{
        width: 60%;
        font-size: 0.9rem;
        margin-top: 5%;
        padding: 10px 15px;
        margin-bottom: 5%;
    }
    .textos-visao{
        width: 90%;
        margin-left: 5%;
        flex-direction: column;
    }
    .textos-visao-title{
        font-size: 1.7rem;
    }
    .textos-visao-p{
        font-size: 0.9rem;
        margin-top: 5%;
    }
    .textos-indicado{
        width: 90%;
        margin-left: 5%;
        text-align: center;
    }
    .textos-indicado h1{
        font-size: 1.7rem;
    }
    .desc-indicado{
        font-size: 0.9rem;
        margin-top: 5%;
    }
    .imagem-indicado{
        display: none;
    }
    .container h2{
        font-size: 1.7rem;
    }
    .benefit-item h3{
        font-size: 1.1rem;
    }
    .benefit-item p{
        font-size: 0.9rem;
    }
    .textos-download{
        width: 90%;
        margin-left: 5%;
    }
    .textos-download h1{
        font-size: 1.7rem;
    }
    .desc-download{
        font-size: 0.9rem;
        margin-top: 5%;
    }
    .btn-download{
        width: 60%;
        font-size: 0.9rem;
        padding: 10px 15px;
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .imagem-download{
        display: none;
    }
    .crie-tela{
        flex-direction: column;
        margin-left: 5%;
    }
    .form-area{
        width: 90%;
        max-width: none;
        
    }
    .form-area h1{
        font-size: 1.7rem;
    }
    .form-area p{
        font-size: 0.9rem;
    }
    .form-area textarea{
        font-size: 14px;
    }
    .button-form-area{
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    #resultado{
        width: 90%;
        margin-top: 5%;
    }
    #social-proof h2{
        font-size: 1.7rem;
        margin-left: 5%;
    }
    .testimonials-grid{
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .grid-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .testimonial-card{
        width: 90%;
    }
    .testimonial-photo{
        width: 70px;
        height: 70px;
    }
    .testimonial-text{
        font-size: 1rem;
    }
    .testimonial-author{
        font-size: 0.9rem;
    }
    .testimonial-role{
        font-size: 0.8rem;
    }
    .titulo-faq h1{
        font-size: 1.7rem;
        margin-left: 5%;
    }
    .benefit-title{
        font-size: 0.9rem;
    }
    .benefit-details{
        font-size: 0.8rem;
    }
    .titulo-faq-dois h1{
        font-size: 1.7rem;
        margin-left: 5%;
    }
    form{
        width: 90%;
        margin-left: 5%;
    }
    label{
        font-size: 0.9rem;
    }
    input{
        font-size: 0.9rem;
    }
    input[type="submit"]{
        width: 60%;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
  .imagem-contato-faq{
        display: none;
    }
    .imagem-galeria{
        display: none;
    }
    .textos-galeria{
        width: 90%;
        margin-left: 1%;
        text-align: left;
        align-items: flex-start;
    }
    .textos-galeria h1{
        font-size: 1.7rem;
    }
    .desc-galeria{
        font-size: 0.9rem;
        margin-top: 5%;
    }
    .btn-galeria{
        width: 60%;
        font-size: 0.9rem;
        padding: 10px 15px;
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .container-quem-faz{
        flex-direction: column;
        align-items: center;
    }
    .title-quem-faz{
        font-size: 1.7rem;
        text-align: center;
    }
    .container-quem-faz-card{
        height: auto;   
    }
    .container-quem-faz-card p{
        font-size: 0.7rem;
    }
    .container-quem-faz-card-title{
        font-size: 1rem;
    }
    .container-quem-faz-card-p{
        font-size: 0.9rem;
    }
    .container-quem-faz-card{
        width: 80%;
        margin-bottom: 5%;
    }
    .container-quem-faz-card-img{
        width: 90px;
        height: 90px;
    }
    .container-quem-faz-card-img img{
        height: 90px;
        width: 90px;
    }
    .textos-contribua{
        width: 90%;
        margin-left: 5%;
    }
    .textos-contribua h1{
        font-size: 1.7rem;
    }
    .desc-contribua{
        font-size: 0.9rem;
        margin-top: 5%;
    }
    .imagem-contribua{
        display: none;
    }
    .btn-contribua{
        width: 60%;
        font-size: 0.9rem;
        padding: 10px 15px;
        margin-top: 5%;
        margin-bottom: 5%;
    }
    footer{
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;
    }
    .conteudo-footer{
        display: none;
        
    }
    .conteudo-footer-pt2{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .conteudo-footer-pt2 p{
        font-size: 0.7rem;
    }
    .conteudo-footer-pt2 a{
        font-size: 0.7rem;
    }
    .conteudo-footer-pt2 img{
        margin: 0 auto;
        margin-top: 5%;
        height: 40px;
    }
}