* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	-webkit-tap-highlight-color: transparent;
}

.bodyed {
  background: linear-gradient(rgba(3, 3, 3, 0.851), rgba(0, 0, 0, 0.84)),
    url("Imagens/2149041148.jpg");
  /* Caminho da imagem */
  /* Caminho da imagem */
  background-size: cover;
  /* Ajusta a imagem para cobrir toda a tela */
  background-position: center;
  /* Centraliza a imagem */
  background-repeat: no-repeat;
  /* Impede que a imagem se repita */
}

.bodyed2 {
  background: linear-gradient(rgba(3, 3, 3, 0.851), rgba(0, 0, 0, 0.84)),
    url("Imagens/2150167448.jpg");
  /* Caminho da imagem */
  /* Caminho da imagem */
  background-size: cover;
  /* Ajusta a imagem para cobrir toda a tela */
  background-position: center;
  /* Centraliza a imagem */
  background-repeat: no-repeat;
  /* Impede que a imagem se repita */
}

html {
  scroll-behavior: smooth;
}

#sobre-nos {
  scroll-margin-top: 120px;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  padding: 26px;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

header nav ul li {
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
}

header nav ul li a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

header nav ul li.active a {
  background-color: #eb8d2a;
  color: white;
  border-radius: 0px 0px 0px 1px;
  width: 200px;
}

.logo {
  display: flex;
  justify-content: left;
  flex: 1;
}

.logo img {
  height: 32px;
}

/*-------------------------------------------------------MENU HAMB E SIDE MENU DA NAVBAR------------------------------------------*/
.menu {
  flex: 1;
  display: flex;
  position: relative;
  text-align: right;
  justify-content: right;
}

.menu-hamburguer {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 20px;
  border-radius: 0px 0px 0px 15px;
}

.menu-list a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 4px 8px;
}

.menu-list a:hover {
  background-color: #f4f4f4;
  border-radius: 0px 0px 0px 10px;
  color: #000000;
}

@media (max-width: 1080px) {
  .menu-list {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50px;
    z-index: 10;
  }

  .menu-list.active {
    display: flex;
  }

  .menu-hamburguer {
    display: block;
  }
}

.user-profile {
  display: flex;
  align-items: center;
  margin-left: 20px;
  cursor: pointer;
}

.user-icon {
  height: 40px;
  border-radius: 50%;
  transition: transform 0.1s ease;
  border: 2px #eb8d2a solid;
}

.user-icon:hover {
  transform: scale(1.1);
}

.sidebar {
  position: fixed;
  right: -300px;
  top: 0;
  height: 100%;
  width: 200px;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 200;
  border-radius: 0px 0px 0px 30px;
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
  background-color: #eb8d2a;
}

.close-btn {
  cursor: pointer;
  font-size: 36px;
}

.sidebar-content {
  padding: 20px;
  text-align: center;
}

.sidebar-user-img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 10px 0;
}

.sidebar ul li a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #eb8d2a;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 150;
  /* Deve estar abaixo da sidebar mas acima do restante do conteúdo */
}

.dropdown {
  position: relative;
  /* Permite que o submenu use este container como referência */
}

.dropdown .submenu {
  display: none;
  /* Esconde o submenu por padrão */
  position: absolute;
  /* Posiciona o submenu em relação ao seu item pai */
  background-color: #f9f9f9;
  top: 100%;
  /* Posiciona o submenu logo abaixo do item do menu */
  left: 0;
  /* Alinha o submenu à esquerda do item pai */
  list-style: none;
  padding: 10px;
  border-radius: 5px;
  min-width: 200px;
  /* Define uma largura mínima para o submenu */
  z-index: 10;
  /* Garante que o submenu fique acima de outros elementos */
}

.dropdown:hover .submenu {
  display: block;
  /* Exibe o submenu ao passar o mouse sobre o item "Sobre" */
}

.submenu {
  display: none;
  /* Esconde o submenu por padrão */
  position: absolute;
  /* Posiciona o submenu em relação ao seu item pai */
  background-color: #e3e3e3;
  /* Cor de fundo do submenu */
  top: 100%;
  /* Posiciona o submenu logo abaixo do item do menu */
  left: 0;
  /* Alinha o submenu à esquerda do item pai */
  list-style: none;
  /* Remove marcadores da lista */
  padding: 10px;
  /* Espaçamento interno */
  border-radius: 5px;
  /* Bordas arredondadas */
  min-width: 200px;
  /* Largura mínima para o submenu */
  z-index: 10;
  /* Garante que o submenu fique acima de outros elementos */
}

