/* seção banner */
.banner-container {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url(/images/banner.JPG);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  background-position: center;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  /* distância do rodapé */
  right: 20px;
  /* distância da borda direita */
  width: 60px;
  height: 60px;
  background-color: #25D366;
  /* cor oficial do WhatsApp */
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}

.whatsapp-btn:hover {
  background-color: #128C1E;
  /* cor ao passar o mouse */
}

.bg-section-color {
  background-color: #ddedfb;
}

.bg-section-color-dark {
  background-color: #8eaaf721;
}

.logo {
  max-width: 50%;
  min-width: 260px;
  height: auto;
  margin: 0 auto;
  display: flex;
}

.title-banner {
  padding: 130px 7px 50px;
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 10px;
  font-weight: 200;
  text-shadow: 13px 5px 21px #000000;
  color: #FFFFFF;
}

.button-banner {
  text-decoration: none;
  background-color: #317dbbc7;
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 300;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #317dbb;
  padding: 17px 110px 17px 110px;
}

@media (max-width: 767px) {
  .button-banner {
    font-size: 18px;
    margin: 20px;
    padding: 15px 13px;
    display: flex;
    text-align: center;
  }
}

/* FIM seção banner */


/* container custom titulos gerais */
.container-custom {
  margin: 0 auto;
  max-width: 550px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

/* nossa missão */
.style-titles {
  color: #1d65cd;
  font-weight: 800;
  font-style: italic !important;
  text-align: center;
  padding-top: 55px;
}

.missao {
  padding: 80px 10px 95px;
  display: flex;
  justify-content: space-evenly;
  align-items: self-start;
  gap: 10px;
}

.left_column-missao {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
}

.left_column-missao p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", Sans-serif;
}

.right-column {
  display: flex;
}

.img-missao {
  max-width: 400px;
  height: auto;
  width: 100%;
}

@media (max-width: 990px) {
  .missao {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}

/* FIM nossa missão */
.btn-custom {
  padding: 15px;
}

.bene-mob {
  max-width: 1040px;
  width: 100%;
  padding-top: 43px;
  margin: 0 auto;
}


/* seção endereço */
.in-footer {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #FFFFFF;
}

.whatsapp-float {
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 26px;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float i {
  line-height: 60px;
}


.address {
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

/* fim */


.carrossel-flex {
  max-width: 1000px;
  margin: 0 auto;
}

.thumb {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
  height: 80px;
  object-fit: cover;
  width: 50%;
}

.thumb:hover {
  border-color: #0d6efd;
}

.footer-custom {
  display: flex;
}

.bg-footer {
  background-image: url(/images/footer_bg_dark.png);
  background-repeat: no-repeat;
  background-size: cover;
}