/* botão redondo */ #wbot-open-chat { width: 80px !important; /* largura */ height: 80px !important; /* altura */ border-radius: 50% !important; /* arredonda totalmente */ display: flex; /* garante centralização */ align-items: center; justify-content: center; } /* ícone dentro */ #wbot-open-chat .wbot-icon { font-size: 42px !important; /* ajuste conforme o tamanho */ }



.whatsapp-icon {
  position: fixed;
  bottom: 10rem;
  right: 1.5rem;
  width: 7rem;
  height: 8rem;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  display: none;
}

.whatsapp-icon img {
  width: 100%;
  height: auto;
}

/* Efeito de balanço */
.shake {
  animation: shake-animation 0.5s ease-in-out infinite alternate;
}

@keyframes shake-animation {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}

/* Efeito ao passar o mouse */
.whatsapp-icon:hover {
  transform: scale(1.2); /* Aumenta o tamanho em 20% */
}



.cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 11rem;
  gap: 3.12rem;
  position: sticky;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: white;
  padding: 1.6rem 3.12rem;

  & .vip {
    background-color: var(--azul-cabecalho);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
  }

  & img {
    width: 20rem;
    transition: transform ease-in 300ms;

    &:hover {
      transform: scale(1.2);
    }
  }

  & .nav-icones {
    display: none;
  }
  transition: height 1.5s ease; /* Aumente o tempo para 1.5 segundos */
}

.cabecalho.reduzido {
  height: 8rem; /* Altura reduzida */
  box-shadow: 0 0.21rem 0.8rem rgba(0, 0, 0, 0.1);
}

nav ul {
  display: flex;
  align-items: start;
  text-align: right;
  gap: 2.5rem;
}

.contem-filhos {
  position: relative;
}

.contem-filhos ul {
  display: flex;
  flex-flow: column;
  gap: 0;
  align-items: stretch;
  position: absolute;
  right: 0;
  background-color: var(--Branco);
  padding: 0.41rem 0;
  border-radius: 2.5rem;
  box-shadow: 0 0.21rem 0.4rem rgba(0, 0, 0, 0.15),
    inset 0 0 0.4rem 0.1rem rgba(0, 0, 0, 0.1);
  height: auto; /* Ajusta a altura automaticamente */
  max-height: none; /* Remove limite de altura */
  opacity: 0;
  visibility: hidden; /* Inicia escondido */
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s; /* Suaviza a transição */
}

/* Exibe o submenu ao passar o mouse ou ao acessar a área do cliente */
.contem-filhos:hover ul,
.contem-filhos ul.show {
  display: flex;
  width: 135%;
  opacity: 1;
  visibility: visible; /* Torna o submenu visível */
  transition: opacity 0.3s ease-in-out, visibility 0s 0s; /* Mostra imediatamente ao acessar */
  /* position: relative; */
  /* height: 10rem; */
}

.contem-filhos ul li {
  border-bottom: solid 1px rgba(0, 0, 0, 0.15);
  padding: 0.41rem 2rem;
  background-color: white;
}

.contem-filhos ul li:last-child {
  border-bottom: none;
}

.item-lista-cabecalho {
  & a {
    font-family: "Lato", sans-serif;
    color: var(--titulo);
    font-size: 1.7rem;
    text-decoration: none;
    font-weight: 700;
    transition: color ease-in 300ms;

    &:hover,
    &:active {
      color: var(--dourado);
    }
  }
}

.secao-banner {
  background-image: url(/Imagens/Fundos/FUNDO.webp);
  background-size: cover;
  height: 60rem;
  display: flex;
  align-items: center;
}

.bloco-retangulo-branco {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  width: 100%;
  padding: 8rem 2rem;
  background-color: white;
  color: var(--azul-cabecalho);
  box-shadow: 0 0.21rem 0.8rem rgba(0, 0, 0, 0.1);
}
.separador {
  background-color: var(--dourado);
  color: var(--dourado);
  height: 0.8rem;
  width: 15rem;
  font-size: 0.1rem;
}

.alex {
  background-color: aqua;
}

