

.cardRemate {
    background-color: #fff;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
    /* font-family: Montserrat, sans-serif; */
    cursor: pointer;
  }
  .cardRemate:hover{
    margin-top: -3px;
    margin-bottom: 3px;
  }
  .cardRemate .banner {
    background-image: url("https://images.unsplash.com/photo-1545703549-7bdb1d01b734?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 14rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .cantidadCardRemate {
    background-color: #fff;
    color: #2f302f;
    font-weight: 900;
    width: 3rem;
    height: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
    border-radius: 50%;
    transform: translateY(50%);
    transition: transform 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
    text-align: center;
    vertical-align: middle;
    border: 2px solid #7b1e21;
  padding-top: 10px;
  }
  
  .cardRemate .banner p:hover {
    transform: translateY(50%) scale(1.3);
  }
  .cardRemate .menu {
    width: 100%;
    height: 5.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    box-sizing: border-box;
  }
  .cardRemate .menu .opener {
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    border-radius: 50%;
    transition: background-color 100ms ease-in-out;
  }
  .cardRemate .menu .opener:hover {
    background-color: #f2f2f2;
  }
  .cardRemate .menu .opener span {
    background-color: #404040;
    width: 0.4rem;
    height: 0.4rem;
    position: absolute;
    top: 0;
    left: calc(50% - 0.2rem);
    border-radius: 50%;
  }
  .cardRemate .menu .opener span:nth-child(1) {
    top: 0.45rem;
  }
  .cardRemate .menu .opener span:nth-child(2) {
    top: 1.05rem;
  }
  .cardRemate .menu .opener span:nth-child(3) {
    top: 1.65rem;
  }
  .cardRemate h4.name {
    text-align: left;
    padding-top: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0;
    color: #000;
    font-size: 1rem;
  }
  .cardRemate .peso{
    font-size: small;
    color: #5c5b5b;
    text-align: left;
    padding: 0 1rem ;
  }
  .cardRemate .precio{
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
    padding: 0.5rem 1rem 0rem 1rem ;
  }
  .cardRemate .title {
    color: #5c5b5b;
    font-size: 0.8rem;
    text-align: left;
    padding: 1rem 1rem 0.5rem 1rem;
  }
  .cardRemate .actions {
    padding: 1rem 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    order: 99;
  }
  .cardRemate .actions .follow-info {
    padding: 0 0 1rem;
    display: flex;
  }
  .cardRemate .actions .follow-info h2 {
    text-align: left;
    width: 50%;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
  }
  .cardRemate .actions .follow-info h2 a {
    text-decoration: none;
    padding: 0.8rem;
    display: flex;
    flex-direction: row;
    border-radius: 0.8rem;
    transition: background-color 100ms ease-in-out;
  }
  .cardRemate .actions .follow-info h2 span {
    color: #5a5959;
    font-weight: bold;
    transform-origin: bottom;
    transform: scaleY(1.3);
    transition: color 100ms ease-in-out;
  }
  .cardRemate .actions .follow-info h2 a small {
    color: #afafaf;
    font-size: 0.85rem;
    font-weight: normal;
  }
  .cardRemate .actions .follow-info h2 a:hover {
    background-color: #f2f2f2;
  }
  .cardRemate .actions .follow-info h2 a:hover span {
    color: #7b1e21;
  }
  .cardRemate .actions .follow-btn button {
    cursor: pointer;
    font-size: 10px;
    color: inherit;
    font-weight: bold;
    /* background-color: #ffd01a; */
    background-color: #7b1e21;
    color: #fff;
    width: 100%;
    border: none;
    padding: 0.5rem;
    outline: none;
    box-sizing: border-box;
    border-radius: 0.5rem/25%;
    transition: background-color 100ms ease-in-out, transform 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  }
  .cardRemate .actions .follow-btn button:hover {
    /* background-color: #efb10a; */
    background-color: #292927;
    transform: scale(1.1);
  }
  .cardRemate .actions .follow-btn button:active {
    /* background-color: #e8a200; */
    background-color: #1b1b19;
    transform: scale(1);
  
  }
  .cardRemate .desc {
    text-align: justify;
    padding: 0 2rem 2.5rem;
    order: 100;
    font-size: 12px;
  }
  