/* ===== CARD PRODUTO REMAP ===== */

.produto-card{
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* imagem */
.produto-img{
  width: 100%;
  aspect-ratio: 16 / 7;
  background: #f1f1f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.produto-img img{
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover; 
}

/* conteúdo */
.produto-body{
  padding: 1.2rem 1.2rem 1.4rem;
}

.produto-body h2{
  margin: 1.1rem 0 .4rem;
  font-size: 1.05rem;
}

.produto-body p,
.produto-body ul{
  color: #555;
  font-size: .9rem;
  line-height: 1.65;
}

/* listas */
.produto-body ul{
  padding-left: 1.2rem;
}

/* tags */
.produto-tags{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .6rem;
}

.produto-tags span{
  font-size: .78rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: #fff3e8;
  color: #9b4a00;
}

/* lista alerta (requisitos) */
.lista-alerta{
  list-style: none;
  padding-left: 0;
  margin-top: .35rem;
}

.lista-alerta li{
  padding: .55rem .7rem;
  border-radius: 12px;
  background: #f7f7fb;
  border: 1px solid #e7e7ef;
  margin-bottom: .5rem;
}

/* ações */
.produto-acoes{
  margin-top: 1.2rem;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* observação */
.produto-obs{
  margin-top: .9rem;
  font-size: .85rem;
  color: #666;
}

/* layout desktop */
@media (min-width: 900px){
  .produto-card{
    display: grid;
    grid-template-columns: 1fr 1.4fr;
  }

  .produto-img{
    aspect-ratio: auto;
    min-height: 440px;
    padding: 0;
  }

  .produto-img img{
    max-height: none;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
