/* style.css - Mobile First com Bootstrap */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: roboto, sans-serif;
  font-size: 1rem;
  background-color: #FAFAF7;
  color: #004F5F;
  line-height: 1.4;
}

section {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: #6E6E6E 0px 4px 6px -1px;
  padding: 1.5rem;
}

h1,
h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}


/* HEADER */
.logo img {
  width: 12rem;
}

.dropdown-item:hover,
.dropdown-menu:hover {
  color: #004F5F;
}

.btn-outline-success {
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out, scale 0.3s ease-in-out;
}

.btn-outline-success:hover {
  scale: 1.1;
}

.logo {
  color: #004F5F;
}

.hero-section {
  padding: 1.5rem;
  text-align: center;
  background-color: #6E6E6E;
  color: #FAFAF7;
}

.hero-section h1 {
  margin-bottom: 1rem;
}

.hero-section p {
  margin-bottom: 1rem;
}

.hero-img img{
  width: 100%;
  border-radius: 1rem;
  margin: 1rem 0;
}

.whats {
  background: none;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
}

.btn-whats,
.whats {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #C8102E;
  color: #FAFAF7;
  padding: 0.75rem 5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  margin: 0.5rem 1rem 1rem;
  transition: background-color 0.2s ease-in-out, scale 0.3s ease-in-out;
}


/* Ajustar a largura do botao */
.whats {
  color: #004F5F;
  border: 2px solid #6E6E6E;
  padding: 0.75rem 5rem;
  background: none;
}

.btn-whats:hover,
.whats:hover {
  background-color: #004F5F;
  color: #FAFAF7;
  scale: 1.1;
}


.dot.active {
  background-color: #333;
}

/* SERVIÇOS */
.gr-servicos,
.gr-cidades {
  padding-top: 0;
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}

.gr-servicos p,
.gr-cidades p {
  color: #004F5F;
  margin: 1rem;
}
.carousel-item img {
  width: 10rem;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

.carousel-item {
  color: #FAFAF7;
  background-color: #6E6E6E;
  border-radius: 1rem;
  padding: 2rem;
}

.carousel-txt p{
  color: #FAFAF7;
}

/* 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;
}

/* SOBRE */
.gr-sobre{
  background-color: #6E6E6E;
  color: #FAFAF7;
}

.gr-sobre-txt{
  margin-bottom: 2rem;
}

.gr-sobre-diferencial-item{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  justify-content: space-evenly;

}

.diferencial-txt{
  margin-left: 1.5rem;
}

.diferencial-txt p{
  margin-bottom: 0 ;
}

.carousel-sobre img {
  width: 110%;
  height: auto;
  border-radius: 1rem;

}


/* FAQ */
.gr-faq {
  padding: 1rem;
}

.gr-faq h1 {
  text-align: center;
}

.faq-section {
  margin-bottom: 0.5rem;
  border: 1px solid #C8102E;
  border-radius: 10px;
  overflow: hidden;
}



.section-header:hover {
  background-color: #C8102E;
  color: #fafaf7;
}

.section-header h3,
.section-header p {
  text-align: left;
  padding: 0.5rem;
  margin: 0;
}

.faq-section h3{
  text-align: center;
}

.faq-section h4,
.faq-section p,
.faq-section li {
  text-align: left;
  font-size: 1.1rem;
}

.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: #004F5F 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;
}

.gr-cidades-container {
  padding: 1rem;
  border-radius: 1rem;
  background-color: #6E6E6E;
  color: #FAFAF7;
}


.gr-cidades-container p{
  color: #FAFAF7;
}

  .cidades-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    display: flex;
    margin: 0 auto;
    gap: 1rem;
  }

  .cidades-img img {
    width: 50%;
    height: auto;
    border-radius: 0.5rem;
  }
/* FOOTER */
.gr-footer {
  background: #6E6E6E;
  color: #FAFAF7;
  padding: 1rem 2rem;
  display: flex;
  margin: 0.5rem 0 0;
  justify-content: center;
  align-items: center;
  border-radius: 0;
}

.footer-container {
  margin: 1rem 1.5rem;
}

.logo-footer {
  width: 10rem;
  margin-bottom: 1rem;
}

.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: #6E6E6E;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding-bottom: 7rem;

}

.footer-empresa a {
  text-decoration: none;
  color: #FAFAF7;
}
.footer-direitos p,
.footer-direitos a {
  text-decoration: none;
  color: #FAFAF7;
  font-size: 0.625rem;
  margin: 0;
}

.fixed-bottom img {
  margin: 1rem;
  width: 5rem;

}

/* RESPONSIVO tablet e desktop */
@media (min-width: 768px) {
  .menu ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
  }

  .hero-img img {
    width: 50%;
    border-radius: 2rem;
    margin: 1rem 0;
  }

    .cidades-img{
    width: 60%;
    display: flex;
    margin: 0 auto;
    gap: 2rem;
  }

  .cidades-img img {
    width: 40%;
    height: auto;
    border-radius: 1rem;
  }

  .carousel-item img {
    width: 25%;
  }

  .servico-txt {
    width: 50%;
  }

  .gr-diferencial {
    flex-direction: row;
    justify-content: space-around;
  }

  .gr-sobre-diferencial-item{
  width: 40%;
  }

  .gr-faq {
    padding: 2rem 4rem;
  }

}