/* Mobile First */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');


body {
  font-family: 'quicksand', sans-serif;
  font-size: 1rem;
  background-color: #FFF9F4;
  color: #4F4F4F;
  line-height: 1rem;
}

section {
  padding: 1rem;
  margin: 0.5rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 4 px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3 {
  font-family: 'baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* HEADER */
.logo {
  background: #FFECD6;
  text-align: center;
  padding: 2rem;
  padding-bottom: 1rem;
}

.img-logo {
  width: 5.625rem;
  height: 5.625rem;
}

.txt-slogan {
  font-size: 1rem;
  padding-top: 0.5rem;
  margin: 0 ;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 1.875rem;
  height: 1.875rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #4F4F4F;
  border-radius: 2px;
  transition: all 0.3s ease;
}




/* Menu tablet e desktop */
.menu {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.menu a{
  text-decoration: none;
  color: #4F4F4F;
  font-weight: 800;
  font-size: 1rem;
}

/* Menu fechado no mobile */
@media (max-width: 767px) {
  .menu {
    position: absolute;
    top: 3.75rem;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 20px 0;
    display: none;
  }

  .menu.open {
    display: flex;
    background: #5ACBA2;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
  }
}

/* HERO */
.hero-section {
  padding: 1rem;
  margin: 0.5rem 1rem;
  border-radius: 10px;
  text-align: center;
}

.hero-img {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 1rem 0;
}

.hero-img img {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 0.75rem;
}

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

.btn-whats {
  width: 18.5rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #fff;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.6;
}

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

/* DIFERENCIAIS */
.gr-diferencial {
  padding: 1rem;
  margin: 0.5rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 4 px rgba(0, 0, 0, 0.1);
  background: #FFECD6;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diferencial {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.diferencial img {
  width: 2.5rem;
}

.diferencial-txt h2 {
  font-size: 1rem;

}

/* SLIDER COMENTÁRIOS */
.gr-comentarios-slider {
  padding: 1.5rem;
  text-align: center;
}

.gr-comentarios-slider p {
  margin-top: 0.25rem;
  font-style: italic;
  text-align: left;
  border-left: #F28C28 0.25rem solid;
  padding-left: 1rem;
  margin-left: 1rem;
}

.gr-comentarios-slider h1 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.slider-comentario {
  display: none;
}

.slider-comentario.ativo {
  display: block;
}

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

.dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #5ACBA2;
}

/* SERVIÇOS */
.gr-servicos {
  background: #FFECD6;
  text-align: center;
  padding: 1rem;
}

.servico {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.servico-txt {
  flex: 1;
  text-align: left;
}

.servico h2 {
  margin-top: 0.5rem;
}

.servico-txt p {
  line-height: 1.4;
}

.servico img {
  width: 5.625rem;
  height: 5.625rem;
}

.servico-txt-2 h2 {
  margin: 1rem;
}

.servico-txt-2 p {
  line-height: 1.4;
}



/* CTA */
.gr-cta {
  padding: 1.5rem;
  text-align: center;
}

.gr-cta h1 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.gr-cta p {
  margin-bottom: 1rem;
}

.gr-cta .obs {
  margin: 0 auto;
}


/* FAQ */
.gr-faq {
  background: #FFECD6;
  padding: 1rem;
}

.gr-faq h1 {
  text-align: center;
}

.faq-section {
  margin-bottom: 0.5rem;
  border: 1px solid #F28C28;
  border-radius: 10px;
  overflow: hidden;
}



.section-header:hover {
  background-color: #F28C28;
  color: #fff;
}

.section-header h2,
.section-header p {
  text-align: left;
  padding: 0.5rem;
  margin: 0;
}

.section-content {
  display: none;
  padding: 0;
}

.faq-section.active .section-content {
  display: block;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  margin: 0.25rem;
  padding: 0.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: transparent 1px solid;
}

.faq-question:hover {
  border: #5ACBA2 1px solid;
  border-radius: 10px;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0rem 2rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0rem 2rem;
}

/* FOOTER */
.gr-footer {
  background: #FFECD6;
  padding: 1rem 2rem;
  display: flex;
  margin: 0.5rem 0 0;
  justify-content: center;
  border-radius: 0;
}

.footer-container {
  margin: 1rem 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-links h3 {
  margin-bottom: 0.5rem;
}

.links-img {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.links-img img {
  width: 3rem;
  justify-content: center;
  gap: 0.5rem;
}
.footer-empresa{
  margin-top: 2rem;
}

.footer-empresa p {
  margin-bottom: 0.25rem;
  text-align: center;
  font-size: 0.9rem;
}

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

.footer-direitos p {
  font-size: 0.625rem;
  margin: 0;
}

.demo-banner {
  width: 21.25rem;
  height: auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0.5rem 1rem;
  background: #F28C28; 
  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);
}

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

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

.demo-link:hover {
  color: #5ACBA2;
}

.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: #F28C28; 
  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: #FFECD6;
  color: #4F4F4F;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

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

/* RESPONSIVO tablet e desktop */
@media (min-width: 768px) {
  .img-logo {
    width: 9.375rem;
    height: 9.375rem;
  }

  .menu ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
  }

  .hero-img{
    width: 60%;
    display: flex;
    margin: 0 auto;
  }

  .hero-img img {
    width: 8.125rem;
    height: 8.125rem;
    margin-bottom: 1rem;
  }

  .gr-diferencial {
    flex-direction: row;
    justify-content: space-evenly;
  }

  .servico {
    flex-direction: row;
    justify-content: space-evenly;
  }

  .servico img {
    width: 8.125rem;
    height: 8.125rem;
  }

  .gr-faq,
  .gr-servicos,
  .gr-diferencial{
    padding: 2rem 3rem;
  }

  .gr-footer{
    gap: 2rem;
  }
}