
/* ===== Estilo geral ===== */
body {
  font-family: 'Acumin';
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 40px;
}

@font-face {
  font-family: "Acumin";
  src: url("../fonts/Acumin.woff2");
}

@font-face {
  font-family: "Futura Cyrillic Demi";
  src: url("../fonts/futura.woff2");
}

@font-face {
  font-family: "Inter Black";
  src: url("../fonts/web/Inter-Black.woff2");
}


.conteiner-products {
  display: flex;
  width: 100%;
  display: flex;
  justify-content: center;
}

.img-produto {
  display: flex;
  justify-content: center;
  width: 40%;
}

.imgProducts {
  width: 500px;
  height: 500px;
  border: 30px solid #6c959c;
  box-shadow: 0 10px 25px rgba(1, 1, 0, 0.2);
  border-radius: 20px;
  object-fit: cover;
}

.conteudo-produto {
  width: 40%;
}

.content-logoProducts {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

/* WHATS */
.whatsapp-button {
  position: fixed;
  bottom: 100px;
  right: 140px;  
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
  width: 40px;
  height: 40px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* VOLTAR AO INICIO  */

#btn-topo {
  position: fixed;
  bottom: 100px; /* um pouco acima do WhatsApp */
  right: 60px;
  width: 65px;
  height: 65px;
  background-color: #6c969b;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: none; /* começa escondido */
  z-index: 999;
  transition: all 0.3s ease;
}

#btn-topo:hover {
  background-color: #243c42;
  transform: scale(1.1);
}

.img-seta {
  width: 35px;
}



/* ===== Títulos ===== */
.content-mid__title-laboratorio {
  font-size: 50px;
  color: #004d4d; /* verde petróleo semelhante ao da imagem */
  font-weight: 700;
  margin-bottom: 10px;
}

.content-mid__text-nossa-historia h2 {
  font-size: 30px;
  font-weight: 600;
  color: #444;
  margin-top: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 30px;
  color: #333;
  font-weight: 600;
  margin-top: 30px;
}

h4 {
  font-size: 30px;
  color: #333;
  font-weight: 600;
  margin-top: 20px;
}

/* ===== Parágrafos e listas ===== */
p, li {
  font-size: 0.95em;
  color: #333;
  margin-bottom: 10px;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

/* ===== Tabela ===== */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.table th,
.table td {
  border: 1px solid #000;
  padding: 8px 10px;
  text-align: left;
}

.table th {
  background-color: #f4f4f4;
  font-weight: 600;
}

/* ===== Linhas divisórias ===== */
hr {
  border: 0;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
}

/* ===== Rodapé das informações ===== */
p strong {
  font-weight: 600;
  color: #000;
}

/* ===== Layout principal ===== */
.content-mid-nossa-historia {
  max-width: 900px;
  margin: 0 auto;
}

.content-mid__text-nossa-historia {
  margin-top: 20px;
}

/* menu  */

.menu {
  background-color: #6c969b;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 50px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.navbar a:hover {
  color: black;
}

@media (max-width: 1500px) { 
  .conteiner-products {
    flex-direction: column;
  }

  .img-produto {
    width: 80%;
    margin: auto;
  }

  .conteudo-produto {
    width: 80%;
    margin: auto;
  }
}



/* ===== Responsividade ===== */
@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .content-mid__title-laboratorio {
    font-size: 2em;
  }

  .table th, .table td {
    font-size: 0.9em;
    padding: 6px;
  }

  .imgProducts {
    width: 300px;
    height: 300px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu {
    height: auto;
    padding: 10px 0;
    text-align: center;
  }

  .content-logoProducts {
    margin-top: 100px;
  }

}
