* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #f4f7fa;
  color: #002e55;
  padding-top: 80px; /* espaço equivalente à altura do header */
}

header {
  background: linear-gradient(to right, #0f3d65, #1b6ba8);
  height: 80px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed; /* fixo na tela */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* fica acima de todo o conteúdo */
}


.header-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 46px; /* define o tamanho exato da logo */
  max-height: 100%; /* garante que nunca ultrapasse o header */
  width: auto;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
  padding: 8px 12px;
  border-radius: 4px;
}

.menu a:hover {
  background-color: #ccc;
  color: #000;
}

.hamburguer {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ffcc00;
}


.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 5%;
  background: white;
}

.texto {
  flex: 1 1 400px;
}

.texto h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f3d65;
}

.texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.texto button {
  background-color: #1b6ba8;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.imagem {
  flex: 1 1 400px;
  text-align: center;
}

.imagem img {
  max-width: 100%;
  border-radius: 10px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #1b6ba8;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    display: none;
  }

  .menu.show {
    display: flex;
  }

  .hamburguer {
    display: block;
  }
  
  .container {
    flex-direction: column;
    text-align: center;
  }

  .texto h1 {
    font-size: 2rem;
  }
}


















/* ======= SEÇÃO SERVIÇOS NA HOME ======= */

.servicos-inicio {
  padding: 60px 5%;
  background-color: #ffffff;
  text-align: center;
}

.container-servicos {
  max-width: 1200px;
  margin: 0 auto;
}

.container-servicos h2 {
  font-size: 2rem;
  color: #0f3d65;
  margin-bottom: 10px;
  font-weight: 700;
}

