.produto-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: .3s ease;
  }

  .produto-card:hover {
    transform: translateY(-5px);
  }

  .produto-info {
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .info-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #fff;
  }

  .info-texto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
  }

  .info-texto strong {
    font-size: 20px;
    color: #111;
    font-weight: 700;
  }

  .info-texto span {
    font-size: 15px;
    color: #777;
    margin-top: 4px;
  }

  .info-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
  }

  .produto-imagem img {
    width: 100%;
    max-width: 260px;
    object-fit: contain;
  }

  .produto-conteudo {
    margin-top: 20px;
  }

  .produto-conteudo h3 {
    font-size: 22px;
    color: #111;
    font-weight: 700;
    line-height: 1.2;
  }