/* Mobile First */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@500&display=swap');

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

body {
  font-family: roboto, sans-serif;
  background-color: #B3BDD6;
  color: #212121;
  padding: 1rem;
  line-height: 1.5;
  margin: 2.5rem auto;
}

h1 {
  color: #002462;
  font-family: work-sans, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

h3 {
  color: #212121;
  font-family: Roboto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.313rem;
}

#txt-slogan {
  color: #212121;
  font-family: roboto, sans-serif;
  font-size: 0.75rem;
  display: block;
  width: 100%;
  max-width: 290px;
  margin: 0 auto 1.25rem auto;
  text-align: center;
}

header.logo {
  text-align: center;
  margin-bottom: 2.5rem;
}

.img-logo {
  width: 9.375rem;
  height: auto;
  margin-bottom: 0.625rem;
}

.btn-whats img {
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
}

.btn-whats {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  font-family: work-sans, sans-serif;
  font-size: 0.75rem;
  color: white;
  font-weight: bold;
  padding: 0.313rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  width: 60%;
  height: auto;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
  gap: 0.625rem;
  transition: color 0.3s ease;
  margin: 0 auto;
}


.btn-whats:hover {
  background-color: #1ebe5b;
  transition: 0.5s;
  scale: 1.1;
}

section {
  background-color: white;
  padding: 0.625rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.apresentacao h1 {
  color: #0077B6;
  font-family: "Work Sans";
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.313rem;
}

.apresentacao li {
  font-size: 0.75rem;
  line-height: normal;
  font-weight: 400;
  line-height: 1.5;
  width: 16.875rem;
  list-style-type: disc;
  margin-left: 1.5rem;
  display: list-item;
}

.obs-1 {
  color: #0077B6;
  text-align: right;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.313rem;
}

.img-apresentacao {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.img-apresentacao img {
  width: 5.625rem;
  height: 5.625rem;
  height: auto;
  border-radius: 8px;
}

.localizacao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.localizacao h2 {
  color: #0077B6;
  text-align: center;
  font-family: "Work Sans";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.localizacao img {
  width: 1.5rem;
  height: 1.875rem;
  flex-shrink: 0;
  aspect-ratio: 4/5;
}

.problema li {
  color: #212121;
  font-family: Roboto;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  list-style-type: disc;
  margin: 0.62rem;
  display: list-item;
}

.conteiner-solucao {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1.25rem;
  margin-bottom: 0.313rem;
}

.solucao img {
  width: 1.875rem;
  height: auto;
}

.txt-solucao {
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.solucao h2 {
  color: #212121;
  font-family: Roboto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.solucao .p-solucao {
  color: #212121;
  font-family: Roboto;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style-type: disc;
  margin-left: 1.5rem;
  display: list-item;
}

.comentario-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.comentario {
  min-width: 100%;
  height: 7.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s;
  opacity: 0;
  position: absolute;
  border-left: 4px solid #0077B6;
  padding: 1.563rem;
}

.comentario h2 {
  font-family: Roboto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 800;
}

.comentario .p-solucao {
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.comentario.ativo {
  opacity: 1;
  position: relative;
}

.dots-slider {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dots-slider button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #b3bdd6;
  cursor: pointer;
  transition: color 0.3s;
}

.dots-slider button.ativo {
  background: #0077B6;
}

.oferta {
  position: relative;
}

.oferta h4 {
  color: #002462;
  text-align: center;
  font-family: Roboto;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0.94rem;
}

.obs-2 {
  color: #0077B6;
  text-align: right;
  font-size: 0.625rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.313rem;
  margin-bottom: 0.94rem;
}

.oferta img {
  width: 6.25rem;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}

section.conteiner-btn-whats {
  background: none;
  box-shadow: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

input,
textarea {
  font-family: Roboto, sans-serif;
  font-size: 0.75rem;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  background: #F0F0F0;
  color: #1A1A1A;
  margin-bottom: 0.313rem;
}

.formContato h1 {
  margin-bottom: 0.625rem;
  text-align: center;
}

.formContato button {
  background-color: #25D366;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.formContato button:hover {
  background-color: #1ebe5b;
}

label {
  color: #212121;
  font-family: Roboto;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 400;
}

.popup img {
  width: 35px;
  height: 35px;

}

.popup {
  font-family: Roboto;
  font-size: 0.75rem;
  font-weight: 500;
  display: none;
  background-color: #25D366;
  color: white;
  padding: 15px 20px;
  position: fixed;
  top: 20px;
  right: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  align-items: center;
  gap: 15px;
}


footer {
  color: #212121;
  text-align: center;
  font-family: Roboto;
  display: flex;
  flex-direction: column;
  align-items: center;

  font-size: 0.625rem;
  font-weight: 400;
  padding-top: 0.88rem;
}

.footer-direitos {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.banner {
  width: 21.25rem;
  height: 4rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0.5rem 1rem;
  background: #002462; 
  color: #fff;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  z-index: 999; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.banner p,
.banner a {
  margin: 0;
  text-align: left;
} 

.demo-link {
  color: white;
  text-decoration: underline;
  margin-left: 5px;
  font-weight: bold;
}

.demo-link:hover {
  color: #0077B6;
}

.demo-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  font-weight: 600;
  
}

.banner-cookie {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position:fixed;
  bottom: 1rem;
  background: #002462; 
  gap: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  z-index: 999; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  left: 50%;
transform: translateX(-50%);
}

.banner-cookie p,
.banner-cookie a {
  margin: 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
} 

.cookie-btn{
  background: #0077B6;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

.footer-direitos a{
  color: #212121;
  text-decoration: none;
}

@media screen and (min-width: 700px) {
  body {
    font-size: 1.4rem;
    margin: 2.5rem 0 0 0;
  }

  section {
    padding: 1.25rem;
  }

  h1,
  h2,
  h3,
  h4 {
    font-size: 1.2em;
  }

  .obs-1,
  .obs-2 {
    font-size: 1rem;
  }

  .btn-whats {
    font-size: 1rem;
    padding: 0.5rem 2rem;
  }

  .img-logo {
    width: 13rem;
    height: auto;
  }

  .img-apresentacao {
    gap: 4rem;
  }

  .img-apresentacao img {
    width: 10rem;
    height: auto;
  }

  .solucao img {
    width: 2.813rem;
    height: auto;
  }

  .apresentacao h1 {
    font-size: 1.5rem;
  }

  .localizacao h2,
  .solucao h2,
  .oferta h4,
  .comentario h2 {
    font-size: 1.4rem;
  }

  .conteiner-solucao {
    flex-direction: row;
    gap: 2rem;
  }

  .localizacao {
    gap: 1rem;
  }

  .apresentacao li,
  .problema li,
  .solucao .p-solucao,
  .comentario .p-solucao,
  #txt-slogan,
  input,
  textarea {
    font-size: 1rem;
  }

  .formContato h1 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .formContato button {
    font-size: 1rem;
    padding: 1rem;
  }

  label {
    font-size: 0.75rem;
  }

  .popup {
    font-size: 1rem;
    padding: 20px 25px;
  }

  .popup img {
    width: 45px;
    height: 45px;
  }

  footer {
    font-size: 0.75rem;
  }
}