.secao-empresa {
  background-color: var(--azul-cabecalho);
  color: white;

  & .container {
    & .a-empresa {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 2% 0 15%;
      gap: 2rem;

      & .quadro-imagem {
        width: 50%; /* Defina a largura do quadro */
        height: 60rem; /* Defina a altura do quadro */
        border: 0.2rem solid #ccc; /* Defina a borda do quadro */
        border-radius: 1rem;
        overflow: hidden; /* Esconde qualquer parte da imagem que ultrapasse o quadro */
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f9f9f9; /* Cor de fundo opcional */
      }

      & .quadro-imagem img {
        width: 100%; /* Ajusta a largura da imagem ao tamanho do quadro */
        height: auto; /* Mantém a proporção da imagem */
        object-fit: cover; /* Cobre todo o quadro, ajustando a imagem proporcionalmente */
      }

      & .separador-empresa {
        background-color: white;
        height: 0.8rem;
        width: 10rem;
        font-size: 0.1rem;
      }

      & .bloco-texto-empresa {
        display: flex;
        flex-flow: column;
        gap: 3rem;
        width: 60rem;
      }
    }
  }
}

.secao-catalago {
  opacity: 0;
  transform: translateY(50);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.secao-catalago.aparecer {
  opacity: 1;
  transform: translateY(0);
}

.catalogo img {
  animation: subir 1s ease-out;
  animation-delay: 0.2s; /* Ajuste o tempo de atraso */
}

.catalogo .bloco-texto-catalogo {
  animation: subir 1s ease-out;
  animation-delay: 0.5s; /* Ajuste o tempo de atraso */
}

@keyframes subir {
  from {
    opacity: 0;
    transform: translateY(50);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seu CSS existente */
.secao-catalago {
  & img {
    width: 45%;
  }

  & .container {
    & .catalogo {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 5rem 0 5rem 20rem;
      gap: 5rem;

      & .bloco-texto-catalogo {
        display: flex;
        flex-flow: column;
        gap: 2rem;

        p {
          width: 65%;
          font-size: 2.5rem;
        }

        & a {
          text-transform: uppercase;
          background-color: var(--dourado);
          color: white;
          width: 15rem;
          text-align: center;
          padding: 2rem;
          transition: background-color ease-in 300ms;

          &:hover {
            background-color: #b78f20d8;
          }
        }
      }
    }
  }
}

/* Adicione ao seu CSS */
.secao-servicos .bloco1-1 {
  opacity: 0; /* Inicialmente invisível */
  transform: translateY(20); /* Inicialmente deslocado para baixo */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Transição suave */
}

.secao-servicos .bloco1-1.slide-up {
  opacity: 1; /* Fica visível */
  transform: translateY(0); /* Desloca para a posição original */
}

.secao-servicos {
  background-color: var(--azul-cabecalho);
  color: white;
  display: flex;

  & h2 {
    padding-top: 3rem;
    font-size: 3.3rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  & .container {
    & .bloco-servicos {
      display: flex;
      align-items: center;
      flex-flow: column;

      gap: 2rem;

      & .separador-empresa {
        background-color: white;
        height: 0.3rem;
        width: 7rem;
        font-size: 0.1rem;
      }

      & .fundo-img {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff; /* Fundo branco */
        width: 10rem; /* Largura do círculo */
        height: 10rem; /* Altura do círculo */
        border-radius: 50%; /* Torna o contêiner circular */
        overflow: hidden; /* Garante que a imagem se ajuste ao contêiner circular */
        transition: transform ease-in 300ms;

        & img {
          width: 5rem;
        }

        &:hover {
          transform: scale(1.1);
        }
      }

      & .bloco1 {
        display: flex;
        gap: 10rem;
        justify-content: center;
        align-items: start;
        text-align: center;

        & .bloco1-1 {
          display: flex;
          flex-flow: column;
          align-items: center;
          gap: 3rem;
          padding-bottom: 5rem;
        }

        & p {
          text-align: center;
          font-size: 1.5rem;
        }

        & h4 {
          font-size: 2rem;
        }

        & .bloco-texto-servico {
          display: flex;
          flex-flow: column;

          gap: 1rem;
          width: 30rem;
        }
      }
    }
  }
}

.secao-app.visible {
  opacity: 1;
  transform: translateY(0);
}

.secao-app {
  opacity: 0;
  transform: translateY(50);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;

  p {
    font-size: 2.5rem;
    text-align: left;
    width: 85%;
  }

  h3 {
    font-size: 2.5rem;
  }
  & .container {
    & .bloco-app {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10rem;
      padding: 5rem 0 5rem 0;

      & img {
        width: 20%;
      }
      & .bloco-texto-app {
        display: flex;
        flex-flow: column;

        gap: 2rem;
        width: 85rem;

        & .separador {
          background-color: var(--dourado);
          color: var(--dourado);
          height: 0.5rem;
          width: 10rem;
          font-size: 0.1rem;
        }

        & a {
          text-transform: uppercase;
          background-color: var(--dourado);
          color: white;
          width: 18rem;
          text-align: center;
          padding: 2rem;
          font-size: 1.45rem;
          transition: background-color ease-in 300ms;

          &:hover {
            background-color: #b78f20d8;
          }
        }
      }
    }
  }
}

.secao-duvidas {
  background-color: var(--azul-cabecalho);

  & .container-duvidas {
    padding-top: 8rem;
    padding-bottom: 20rem;
  }
}

.bloco-duvidas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 5rem;
}

.bloco-duvidas .separador {
  background-color: white;
  color: white;
  height: 0.3rem;
  width: 5rem;
  font-size: 0.1rem;
}

.bloco-duvidas h3 {
  font-size: 3.2rem;
  color: white;
}

.duvidas {
  display: flex;
  color: white;
  background-color: var(--Branco);

  padding: 1.6rem 3.12rem;
  box-shadow: 0 0.21rem 0.4rem rgba(0, 0, 0, 0.1);
  border: rgba(255, 255, 255, 0.479) solid 0.1px;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  width: 60%;
  margin-left: 20%;
  transition: margin-bottom 0.3s ease;

  & h2,
  h4,
  p {
    font-family: "Lato", sans-serif;
  }

  & h2 {
    font-size: 1.98rem;
    font-weight: 700;
  }

  & p {
    font-size: 1.65rem;
  }

  & h4 {
    font-size: 1.65rem;
  }
}

.duvidas:hover {
  box-shadow: none;
  border: none;
}

.duvidas.open {
  margin-bottom: 5rem;
}

.duvidas ul {
  display: flex;
  align-items: start;
  text-align: left;
  gap: 2.5rem;
}

.duvidas h3:hover {
  color: var(--amarelo1);
}

.contem-duvida {
  position: relative;
}

.contem-duvida ul {
  display: none;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: var(--Branco);
  transition: max-height 0.3s ease;
}

.contem-duvida.open ul {
  display: flex;
  max-height: 50%;
  overflow-y: auto;
}

.contem-duvida ul li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.589);
  padding: 0.41rem 2rem;
}

.contem-duvida ul li:last-child {
  border-bottom: none;
}

.item-lista-departamentos {
  display: flex;
  flex-flow: column;
  position: relative;
  align-items: center;
  padding-right: 3rem;
  justify-content: space-between;
  gap: 2rem;
}

.item-lista-departamentos img {
  width: 3rem;
}

.item-lista-departamentos ul li a {
  color: var(--azul-logo);
}

.item-lista-departamentos ul li a:hover {
  color: var(--amarelo1);
}

.item-lista-departamentos::after {
  content: "▼";
  font-size: 1.2rem;
  color: white;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 500ms ease;
}

.item-lista-departamentos.open::after {
  transform: rotate(180deg);
  top: auto;
  margin-top: 1%;
}

.contem-duvida {
  max-height: 4rem;
  transition: max-height 800ms ease;
}

.contem-duvida.open {
  max-height: 100rem;
}

.linkpdf {
  display: flex;
  align-items: center;
}

.item-lista-departamentos h4 {
  font-weight: bold;
}

.secao-calendar {
  height: auto;
  margin-top: -5rem;

  & .separador {
    background-color: var(--dourado);
    color: var(--dourado);
    height: 0.5rem;
    width: 10rem;
    font-size: 0.1rem;
  }

  & .tit-sep {
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  & h3 {
    font-size: 3.3rem;
  }
}

.container-calendar {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
  padding: 4rem 2rem 2rem 2rem;
  border-radius: 0;
  flex-wrap: wrap;
}

.calendar1,
.calendar2 {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  max-width: 40rem; /* Limitar a largura máxima */

  & .obser {
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 1.5rem;

    & p {
      font-size: 1.5rem;
    }

    & span {
      font-weight: bold;
    }
  }
}

.calendar-container {
  width: 100%;
  max-width: 36rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: var(--azul-cabecalho);
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
}

.header button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.header button:hover {
  color: #d0d0ff;
}

.header #prevMonth1,
.header #prevMonth2 {
  left: 1rem;
}

.header #nextMonth1,
.header #nextMonth2 {
  right: 1rem;
}

