.banner{
    width: 100%;
    background-image: url('../img/induFundo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 50px 0;
}

.banner h1{
    font-size: 72px;
    color: #ffffff;
    text-shadow: 5px 5px 20px 50px #333333;
    z-index: 100;
}


.titulo_filtro{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 36px 56px;
  }
  
  .titulo_destaque{
    color: #333333;
    font-size: 48px;
    text-align: center;
  }


  @media screen and (max-width: 768px){
    .banner{
        padding: 30px 15px;
    }
    .banner h1{
        font-size: 20px;
        
    }
    .titulo_filtro{
        justify-content: center;
        padding:  36px 0;
      }
  }
  
  #order{
    padding: 10px;
    border: none;
    font-size: 14px;
    border-radius: 8px;
    outline: none;
    background-color: #ececec;
  }


.todos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding:24px;
    width: 100%;
}

.card {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 16px;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    height: 500px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card a{
    width: 100%;
}

.card img {
    border-radius: 8px;
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.cardInfo{
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.cardInfo .titulo{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.card h3 {
    color: #333333;
    font-size: 28px;
    font-weight: 700;
}

/* .card p {
    color: #666;
    font-size: 16px;
} */

.card .price {
    color: blue;
    font-size: 22px;
    font-weight: bold;
}

.card a {
    color: #333333;
    font-size: 14px;
    text-decoration: none;
}

/* .card a:hover {
    text-decoration: underline;
} */

.dispo{
    position: absolute;
    padding: 10px;
    padding-left: 24px;
    font-size: 14px;
    color: #111111;
    background-color: #c2c2c2;
    width: fit-content;
    border-radius: 0 8px 8px 0;
    transform: translateY(-60px);
    box-shadow: 5px 5px 10px rgb(0,0,0,0.7);
    font-weight: 700;
}

.dispo.indisponivel {
    background-color: red;
  }
  
  .dispo.disponivel {
    background-color: #c2c2c2;
  }
