.menu-icon {
  font-size: 3rem;
  color: var(--branco);
  cursor: pointer;
  display: none;
}

.menu-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--azulClaro);
  position: absolute;
  top: 80px;
  width: 100%;
  padding: 10px 0;
  z-index: 1001;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.8);
  box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.8);
  opacity: 0; /* Começa invisível */
  transform: translateY(-20px); /* Deslocado para cima */
  pointer-events: none; /* Desativa interações quando oculto */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Transição suave */
}

.menu-mobile.show {
  opacity: 1; /* Totalmente visível */
  transform: translateY(0); /* Posição normal */
  pointer-events: auto; /* Ativa interações */
}

.menu-mobile a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}

.menu-mobile a:hover {
  color: var(--branco);
}

/* Menu Desktop */
.menu-desktop {
  display: flex;
  gap: 25px;
}

.menu-desktop a {
  margin: 0 25px;
  padding: 21px;
  text-decoration: none;
  color: var(--branco);
  font-weight: 600;
  font-size: 1.2rem;
}

.menu-desktop a:hover {
  color: var(--azulClaro);
  font-weight: 700;
  text-decoration: underline;
  transition: 0.4s;
}

/* Banner Section */
.bannerSection {
  height: 98vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.bannerSection header {
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.01); /* Fundo translúcido */
  backdrop-filter: blur(7px); /* Desfoque no background */
  -webkit-backdrop-filter: blur(10px); /* Suporte para navegadores Webkit */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Pequena sombra */
  z-index: 1000;
}

.bannerSection header a {
  margin: 0 25px;
  padding: 21px;
  text-decoration: none;
  color: var(--branco);
  font-weight: 600;
  font-size: 1.2rem;
}

.bannerSection header a:hover {
  font-weight: 700;
  text-decoration: underline;
  transition: 0.4s;
}

.imagemLogo {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00000064;
}

.bannerSection img {
  max-width: 250px;
  filter: drop-shadow(0 0 1rem var(--cinzaEscuro));
}

#panorama-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.blocosInfo {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 40%;
  margin: -2% 28% 0 28%;
  justify-content: center;
}

.bloco {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-content: center;
  background-color: var(--azulClaro);
  margin-bottom: 10%;
  border-radius: 16px;
  height: 110px;
  width: 100%;
  -webkit-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.6);
  box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

.bloco img {
  width: 6%;
}

.bloco h3 {
  color: var(--branco);
  font-size: 1.8rem;
  margin-left: 0px;
}

.bloco:hover {
  transform: scale(1.03);
  transition: 0.4s;
}

.sobreSection {
  display: flex;
  margin: 10% 14% 6% 14%;
}

.sobreSectionImg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
}

.textSobre p {
  color: var(--cinzaEscuro);
  font-size: 1.5rem;
  text-align: justify;
  font-weight: 500;
}

.textSobre {
  border-left: 4px solid var(--azulTres);
  margin-left: 3%;
  padding-left: 2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.buttonContato {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: auto;
  background-color: var(--azulClaro);
  margin-top: 2%;
  color: var(--branco);
  width: 85%;
  justify-content: space-between;
  padding: 2% 2%;
  border-radius: 8px;
}

.buttonContato h4 {
  font-size: 1.4rem;
}

.buttonContato i {
  font-size: 1.3rem;
}

.buttonContato:hover {
  background-color: var(--azulTres);
  transition: 0.4s;
  -webkit-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.5);
  box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.5);
}

.sectionPortifolio {
  display: flex;
  height: 20%;
  margin: 0 14% 10% 14%;
  color: var(--cinzaEscuro);
  flex-direction: column;
}

