html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

p {
  font-family: "Roboto", sans-serif;
}

footer {
  background-color: #6c757d;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
.jumbotron {
  background-size: cover;
  color: #ffffff;
  padding: 200px 0;
}

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0px 46px 25px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
  max-width: 100%;
  height: auto;
}
.navbar-toggler-icon {
  color: #2b7e75; /* Cor do ícone do menu hamburguer */
}
.navbar-nav {
  margin-left: auto;
}
.nav-item {
  margin-right: 15px;
}
.btn-social {
  margin-left: 10px;
  text-decoration: none;
}
.social-icons img {
  max-width: 30px;
  height: auto;
}
.bg-light-gray {
  background-color: #f0ebeb; /* Substitua essa cor pela que desejar */
}

label {
  display: block;
  margin-bottom: 8px;
}
input,
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  color: #ffffff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .jumbotron.mobile-background {
    background-color: transparent;
    position: relative;
  }

  .jumbotron.mobile-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .jumbotron.mobile-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
  }

  .jumbotron.mobile-background .container {
    position: relative;
    z-index: 15;
  }

  .mobile-background {
    background-image: url("imagens/sorriso.jpg");
    background-size: cover;
    background-position: center;
  }
}

#top-menu {
  background-color: #2b7e75;
  color: #fff;
  padding: 10px;
  text-align: center;
}
#social-icons img {
  filter: invert(1);
  width: 30px;
}
.contact-info a {
  color: inherit;
  text-decoration: none;
}

.animated-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 767px) {
  footer {
    font-size: 12px;
    padding: 15px 0;
  }

  .nav-link {
    text-align: center;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info {
  text-align: left;
  max-width: 300px;
  margin: 10px 0;
}

.contact-info p {
  margin: 5px 0;
}

#porque-viportho h2 {
  color: #2b7e75;
  margin-bottom: 40px;
}

#porque-viportho img {
  margin-bottom: 20px;
}

#porque-viportho p {
  font-size: 16px;
  color: #333;
}

@media (max-width: 767px) {
  #porque-viportho img {
    margin-bottom: 10px;
  }

  #porque-viportho p {
    font-size: 14px;
  }
  #porque {
    margin-top: 40px;
  }
}

.card:hover {
  background-color: #edffed;
  transition: 0.3s ease; /* Adiciona uma transição suave para a mudança de cor */
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.4
  ); /* Cor de sobreposição semi-transparente */
  z-index: 10; /* Certifica-se de que o overlay esteja na parte superior */
}

/* Ajuste a imagem para cobrir toda a largura do contêiner pai */
.img-container {
  position: relative; /* Certifica-se de que o contêiner da imagem tenha uma posição relativa */
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#chat-button {
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: transparent; /* Adicione esta linha */
  filter: hue-rotate(2470deg);
}

#chat-popup {
  background-color: white;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

#chat-header {
  background-color: #2b7e75;
  color: white;
  padding: 10px;
  text-align: center;
  cursor: move;
}

#close-chat {
  float: right;
  cursor: pointer;
}

#chat-messages {
  padding: 10px;
  max-height: 200px;
  overflow-y: auto;
}

#user-input {
  display: flex;
  align-items: center;
  padding: 10px;
}

#user-message {
  flex: 1;
  margin-right: 10px;
}

#user-input button {
  background-color: #2b7e75;
  color: white;
  border: none;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
}
