body {
    font-family: 'Syne', sans-serif;
}

/* Cardapio Digital */
.header-container {
  position: relative;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.fundo-principal {
  width: 100%; /* Imagem ocupa toda a largura */
  height: auto; /* Mantém a proporção */
  object-fit: cover; /* Garante que a imagem não estique */
  filter: brightness(50%);
  max-height: 400px; /* Altura máxima para imagens grandes */
}

.header-overlay {
  position: absolute;
  top: 50%; /* Centraliza verticalmente */
  left: 5%; /* Alinha à esquerda com espaçamento */
  transform: translateY(-50%); /* Ajusta a centralização vertical */
  color: var(--Branco, #fff);
  text-align: left;
  font-size: 2.5rem; /* Texto maior */
  z-index: 2;
  padding: 10px; /* Espaçamento interno para garantir legibilidade */
  word-wrap: break-word;
  max-width: 90%; /* Limita o texto dentro da imagem */
}

.header-overlay p {
  margin: 10px 0;
  font-size: 2.5rem; /* Texto interno maior */
}

.combo {
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
  .header-overlay {
    font-size: 2rem; /* Reduz tamanho do texto */
    left: 10%; /* Ajusta alinhamento em telas menores */
    max-width: 80%; /* Limita largura */
  }

  .header-overlay p {
    font-size: 1.3rem; /* Reduz tamanho do texto interno */
  }

  .fundo-principal {
    max-height: 300px; /* Reduz altura da imagem */
  }
}

@media (max-width: 480px) {
  .header-overlay {
    font-size: 1.5rem; /* Texto ainda menor em telas pequenas */
    left: 5%; /* Ajusta alinhamento */
    max-width: 90%; /* Ocupa mais espaço horizontal */
  }

  .header-overlay p {
    font-size: 1rem; /* Ajuste proporcional */
  }

  .fundo-principal {
    max-height: 200px; /* Altura menor */
  }
}

/* FORMS E TEXTO INICIAL */
.texto-principal {
  padding: 5% 13% 0 13%; /* Mantém espaçamento em desktop */
  color: #000;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px; /* 137.143% */
  margin-right: 500px;
}

.btn-contrate-1 {
  background-color: #ff9d01;
  color: white;
  font-weight: 600;
  border-radius: 78px;
  padding: 15px 24px;
  text-decoration: none;
  height: 85px;
  width: 100%;
  display: inline-block;
  font-size: 25px;
  text-align: center;
  margin-bottom: 300px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease; /* Transição suave */
  padding-bottom: 90px !important;
}

.btn-contrate-2 {
    background-color: #ff9d01;
    color: white;
    font-weight: 600;
    border-radius: 78px;
    padding: 15px 24px;
    text-decoration: none;
    height: 85px;
    width: 100%;
    display: inline-block;
    font-size: 25px;
    text-align: center;
    margin-bottom: 100px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease; /* Transição suave */
}

.btn-contrate-1:hover {
  background-color: #d65e14;
  color: white;
  font-size: 23px; /* Diminui a fonte no hover */
  transform: scale(0.98); /* Leve redução do botão */
}

#topico {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 20px;
}

.linha-verde {
  background: #25c88d;
  width: 650px;
  height: 4px;
  flex-shrink: 0;
  position: absolute;
  top: 40px;
  right: 90px;
  box-sizing: border-box;
}

.etapas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-right: 590px;
  width: 100%;
  max-width: 800px;
  position: relative;
}