.submenu li {
  margin: 5px 0;
  /* Espaçamento entre os itens do submenu */
}

.submenu a {
  color: rgb(0, 0, 0);
  /* Cor do texto */
  text-decoration: none;
  /* Remove sublinhado dos links */
  display: block;
  /* Faz com que o link ocupe toda a largura do item */
  padding: 8px 10px;
  /* Espaçamento interno para os links */
  border-radius: 3px;
  /* Bordas arredondadas para os links */
  transition: background-color 0.3s;
  /* Transição suave para o efeito hover */
}

.submenu a:hover {
  background-color: #eb8d2a;
  /* Cor de fundo ao passar o mouse */
}

/*-------------------------------------------------------BANNER0 E CAROUSEL----------------------------------------------------*/
.banner {
  position: relative;
  height: 820px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  /* A imagem ocupará toda a largura do container */
  height: auto;
  /* Mantém a proporção da imagem */
}

.banner-text {
  position: absolute;
  /* Para que possamos posicionar o texto sobre a imagem */
  top: 50%;
  /* Centraliza verticalmente */
  left: 50%;
  /* Centraliza horizontalmente */
  transform: translate(-50%, -50%);
  /* Ajusta para o centro exato */
  color: rgb(0, 0, 0);
  /* Cor do texto */
  text-align: center;
  /* Centraliza o texto */
  z-index: 10;
  /* Garante que o texto fique acima da imagem */
}

.banner-text h2 {
  font-size: 36px;
  /* Tamanho do título */
  margin: 0;
  /* Remove margem padrão */
  text-align: center;
}

.banner-text p {
  font-size: 22px;
  /* Tamanho da descrição */
  margin-top: 10px;
  /* Espaçamento acima da descrição */
  text-align: center;
}

.banner-button {
  display: inline-block;
  /* Faz o link se comportar como um botão */
  padding: 10px 20px;
  /* Espaçamento interno do botão */
  background-color: #eb8d2a;
  /* Cor de fundo do botão */
  color: white;
  /* Cor do texto do botão */
  text-decoration: none;
  /* Remove o sublinhado do link */
  border-radius: 5px;
  /* Bordas arredondadas */
  margin-top: 15px;
  /* Espaçamento acima do botão */
  transition: background-color 0.3s;
  /* Transição suave para a mudança de cor */
}

.banner-button:hover {
  background-color: #d0801e;
  /* Cor de fundo ao passar o mouse */
}

.carousel {
  position: relative;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
  /* Garante que os indicators fiquem acima de outras camadas */
}

/*------------------------------------------------------------INDICADOR DE QUAL PAGINA USUARIO ESTA--------------------------*/
.indicator {
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 21;
}

.indicator.active {
  background-color: #eb8d2a;
}

/*------------------------------------------------------------------------------------BANNER DE PLANOS--------------------------------*/
.banner2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.banner2 h2 {
  margin-bottom: 20px;
}

.planos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .planos-container {
    flex-direction: column;
    gap: 40px;
  }

  .banner2 {
    height: auto;
  }

  .plano {
    width: 100%;
  }
}