.container-servicos p {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.lista-servicos-home {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card-servico {
  width: 260px;
  background-color: #e5f4ff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.card-servico:hover {
  transform: translateY(-5px);
}

.card-servico img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-servico h3 {
  color: #0f3d65;
  font-size: 1.1rem;
  margin: 15px 0 8px;
}

.card-servico p {
  padding: 0 15px 20px;
  color: #333;
  font-size: 0.95rem;
}









@media screen and (max-width: 768px) {
  .servicos-inicio {
    padding: 1px 0 !important;
    margin: 0 !important;
  }

  .servicos-inicio > * {
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .servicos-inicio h2,
  .servicos-inicio p {
    margin-bottom: 10px !important;
  }

  .card-servico {
    margin-bottom: 15px !important;
  }

  /* Garante que imagens não causem quebra ou espaço indesejado */
  .servicos-inicio img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Se existir uma div que separa seções */
  .separador,
  .espacador,
  .section-space {
    display: none;
  }

  /* Garante que não tenha altura fixa escondida */
  .servicos-inicio {
    min-height: unset !important;
  }
}










/* ======= DEPOIMENTOS ======= */

.depoimentos {
  background-color: #ffffff;
  padding: 60px 5%;
  text-align: center;
}

.depoimentos h2 {
  font-size: 2rem;
  color: #0f3d65;
  margin-bottom: 30px;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}

.card-depoimento {
  background-color: #f9f9f9;
  flex: 0 0 calc(33.33% - 20px);
  border-radius: 10px;
  padding: 20px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
}

.card-depoimento img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.card-depoimento h3 {
  color: #1b6ba8;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.card-depoimento p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
}

.btn-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1b6ba8;
  color: white;
  border: none;
  font-size: 26px;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease;
}

.btn-seta:hover {
  background-color: #0f3d65;
}

.btn-seta.esquerda {
  left: 1px; /* estava 10px antes */
}

.btn-seta.direita {
  right: 1px;
}


@media screen and (max-width: 768px) {
  .card-depoimento {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 30px;
  }

  .carousel-wrapper {
    padding: 0 20px;
  }

  .btn-seta {
    font-size: 22px;
    padding: 10px 12px;
  }

  .btn-seta.esquerda {
    left: 1px; /* ou 1px se preferir */
  }

  .btn-seta.direita {
    right: 1px;
  }
}









.porque-nos-contratar {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.porque-nos-contratar h2 {
  font-size: 2.5em;
  font-weight: bold;
  color: #0f3d65;
  margin-bottom: 10px;
}

.porque-nos-contratar .descricao {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.itens-beneficios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.item-beneficio {
  background-color: #00BFFF;
  color: #000;
  padding: 25px 15px;
  border-radius: 20px;
  width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.item-beneficio:hover {
  transform: scale(1.05);
}

.item-beneficio img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.item-beneficio h3 {
  font-size: 0.95em;
  font-weight: bold;
  color: #000;
}


@media screen and (max-width: 768px) {
  .item-beneficio {
    width: 45%;
  }

  .porque-nos-contratar .descricao {
    font-size: 1em;
    padding: 0 10px;
  }
}

@media screen and (max-width: 480px) {
  .item-beneficio {
    width: 100%;
  }
}










/* === SEÇÃO SOBRE === */
.sobre {
  padding: 60px 5%;
  background-color: #f0f6fc;
  text-align: center;
}

.sobre h2 {
  font-size: 2rem;
  color: #0f3d65;
  margin-bottom: 20px;
}

.sobre p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  max-width: 900px;
  margin: 0 auto 15px auto;
}

/* === SEÇÃO DETALHADA === */
.sobre-lirtech {
  padding: 60px 5%;
  background-color: #fff;
}

.conteudo-lirtech {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-lirtech h2 {
  font-size: 1.8rem;
  color: #002b4e;
  margin-bottom: 20px;
}

.conteudo-lirtech .texto {
  flex: 1 1 500px;
  padding-right: 30px;
}

.conteudo-lirtech .imagem {
  flex: 1 1 400px;
  text-align: center;
}

.conteudo-lirtech img {
  max-width: 100%;
  border-radius: 8px;
}

.checklist {
  margin-top: 25px;
  padding-left: 0;
  list-style: none;
}

.checklist li {
  margin-bottom: 12px;
  font-weight: 500;
  color: #003366;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .conteudo-lirtech {
    flex-direction: column;
  }

  .conteudo-lirtech .texto,
  .conteudo-lirtech .imagem {
    padding: 0;
  }

  .conteudo-lirtech .imagem {
    margin-top: 30px;
  }
}














/* ======= SEÇÃO SERVIÇOS ======= */

.servicos {
  padding: 60px 5%;
  background-color: #f7fafe;
  text-align: center;
}

.conteudo-servicos {
  max-width: 1200px;
  margin: 0 auto;
}

.servicos h2 {
  font-size: 2.2rem;
  color: #0f3d65;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid de serviços */
.lista-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Cartão individual */
.servico {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.servico img {
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.servico h3 {
  font-size: 1.3rem;
  color: #1b6ba8;
  margin-bottom: 10px;
  font-weight: 600;
}

.servico p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}









/* ======= DIFERENCIAIS ======= */

.diferenciais {
  padding: 60px 5%;
  background-color: #f0f6fc;
  text-align: center;
}

.conteudo-diferenciais {
  max-width: 1200px;
  margin: 0 auto;
}

.diferenciais h2 {
  font-size: 2.2rem;
  color: #0f3d65;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lista-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.diferencial {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.diferencial img {
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.diferencial h3 {
  font-size: 1.2rem;
  color: #1b6ba8;
  margin-bottom: 10px;
  font-weight: 600;
}

.diferencial p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}


/* ======= NORMAS E CERTIFICAÇÕES ======= */

.normas {
  padding: 60px 5%;
  background-color: #ffffff;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.conteudo-normas {
  max-width: 1200px;
  margin: 0 auto;
}

.normas h2 {
  font-size: 2rem;
  color: #0f3d65;
  margin-bottom: 15px;
  font-weight: 700;
}

.normas p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

.logos-normas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logos-normas img {
  height: 70px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.5);
  transition: filter 0.3s ease;
}

.logos-normas img:hover {
  filter: grayscale(0);
}











/* ======= CONTATO ======= */

.contato {
  padding: 60px 5%;
  background-color: #f7fafe;
  text-align: center;
}

.conteudo-contato {
  max-width: 800px;
  margin: 0 auto;
}

.contato h2 {
  font-size: 2rem;
  color: #0f3d65;
  margin-bottom: 10px;
}

.contato p {
  color: #444;
  margin-bottom: 30px;
}

.bloco-info {
  margin-bottom: 30px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.bloco-info h3 {
  color: #1b6ba8;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.bloco-info a {
  color: #1b6ba8;
  text-decoration: none;
  font-weight: 600;
}


.btn-acao {
  display: inline-block;
  background-color: #1b6ba8;
  color: white !important;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 8px;
}

.btn-acao:hover {
  background-color: #0f3d65;
}

.email:hover {
  text-decoration: underline;
}

.mapa iframe {
  width: 100%;
  height: 300px; /* ou ajuste conforme a necessidade */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
  display: block;
}









/* Chamada para açao antes do roda pé */
.cta-final {
  background: linear-gradient(135deg, #002244, #004080);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-final h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta-final p {
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background-color: #00c853;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .btn-cta {
    padding: 10px 20px;
    font-size: 14px;
    width: auto; /* ou defina uma largura fixa como 100px */
  }
}



.btn-cta:hover {
  background-color: #00a845;
}









/* Rodapé */
.rodape {
  background: linear-gradient(to right, #0f3d65, #1b6ba8);
  color: #fff;
  padding: 30px 20px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.container-rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mapa-site,
.cnpj {
  flex: 1;
  min-width: 200px;
}

.mapa-site h4,
.cnpj h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.mapa-site ul {
  list-style: none;
  padding: 0;
}

.mapa-site ul li {
  margin-bottom: 6px;
}

.mapa-site ul li a {
  color: #fff;
  text-decoration: none;
}

.mapa-site ul li a:hover {
  text-decoration: underline;
}

.logo-rodape {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
}

.logo-rodape img {
  max-width: 200px;
  height: auto;
}

.direitos {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .container-rodape {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-rodape {
    margin: 20px 0;
  }
}




















@media screen and (max-width: 768px) {
  .imagem {
    flex: none !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 768px) {
  .depoimentos {
    padding: 30px 3% !important; /* reduz top/bottom e laterais */
  }
}