.containerBlocos {
  margin-bottom: 3%;
  margin-top: 0%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.blocoCidade {
  flex: 1 1 calc(33.33% - 16px); /* Para 3 colunas */
  max-width: calc(33.33% - 16px);
  margin-top: 2%;
  box-sizing: border-box;
  border: 1px solid var(--azulTres);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 0px;
  background-color: #fff;
}

.imageBloco img {
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 0px;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}

.textBlocoCidade {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5% 5% 0 5%;
}

.textBlocoCidade h2 {
  font-size: 1.4rem;
}

.textBlocoCidade i {
  color: var(--azulDois);
  font-size: 1.4rem;
}

.blocoCidade a {
  background-color: var(--azulClaro);
  color: var(--branco);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  width: 60%;
  margin: 5% 0 5% 5%;
  align-items: center;
  justify-content: space-around;
  gap: 15px;
  padding: 2%;
  border-radius: 8px;
}

.blocoCidade a h4 {
  margin-left: 7%;
}

.blocoCidade a i {
  margin-right: 7%;
}

.sectionPortifolio button {
  all: unset;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin: auto;
  display: block;
  width: 20%;
  padding: 0.6%;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: var(--azulClaro);
  color: var(--branco);
  margin-top: 4%;
  margin-bottom: 6%;
}

.containerContact {
  margin-top: 4%;
  display: flex;
  flex-direction: row;
  background-color: var(--azulTres);
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 23px -7px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 23px -7px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 23px -7px rgba(0, 0, 0, 0.75);
}

.blocoInfo {
  background-color: var(--branco);
  border-bottom-right-radius: 150px;
  height: auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1%;
}

.blocoInfo h1 {
  font-weight: 600;
  padding: 5% 3% 2% 3%;
}

.contact {
  margin-top: 3%;
  padding-left: 3%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.contact i {
  font-size: 2rem;
  color: var(--azulTres);
}

.contact h4 {
  font-weight: 400;
  padding-left: 2%;
}

.blocoInfo h3 {
  color: var(--cinzaEscuro);
  margin-left: 3%;
  margin-top: 5%;
  padding-top: 3%;
  width: 80%;
  border-top: solid 2px var(--azulTres);
  font-weight: 600;
}

.infosRedes {
  padding: 2% 3%;
  margin-bottom: 5%;
}

.infosRedes a {
  text-decoration: none;
  color: var(--azulTres);
}

.infosRedes a:hover i {
  transform: scale(1.2);
  transition: 0.4s;
  color: var(--azulClaro);
}

.infosRedes i {
  margin-right: 4%;
  font-size: 1.5rem;
}

.blocoForm {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.blocoForm h1 {
  font-weight: 600;
  padding: 5% 3% 2% 3%;
  color: var(--branco);
}

.form button {
  cursor: pointer;
  padding: 1.4% 25%;
}

.form button:hover {
  transition: 0.4s;
  transform: scale(1.1);
  padding: 1.4% 25%;
}

.form {
  display: flex;
  flex-direction: column;
  padding: 3%;
}

.input-style {
  margin-top: 4%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  color: #555;
  outline: none;
}

.input-style:focus {
  border-color: var(--azulDois);
  box-shadow: 0 0 0 0.2rem var(--azulClaro);
}

.textAreaInput {
  margin-top: 4%;
  width: 100%;
  height: 100px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 16px;
  resize: none;
}

@media screen and (max-width: 908px) {
  .menu-icon {
    display: block; /* Exibe o ícone no mobile */
  }

  .menu-desktop {
    display: none; /* Oculta o menu desktop no mobile */
  }

  .imagemLogo {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000064;
  }

  .bannerSection img {
    max-width: 180px;
    filter: drop-shadow(0 0 1rem var(--cinzaEscuro));
  }

  #panorama-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
  }

  .blocosInfo {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80%;
    margin: -10% 10% 0 10%;
    justify-content: space-between;
  }

  .bloco {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--azulClaro);
    margin-bottom: 10%;
    border-radius: 16px;
    height: 90px;
    width: 100%;
    -webkit-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.6);
    box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.6);
    text-decoration: none;
  }

  .bloco img {
    width: 7%;
  }

  .bloco h3 {
    color: var(--branco);
    font-size: 1.1rem;
    text-align: center;
    margin-left: 0px;
    margin-top: 4%;
  }

  .sobreSection {
    display: flex;
    margin: 20% 5% 6% 5%;
    flex-direction: column-reverse;
  }

  .sobreSectionImg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
  }

  .sobreSectionImg img {
    display: none;
    width: 50%;
    margin-bottom: 5%;
  }

  .textSobre p {
    color: var(--cinzaEscuro);
    font-size: 1.1rem;
    text-align: justify;
    font-weight: 500;
  }

  .textSobre {
    border-left: 0px solid var(--azulTres);
    margin-left: 0%;
    padding-left: 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .buttonContato {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    background-color: var(--azulClaro);
    margin-top: 6%;
    margin-bottom: 6%;
    color: var(--branco);
    width: 85%;
    justify-content: space-between;
    padding: 4% 4%;
    border-radius: 8px;
  }

  .buttonContato h4 {
    font-size: 1.02rem;
  }

  .buttonContato i {
    font-size: 1.1rem;
  }

  .buttonContato:hover {
    background-color: var(--azulTres);
    transition: 0.4s;
    -webkit-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.5);
    box-shadow: 6px 10px 25px -10px rgba(0, 0, 0, 0.5);
  }

  .sectionPortifolio {
    display: flex;
    height: 20%;
    margin: 0 5% 10% 5%;
    color: var(--cinzaEscuro);
    flex-direction: column;
  }

  .containerBlocos {
    margin-top: 4%;
    margin-bottom: 8%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
  }

  .blocoCidade {
    flex: 1 1 100%; /* Reduz para 1 coluna */
    max-width: 100%;
    margin-top: 2%;
    box-sizing: border-box;
    border: 1px solid var(--azulTres);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 0px;
    background-color: #fff;
  }

  .imageBloco img {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 0px;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
  }

  .textBlocoCidade {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5% 5% 0 5%;
  }

  .textBlocoCidade h2 {
    text-align: start;
    font-size: 1.1rem;
  }

  .textBlocoCidade i {
    color: var(--azulDois);
    font-size: 1.4rem;
  }

  .blocoCidade a {
    background-color: var(--azulClaro);
    color: var(--branco);
    text-decoration: none;
    display: flex;
    flex-direction: row;
    width: 60%;
    margin: 5% 0 5% 5%;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
    padding: 2%;
    border-radius: 8px;
  }

  .blocoCidade a h4 {
    margin-left: 7%;
  }

  .blocoCidade a i {
    margin-right: 7%;
  }

  .sectionPortifolio button {
    all: unset;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    display: block;
    width: 85%;
    padding: 2%;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: var(--azulClaro);
    color: var(--branco);
    margin-top: 8%;
    margin-bottom: 8%;
  }

  .containerContact {
    margin-top: 8%;
    display: flex;
    flex-direction: column;
    background-color: var(--azulTres);
    height: auto;
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 23px -7px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 23px -7px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 23px -7px rgba(0, 0, 0, 0.75);
  }

  .blocoInfo {
    background-color: var(--branco);
    border-bottom-right-radius: 150px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1%;
  }

  .blocoInfo h1 {
    font-weight: 600;
    padding: 5% 3% 2% 3%;
  }

  .contact {
    margin-top: 3%;
    padding-left: 3%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .contact i {
    font-size: 2rem;
    color: var(--azulTres);
  }

  .contact h4 {
    text-align: none;
    font-weight: 400;
    padding-left: 5%;
  }

  .blocoInfo h3 {
    color: var(--cinzaEscuro);
    margin-left: 3%;
    margin-top: 5%;
    padding-top: 3%;
    width: 40%;
    border-top: solid 2px var(--azulTres);
    font-weight: 600;
  }

  .infosRedes {
    padding: 2% 3%;
    margin-bottom: 5%;
  }

  .infosRedes a {
    text-decoration: none;
    color: var(--azulTres);
  }

  .infosRedes a:hover i {
    transform: scale(1.2);
    transition: 0.4s;
    color: var(--azulClaro);
  }

  .infosRedes i {
    margin-right: 4%;
    font-size: 1.5rem;
  }

  .blocoForm {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .blocoForm h1 {
    font-weight: 600;
    padding: 5% 3% 2% 3%;
    color: var(--branco);
  }

  .form {
    display: flex;
    flex-direction: column;
    padding: 3%;
  }

  .input-style {
    margin-top: 4%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #555;
    outline: none;
  }

  .input-style:focus {
    border-color: var(--azulDois);
    box-shadow: 0 0 0 0.2rem var(--azulClaro);
  }

  .textAreaInput {
    margin-top: 4%;
    width: 100%;
    height: 100px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
  }

  footer {
    display: flex;
    background-color: var(--cinzaEscuro);
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 5% 5% 1% 5%;
  }

  .logosFooter {
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .logoFooter1 {
    width: 40%;
  }

  .logoFooter2 {
    width: 50%;
  }

  .textFooter {
    text-align: center;
    margin-top: 3%;
    display: flex;
    flex-direction: column;
  }

  .textFooter p {
    margin: 5% 0% 5% 0%;
    width: 100%;
    font-size: 0.9rem;
    color: var(--branco);
  }

  .textFooter h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--branco);
    margin-top: 3%;
  }

  .e2tCode {
    margin: 0% 0% 0 0%;
    text-decoration: none;
    margin-top: 10%;
    margin-bottom: 6%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .e2tCode h3 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--branco);
    margin-left: 5%;
  }

  .e2tCode img {
    filter: grayscale(1);
    width: 4%;
  }

  .e2tCode:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
    transition: 0.4s ease-out;
  }

  .spanE2tCode {
    font-weight: 600;
  }

  .e2tCode:hover .spanE2tCode {
    color: #f4951f;
    transform: scale(1.1);
    transition: 0.4s ease-out;
  }
}