.plano {
  border: 1px solid #ccc;
  border-radius: 0px 0px 0px 30px;
  padding: 10px;
  width: 100%;
  max-width: 290px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.plano:hover {
  box-shadow: 0px 2px 4px #eb8d2a;
}

.plano-imagem {
  width: 96%;
  height: auto;
  border-radius: 5px 5px 0 0;
}

.plano h3 {
  margin: 10px 0;
}

.plano ul {
  list-style: none;
  padding: 0;
}

.plano button {
  background-color: #eb8d2a;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 0px 0px 0px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.plano button:hover {
  background-color: #d0801e;
}

@media (max-width: 600px) {
  .plano {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------------BANNER3-------------------------------------*/
.banner3 {
  position: relative;
  overflow: hidden;
}

.banner-text3 h2 {
  font-size: 26px;
  /* Tamanho do título */
  margin: 0;
  /* Remove margem padrão */
  text-align: center;
}

.banner-text3 p {
  font-size: 20px;
  /* Tamanho da descrição */
  margin-top: 10px;
  /* Espaçamento acima da descrição */
  text-align: center;
}

.banner-text3 ul {
  list-style-type: none;
  /* Remove as bolinhas da lista */
  padding: 0;
  /* Remove o preenchimento padrão */
  text-align: center;
}

.banner-text3 li {
  margin-bottom: 10px;
  /* Espaço entre os itens da lista */
  position: relative;
  /* Para adicionar um marcador personalizado, se desejado */
  text-align: center;
  font-size: 16px;
}

/*---------------------------------------------------------------------------BANNER BAN----------------------------------------*/
.ban {
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ban-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.ban-imagem {
  width: 500px;
  border-radius: 0px 0px 0px 50px;
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.ban-text {
  max-width: 600px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.ban-text h2 {
  font-size: 24px;
  margin: 0;
}

.ban-text p {
  font-size: 18px;
  margin-top: 10px;
}

.ban-text ul {
  list-style-type: none;
  padding: 0;
}

.ban-text li {
  margin-bottom: 8px;
  position: relative;
  font-size: 14px;
}

@media (max-width: 768px) {
  .ban-container {
    flex-direction: column;
    align-items: center;
  }

  .ban {
    order: -1;
  }

  .ban-text {
    text-align: center;
  }
}

/*-------------------------------------------------------------------------------BANNER BAN2-----------------------------------*/
.ban2-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.ban2 {
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ban2-imagem {
  width: 500px;
  border-radius: 0px 0px 0px 50px;
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.ban2-text {
  max-width: 600px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.ban2-text h2 {
  font-size: 24px;
  margin: 0;
}

.ban2-text p {
  font-size: 18px;
  margin-top: 10px;
}

.ban2-text ul {
  list-style-type: none;
  padding: 0;
}

.ban2-text li {
  margin-bottom: 8px;
  position: relative;
  font-size: 14px;
}

@media (max-width: 768px) {
  .ban2-container {
    flex-direction: column;
    align-items: center;
  }

  .ban2 {
    order: -1;
  }

  .ban2-text {
    text-align: center;
  }
}

/*----------------------------------------------------------------------------------------------- wapp -----------------------*/
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.whatsapp-float:hover {
  background-color: #20b858;
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

/*---------------------------------------------------------------------BANNER FLUTUANTE DEPOIMENTOS-------------------------*/
.banner-flutuante {
  position: fixed;
  top: 100px;
  left: 20px;
  width: 150px;
  max-width: 90%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  z-index: 998;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cliente {
  opacity: 1;
  transition: opacity 0.3s ease;
  /* Transição suave da opacidade */
}

.cliente img {
  width: 70px;
  /* Tamanho fixo da imagem */
  height: 70px;
  /* Tamanho fixo da imagem */
  border-radius: 50%;
  /* Círculo */
  object-fit: cover;
  /* Faz a imagem se ajustar no círculo */
}

.estrelas {
  color: gold;
  font-size: 14px;
}

.fechar {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.fechar:hover {
  color: red;
}

/*----------------------------------------------------------------------------------------------MAPA----------------------*/
.map-banner {
  width: 100%;
  height: 200px;
  max-width: 1100px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.map-banner iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* Remove a borda do iframe */
}

/*--------------------------------------------------------------------------------BANNER4-------------------------------------*/
.banner4 {
  position: relative;
  height: 820px;
  overflow: hidden;
}

.banner4-text {
  position: absolute;
  /* Para que possamos posicionar o texto sobre a imagem */
  top: 42%;
  /* Centraliza verticalmente */
  left: 50%;
  /* Centraliza horizontalmente */
  transform: translate(-50%, -50%);
  /* Ajusta para o centro exato */
  color: rgb(255, 255, 255);
  /* Cor do texto */
  text-align: center;
  /* Centraliza o texto */
  z-index: 10;
  /* Garante que o texto fique acima da imagem */
  width: 80%;
}

.banner4-text h2 {
  font-size: 38px;
}

.banner4-text p {
  font-size: 18px;
}

@media (max-width: 768px) {
  .banner4-text {
    top: 40%;
  }

  .banner4-text h2 {
    font-size: 18px;
  }

  .banner4-text p {
    font-size: 14px;
  }
}

/*-----------------------------------------------------------------------BANNER PLANOS--------------------------------------*/
.bannerp {
  position: relative;
  height: 820px;
  overflow: hidden;
}

.bannerp-text {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  text-align: center;
  z-index: 10;
  width: 80%;
}

.bannerp-text h2 {
  font-size: 36px;
}

.bannerp-text h3 {
  font-size: 24px;
  color: #ffffff;
}

.bannerp-text p {
  font-size: 18px;
}

@media (max-width: 768px) {
  .bannerp-text h2 {
    font-size: 18px;
  }

  .bannerp-text h3 {
    font-size: 16px;
    color: #ffffff;
  }

  .bannerp-text p {
    font-size: 14px;
  }
}
/*--------------------------------------------------banners------colunas-------*/
.bannerco {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: #f4f4f4;
  width: 100%;
  margin-top: 10px;
}

/* Estilo de cada coluna */
.colunai {
  flex: 1 1 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  margin: 10px;
  max-width: 250px;
}

.colunai .icone-texto {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.iconei-texto img {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.iconei-texto p {
  font-size: 16px;
  color: #333;
  text-align: left;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
  .colunai {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .colunai {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------banners------imagens-------planos---------------------------*/

.bannerp2 {
  text-align: center;
  width: 100%;
  margin: 10px auto;
  margin-bottom: 20px;
  background-color: #f4f4f4;
}

.carouselp2 {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.imagep-group {
  display: flex;
  transition: transform 0.5s ease;
}

.imagep-group img {
  width: 15vw; /* Largura relativa à janela */
  height: auto; /* Manter proporção */
  max-width: 200px; /* Tamanho máximo para telas maiores */
  margin: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.imagep-group img:hover {
  transform: scale(1.05);
}

.arrowp {
  font-size: 50px;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  color: #ffffff;
  background-color: #eb8d2a;
  z-index: 10;
  transition: transform 0.3s ease, color 0.3s ease;
}

.arrowp.left {
  left: 0;
}

.arrowp.right {
  right: 0;
}

.arrowp:hover {
  transform: translateY(-50%) scale(1.1);
  color: #000000; /* Slightly lighter color for hover effect */
}

.popupp {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1000;
}

.popupp-content {
  max-width: 80%;
  max-height: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .imagep-group img {
    width: 30vw;
    max-width: 150px;
  }
}

/*---------------------------------------------------------------------------------Saibamais---planos-------------------------*/
.planos-container {
  margin: 10px auto;
}

.planos-titulo {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

.planos-subtitulo {
  font-size: 16px;
  text-align: left;
  margin-top: 6px;
  color: #666;
}

.lista-planos {
  list-style: none;
  padding: 20px;
  margin: 10px;
}

.item-plano {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap; /* Permite que os elementos se ajustem em várias linhas em telas menores */
}

.titulo-plano {
  font-weight: bold;
  margin-right: 15px;
  font-size: 16px;
}

.descricao-plano {
  flex: 1;
  margin-right: 15px;
  color: #555;
  font-size: 14px;
}

.preco-duracao-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 15px;
  min-width: 80px;
}

.preco-plano {
  font-weight: bold;
  color: #333;
  text-align: right;
}

.duracao-plano {
  font-size: 12px;
  color: #888;
  text-align: right;
}

.botao-saiba-mais {
  padding: 5px 10px;
  font-size: 14px;
  color: #fff;
  background-color: #eb8d2a;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  margin-left: 20px;
}

.botao-saiba-mais:hover {
  background-color: #d0801e;
}

@media (max-width: 768px) {
  .planos-container {
    max-width: 300px;
  }
  .planos-titulo {
    font-size: 20px;
  }

  .planos-subtitulo {
    font-size: 14px;
  }

  .item-plano {
    flex-direction: column;
    align-items: flex-start;
  }

  .titulo-plano,
  .descricao-plano {
    margin-right: 0;
    font-size: 14px;
  }

  .preco-duracao-container {
    align-items: flex-start;
    margin-top: 5px;
  }

  .botao-saiba-mais {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 8px;
  }
  .botao-saiba-mais {
    width: auto;
  }
}

@media (max-width: 480px) {
  .planos-container {
    max-width: 300px;
  }
  .planos-titulo {
    font-size: 18px;
  }

  .planos-subtitulo {
    font-size: 12px;
  }

  .titulo-plano,
  .descricao-plano {
    font-size: 12px;
  }

  .preco-duracao-container {
    min-width: auto;
    margin-left: 0;
  }
  .botao-saiba-mais {
    width: auto;
  }
}

.popup2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
}

.popup2-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  margin-top: 200px;
}

.close2-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

/*--------------------------------------------------------------------------------OVERLAY-------------------------------------*/
.btn-politica {
  color: #ffffff;
  cursor: pointer;
}

.btn-politica:hover {
  color: #d9781f;
  cursor: pointer;
}

.overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.overlay,
.overlay2 {
  z-index: 5;
}

.overlay3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.overlay4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/*-------------------------------------------------------------------------------CADASTRESE------------------------------------*/
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
  padding: 10px;
  box-sizing: border-box;
}

.registration-form {
  background: #fff;
  border-radius: 0px 0px 0px 40px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 1200px;
  width: 100%;
  margin-bottom: 26px;
  margin-top: 26px;
}

.registration-form h2 {
  font-size: 30px;
  margin-bottom: 12px;
  margin-top: 12px;
  text-align: center;
}

.registration-form p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
  text-align: center;
}

.registration-form label {
  display: block;
  font-size: 14px;
  color: #000000;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="password"],
.registration-form input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 7px;
  font-size: 14px;
  /* Definir tamanho da fonte igual para todos os campos */
  box-sizing: border-box;
}

.phone-input {
  width: 100%;
  /* Garante que o campo de telefone ocupe toda a largura */
  padding: 0;
  margin: 0;
}

.phone-input input {
  font-size: 14px;
  /* Garante que o tamanho da fonte seja igual */
  padding: 12px;
  /* Mesmo padding dos outros inputs */
  width: 100%;
  border-radius: 7px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.checkbox {
  width: 100%;
  padding: 10px;
  height: 40px;
  margin: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.submit-button {
  background-color: #eb8d2a;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 0px 0px 0px 20px;
  cursor: pointer;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.submit-button:hover {
  background-color: #d0801e;
}

.form-tables {
  display: flex;
  /* Usando flexbox para alinhar as tabelas lado a lado */
  justify-content: space-between;
  /* Espaçamento entre as tabelas */
  flex-wrap: wrap;
  /* Permitir quebra de linha em telas menores */
}

.table-container {
  flex: 1;
  /* Margem entre as tabelas */
  min-width: 300px;
  /* Largura mínima para as tabelas */
  max-width: 500px;
  /* Largura máxima para as tabelas */
  padding: 20px;
}

table {
  width: 100%;
  /* Tabelas ocuparão 100% da largura do contêiner */
  border-collapse: collapse;
  /* Colapsar bordas da tabela */
}

td {
  padding: 10px;
  /* Espaçamento interno */
}

/*---------------------------------------------------------------------------BANNER5------------------------------------------------*/
.banner5 {
  position: relative;
  height: 220px;
  /* Tamanho fixo em telas grandes */
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 90px;
}

/* Estilos de texto dentro do banner */
.banner5-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  text-align: center;
  z-index: 10;
}

.banner5-text h2 {
  font-size: 32px;
  /* Tamanho controlado para h2 */
}

.banner5-text p {
  font-size: 16px;
  /* Tamanho controlado para p */
}

/* Consultas de mídia para telas menores */
@media (max-width: 1024px) {
  .banner5 {
    height: 180px;
    /* Reduz o tamanho do banner */
  }

  .banner5-text h2 {
    font-size: 28px;
    /* Fonte menor em telas médias */
  }

  .banner5-text p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .banner5 {
    height: 150px;
    /* Tamanho ainda menor para dispositivos pequenos */
  }

  .banner5-text h2 {
    font-size: 20px;
    /* Texto proporcionalmente menor */
  }

  .banner5-text p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .banner5 {
    height: 120px;
    /* Banner ainda menor para smartphones */
  }

  .banner5-text h2 {
    font-size: 16px;
    /* Texto proporcional para smartphones */
  }

  .banner5-text p {
    font-size: 8px;
  }
}

/*------------------------------------------------------------------------------FALE CONOSCO---------------------------------*/
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  max-width: 900px;
  width: 100%;
  max-height: 700px;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 50px;
  text-align: center;
  flex-wrap: wrap;
  border-radius: 0px 0px 0px 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  padding: 20px;
  flex-direction: column;
}

.wrapper-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 0px 0px 0px 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  padding: 10px;
  text-align: center;
  width: 100%;
}

.wrapper-bg {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  background: url("2150167448.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.input-area,
.details-area {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin: 10px 0;
}

.title-1,
.title-2 {
  font-weight: bold;
}

.title-1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.title-2 {
  font-size: 24px;
  margin-bottom: 0px;
  margin-top: 3px;
}

.user-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza os elementos no eixo transversal */
  font-size: 14px;
}

.input-group {
  margin-bottom: 15px;
  width: 100%;
  /* Faz com que os grupos de entrada ocupem 100% da largura */
}

.field-label {
  margin-bottom: 5px;
  display: block;
}

.text-input,
.email-input,
.phone-input {
  width: 90%;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
}

.agreement-checkbox {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin: 18px;
}

.agreement-checkbox input[type="checkbox"] {
  transform: scale(1.5);
  /* Aumenta o tamanho do checkbox, se necessário */
}

.submit-action {
  background-color: #eb8d2a;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 0px 0px 0px 20px;
  font-size: 12px;
  cursor: pointer;
  width: 80%;
  margin: 8px;
}

.submit-action:hover {
  background-color: #d0801e;
}

.terms-link {
  margin-top: 10px;
  font-size: 0.9em;
}

.terms-link a {
  color: #eb8d2a;
  text-decoration: none;
}

.terms-link a:hover {
  text-decoration: underline;
}

.details-area ul {
  list-style: none;
  margin-bottom: 20px;
}

.details-area ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.details-area ul li img {
  margin-right: 10px;
  max-width: 50px;
}

.contact-info {
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 0px 0px 0px 33px;
}

.contact-info img {
  border-radius: 50%;
  width: 50px;
  margin-right: 25px;
}

.contact-info p {
  font-size: 14px;
}

.contact-info strong {
  color: #eb8d2a;
}

.phone-input-group {
  width: 100%;
  display: flex;
  justify-content: center;
}

.phone-input {
  width: 90%;
  padding: 10px;
  border-radius: 10px;
  font-size: 10px;
}

.messagefc-box {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0px 0px 0px 20px;
  background-color: #f9f9f9;
  font-size: 16px;
  color: #333;
}

.messagefc-box:focus {
  border-color: #eb8d2a;
  outline: none;
}

/* Media Queries */
@media (max-width: 1024px) {
  .wrapper {
    flex-direction: column;
    /* Muda a direção para coluna em telas menores */
    align-items: center;
    /* Centraliza as colunas verticalmente */
  }

  .input-area,
  .details-area {
    max-width: 100%;
    /* Permite que as colunas ocupem 100% da largura em telas menores */
    margin: 10px 0;
    /* Ajusta a margem para espaçamento vertical */
  }
}

/*--------------------------------------------------------------------------------VIDEO BANNER-----------------------------------*/

.video-banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*-----------------------------------------------------------------------------------------perfil--------------------------*/
.containerper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profileper-banner {
  background: #ffffff;
  padding: 30px;
  width: 1000px;
  border-radius: 0px 0px 0px 40px;
  margin: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.h2per {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.profileper-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left-info {
  flex: 1;
  /* Ocupa a parte esquerda */
  margin-right: 20px;
  /* Espaçamento entre as colunas */
}

.right-info {
  flex: 1;
  /* Ocupa a parte direita */
}

.profileper-info .fieldper {
  margin-bottom: 10px;
  position: relative;
}

.fieldper label {
  display: block;
  margin-bottom: 5px;
}

.fieldper input,
.fieldper select {
  width: 86%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
}

.editper-icon {
  cursor: pointer;
  color: #eb8d2a;
  margin-left: 15px;
}

.save-btn {
  display: none;
  margin-bottom: 10px;
  /* Adiciona um espaço entre o ícone e o botão */
  padding: 5px 10px;
  background: #eb8d2a;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.save-btn:hover {
  background: #d0801e;
}

.addressper-fields {
  display: flex;
  flex-direction: column;
}

.buttonsper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.buttonsper button {
  flex: 1;
  margin: 0 25px;
  padding: 10px;
  background: #eb8d2a;
  border: none;
  color: #fff;
  border-radius: 0px 0px 0px 22px;
  cursor: pointer;
}

.buttonsper button:hover {
  background: #d0801e;
}

@media (max-width: 768px) {
  .profileper-banner {
    width: 90%;
    padding: 15px;
  }

  .fieldper input,
  .fieldper select {
    width: 80%;
  }

  .addressper-fields input {
    width: 80%;
    margin-bottom: 8px;
  }

  .buttonsper {
    flex-direction: column;
  }

  .buttonsper button {
    margin: 5px 0;
  }

  .profileper-info {
    flex-direction: column;
  }

  .left-info {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/*-------------------------------------------------------------------------------------------------FOOTER---------------------*/

.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  font-family: sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  max-width: 90px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
}

.footer-column {
  flex: 1;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #eb8d2a;
}

.footer-bottom {
  background-color: #222;
  padding: 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-media {
  margin-bottom: 0px;
}

.social-media a {
  margin: 0 10px;
  font-size: 12px;
  text-decoration: none;
}

.social-icon {
  width: 35px;
  height: 35px;
  transition: transform 0.2s ease;
  margin: 2px;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-bottom p {
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 5px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links p {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #eb8d2a;
}

/*--------------------------------------------------------------------------------------EFEITOS---E---CORREÇÕES----------------------*/

a {
  text-decoration: none;
}

.aaa {
  color: #eb8d2a;
}

.acor {
  color: #eb8d2a;
}

.fade-in {
  opacity: 0;
  /* Inicialmente invisível */
  transform: translateY(20px);
  /* Para dar um efeito de deslocamento */
  transition: opacity 1.5s ease, transform 1.5s ease;
  /* Transições suaves */
}

.fade-in.show {
  opacity: 1;
  /* Visível quando a classe 'show' é adicionada */
  transform: translateY(0);
  /* Volta para a posição original */
}

.h1adm {
  text-align: center;
}

.padm {
  text-align: center;
}

#scroll-indicator {
  position: fixed;
  bottom: 20px;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  border-left: 5px solid #eb8d2a;
  border-bottom: 3px solid #eb8d2a;
  cursor: pointer;
  animation: bounce 1.2s infinite;
  z-index: 1000;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-45deg);
  }

  50% {
    transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  }
}

.h2p {
  margin-top: 10px;
  padding: 10px;
}

/*-----------------------------------------------------------------------------------LOGIN-----------------------------------------*/

.main-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  margin-bottom: 2vh;
}

.login-container {
  background: #ffffff;
  padding: 5vh 3vw;
  border-radius: 0px 0px 0px 5vw;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  width: 30vw;
  max-width: 100%;
  text-align: center;
}

.login-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 2vh;
}

.login-form .input-group {
  margin-bottom: 1.5vh;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 1em;
  color: #333;
  margin-bottom: 0.5vh;
}

.input-group input {
  width: 100%;
  padding: 1vh;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.login-button {
  width: 100%;
  background-color: #eb8d2a;
  color: #ffffff;
  padding: 1vh;
  border: none;
  border-radius: 4px 4px 4px 5vw;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 2vh;
}

.login-button:hover {
  background-color: #d0801e;
}

.forgot-password {
  display: block;
  margin-bottom: 1vh;
  font-size: 1em;
  color: #eb8d2a;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
  color: #000000;
}

/* Tornando a página mais responsiva em telas menores */
@media (max-width: 768px) {
  .login-container {
    width: 70vw;
    padding: 2vh 5vw;
  }
}

@media (max-width: 480px) {
  .login-container {
    width: 90vw;
    padding: 2vh 5vw;
  }

  .login-title {
    font-size: 1.8em;
  }

  .login-button {
    font-size: 0.9em;
  }
}

/*---------------------------------------------------------SIDEBAR----ESQUERDA------------------TELA--DO--USUARIO-----------------*/

.sidebar2 {
  width: 250px;
  background-color: #333;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.logo2 img {
  width: 80%;
  margin-bottom: 20px;
  margin-left: 20px;
}

.user2-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.user2-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  /* Muda o cursor para mão ao passar por cima */
}

.user2-name {
  margin-top: 10px;
  font-weight: bold;
}

.menu2 {
  width: 100%;
}

.menu2-item {
  padding: 15px 20px;
  width: 100%;
  cursor: pointer;
}

.menu2-item:hover {
  background-color: #444;
}

.menu2-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.arrow {
  margin-left: 10px;
  font-size: 12px;
}

.dropdown2-content {
  display: none;
  background-color: #444;
  padding-left: 20px;
}

.dropdown2-content a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}

.dropdown2-content a:hover {
  background-color: #555;
}

.logout-section {
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  margin-top: auto;
}

.logout-button {
  width: 100%;
  padding: 10px;
  background-color: #eb8d2a;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.logout-button:hover {
  background-color: #d0801e;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #333;
  color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  width: 300px;
  margin: 100px auto;
}

.confirm-button,
.cancel-button {
  padding: 10px;
  margin: 5px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.confirm-button {
  background-color: #eb8d2a;
  color: white;
}

.confirm-button:hover {
  background-color: #d0801e;
}

.cancel-button {
  background-color: #444;
  color: white;
}

.cancel-button:hover {
  background-color: #555;
}

.menu-list li a.active {
    color: #eb8d2a;
}

.menu2-item.active {
  background-color: #eb8d2a;
  color: white;
}

/*----------------------------------------------------------------------------CONTEUDO---DA---AREA---DO---USUARIO-----------------*/

.mainu-content {
  padding: 20px;
  background-color: #f4f4f4;
  transition: margin-left 0.3s ease;
  /* Smooth transition for margin */
  margin-left: 250px;
  /* Default margin to accommodate the sidebar */
  width: 100%;
}

.mainu-content.sidebar2-hidden {
  margin-left: 0;
  /* Adjust margin to zero when sidebar is hidden */
}

.welcomeu-message {
  margin-bottom: 40px;
  margin-top: 20px;
}

.welcomeu-message h1 {
  color: #333;
  text-align: center;
}

.banneru {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  max-width: 1500px;
  margin: 20px auto;
}

.banneru-content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.banneru-image {
  width: 300px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

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

.banneru-text h2 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding: 10px;
  margin: 10px;
  text-align: left;
}

.banneru-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  text-align: left;
  padding: 10px;
  margin: 10px;
}

.banneru-ban {
  background-color: #e9e9e9;
  height: 600px;
  border-radius: 15px;
}

.pillar-section {
  text-align: left;
}

.pillar-section h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.pillars {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  cursor: pointer;
}

.pillar:hover {
  transition: 0.3 ease;
  transform: scale(1.009);
  box-shadow: 0px 1px 3px #00000088;
}

.pillar {
  flex: 1;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pillar img {
  width: 40px;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .pillars {
    flex-direction: column; /* Empilha os itens verticalmente em telas menores */
    align-items: center;
  }

  .pillar {
    width: 90%; /* Ocupa quase toda a largura da tela */
  }
  .banneru-ban {
    background-color: #e9e9e9;
    height: 400px;
    border-radius: 15px;
    margin: auto;
  }
}

@media (max-width: 480px) {
  .pillars {
    flex-direction: column; /* Empilha os itens verticalmente em telas menores */
    align-items: center;
  }

  .pillar {
    width: 80%; /* Ocupa quase toda a largura da tela */
  }
  .banneru-ban {
    background-color: #e9e9e9;
    border-radius: 15px;
    margin: auto;
  }
}

/*------------------------------------------------------------------------------SERVIÇOS---------------------------------------------------*/

.servicesu-section {
  margin-top: 50px;
  max-width: 100%;
}

.servicesu-section h2 {
  color: #333;
  max-width: 250px;
  margin-bottom: 10px;
  margin: 0 auto 10px auto;
  text-align: center;
}

.serviceu-banners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.serviceu-banner {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.285);
  cursor: pointer;
  text-align: center;
}

.serviceu-banner:hover {
  transition: 0.3 ease;
  transform: scale(1.01);
  box-shadow: 0px 1px 3px #00000088;
}

.serviceu-banner p {
  margin: 10px 0;
  color: #666;
  text-align: left;
}

.serviceu-banner .adicionarbotao {
  width: 60px;
  margin-bottom: 20px;
  margin-top: 20px;
  cursor: pointer;
}

.containeruu {
  display: flex;
  position: relative;
}

.sidebar2 {
  width: 250px;
  background-color: #333;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  position: fixed;
  /* Fixed position */
  left: 0;
  transition: transform 0.3s ease;
  /* Smooth transition */
}

.sidebar2.hidden {
  transform: translateX(-100%);
  /* Hide the sidebar */
}

.toggleu-sidebar {
  position: fixed;
  top: 100px;
  left: 220px;
  color: white;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1000;
  /* Ensure it appears above other elements */
  transition: left 0.3s ease;
  /* Smooth transition for position change */
}

.toggleu-sidebar.hidden {
  left: 10px;
  /* Move to the left when sidebar is hidden */
  color: #eb8d2a;
  animation: wiggle 0.8s infinite;
  /* Apply wiggle animation when hidden */
  width: 150px;
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  75% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@media (max-width: 1023px) {
  .mainu-content {
    margin-left: 0;
    width: 100%;
  }

  .banneru {
    width: 90%;
  }

  .banneru-content {
    flex-direction: column;
  }

  .serviceu-banners {
    width: 200px;
    margin: 10px auto;
  }
}

/* For mobile devices (up to 767px) */
@media (max-width: 767px) {
  .mainu-content {
    margin-left: 0;
    width: 100%;
  }

  .banneru {
    width: 100%;
    padding: 10px;
  }

  .banneru-content {
    flex-direction: column;
    align-items: center;
  }

  .banneru-ban {
    width: 80%;
    /* Ensure "Pendências" stays above other sections */
  }

  .serviceu-banners {
    width: 200px;
    margin: 10px auto;
  }
}

/* For extra small screens (up to 480px) */
@media (max-width: 480px) {
  .banneru-content {
    flex-direction: column;
    gap: 10px;
  }

  .banneru-image,
  .banneru-ban {
    width: 100%;
    order: -1;
  }

  .serviceu-banners {
    width: 200px;
    margin: 10px auto;
  }
}
