/* Por defecto movil */

#info_vender{
    background-color: #F2F2F2;
    padding-top: 60px;
    padding-bottom: 20px;      
}

#info_vender .titulo {
    color: #1D1D1C;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.8px;
    text-align: center;
    margin-left: 35px;
  }

  #info_vender .container-cards.no-swiper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  #info_vender  .card {
    flex: 1 1 calc(25% - 24px);
    min-width: 280px;
    height: 550px;
    border-radius: 8px;
    padding: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: white;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
  }

  #info_vender  .card .titulo-card {
    font-size: 36px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: -0.36px;
    color: #FFF;
    z-index: 1;
    font-family: var(--tipo-titulos) !important;
    font-style: normal;
  }

  #info_vender  .card .subtitulo-card{
    font-family: var(--tipo-titulos) !important;
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #FFF;
    margin-top: 10px;
    z-index: 1;
  }

/* SECCIÓN INFERIOR */
  #info_vender .bottomContent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
  }

  #info_vender .textoBottom {
    /* width: 60%; */
    width: 100%;
    color: #0F375D;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 20px;
  }

/* MOBILE */
@media (max-width: 992px) {
    
    /** dejarlo aqui dentro, es exclusivo para mvl */ 

}


/* DESKTOP */
@media (min-width: 993px) {
    #info_vender {
        padding-top: 120px;
        padding-bottom: 40px;
       
      }
  
/* SECCIÓN INFERIOR */
      #info_vender .bottomContent {
        flex-direction: column;
        align-items: center;
        text-align: center;
    
      }
    
      #info_vender .textoBottom {
        width: 100%;
        margin-bottom: 20px;
      }
   
}

