.informacoes {
  background: #fcfcfc;
  padding-bottom: 128px;
}

.informacoes .informacoes-title {
  /* background: linear-gradient(0deg, rgba(216, 216, 216, 0) 0%, #d8d8d8 100%); */
  /* padding: 60px 0; */
  padding: 46px 0px 46px 0px;
}

.informacoes .informacoes-title h1 {
  color: #444;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.informacoes .informacoes-cards {
  display: grid;
  place-items: center;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--primary-color);
  padding-top: 80px;
}

.informacoes .informacoes-cards__card {
  width: 100%;
  height: 100%;
  background-color: #fff;
  text-decoration: none;
  max-width: 296px;
  border: 1px solid #ccc;
  transition: 0.3s ease-in-out;
}

.informacoes .informacoes-cards__card:hover {
  border: 1px solid var(--primary-color);
  transition: 0.3s ease-in-out;
}

.informacoes .informacoes-cards__card:hover h2 {
  color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.informacoes .informacoes-cards__card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.informacoes .informacoes-cards__card-content h2 {
  color: #191a19;
  font-size: 1rem;
  font-style: normal;
  font-weight: bold;
  line-height: 28px;
  min-height: 82px;
  margin-bottom: 16px;
  transition: 0.3s ease-in-out;
}

.informacoes .informacoes-cards__card-content span {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

.tabela-content {
  overflow-y: auto;
  overflow-x: auto;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  font-size: 14px;
  border: 1px solid #ddd;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #5b5b5b1a;
}
.product-table th,
.product-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}
.product-table thead th {
  background-color: #78bd41;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase; /* Deixando os títulos em maiúsculo como no exemplo */
}
.product-table tbody td {
  color: #555;
  background-color: #fff;
}
.product-table tbody tr:nth-child(even) td {
  background-color: #f9f9f9; /* Cor de fundo para linhas pares */
}

.catalogo-btn {
  display: block;
  max-width: 509px;
  max-height: 235px;
  width: 100%;
  height: 100%;
  margin: 64px auto;
}

@media screen and (max-width: 1280px) {
  .informacoes .informacoes-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .informacoes .informacoes-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 475px) {
  .informacoes .informacoes-cards {
    grid-template-columns: 1fr;
  }
}
