body{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
    align-content: space-around;
    align-items: stretch;
}

.navbar {
  background-color: #00FA9F;
  padding: 0px 0px 0px 0px !important;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly !important;
  align-content: center;
  flex-direction: row
  
}


.navbar img {
    height: 120px;

}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    margin-left: 0px;
}

.navbar ul li a {
    color: black;
    text-decoration: none;
    padding: 8px 16px;
    display: block;
}

.navbar ul li a:hover {
    background-color: white;
    border-radius: 40px;
}
#div-carousel h5 p{
  display: flex;
}
.slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.carousel-inner img {
  width: 100%;
  height: 500px; /* Define a altura desejada */
  object-fit: cover; /* Assegura que a imagem cobre todo o contêiner */
}

.carousel-caption p, 
.carousel-caption h5 {
  display: flex;
}

/* Indicadores */
.carousel-indicators li {
  background-color: #333;
}

.carousel-indicators .active {
  background-color: #666;
}

/* Controles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}
.w-100 {
  width: 1740px !important;
  height: 500px;
}

#class-text-descricao {
    width: 60%;
    margin: 0 auto;
    padding: 50px;
}
#class-text-descricao h3 {
    color: black;
    position: relative; 
    display: inline-block; 
    padding-bottom: 10px;
}
#class-text-descricao h3::before {
    content: "";
    position: absolute;
    top: -20px;
    transform: translateX(5%);
    width: 100px;
    height: 4px; 
    background-color: green; 
}
.ico_button {
    position: relative;
    left: -5px;
}

button#class_button_saiba_mais {
  position: relative;
  top: 10px;
}
.btn-primary {
  position: relative;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
  top: 20px;
}
.lista_servicos {
 display: flex;
    width: 100%;
    margin: 0 auto;
    background-color: #00FA9F;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }

  .lista-com-imagens {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .lista-com-imagens img {
    max-width: 300px;
    height: 700px;
    flex-shrink: 0; 
  }

  .lista-com-imagens ul {
    padding: 0;
    list-style-type: none;
  }

  .lista-com-imagens ul li {
    width: 50%;
    box-sizing: border-box;
    padding-top: 0px;
  }
  .lista_servicos h3 {
    position: relative;
    margin: 20px 0;
    padding-top: 10px; 
  }

  .lista_servicos h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px; 
    height: 4px;
    background-color: green; 
  }
  .servicos-botoes{
    display: none;
    width: 58%;
    margin: 0 auto;
    padding: 20px;  
  }
  .servicos-botoes h3{
    position: relative;
    margin: 20px 0;
    padding-top: 10px; 
  }
  .servicos-botoes  h3::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px; 
    height: 4px;
    background-color: green; 
  }
  .servicos-botoes button{
    margin-left: 100px;
  }
  
  .rodape{
    width: 58%;
    margin: 0 auto;
    padding-top: 50px;
    position: relative;
    left: 80px;
  }
  .rodape::before {
    content: ''; 
    display: block; 
    width: 100%;
    height: 1px; 
    background-color: #33DE84; 
    position: absolute; 
    top: 50px; 
    left: 0; 
}
  .rodape img {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 30px;
    width: 20%;
    margin-left: 300px;
  }
  .rodape ul li {
    list-style: none;
    padding-bottom: 10px;
  }
  .lista-contatos {
    display: flex;
    align-items: flex-start;
}
.lista-contatos ul {
    list-style: none;
    padding: 0;
    margin: 0 20px 0 0;
}
.lista-contatos h5 {
    margin: 0 0 10px 0;
}
.lista-contatos iframe {
    border: 0;
    flex-shrink: 0;
}

#body-login{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #2c2f33;
  font-family: 'Arial', sans-serif;
  flex-direction: column;
}
form {
  background-color: #23272a; /* Cor do fundo do formulário */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 300px;
  text-align: center;
}

label {
  color: #ffffff; /* Cor do texto */
  display: block;
  margin-bottom: 10px;
  text-align: left;
}

input[type="text"],
input[type="password"] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  background-color: #2c2f33;
  color: #ffffff; /* Cor do texto */
}

input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #7289da; /* Cor do botão */
  color: #ffffff; /* Cor do texto */
  font-weight: bold;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #5b6eae; /* Cor do botão ao passar o mouse */
}

#titulo_login{
  color: white;
}

p {
  color: #ff0000; /* Cor do texto de erro */
  margin-top: 10px;
}
 @media (max-width: 480px){
  body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-content: space-around;
    align-items: stretch;
    width: 480px;
  }
  .navbar{
    font-size: 11.5px;
  }
  .navbar ul li{
    margin-left: -10px;
  } 
  .w-100{
    width: 1000px !important;
  }
  #class-text-descricao {
    width: 100%;
    margin: 0 auto;
    padding: 50px;
}
.lista_servicos {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.lista_servicos h3 {
  left: -10px;
  position: relative;
  margin: 20px 0;
  padding-top: 10px;
}
 /* .lista-com-imagens ul {
    position: relative;
    padding: 0; 
    list-style-type: none; 
    top: 10px;
}
*/
.lista-com-imagens ul {
  padding: 0;
  list-style-type: none;
  position: relative;
  left: 48px;
}
.lista-com-imagens img {
  max-width: 40vh;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  left: 60px;
}
.carousel-item .w-100 {
  position: relative;
}
.servicos-botoes{
  display: none;
}

.rodape{
  position: relative;
  left: -10px;
}
.rodape img {
   position: relative; 
   display: flex; 
   flex-direction: column;
   width: 80%; 
   margin-left: 0px;
}
.rodape iframe {
  display: none;
}
 }