.etapa {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.imagens-header {
  width: 67px;
  height: 67px;
  background-color: #25c88d;
  border: 6px solid #25c88d;
  margin-bottom: 10px;
  border-radius: 9px;
}

.texto-etapa {
  width: 187px;
  height: auto;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 37px; /* 185% */
  text-align: center;
}

.form-control-dono {
  width: 350px;
  border: 2px solid black;
  border-radius: 20px;
  padding: 10px;
  color: #000;
  font-size: 24px;
  line-height: 33px; /* 137.5% */
  height: 55px;
  margin: 20px auto;
}

.caixa-form {
  background-color: #ebebeb;
  position: absolute;
  left: 1200px;
  width: 470px;
  height: 500px;
  flex-shrink: 0;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
}

.texto-caixa-form {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 37px;
  margin-bottom: 20px;
}

@media (max-width: 1600px) {
  .caixa-form {
    left: 850px;
  }

  .etapa {
    width: 250px;
    margin-right: 25px;
  }

  .linha-verde {
    width: 580px;
    margin-right: 22.5px;
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .texto-principal {
    font-size: 30px; /* Reduz fonte em tablets */
    padding: 5%;
    text-align: center;
  }

  .btn-contrate {
    margin: 20px auto;
    width: 50%;
    font-size: 20px; /* Ajuste de tamanho do botão */
    padding: 0 !important;
  }

  .etapas {
    flex-wrap: wrap; /* Permite quebra de linha */
    gap: 20px; /* Espaço entre itens */
  }

  .caixa-form {
    position: static; /* Centraliza o formulário */
    width: 80%; /* Reduz largura */
    margin: 20px auto;
  }

  .linha-verde {
    width: 80%; /* Ajusta largura da linha */
    position: static; /* Centraliza linha */
    margin: 20px auto;
    display: none;
  }
}

@media (max-width: 768px) {
  .texto-principal {
    font-size: 25px;
    padding: 10px;
  }

  .etapas {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .imagens-header {
    width: 50px; /* Reduz imagens */
    height: 50px;
  }

  .texto-etapa {
    font-size: 16px; /* Texto menor */
    width: auto; /* Permite ajuste dinâmico */
  }

  .btn-contrate {
    width: 70%; /* Mais espaço no botão */
    font-size: 18px; /* Fonte menor */
    padding: 0 !important;
  }

  .form-control-dono {
    width: 100%;
    font-size: 18px;
  }

  .caixa-form {
    width: 90%;
    height: auto; /* Ajusta dinamicamente */
  }

  .texto-caixa-form {
    font-size: 20px; /* Reduz texto */
  }
}

@media (max-width: 480px) {
  .texto-principal {
    font-size: 40px; /* Texto ainda menor */
    text-align: center;
    margin-right: 0px ;
  }

  .btn-contrate {
    width: 90%;
    font-size: 16px; /* Texto menor no botão */
    padding: 0 !important;
  }

  .etapas {
    gap: 20px; /* Mais espaço entre itens */
    margin-right: 0px;
  }

  .linha-verde {
    display: none;
  }

  .imagens-header {
    width: 40px;
    height: 40px;
  }

  .texto-etapa {
    font-size: 14px;
  }

  .form-control-dono {
    font-size: 16px; /* Inputs menores */
  }

  .caixa-form {
    width: 100%;
    padding: 10px;
  }

  .texto-caixa-form {
    font-size: 18px;
  }
}

/* Primeira Abas */
.conteudos {
  width: 100%;
  height: 764px;
  background: #4c6996;
  filter: blur(0px);
  padding: 20px;
  box-sizing: border-box;
  margin-top: 200px;
}

.abas-total {
  border-radius: 25px;
  background: #e1e5ec;
  width: 30%; /* Largura flexível */
  max-width: 800px;
  margin: auto;
  margin-top: 2%;
  margin-right: 1020px;
  padding: 10px;
  padding-top: 0px;
  padding-left: 0;
  padding-right: 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  max-height: 62%;
}

.abas {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  border-bottom: 2px solid #e1e5ec;
}

.aba {
  flex: 1;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  border: 1px solid #e1e5ec;
  border-bottom: none;
  background-color: #cfd8e3;
  font-size: 1em;
  color: #666;
  border-radius: 25px 25px 0 0;
  transition: all 0.3s ease; /* Transição suave */
  opacity: 0.8;
  position: relative;
}

/* Efeito hover para aba inativa */
.aba:hover {
  background-color: #d9e2f1;
  color: #333;
  opacity: 1;
  transform: translateY(-3px); /* Elevação sutil */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Aba ativa com destaque */
.aba.ativa {
  background-color: #e1e5ec;
  color: #000;
  font-weight: bold;
  position: relative;
  z-index: 2;
  opacity: 1;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.15);
  transform: translateY(0); /* Mantém no lugar */
}

/* Ajuste no texto das abas */
.aba span {
  display: block;
  font-size: 1em;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  padding: 5px;
}

.aba.ativa span {
  font-size: 1.1em;
  font-weight: bold;
}

/* Adiciona uma transição mais limpa ao conteúdo */
.novo-conteudo {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.novo-conteudo.ativo {
  display: block;
  opacity: 1;
}

#content {
  background: #e1e5ec;
  border: 2px solid #e1e5ec;
  border-radius: 0 0 25px 25px;
  position: relative;
  z-index: 1;
  margin-top: 4px;
  overflow: hidden; /* Evita que o conteúdo ultrapasse o contêiner */
  min-height: 300px; /* Altura mínima para o conteúdo */
  transition: all 0.3s ease; /* Suaviza a transição ao trocar abas */
}

#content .conteudo {
  display: none;
  font-size: 1em; /* Tamanho adaptável */
  color: black;
  margin-top: 20px;
  line-height: 1.5; /* Melhor espaçamento entre linhas */
  margin-top: 10px;
}

.lista-1 {
  vertical-align: middle;
  list-style-type: none;
  margin-top: 5.7px;
}

.lista-2 {
  list-style-type: none;
  margin-top: 5.7px;
}

#content .conteudo.ativo {
  display: block;
}

.imagens-tab {
  width: 28px; /* Largura relativa */
  height: auto; /* Mantém proporção */
  margin-right: 8px;
  vertical-align: middle;
  margin-top: 12px;
  list-style-type: none;
}

.estatisticas {
  display: flex;
  flex-wrap: wrap; /* Permite quebra em telas menores */
  margin: 20px 0;
}

.estatistica-card {
  font-size: 38px; /* Fonte responsiva */
  display: flex;
  justify-content: space-between;
  background-color: #e1e5ec;
  border-radius: 20px;
  padding: 20px;
  width: 1300px !important; /* Proporcional em dispositivos menores */
  margin: 0 auto;
  margin-top: 100px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.item {
  text-align: center;
  margin: 10px 0;
  font-size: 1em; /* Fonte adaptável */
}

.item:hover {
  color: #e97612;
}

.item p {
  font-size: 0.9em; /* Fonte adaptável */
  color: #333;
  margin: 0;
  font-weight: normal;
}

/* Ajustes gerais */
.video-youtube {
  width: 100%; /* Largura ajusta-se ao container pai */
  max-width: 800px; /* Limita a largura em telas grandes */
  height: 58%; /* Altura proporcional */
  aspect-ratio: 16/9; /* Mantém a proporção de tela padrão para vídeos */
  display: block;
  border-radius: 15px; /* Bordas arredondadas */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Adiciona sombra para estética */
  flex: 1; /* Ocupa espaço disponível */
  position: absolute;
  left: 900px;
  bottom: 260px;
}

@media (max-width: 1600px) {
  /* Ajustes gerais */
  .video-youtube {
    left: 500px;
    bottom: 260px;
  }

  .estatistica-card {
    width: auto !important;
    height: auto;
    margin-left: 60px;
    margin-top: 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .abas-total {
    height: auto;
    max-height: none;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .video-youtube {
    position: relative; /* Remove posição absoluta em telas pequenas */
    width: 100%; /* Ocupa toda a largura */
    left: auto;
    bottom: auto;
    top: auto;
    right: auto;
    transform: none; /* Remove transform */
    margin-top: 40px; /* Adiciona espaçamento */
  }

  .conteudos {
    justify-items: col;
  }

  .abas-total {
    width: 100%;
  }

  .estatistica-card {
    padding: 10px;
    font-size: 2em; /* Redução de tamanho para dispositivos menores */
    width: 100%;
    margin-top: 3%;
  }

  .aba {
    font-size: 0.9em; /* Redução de fonte para telas menores */
  }

  .imagens-tab {
    width: 24px; /* Imagens menores em dispositivos menores */
  }

  #content .conteudo {
    font-size: 0.9em; /* Ajuste de fonte */
  }

  iframe {
    max-width: 100%; /* O vídeo ocupa toda a largura do container */
    height: auto; /* Mantém proporção */
  }
}

@media (max-width: 480px) {
  .conteudos {
    margin: auto;
  }

  .estatistica-card {
    font-size: 1em; /* Fonte ainda menor para telas muito pequenas */
    margin: 0;
    margin-top: 10px;
    width: auto !important;
    height: auto;
  }

  .aba {
    padding: 8px;
    font-size: 0.8em;
    height: auto;
  }

  .abas-total {
    height: 400px !important;
  }

  iframe {
    height: 180px; /* Proporção ajustada */
  }

  .imagens-tab {
    width: 20px; /* Imagens ainda menores */
  }

  #content .conteudo {
    font-size: 0.8em; /* Texto mais compacto */
  }
}

/* O Melhor Cardapio Digital */
/* Container principal */
.container-gif-1 {
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

/* Título */
.o-melhor {
  font-size: 3.5rem;
  margin-bottom: 50px;
  color: #000;
  font-weight: 600;
  line-height: 1.2;
}

/* Conteúdo flexível */
.container-gif-1 .content {
  display: flex;
  flex-wrap: wrap; /* Permite quebra em telas menores */
  justify-content: center;
  align-items: center;
  gap: 30px; /* Espaçamento entre elementos */
}

/* Imagem responsiva */
.gif-1 img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 10px;
}

/* Texto */
.text-content {
  max-width: 600px;
  text-align: justify;
  color: #000;
  font-size: 1.65rem;
  line-height: 1.6;
}

/* Novas abas */
.novas-abas {
  margin-top: 30px;
  background-color: #EFEFEF;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.abas-novas {
  display: flex;
  list-style: none;
  padding: 0;  
  justify-content: space-between;
  flex-wrap: nowrap;
}

.aba-nova {
  background: #d9eadc;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  color: #555;
  font-size: 1.8rem;
  border-radius: 10px;
  margin: 5px;
  opacity: 0.6; /* Aba inativa com opacidade */
}

.aba-nova.ativa {
  background: #9bc7a3;
  color: #fff;
  border: 2px solid #5a8b64;
  font-weight: bold;
  opacity: 1; /* Aba ativa com opacidade total */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Efeito hover para abas */
.aba-nova:hover {
  opacity: 0.8;
  transform: translateY(-3px); /* Leve elevação ao passar o mouse */
}

/* Conteúdo da aba */
.novo-conteudo {
  display: none;
  margin-top: 20px;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.novo-conteudo.ativo {
  display: block;
}

.imagens-nova-tab {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Lista do conteúdo */
.imagens-textos {
  list-style: none;
  margin: 10px 0;
  font-size: 16px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .o-melhor {
    font-size: 2rem;
  }
  .text-content {
    font-size: 1rem;
    text-align: center;
  }
  .content {
    flex-direction: column;
  }

  .novo-conteudo {
    margin-right: 40px;
  }
}

@media (max-width: 768px) {
  .o-melhor {
    font-size: 1.8rem;
  }
  .abas-novas {
    flex-direction: column;
    gap: 10px;
  }
  .aba-nova {
    font-size: 1rem;
    padding: 8px;
  }
  .novas-abas {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .o-melhor {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .gif-1 img {
    max-width: 100%;
  }
  .text-content {
    font-size: 1.2rem;
  }
  .aba-nova {
    font-size: 0.9rem;
    padding: 5px;
  }

}

/* Container principal */
.container-atendimento-automotizado {
  width: 100%;
  min-height: 770px; /* Mantém altura mínima */
  background: #d2ebee;
  filter: blur(0px);
  padding: 20px;
  position: relative;
  box-sizing: border-box;
}

/* Títulos */
.atendimento-automatizado-titulo {
  color: #000;
  font-size: 4rem; /* Tamanho adaptável */
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin-top: 20px;
}

.atendimento-automatizado-subtitulo {
  margin-top: 20px;
  color: #000;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}

/* Quadrado branco */
.quadrado-branco {
  width: 90%; /* Ajusta para telas menores */
  max-width: 700px;
  margin-left: 300px;
  margin-top: 100px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 20px;
  box-sizing: border-box;
}

.lista-quadrado-branco {
  color: #000;
  font-family: Jost, sans-serif;
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.6;
  list-style: none;
  padding-left: 0;
}

.cabeca-lista-quadrado-branco {
  margin-top: 10px;
}

.check-verdinho {
  width: auto;
  height: 26px;
  border-radius: 26px;
  margin-right: 12px;
}

/* Botão Quero contratar */
.quadrado-verde-quero-contratar {
  display: block;
  margin-left: 300px;
  margin-top: 50px;
  max-width: 670px;
  border-radius: 61.5px;
  background: #ff9d01;
  text-align: center;
  padding: 15px 30px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.quadrado-verde-quero-contratar:hover {
  background: #d65e14;
  color: #ff9d01;
}

/* GIF posicionado */
.container-gif img {
  width: 100%;
  max-width: 680px; /* Tamanho máximo */
  height: auto;
  position: absolute;
  left: 1100px;
  top: 170px;
}

/* RESPONSIVIDADE */
@media (max-width: 1600px) {
  .quadrado-branco,
  .quadrado-verde-quero-contratar {
    margin-left: 0;
  }

  .container-gif img {
    left: 700px;
  }
}

/* Telas menores que 1024px */
@media (max-width: 1024px) {
  .atendimento-automatizado-titulo {
    font-size: 2rem; /* Reduz o título */
  }

  .atendimento-automatizado-subtitulo {
    font-size: 1.1rem;
  }

  .container-gif img {
    left: 0px;
    top: 400px;
    max-width: 480px;
  }

  .quadrado-branco {
    width: 95%;
    padding: 15px;
  }

  .quadrado-verde-quero-contratar {
    font-size: 1.25rem;
    padding: 10px 20px;
    margin: auto;
  }
}

/* Telas menores que 768px */
@media (max-width: 768px) {
  .atendimento-automatizado-titulo {
    font-size: 1.8rem;
  }

  .atendimento-automatizado-subtitulo {
    font-size: 1rem;
  }

  .quadrado-branco {
    padding: 10px;
    margin: 20px auto;
  }

  .quadrado-verde-quero-contratar {
    font-size: 1.1rem;
    padding: 10px;
  }
}

/* Telas menores que 480px */
@media (max-width: 480px) {
  .atendimento-automatizado-titulo {
    font-size: 1.5rem;
  }

  .atendimento-automatizado-subtitulo {
    font-size: 0.9rem;
  }

  .quadrado-verde-quero-contratar {
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 30px;
  }

  .lista-quadrado-branco {
    font-size: 0.9rem;
  }
}

/* Acompanhamento em tempo real */
.acompanhamento-automatizado-titulo {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 75% */
  margin-top: 40px;
  text-align: center;
  max-width: 2000px;
}

.acompanhamento-automatizado-subtitulo {
  margin-top: 40px;
  color: #000;
  text-align: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 171.429% */
}

.container-acompanhamento {
  display: flex;
  justify-content: space-between; /* Espaçamento uniforme entre os blocos */
  align-items: flex-start; /* Alinha os itens ao topo */
  margin-top: 50px;
  width: 100%;
  max-width: 800px;
  gap: 160px; /* Espaçamento horizontal entre os blocos */
  margin-left: auto; /* Centraliza horizontalmente */
  margin-right: auto; /* Centraliza horizontalmente */
}

.acompanhamento-imagens {
  display: flex;
  flex-direction: column; /* Empilha imagem e texto verticalmente */
  align-items: center; /* Centraliza horizontalmente */
  text-align: center; /* Alinha o texto no centro */
  gap: 20px; /* Espaçamento entre a imagem e o texto */
  margin-bottom: 20px; /* Espaçamento entre os blocos */
  z-index: 2; /* Certifica que as imagens e textos estão acima da linha */
}

.imagens-acompanhamento {
  margin: 0 auto; /* Centraliza a imagem horizontalmente */
  max-width: 100px; /* Define um tamanho máximo para as imagens */
  height: auto; /* Mantém a proporção das imagens */
  border-radius: 9px;
  border: solid 9px #fbc702;
  background: #fbc702;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  z-index: 2; /* Certifica que as imagens estão acima da linha */
}

.textos-acompanhamento-imagens {
  color: var(--Preto, #0a1115);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5; /* Ajusta o espaçamento geral */
  text-align: center;
  display: flex; /* Torna os elementos filhos flexíveis */
  flex-direction: column; /* Empilha os elementos verticalmente */
}

.negrito-acompanhamento {
  color: var(--Preto, #0a1115);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 1; /* Remove espaçamento extra */
  margin-bottom: 12px;
}

.container-acompanhamento {
  display: flex;
  justify-content: space-between; /* Distribui igualmente os itens */
  align-items: center; /* Alinha verticalmente */
  margin-top: 50px;
  position: relative; /* Torna a posição relativa para os filhos */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.linha-laranja {
  background: #fbc702; /* Cor da linha */
  width: 79%; /* A linha ocupa toda a largura do contêiner */
  height: 4px;
  position: absolute;
  top: 15%; /* Alinha a linha no centro vertical */
  left: 100px;
  z-index: 1; /* Mantém a linha atrás das imagens */
}

/* RESPONSIVIDADE */

/* Telas menores que 1024px */
@media (max-width: 1024px) {
  .acompanhamento-automatizado-titulo {
    font-size: 2rem;
  }

  .acompanhamento-automatizado-subtitulo {
    font-size: 2rem;
  }

  .container-acompanhamento {
    flex-direction: column; /* Alinha os elementos verticalmente */
    margin-left: 50px;
    gap: 20px;
  }

  .linha-laranja {
    display: none; /* Remove a linha laranja */
  }

  .img-sinal {
    margin-right: 220px;
  }

  .texto-status {
    margin-right: 90px;
  }

  .img-feedback {
    margin-right: 210px;
  }

  .texto-feedback {
    margin-right: 90px;
  }

  .img-idea {
    margin-right: 240px;
  }

  .texto-idea {
    margin-right: 100px;
  }
}

/* Telas menores que 768px */
@media (max-width: 768px) {
  .acompanhamento-automatizado-titulo {
    font-size: 1.8rem;
  }

  .acompanhamento-automatizado-subtitulo {
    font-size: 0.95rem;
  }

  .imagens-acompanhamento {
    max-width: 80px; /* Reduz o tamanho da imagem */
    border: solid 5px #fbc702;
  }

  .textos-acompanhamento-imagens {
    font-size: 0.9rem;
  }
}

/* Telas menores que 480px */
@media (max-width: 480px) {
  .acompanhamento-automatizado-titulo {
    font-size: 1.5rem;
  }

  .acompanhamento-automatizado-subtitulo {
    font-size: 0.85rem;
  }

  .imagens-acompanhamento {
    max-width: 70px; /* Ainda menor para telas pequenas */
    border: solid 4px #fbc702;
  }

  .textos-acompanhamento-imagens {
    font-size: 0.85rem;
  }

  .negrito-acompanhamento {
    font-size: 1rem;
  }
}

/* Integrações */
.integrações {
  width: 90%;
  max-width: 1277px;
  height: auto;
  border-radius: 25px;
  background: #ebebeb;
  margin: 40px auto;
  padding: 20px;
  box-sizing: border-box;
}

.texto-principal-integracoes {
  color: #000;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Container de imagens */
.imagens-integracoes {
  display: grid; /* Transforma o container em grid */
  grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
  grid-template-rows: auto auto; /* Duas linhas automáticas */
  gap: 30px 40px; /* Espaçamento entre as imagens */
  justify-items: center; /* Centraliza as imagens horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  margin: 0 auto;
}

.imagens-integracoes img {
  width: 120px; /* Tamanho base maior para desktop */
  height: auto;
  transition: transform 0.3s ease;
}

.imagens-integracoes img:hover {
  transform: scale(1.1); /* Efeito de zoom no hover */
}

/* Classes de alinhamento personalizadas */
.imagens-integracoes-dentro,
.imagens-integracoes-baixo {
  margin: 0; /* Remove margens adicionais */
}

/* RESPONSIVIDADE */

/* Telas menores que 1024px */
@media (max-width: 1024px) {
  .texto-principal-integracoes {
    font-size: 2rem; /* Reduz o tamanho do texto */
  }

  .imagens-integracoes {
    grid-template-columns: repeat(3, 1fr); /* 3 colunas no mobile */
    gap: 15px;
  }

  .imagens-integracoes img {
    width: 80px; /* Reduz tamanho das imagens */
  }
}

/* Telas menores que 768px */
@media (max-width: 768px) {
  .texto-principal-integracoes {
    font-size: 1.8rem;
  }

  .imagens-integracoes {
    gap: 15px; /* Reduz espaçamento */
  }

  .imagens-integracoes img {
    width: 80px; /* Imagens menores */
  }
}

/* Telas menores que 480px */
@media (max-width: 480px) {
  .texto-principal-integracoes {
    font-size: 1.5rem;
  }

  .imagens-integracoes {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no celular */
    gap: 10px;
  }

  .imagens-integracoes img {
    width: 70px; /* Imagens menores */
  }
}

/* Mais benefícios */
.mais-benificios {
  padding: 40px 20px; /* Espaçamento interno para melhor visualização */
  box-sizing: border-box;
}

.texto-principal-mais-beneficios {
  color: #000;
  text-align: center;
  font-size: 3rem; /* Tamanho adaptativo */
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto 30px;
  max-width: 800px; /* Limita a largura para evitar muito espaço */
}

.laranjao {
  color: #e97612;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: underline wavy #e97612 3px;
  text-underline-offset: 5px;
}

/* Container das listas */
.listas {
  margin-top: 40px;
  flex-wrap: wrap; /* Permite quebra em telas menores */
  position: relative; /* Contexto para imagens */
}

/* Lista 1 */
.lista-1-mais-benificios,
.lista-2-mais-benificios {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 45%; /* Limita a largura para manter espaço */
}

.lista-1-mais-benificios {
  text-align: left;
  margin-left: 200px;
  gap: 0;
}

.lista-2-mais-benificios {
  text-align: right;
  direction: rtl; /* Mantém a lista alinhada à direita */
  list-style-position: inside;
  margin-left: 900px;
  margin-top: 200px;
}

/* Imagens */
.imagem-panela,
.imagem-maos {
  position: absolute;
  z-index: -1;
  max-width: 300px;
  height: auto;
}

.imagem-panela {
  left: 10%;
  top: 70%;
  transform: translateY(-50%);
}

.imagem-maos {
  right: 10%;
  top: 0;
}

/* RESPONSIVIDADE */
@media (max-width: 1600px) {
  .listas {
    margin-right: 60px;
  }
}

/* Telas menores que 1024px */
@media (max-width: 1024px) {
  .texto-principal-mais-beneficios {
    font-size: 2.5rem;
  }

  .listas {
    flex-direction: column; /* Empilha as listas verticalmente */
  }

  .lista-1-mais-benificios,
  .lista-2-mais-benificios {
    margin: 0;
    max-width: 100%;
    text-align: center;
    direction: ltr; /* Remove o alinhamento invertido */
  }

  .imagem-panela,
  .imagem-maos {
    position: relative;
    max-width: 200px; /* Reduz tamanho */
    margin: 20px auto; /* Centraliza as imagens */
    transform: none;
  }

  .imagem-maos {
    left: 20%;
  }
}

/* Telas menores que 768px */
@media (max-width: 768px) {
  .texto-principal-mais-beneficios {
    font-size: 2rem;
  }

  .laranjao {
    font-size: 2rem;
  }

  .imagem-panela,
  .imagem-maos {
    max-width: 150px; /* Imagens menores */
  }
}

/* Telas menores que 480px */
@media (max-width: 480px) {
  .texto-principal-mais-beneficios {
    font-size: 1.5rem;
  }

  .laranjao {
    font-size: 1.5rem;
  }

  .lista-1-mais-benificios,
  .lista-2-mais-benificios {
    font-size: 1.2rem;
  }

  .imagem-panela,
  .imagem-maos {
    max-width: 120px; /* Reduz ainda mais */
  }
}

/* Container principal */
.container-imagem {
  position: relative; /* Necessário para sobreposição */
  width: 100%;
  height: 100vh; /* Torna a altura dinâmica, adaptando ao viewport */
  overflow: hidden;
}

/* Fundo da imagem */
.fundo-30 {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cobre toda a área sem deformar */
  filter: brightness(50%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* Fica atrás do conteúdo */
}

/* Texto sobreposto */
.overlay {
  position: absolute;
  top: 50%; /* Centraliza verticalmente */
  left: 50%; /* Centraliza horizontalmente */
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

/* Título principal */
.min-30 {
  font-size: 5rem;
  font-weight: 700;
  margin-top: 80px;
}

.min-30 span {
  font-size: 3.5rem;
  color: #fff;
  font-style: normal;
  font-weight: 700;
  line-height: 63px;
}

/* Subtexto */
.min-30-subtexto {
  font-size: 3rem;
  font-weight: 600;
  margin: 0px 0 0px !important;
  line-height: 1.4;
  text-align: center; /* Centraliza o texto (opcional) */
}

/* Quebra o texto em frases separadas */
.min-30-subtexto span {
  display: block; /* Transforma os spans em blocos para quebrar linha */
  font-size: 36px; /* Define o tamanho específico para o destaque */
  color: #fff; /* Cor branca para destaque */
}

/* Botão */
.min-30-btn {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background-color: #ff9d01;
  margin-right: 20px;
  margin-top: 100px;
  border-radius: 61.5px;
  transition: all 0.1s ease;
  height: 100px;
  width: 500px;
}

.min-30-btn:hover {
  background-color: #d65e14;
  color: #fff;
  height: 100px;
  width: 500px;
  font-size: 1.7rem;
}

/* Texto final */
.texto-final {
  font-size: 1.2rem;
  font-weight: 500;
  color: #d6d4d4;
  margin-top: 0px;
  line-height: 1.6;
}

/* RESPONSIVIDADE */
@media (max-width: 1600px) {
  .min-30-subtexto {
    font-size: 26px;
  }

  .min-30-btn {
    width: auto;
    font-size: 18px;
    margin-top: 60px;
    height: auto;
    margin-bottom: 46px;
  }
  .min-30-btn:hover {
    width: 42%;
    font-size: 18px;
  }
}
/* Telas menores que 1024px (Tablets e Notebooks) */
@media (max-width: 1024px) {
  .min-30 {
    font-size: 3rem;
  }

  .min-30 span {
    font-size: 1.8rem;
  }

  .min-30-subtexto {
    font-size: 1.3rem;
    margin: 15px 0 30px;
  }

  .min-30-btn {
    font-size: 1.3rem;
    padding: 12px 25px;
    margin: 0;
    width: auto !important;
    height: auto;
  }

  .texto-final {
    font-size: 1.1rem;
  }
}

/* Telas menores que 768px (Celulares) */
@media (max-width: 768px) {
  .container-imagem {
    height: 70vh; /* Reduz altura em dispositivos menores */
  }

  .min-30 {
    font-size: 2.5rem;
  }

  .min-30 span {
    font-size: 1.5rem;
  }

  .min-30-subtexto {
    font-size: 1.1rem;
  }

  .min-30-btn {
    font-size: 1.1rem;
    padding: 10px 20px;
  }

  .texto-final {
    font-size: 1rem;
    margin-top: 20px;
  }
}

/* Telas menores que 480px (Smartphones Pequenos) */
@media (max-width: 480px) {
  .container-imagem {
    height: 60vh; /* Reduz ainda mais a altura */
  }

  .min-30 {
    font-size: 3rem;
  }

  .min-30 span {
    font-size: 1.7rem;
  }

  .min-30-subtexto {
    font-size: 1rem;
    margin: 10px 0 40px !important;
  }

  .min-30-btn {
    font-size: 1rem;
    padding: 8px 15px;
    width: auto;
  }

  .texto-final {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Perguntas Frequentes */
.perguntas-frequentes-fundo {
  width: 90%; /* Torna a largura flexível */
  max-width: 900px; /* Limita a largura máxima */
  height: 70%; /* Altura adaptável */
  border-radius: 25px;
  background: #ebebeb;
  margin: 0 auto; /* Centraliza horizontalmente */
  padding: 20px;
}

/* Header */
.faq-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.faq-title {
  color: #000;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding-top: 10px;
}

.icone-pergunta {
  margin-right: 20px;
  max-width: 60px; /* Redimensiona o ícone */
}

/* FAQ Container */
.faq-section {
  max-width: 100%;
  margin: 0 auto;
  color: #000;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0 !important;
  padding-top: 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.faq-question-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.flecha-img {
  width: 20px;
  height: auto;
  transition: transform 0.3s ease;
}

.faq-item.expanded .flecha-img {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 1.2rem;
  color: #555;
  margin-top: 10px;
  display: none;
  text-align: right;
}

/* RESPONSIVIDADE */

/* Telas menores que 1024px (Notebooks e Tablets) */
@media (max-width: 1024px) {
  .faq-title {
    font-size: 2rem;
  }

  .icone-pergunta {
    left: 0%; /* Ajusta a posição do ícone */
    max-width: 80px;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

/* Telas menores que 768px (Tablets e Celulares) */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.8rem;
  }

  .icone-pergunta {
    position: relative; /* Remove posicionamento absoluto */
    transform: none;
    margin-bottom: 10px;
    max-width: 40px;
  }

  .faq-header {
    flex-direction: column;
    gap: 10px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

/* Telas menores que 480px (Celulares Pequenos) */
@media (max-width: 480px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .icone-pergunta {
    margin-bottom: 5px;
    max-width: 30px;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(15deg);
  }
  45% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  90% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.floating-buttons .floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  animation: ring 1.5s infinite ease-in-out; /* Animação para o efeito de ligação */
  transform-origin: center center; /* Garante que o efeito gire ao redor do centro */
}

.floating-buttons img {
  width: 70px;
  height: 70px;
  cursor: pointer;
}

.floating-buttons .floating-button:hover {
  animation: none; /* Para a animação ao passar o mouse */
}

@media (max-width: 768px) {
  .floating-buttons {
    right: 10px; /* Ajusta para telas menores */
    bottom: 10px;
  }

  .floating-button img {
    width: 40px;
    height: 40px;
  }
}

/* Button Styles */
.btn-primary {
  background-color: #ff9d01;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff9d01;
}

/* Test Free Button */
#spanBotaoTestar {
  background-color: #ff9d01;
  color: white;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

#spanBotaoTestar:hover {
  background-color: #ff9d01;
}

/* Login Button */
#botaoEntrarTopo {
  font-weight: 500;
  color: #333333;
  margin-top: 5px;
}

#botaoEntrarTopo:hover {
  color: #ff9d01;
}


/* Utility Classes */
.bg-verde-2 {
  background-color: #ff9d01;
}

.c-branco {
  color: white;
}

.border-radius-10 {
  border-radius: 10px;
}

/* Fix horizontal overflow */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 20px 0;
  }

  .navbar-nav {
    gap: 10px;
  }

  .nav-link {
    padding: 8px 0 !important;
  }

  #spanBotaoTestar {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 40px;
    width: 120px;
  }

  .d-md-none.d-block.btn-primary {
    padding: 6px 15px;
    font-size: 14px;
  }
}

/* Borda vermelha para campos inválidos */
.error-border {
  border: 2px solid red !important;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* Borda verde para campos válidos */
.success-border {
  border: 2px solid green !important;
  box-shadow: 0 0 5px rgba(0, 128, 0, 0.5);
  transition: all 0.3s ease;
}

.error-label {
  color: red;
  font-size: 12px; /* Opcional: ajusta o tamanho da fonte */
  margin-top: 5px; /* Opcional: adiciona espaço entre o campo e a mensagem */
}

/* Remove o contorno padrão do navegador */
input:focus,
textarea:focus {
  outline: none;
}

.mercado-pago {
  width: 160px !important;
}

/* === Abas Personalizadas === */
.aba-personalizada,
.aba-personalizada-1 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.aba-personalizada {
    font-size: 1.5rem;
}

.aba-personalizada-cardapio {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  padding-left: 40px;
  padding-right: 45px;
}

.aba-personalizada-sistema {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  padding-right: 25px;
  padding-left: 40px;
}

.aba-personalizada-restaurante {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  padding-right: 25px;
  padding-left: 40px;
}

.aba-personalizada-cliente {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px  !important;
  padding-left: 71.5px;
  padding-right: 70px;
}

.aba-personalizada.active {
    background-color: #9BC7A3 !important;
    color: #000 !important;
}

.aba-personalizada-1 {
    background-color: #B0BDCF;
}

.aba-personalizada-1.active {
    background-color: #E1E5EC !important;
    color: #000 !important;
}

.aba-personalizada:hover,
.aba-personalizada-1:hover {
    color: #000;
}

.tab-pane > ul {
  padding-left: 15px !important;
}

/* === Responsivo: até 600px === */
@media screen and (max-width: 600px) {
    .aba-personalizada {
        font-size: 20px;
    }

    .aba-personalizada-cardapio {
      padding-left: 20px !important;
      padding-right: 35px !important;
    }

    .aba-personalizada-sistema {
      padding-right: 25px !important;
      padding-left: 30px !important;
    } 

    .aba-personalizada-restaurante {
      padding-right: 15px !important;
      padding-left: 10px !important;
    }

    .aba-personalizada-cliente {
      padding-left: 17px !important;
      padding-right: 10px !important;
    }

    .aba-personalizada-1 {
      font-size: 12px;
    }

    .abas-novas {
        flex-direction: row;
        gap: 0px !important;
    }

    .tab-content > .tab-pane > ul {
        padding-left: 0;
    }

    .lista-1,
    .lista-2,
    .imagens-textos {
        font-size: 0.85rem;
        text-align: center;
    }

    .btn-contrate-1 {
        margin-bottom: 0px;
    }

    .abas-total {
        width: 100% !important;
        box-sizing: border-box;
        height: auto !important;
    }
}
