.tittle {
  background-color: #061940;
  width: 100%;
  display: flex;
  justify-content: center;
}

.tittle .tittle-ajustes {
  display: flex;
  width: 100%;
  max-width: 1400px;
  justify-content: space-between;
  align-items: center;
}

.tittle h1 {
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 30px;
  padding-bottom: 5px;
  margin-left: 10px;
}

.img-racao-animal {
  background-image: linear-gradient(to right, #061940 5%, transparent 40%),
    linear-gradient(to left, #061940 5%, transparent 40%),
    url("../img/racao-animal-equipamentos.jpg");
}

.img-fertilizantes {
  background-image: linear-gradient(to right, #061940 5%, transparent 40%),
    linear-gradient(to left, #061940 5%, transparent 40%),
    url("../img/fertilizantes-equipamentos.jpg");
}

.img-etanol-de-milho {
  background-image: linear-gradient(to right, #061940 5%, transparent 40%),
    linear-gradient(to left, #061940 5%, transparent 40%),
    url("../img/etanol-de-milho-equipamentos.jpg");
}

.img-especiais {
  background-image: linear-gradient(to right, #061940 5%, transparent 40%),
    linear-gradient(to left, #061940 5%, transparent 40%),
    url("../img/quimicos-farmacos-cosmeticos-equipamentos.jpg");
}

.img-tittle {
  background-size: 100% 100%;
  width: 600px;
  height: 250px;
}

.equipamentos-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* espaçamento entre cards */
  padding: 30px;
  max-width: 1500px;
  margin: 0 auto;
  min-width: 260px;
}

.equipamentos-card {
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipamentos-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.equipamentos-nome {
  font-size: 16px;
  font-weight: 500;
  color: white;
  background-color: #061940;
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.ajuste-img {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipamentos-card img {
  max-width: 100%;
  max-height: 100%;
  padding: 10px;
  object-fit: contain;
}

.equipamentos-aplicacao {
  width: 100%;
  min-height: 60px;
  background-color: #f5f5f5;
  font-size: 12px;
  padding: 10px;
  color: #061940cc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
}

.equipamentos-saiba-mais {
  text-decoration: none;
  color: #061940;
  padding: 8px 20px;
  border: 1px solid #061940;
  border-radius: 6px;
  margin: 10px 0 15px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.equipamentos-saiba-mais:hover {
  color: white;
  background-color: #061940;
  box-shadow: 0 4px 10px rgba(6, 25, 64, 0.4);
}

@media screen and (max-width: 1000px) {
  .img-tittle {
    height: 200px;
  }
}

@media screen and (max-width: 600px) {
  .tittle h1 {
    font-size: 25px;
  }

  .img-tittle {
    height: 150px;
  }
}

@media screen and (max-width: 500px) {
  .tittle h1 {
    font-size: 23px;
    font-weight: 500;
  }

  .img-tittle {
    height: 130px;
  }
}

@media screen and (max-width: 450px) {
  .tittle {
    height: 190px;
    text-align: center;
    width: 100%;
    min-width: 270px;
  }

  .tittle h1 {
    z-index: 2;
    margin: auto;
    display: flex;
    font-weight: 600;
    justify-content: center;
    padding: 0;
    min-width: 150px;
    max-width: 310px;
    text-shadow: 1px 1px 2px black;
  }

  .img-tittle {
    margin-left: -100%;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .equipamentos-saiba-mais {
    margin: 10px 0;
  }
}

@media screen and (max-width: 320px) {
  .equipamentos-lista {
    padding: 10px 0;
  }

  .equipamentos-card {
    width: 85%;
    margin: 10px auto;
  }

  .equipamentos-nome {
    font-size: 15px;
    padding: 8px;
  }

  .equipamentos-aplicacao {
    padding: 5px;
  }

  .ajuste-img {
    width: 180px;
    height: 250px;
    padding: 0;
  }
  .equipamentos-card img {
    max-height: 250px;
  }

  .tittle {
    height: 150px;
  }

  .tittle h1 {
    font-size: 18px;
    min-width: 150px;
    max-width: 250px;
  }
}