.header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 1rem;
  gap: 0.5rem;
}

.day-header {
  font-weight: bold;
  color: #6c757d;
}

.day {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: background-color 0.3s;
}

.day:hover {
  background-color: #e9ecef;
}

.day-number {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.dots-container {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  background-color: #ffd700;
  border-radius: 50%;
}

.obligation {
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
}

.today {
  background-color: #6c63ff;
  color: white;
  font-weight: bold;
}

.footer {
  background-color: #ffffff;
  padding: 1rem;
  border-top: 1px solid white;
  text-align: left;
  max-height: auto;
  overflow-y: auto;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* Cor padrão para o ponto */
.footer li::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--azul-cabecalho); /* Cor padrão */
  border-radius: 50%;
  margin-right: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .container-calendar {
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }

  .calendar-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .calendar-container {
    max-width: 100%;
    font-size: 12px; /* Ajuste o tamanho da fonte em telas pequenas */
  }

  .header h2 {
    font-size: 1.6rem;
  }
}

.secao-noticias {
  color: var(--azul-cabecalho);
  border: none;
}

.titulo-noticias {
  padding: 0.5rem;
  border-radius: 1.5rem;
  text-align: center;
  font-size: 2.6rem;
  width: 100%;
}

.noticias {
  & .separador {
    background-color: var(--dourado);
    color: var(--dourado);
    height: 0.5rem;
    width: 10rem;
    font-size: 0.1rem;
  }

  & .tit-sep {
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  & h3 {
    font-size: 3.3rem;
  }
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 72rem;
  margin: auto;
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: auto;
  align-items: center;

  & a {
    color: var(--titulo);
  }
}

.carousel-item {
  padding: 1rem;
  min-width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  white-space: pre-line;
  align-items: center;
  text-align: center;
}

.carousel-item img {
  width: 90%;
  border-radius: 1rem;
  padding: 0.5rem;
}

.carousel-item p {
  color: var(--titulo);
  margin-left: 15rem;
  margin-bottom: -1rem;
  font-size: 1.2rem;
  padding: 1rem;
}

.carousel-item h2 a {
  font-size: 1.7rem;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.section-contact {
  background-color: var(--azul-cabecalho);
  color: white;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 5rem 0 5rem 0;

  & h3 {
    font-size: 3.3rem;
    padding-bottom: 1rem;
  }

  & .separador {
    margin-bottom: 5rem;
    background-color: white;
    color: white;
    height: 0.5rem;
    width: 5rem;
    font-size: 0.1rem;
  }

  & form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;

    & input,
    button {
      height: 5rem;
      width: 30rem;
      border-radius: 0.5rem;
    }

    & button {
      width: 10rem;
      background-color: white;
      color: var(--azul-cabecalho);
      font-size: 1.5rem;
      border: none;
      transition: transform ease-in 500ms;

      &:hover {
        transform: scale(1.1);
      }
    }

    & label {
      font-size: 2rem;
    }
  }
}

.body-contact {
  background-color: var(--azul-cabecalho);

  & .contatado {
    background-color: white;
    border-radius: 1rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 2rem;
    max-width: 25%;
    height: 20rem;
    justify-content: center;
    margin: auto;
    margin-top: 20%;

    & a {
      background-color: var(--azul-cabecalho);
      padding: 1rem;
      color: white;
      width: 10rem;
      text-align: center;
      font-weight: 700;
      border-radius: 0.5rem;
      transition: background ease-in 500ms, transform ease-in 500ms;

      &:hover {
        transform: scale(1.1);
        background-color: #122c3af3;
      }
    }
  }
}

.secao-mapa {
  margin: 0;
  padding: 0;
}

footer {
  background-color: var(--azul-cabecalho);
  color: white;

  & h4 {
    font-size: 1.98rem;
  }

  & p {
    font-size: 1.3rem;
  }

  & .container {
    & .bloco-rodape {
      display: flex;
      gap: 5rem;
      justify-content: space-between;
      padding: 0 2rem 0 2rem;
      
    

      & .rodape-cab ul {
        display: flex;
        gap: 1rem;
        align-items: center;
        text-align: center;

        & a {
          font-size: 1.5rem;
          color: white;
          transition: color ease-in 300ms;

          &:hover {
            color: var(--dourado);
          }
        }
      }
    }
  }
}
